Skip to content

Commit e5dfde7

Browse files
authored
Support for Symfony 6.0 (#7)
1 parent a0835a7 commit e5dfde7

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ jobs:
9292
symfony-version:
9393
- '5.3'
9494
- '5.4'
95+
- '6.0'
9596
steps:
9697
- name: 'Checkout Code'
9798
uses: actions/checkout@v2

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
"php": ">=7.4",
1313
"ext-ctype": "*",
1414
"ext-iconv": "*",
15-
"symfony/console": "^5.3",
15+
"symfony/console": "^5.4 || ^6.0",
1616
"symfony/flex": "^1.17",
17-
"symfony/framework-bundle": "^5.3",
18-
"symfony/twig-bundle": "^5.3",
19-
"symfony/yaml": "^5.3",
20-
"symfony/asset": "^5.3",
21-
"symfony/finder": "^5.3",
17+
"symfony/framework-bundle": "^5.4 || ^6.0",
18+
"symfony/twig-bundle": "^5.4 || ^6.0",
19+
"symfony/yaml": "^5.4 || ^6.0",
20+
"symfony/asset": "^5.4 || ^6.0",
21+
"symfony/finder": "^5.4 || ^6.0",
2222
"symfony/polyfill-ctype": "^1.13",
2323
"twig/twig": "^3.3"
2424
},
@@ -30,9 +30,9 @@
3030
"phpstan/phpstan-symfony": "^1.0",
3131
"thecodingmachine/phpstan-strict-rules": "^1.0",
3232
"phpunit/phpunit": "^9.5",
33-
"symfony/dotenv": "^5.3",
34-
"symfony/filesystem": "^5.3",
35-
"symfony/phpunit-bridge": "^5.3"
33+
"symfony/dotenv": "^5.4 || ^6.0",
34+
"symfony/filesystem": "^5.4 || ^6.0",
35+
"symfony/phpunit-bridge": "^5.4 || ^6.0"
3636
},
3737
"autoload": {
3838
"psr-4": {

0 commit comments

Comments
 (0)