Skip to content

Commit

Permalink
Added support for Symfony 7. (#9)
Browse files Browse the repository at this point in the history
Updated PHPUnit to 10 (easy to do since there are no unit tests yet)
  • Loading branch information
TimoBakx authored Nov 29, 2023
1 parent 7dc18b9 commit 3d6a02e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"require": {
"php": "^8.1",
"api-platform/core": "^3.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^6.0",
"symfony/config": "^6.0"
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/http-foundation": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/routing": "^6.0|^7.0",
"symfony/config": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^10.4",
"roave/security-advisories": "dev-latest"
},
"autoload": {
Expand All @@ -32,5 +32,8 @@
"psr-4": {
"Linku\\ApiDocumentationBundle\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}

0 comments on commit 3d6a02e

Please sign in to comment.