Skip to content

Commit 15ead89

Browse files
chore: allow and test Symfony 8
1 parent b05b29e commit 15ead89

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,12 @@ jobs:
5555
php-version: "8.4"
5656

5757
# Test LTS
58-
- symfony-require: "6.4.*"
58+
- symfony-require: "7.4.*"
59+
dependencies: "highest"
60+
php-version: "8.4"
61+
62+
# Test non-LTS
63+
- symfony-require: "8.0.*"
5964
dependencies: "highest"
6065
php-version: "8.4"
6166

composer.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
"doctrine/deprecations": "^1.0",
3535
"doctrine/persistence": "^4",
3636
"doctrine/sql-formatter": "^1.0.1",
37-
"symfony/cache": "^6.4 || ^7.0",
38-
"symfony/config": "^6.4 || ^7.0",
39-
"symfony/console": "^6.4 || ^7.0",
40-
"symfony/dependency-injection": "^6.4 || ^7.0",
41-
"symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
42-
"symfony/framework-bundle": "^6.4 || ^7.0",
37+
"symfony/cache": "^6.4 || ^7.0 || ^8.0",
38+
"symfony/config": "^6.4 || ^7.0 || ^8.0",
39+
"symfony/console": "^6.4 || ^7.0 || ^8.0",
40+
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
41+
"symfony/doctrine-bridge": "^6.4.3 || ^7.0.3 || ^8.0",
42+
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
4343
"symfony/service-contracts": "^3"
4444
},
4545
"require-dev": {
@@ -50,18 +50,18 @@
5050
"phpstan/phpstan-strict-rules": "^2",
5151
"phpunit/phpunit": "^12.3.10",
5252
"psr/log": "^3.0",
53-
"symfony/doctrine-messenger": "^6.4 || ^7.0",
54-
"symfony/expression-language": "^6.4 || ^7.0",
55-
"symfony/messenger": "^6.4 || ^7.0",
56-
"symfony/property-info": "^6.4 || ^7.0",
57-
"symfony/security-bundle": "^6.4 || ^7.0",
58-
"symfony/stopwatch": "^6.4 || ^7.0",
59-
"symfony/string": "^6.4 || ^7.0",
60-
"symfony/twig-bridge": "^6.4 || ^7.0",
61-
"symfony/validator": "^6.4 || ^7.0",
62-
"symfony/var-exporter": "^6.4.1 || ^7.0.1",
63-
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
64-
"symfony/yaml": "^6.4 || ^7.0",
53+
"symfony/doctrine-messenger": "^6.4 || ^7.0 || ^8.0",
54+
"symfony/expression-language": "^6.4 || ^7.0 || ^8.0",
55+
"symfony/messenger": "^6.4 || ^7.0 || ^8.0",
56+
"symfony/property-info": "^6.4 || ^7.0 || ^8.0",
57+
"symfony/security-bundle": "^6.4 || ^7.0 || ^8.0",
58+
"symfony/stopwatch": "^6.4 || ^7.0 || ^8.0",
59+
"symfony/string": "^6.4 || ^7.0 || ^8.0",
60+
"symfony/twig-bridge": "^6.4 || ^7.0 || ^8.0",
61+
"symfony/validator": "^6.4 || ^7.0 || ^8.0",
62+
"symfony/var-exporter": "^6.4.1 || ^7.0.1 || ^8.0",
63+
"symfony/web-profiler-bundle": "^6.4 || ^7.0 || ^8.0",
64+
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
6565
"twig/twig": "^3.21.1"
6666
},
6767
"conflict": {

0 commit comments

Comments
 (0)