From 490d90bf059fcd2469b157d48dbfa173f68c22b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=CC=81s=CC=8C=20Ludvik?= Date: Thu, 29 Feb 2024 10:03:12 +0100 Subject: [PATCH 1/2] fixed incorrect PHP version and moved twig from dev requirements to requirements in all feeds --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index a9d108904..0f6a735a1 100644 --- a/composer.json +++ b/composer.json @@ -36,12 +36,12 @@ "symfony/dependency-injection": "^5.4", "symfony/form": "^5.4", "symfony/http-kernel": "^5.4", - "symfony/translation": "^5.4" + "symfony/translation": "^5.4", + "twig/twig": "^3.5.0" }, "require-dev": { "phpunit/phpunit": "^9.5.20", - "shopsys/coding-standards": "14.0.x-dev", - "twig/twig": "^3.5.0" + "shopsys/coding-standards": "14.0.x-dev" }, "config": { "allow-plugins": { From 34f8c1760f54c77ce6add9a29c2e954a5ae8117a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=CC=81s=CC=8C=20Ludvik?= Date: Thu, 29 Feb 2024 10:09:49 +0100 Subject: [PATCH 2/2] removed skipping of DeclareStrictTypesFixer --- ecs.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/ecs.php b/ecs.php index d6a5d3e7e..3ac857c24 100644 --- a/ecs.php +++ b/ecs.php @@ -37,9 +37,6 @@ PhpdocToPropertyTypeFixer::class => [ __DIR__ . '/src/*', ], - DeclareStrictTypesFixer::class => [ - __DIR__ . '/src/*', - ], PropertyTypeHintSniff::class => [ __DIR__ . '/src/Model/Product/GoogleProductDomain.php', ],