Skip to content

Commit 59b4bff

Browse files
committed
feat: allow Symfony 6 installation
1 parent 494646f commit 59b4bff

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
runs-on: ubuntu-18.04
1919
strategy:
2020
matrix:
21-
version: ['7.1', 7.2', '7.3', '7.4', '8.0']
21+
version: ['7.1', '7.2', '7.3', '7.4', '8.0']
2222
flags: ['', '--prefer-lowest']
23+
fail-fast: false
2324
steps:
2425
- uses: actions/checkout@master
2526
- uses: shivammathur/setup-php@v2

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
"prefer-stable": true,
1010
"require": {
1111
"php": ">=7.1.3",
12-
"symfony/config": "^4.4|^5.0",
13-
"symfony/yaml": "^4.4|^5.0",
14-
"symfony/routing": "^4.4|^5.0",
15-
"symfony/expression-language": "^4.4|^5.0",
16-
"symfony/security-core": "^4.4|^5.0"
12+
"symfony/config": "^4.4|^5.0|^6.0",
13+
"symfony/yaml": "^4.4|^5.0|^6.0",
14+
"symfony/routing": "^4.4|^5.0|^6.0",
15+
"symfony/expression-language": "^4.4|^5.0|^6.0",
16+
"symfony/security-core": "^4.4|^5.0|^6.0"
1717
},
1818
"require-dev": {
1919
"atoum/atoum": "^3.4|^4.0",
2020
"friendsofphp/php-cs-fixer": "^2.19",
2121
"m6web/symfony2-coding-standard": "~1.2",
2222
"m6web/php-cs-fixer-config": "^1.0",
23-
"symfony/http-foundation": "^4.4|^5.0"
23+
"symfony/http-foundation": "^4.4|^5.0|^6.0"
2424
},
2525
"extra": {
2626
"branch-alias": {

0 commit comments

Comments
 (0)