Skip to content

Commit

Permalink
Support Symfony 6 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h authored Jan 3, 2022
1 parent f5b2c62 commit 0a0533a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
- '8.1'
symfony-version:
- '5.4'
- '6.0'
exclude:
- php-version: '7.4'
symfony-version: '6.0'
steps:
- name: 'Checkout Code'
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
## Requirements 🧐

* PHP 7.4, 8.0, 8.1
* Symfony 5.4
* Symfony 5.4, 6.0

## Installation 🌱

Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
"require": {
"php": ">=7.4.0",
"fresh/datetime": "^1.7",
"symfony/console": "^5.4",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/framework-bundle": "^5.4",
"symfony/http-client": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/security-core": "^5.4",
"symfony/validator": "^5.4",
"symfony/yaml": "^5.4"
"symfony/console": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/security-core": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.12",
Expand Down

0 comments on commit 0a0533a

Please sign in to comment.