Skip to content

Commit 0a2e513

Browse files
committed
Add support for symfony 8
1 parent 5973084 commit 0a2e513

4 files changed

Lines changed: 523 additions & 415 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ jobs:
1313
uses: "nucleos/actions/.github/workflows/continuous-integration.yml@main"
1414
with:
1515
PHP_EXTENSIONS: "mbstring"
16+
SYMFONY_VERSIONS: "7.4,8.0"
1617
secrets:
1718
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@
4343
"psr/http-client": "^1.0",
4444
"psr/http-message": "^1.0 || ^2.0",
4545
"psr/log": "^1.0 || ^2.0 || ^3.0",
46-
"symfony/config": "^6.4 || ^7.0",
47-
"symfony/dependency-injection": "^6.4 || ^7.0",
48-
"symfony/expression-language": "^6.4 || ^7.0",
49-
"symfony/framework-bundle": "^6.4 || ^7.0",
50-
"symfony/http-foundation": "^6.4 || ^7.0",
51-
"symfony/http-kernel": "^6.4 || ^7.0"
46+
"symfony/config": "^7.4 || ^8.0",
47+
"symfony/dependency-injection": "^7.4 || ^8.0",
48+
"symfony/expression-language": "^7.4 || ^8.0",
49+
"symfony/framework-bundle": "^7.4 || ^8.0",
50+
"symfony/http-foundation": "^7.4 || ^8.0",
51+
"symfony/http-kernel": "^7.4 || ^8.0"
5252
},
5353
"require-dev": {
5454
"ergebnis/composer-normalize": "^2.0.1",
5555
"nyholm/psr7": "^1.0",
56-
"symfony/browser-kit": "^6.4 || ^7.0",
57-
"symfony/http-client": "^6.4 || ^7.0"
56+
"symfony/browser-kit": "^7.4 || ^8.0",
57+
"symfony/http-client": "^7.4 || ^8.0"
5858
},
5959
"suggest": {
6060
"cache/adapter-bundle": "Symfony cache adapter",

vendor-bin/tools/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"phpstan/phpstan-strict-rules": "^2.0.0",
1515
"phpstan/phpstan-symfony": "^2.0.0",
1616
"phpunit/phpunit": "^12.0.0",
17-
"symfony/phpunit-bridge": "^7.0.0"
17+
"symfony/phpunit-bridge": "^7.4.0"
1818
},
1919
"config": {
2020
"allow-plugins": {
@@ -24,7 +24,7 @@
2424
},
2525
"extra": {
2626
"symfony": {
27-
"require": "6.4.*"
27+
"require": "7.4.*"
2828
}
2929
}
3030
}

0 commit comments

Comments
 (0)