Skip to content

Commit

Permalink
allow Symfony ^6.0 and ^7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vitek-rostislav committed Oct 11, 2024
1 parent 40398eb commit 63546c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"require": {
"php": "^8.1",
"symfony/form": "^4.0|^5.0"
"symfony/form": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^4.0|^5.0",
"symfony/phpunit-bridge": "^4.0|^5.0|^6.0|^7.0",
"phpstan/phpstan": "^1.8"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Extension/OrderedExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class OrderedExtension extends AbstractExtension
/**
* {@inheritdoc}
*/
protected function loadTypeExtensions()
protected function loadTypeExtensions(): array
{
return [
new OrderedFormExtension(),
Expand Down

0 comments on commit 63546c0

Please sign in to comment.