Skip to content

Commit

Permalink
Declare Symfony 7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude committed Mar 28, 2024
1 parent 36da7b8 commit d6b8b7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
matrix:
include:
- { php-version: 8.1, symfony-locked-version: none, dependency-version: prefer-lowest }
- { php-version: 8.2, symfony-locked-version: 6.4.*, dependency-version: prefer-stable }
- { php-version: 8.3, symfony-locked-version: none, dependency-version: prefer-stable }
name: PHPUnit (PHP ${{matrix.php-version}}, Symfony Version Lock ${{ matrix.symfony-locked-version }}, ${{ matrix.dependency-version }})
steps:
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@

"require": {
"php": "^8.1",
"symfony/config": "^5.0 | ^6.0",
"symfony/dependency-injection": "^5.0 | ^6.0",
"symfony/config": "^5.0 | ^6.0 | ^7.0",
"symfony/dependency-injection": "^5.0 | ^6.0 | ^7.0",
"symfony/deprecation-contracts": "^2.0|^3.0",
"symfony/http-foundation": "^5.0 | ^6.0",
"symfony/http-kernel": "^5.0 | ^6.0"
"symfony/http-foundation": "^5.0 | ^6.0 | ^7.0",
"symfony/http-kernel": "^5.0 | ^6.0 | ^7.0"
},

"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^6.0"
"symfony/phpunit-bridge": "^6.0 | ^7.0"
},

"suggest": {
Expand Down

0 comments on commit d6b8b7a

Please sign in to comment.