Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
Add symfony 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Dec 8, 2021
1 parent 6104e26 commit 67742df
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,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
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ jobs:

symfony:
- 5.4
- 6.0

steps:
- name: "Checkout"
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/cache": "^1.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"sonata-project/block-bundle": "^3.21 || ^4.5.1",
"sonata-project/form-extensions": "^1.0",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/expression-language": "^5.4",
"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/twig-bundle": "^5.4"
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/expression-language": "^5.4 || ^6.0",
"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/twig-bundle": "^5.4 || ^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0.1",
"nyholm/psr7": "^1.0",
"symfony/browser-kit": "^4.4 || ^5.0",
"symfony/cache": "^5.4",
"symfony/http-client": "^5.4"
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/cache": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 67742df

Please sign in to comment.