Skip to content

Commit

Permalink
Add symfony 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Dec 29, 2021
1 parent 054276c commit 00cb1d1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 20 deletions.
4 changes: 4 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ branches:
- "Static Code Analysis (8.1)"
- "Test (PHP 8, symfony 5.4, lowest)"
- "Test (PHP 8, symfony 5.4, highest)"
- "Test (PHP 8, symfony 6, lowest)"
- "Test (PHP 8, symfony 6, highest)"
- "Test (PHP 8.1, symfony 5.4, lowest)"
- "Test (PHP 8.1, symfony 5.4, highest)"
- "Test (PHP 8.1, symfony 6, lowest)"
- "Test (PHP 8.1, symfony 6, highest)"
- "Code Coverage (8.1)"
- "Mutation Tests (8.1)"
strict: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ jobs:
- highest

symfony:
- 5.4
- 5.4
- 6.0

steps:
- name: "Checkout"
Expand Down
39 changes: 20 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,29 @@
"php": "^8.0",
"ext-json": "*",
"nucleos/user-bundle": "^2.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"sonata-project/admin-bundle": "^3.90 || ^4.0",
"sonata-project/doctrine-extensions": "^1.5.1",
"symfony/asset": "^5.4",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/asset": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0",
"symfony/form": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/options-resolver": "^5.4",
"symfony/routing": "^5.4",
"symfony/form": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/options-resolver": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0",
"symfony/security-acl": "^3.0",
"symfony/security-core": "^5.4",
"symfony/security-csrf": "^5.4",
"symfony/security-http": "^5.4",
"symfony/translation": "^5.4",
"symfony/security-core": "^5.4 || ^6.0",
"symfony/security-csrf": "^5.4 || ^6.0",
"symfony/security-http": "^5.4 || ^6.0",
"symfony/translation": "^5.4 || ^6.0",
"symfony/translation-contracts": "^1.0 || ^2.0",
"symfony/twig-bridge": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/twig-bridge": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0",
"twig/extra-bundle": "^3.0",
"twig/twig": "^2.14 || ^3.1"
},
Expand All @@ -70,9 +71,9 @@
"ergebnis/composer-normalize": "^2.0.1",
"knplabs/knp-menu": "^2.3 || ^3.0",
"sonata-project/doctrine-orm-admin-bundle": "^3.13 || ^4.0",
"symfony/browser-kit": "^5.4",
"symfony/doctrine-bridge": "^5.4",
"symfony/intl": "^5.3"
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/doctrine-bridge": "^5.4 || ^6.0",
"symfony/intl": "^5.4 || ^6.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<1.12",
Expand Down

0 comments on commit 00cb1d1

Please sign in to comment.