Skip to content

Commit

Permalink
Allow Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Lustmored committed Dec 18, 2023
1 parent 767829c commit 4994fbf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: 8.1
coverage: none
tools: composer:v2, cs2pr, php-cs-fixer

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@ jobs:
- php: '8.0'
symfony: '5.2.*'
phpstan: .phpstan/symfony_5.neon
- php: '8.0'
symfony: '6.0.*'
- php: '8.1'
symfony: '6.4.*'
phpstan: .phpstan/symfony_6.neon
- php: '8.2'
symfony: '7.0.*'
phpstan: .phpstan/symfony_6.neon
steps:
- name: Checkout
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"ext-zlib": "*",
"php": ">=7.1.0",
"geoip2/geoip2": "~2.0",
"symfony/http-kernel": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/expression-language": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/config": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/console": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/filesystem": "~2.8|~3.0|~4.0|~5.0|~6.0"
"symfony/http-kernel": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/expression-language": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/config": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/console": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/filesystem": "~2.8|~3.0|~4.0|~5.0|~6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0|~8.0|~9.0",
Expand Down

0 comments on commit 4994fbf

Please sign in to comment.