Skip to content

Commit acc2ea9

Browse files
committed
Add support for Symfony ^7.0
1 parent 7768202 commit acc2ea9

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

.github/workflows/quality.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php-version: ['8.1']
14+
php-version: ['8.1', '8.3']
1515

1616
steps:
1717
- name: 'Setup PHP'
@@ -35,7 +35,7 @@ jobs:
3535

3636
strategy:
3737
matrix:
38-
php-version: ['8.1']
38+
php-version: ['8.1', '8.3']
3939

4040
steps:
4141
- name: 'Setup PHP'

.github/workflows/tests.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-version: ['8.1']
17-
symfony-require: ['5.0.*', '5.1.*', '5.2.*', '5.3.*', '5.4.*', '6.0.*', '6.1.*', '6.2.*']
16+
php-version: ['8.1', '8.2']
17+
symfony-require: ['5.0.*', '5.4.*', '6.0.*', '6.4.*']
18+
include:
19+
- php-version: '8.3'
20+
symfony-require: '7.0.*'
1821

1922
steps:
2023
- name: 'Setup PHP'
@@ -38,7 +41,7 @@ jobs:
3841

3942
strategy:
4043
matrix:
41-
php-version: ['8.1']
44+
php-version: ['8.1', '8.3']
4245

4346
steps:
4447
- name: 'Setup PHP'

composer.json

+8-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"ext-intl": "*",
1616
"doctrine/collections": "^1.0|^2.0",
1717
"doctrine/inflector": "^2.0",
18-
"symfony/expression-language": "^5.0|^6.0",
18+
"symfony/expression-language": "^5.0|^6.0|^7.0",
1919
"zenstruck/foundry": "^1.0"
2020
},
2121
"require-dev": {
@@ -26,13 +26,13 @@
2626
"phpstan/phpstan": "^1.10",
2727
"phpunit/phpunit": "^9.6",
2828
"squizlabs/php_codesniffer": "^3.7",
29-
"symfony/console": "^6.2",
30-
"symfony/dotenv": "^6.2",
31-
"symfony/framework-bundle": "^6.2",
32-
"symfony/phpunit-bridge": "^6.2",
33-
"symfony/runtime": "^6.2",
34-
"symfony/var-dumper": "^6.2",
35-
"symfony/yaml": "^6.2"
29+
"symfony/console": "^5.0|^6.0|^7.0",
30+
"symfony/dotenv": "^5.0|^6.0|^7.0",
31+
"symfony/framework-bundle": "^5.0|^6.0|^7.0",
32+
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
33+
"symfony/runtime": "^5.0|^6.0|^7.0",
34+
"symfony/var-dumper": "^5.0|^6.0|^7.0",
35+
"symfony/yaml": "^5.0|^6.0|^7.0"
3636
},
3737
"autoload": {
3838
"psr-4": {
@@ -43,7 +43,6 @@
4343
"psr-4": {
4444
"Presta\\BehatEvaluator\\Tests\\Application\\": "tests/Application/src/",
4545
"Presta\\BehatEvaluator\\Tests\\Behat\\": "tests/Behat/",
46-
"Presta\\BehatEvaluator\\Tests\\Extension\\": "tests/Extension/",
4746
"Presta\\BehatEvaluator\\Tests\\Integration\\": "tests/Integration/",
4847
"Presta\\BehatEvaluator\\Tests\\Resources\\": "tests/Resources/",
4948
"Presta\\BehatEvaluator\\Tests\\Unit\\": "tests/Unit/"

0 commit comments

Comments
 (0)