Skip to content

Commit

Permalink
allow the bundle to be used with Symfony 7
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Oct 27, 2023
1 parent 51a045d commit 43d1b8a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ jobs:
- php-version: '8.2'
composer-options: '--prefer-stable'
symfony-version: '6.4.*'
- php-version: '8.2'
composer-options: '--prefer-stable'
symfony-version: '7.0.*'

steps:
- name: 'Check out'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CHANGELOG
0.3.0
-----

* add Symfony 7 support
* drop support for Symfony 5.3
* drop support for PHP 7.2 and 7.3

Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
"require": {
"php": "^7.4||^8.0",
"psr/container": "^1.0||^2.0",
"symfony/config": "^5.4||^6.0",
"symfony/dependency-injection": "^5.4||^6.0",
"symfony/form": "^5.4||^6.0",
"symfony/framework-bundle": "^5.4||^6.0",
"symfony/http-kernel": "^5.4||^6.0",
"symfony/options-resolver": "^5.4||^6.0",
"symfony/property-access": "^5.4.5||^6.0.5"
"symfony/config": "^5.4||^6.0||^7.0",
"symfony/dependency-injection": "^5.4||^6.0||^7.0",
"symfony/form": "^5.4||^6.0||^7.0",
"symfony/framework-bundle": "^5.4||^6.0||^7.0",
"symfony/http-kernel": "^5.4||^6.0||^7.0",
"symfony/options-resolver": "^5.4||^6.0||^7.0",
"symfony/property-access": "^5.4.5||^6.0.5||^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.7.11",
"symfony/phpunit-bridge": "^5.4",
"symfony/translation": "^5.4||^6.0"
"symfony/phpunit-bridge": "^5.4||^6.4||^7.0",
"symfony/translation": "^5.4||^6.0||^7.0"
},
"conflict": {
"sensiolabs-de/rich-model-forms-bundle": "0.8.*"
Expand All @@ -50,7 +50,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "0.2-dev"
"dev-main": "0.3-dev"
}
}
}

0 comments on commit 43d1b8a

Please sign in to comment.