Skip to content

Commit

Permalink
Added support for Symfony 7.x.
Browse files Browse the repository at this point in the history
  • Loading branch information
bart-van-amelsvoort committed May 24, 2024
1 parent 6d56701 commit 6997159
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `changelog-enforcer` to pull request workflow.
- Installed `phpstan`.
- Installed `phpstan/phpstan-symfony` and `phpstan/phpstan-deprecation-rules`.
- Added support for Symfony 7.x.

### Changed

Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@
],
"require": {
"php": ">=8.2",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/routing": "^6.4",
"symfony/yaml": "^6.4"
"symfony/config": "^6.4 | ^7.0",
"symfony/dependency-injection": "^6.4 | ^7.0",
"symfony/event-dispatcher": "^6.4 | ^7.0",
"symfony/http-kernel": "^6.4 | ^7.0",
"symfony/routing": "^6.4 | ^7.0",
"symfony/yaml": "^6.4 | ^7.0"
},
"require-dev": {
"php-cs-fixer/shim": "3.57.2",
"phpstan/phpstan": "1.11.1",
"phpstan/phpstan-deprecation-rules": "1.2.0",
"phpstan/phpstan-symfony": "1.4.0",
"phpunit/phpunit": "^11.1",
"symfony/doctrine-bridge": "^6.4",
"symfony/form": "^6.4",
"symfony/doctrine-bridge": "^6.4 | ^7.0",
"symfony/form": "^6.4 | ^7.0",
"twig/twig": "^2.10 | ^3.0"
},
"suggest": {
Expand Down

0 comments on commit 6997159

Please sign in to comment.