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 31, 2023
1 parent 8f81e74 commit b1346fc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,18 @@ 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.*'
- php-version: '8.3'
composer-options: '--prefer-stable'
symfony-version: '6.3.*'
- php-version: '8.3'
composer-options: '--prefer-stable'
symfony-version: '6.4.*'
- php-version: '8.3'
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.4.0
-----

* add Symfony 7 support
* the following classes are internal and can break BC at any time:
* `RegisterExceptionHandlersPass`
* `RichModelFormsExtension`
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"require": {
"php": "^8.1",
"psr/container": "^1.0||^2.0",
"symfony/config": "^6.3",
"symfony/dependency-injection": "^6.3",
"symfony/form": "^6.3",
"symfony/framework-bundle": "^6.3",
"symfony/http-kernel": "^6.3",
"symfony/options-resolver": "^6.3",
"symfony/property-access": "^6.3"
"symfony/config": "^6.3||^7.0",
"symfony/dependency-injection": "^6.3||^7.0",
"symfony/form": "^6.3||^7.0",
"symfony/framework-bundle": "^6.3||^7.0",
"symfony/http-kernel": "^6.3||^7.0",
"symfony/options-resolver": "^6.3||^7.0",
"symfony/property-access": "^6.3||^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.3",
"symfony/translation": "^6.3"
"symfony/phpunit-bridge": "^6.3||^7.0",
"symfony/translation": "^6.3||^7.0"
},
"conflict": {
"sensiolabs-de/rich-model-forms-bundle": "0.8.*"
Expand Down

0 comments on commit b1346fc

Please sign in to comment.