From acb0c916bb522365f962a304487d6db152790aae Mon Sep 17 00:00:00 2001 From: David Maicher Date: Sun, 19 Oct 2025 09:55:20 +0200 Subject: [PATCH] Allow Symfony 8 --- composer.json | 14 +++++++------- makefile | 2 +- tests/phpunit.xml => phpunit.xml | 0 3 files changed, 8 insertions(+), 8 deletions(-) rename tests/phpunit.xml => phpunit.xml (100%) diff --git a/composer.json b/composer.json index e26cd43..cc389e6 100644 --- a/composer.json +++ b/composer.json @@ -13,8 +13,8 @@ ], "require": { "php": ">=8.1", - "symfony/framework-bundle": "^6.4 || ^7.3", - "symfony/twig-bundle": "^6.4 || ^7.3", + "symfony/framework-bundle": "^6.4 || ^7.3 || ^8.0", + "symfony/twig-bundle": "^6.4 || ^7.3 || ^8.0", "twig/twig": "^2.4.4 || ^3.0" }, "require-dev": { @@ -23,11 +23,11 @@ "phpstan/phpstan": "^2.1.30", "phpstan/phpstan-symfony": "^2.0.8", "phpunit/phpunit": "^10.5.58", - "symfony/browser-kit": "^6.4 || ^7.3", - "symfony/css-selector": "^6.4 || ^7.3", - "symfony/expression-language": "^6.4 || ^7.3", - "symfony/security-bundle": "^6.4 || ^7.3", - "symfony/yaml": "^6.4 || ^7.3" + "symfony/browser-kit": "^6.4 || ^7.3 || ^8.0", + "symfony/css-selector": "^6.4 || ^7.3 || ^8.0", + "symfony/expression-language": "^6.4 || ^7.3 || ^8.0", + "symfony/security-bundle": "^6.4 || ^7.3 || ^8.0", + "symfony/yaml": "^6.4 || ^7.3 || ^8.0" }, "autoload": { "psr-4": { diff --git a/makefile b/makefile index 3fd5c68..2ab663b 100644 --- a/makefile +++ b/makefile @@ -3,7 +3,7 @@ clear_cache: rm -rf tests/Functional/var/cache/* test: clear_cache - vendor/bin/phpunit -c tests tests + vendor/bin/phpunit phpstan: vendor/bin/phpstan analyse -c phpstan.neon -l max src/ diff --git a/tests/phpunit.xml b/phpunit.xml similarity index 100% rename from tests/phpunit.xml rename to phpunit.xml