Skip to content

Commit

Permalink
Merge pull request #1 from prestaconcept/symfony-7
Browse files Browse the repository at this point in the history
Add support for Symfony ^7.0
  • Loading branch information
J-Ben87 committed May 19, 2024
2 parents 7768202 + acc2ea9 commit 877bac8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
php-version: ['8.1']
php-version: ['8.1', '8.3']

steps:
- name: 'Setup PHP'
Expand All @@ -35,7 +35,7 @@ jobs:

strategy:
matrix:
php-version: ['8.1']
php-version: ['8.1', '8.3']

steps:
- name: 'Setup PHP'
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ jobs:

strategy:
matrix:
php-version: ['8.1']
symfony-require: ['5.0.*', '5.1.*', '5.2.*', '5.3.*', '5.4.*', '6.0.*', '6.1.*', '6.2.*']
php-version: ['8.1', '8.2']
symfony-require: ['5.0.*', '5.4.*', '6.0.*', '6.4.*']
include:
- php-version: '8.3'
symfony-require: '7.0.*'

steps:
- name: 'Setup PHP'
Expand All @@ -38,7 +41,7 @@ jobs:

strategy:
matrix:
php-version: ['8.1']
php-version: ['8.1', '8.3']

steps:
- name: 'Setup PHP'
Expand Down
17 changes: 8 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"ext-intl": "*",
"doctrine/collections": "^1.0|^2.0",
"doctrine/inflector": "^2.0",
"symfony/expression-language": "^5.0|^6.0",
"symfony/expression-language": "^5.0|^6.0|^7.0",
"zenstruck/foundry": "^1.0"
},
"require-dev": {
Expand All @@ -26,13 +26,13 @@
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"symfony/console": "^6.2",
"symfony/dotenv": "^6.2",
"symfony/framework-bundle": "^6.2",
"symfony/phpunit-bridge": "^6.2",
"symfony/runtime": "^6.2",
"symfony/var-dumper": "^6.2",
"symfony/yaml": "^6.2"
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/dotenv": "^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.0|^6.0|^7.0",
"symfony/runtime": "^5.0|^6.0|^7.0",
"symfony/var-dumper": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -43,7 +43,6 @@
"psr-4": {
"Presta\\BehatEvaluator\\Tests\\Application\\": "tests/Application/src/",
"Presta\\BehatEvaluator\\Tests\\Behat\\": "tests/Behat/",
"Presta\\BehatEvaluator\\Tests\\Extension\\": "tests/Extension/",
"Presta\\BehatEvaluator\\Tests\\Integration\\": "tests/Integration/",
"Presta\\BehatEvaluator\\Tests\\Resources\\": "tests/Resources/",
"Presta\\BehatEvaluator\\Tests\\Unit\\": "tests/Unit/"
Expand Down

0 comments on commit 877bac8

Please sign in to comment.