Skip to content

Commit

Permalink
Allow Symfony 7 (#38)
Browse files Browse the repository at this point in the history
* Allow Symfony 7

* Test on higher php version

---------

Co-authored-by: Sander van der Vlugt <[email protected]>
  • Loading branch information
svandervlugt and Sander van der Vlugt authored Apr 30, 2024
1 parent 56174e5 commit 51b867b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
php-versions: ['7.3', '7.4', '8.0', '8.2']
name: PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"minimum-stability": "stable",
"require": {
"php": "^7.3||^8.0",
"symfony/form": "^4.0||^5.0||^6.0",
"symfony/http-foundation": "^4.0||^5.0||^6.0"
"symfony/form": "^4.0||^5.0||^6.0||^7.0",
"symfony/http-foundation": "^4.0||^5.0||^6.0||^7.0"
},
"require-dev": {
"hostnet/phpcs-tool": "^9.1.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.5",
"symfony/debug": "^4.0",
"symfony/phpunit-bridge": "^4.0||^5.0||^6.0"
"symfony/phpunit-bridge": "^4.0||^5.0||^6.0||^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 51b867b

Please sign in to comment.