Skip to content

Commit 7544543

Browse files
Merge pull request #17 from TheDragonCode/2.x
Added support for Symfony 7
2 parents 0469d29 + 863edbd commit 7544543

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/phpunit.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.1", "8.2" ]
13-
symfony: [ "5.3", "6.0" ]
12+
php: [ "8.1", "8.2", "8.3" ]
13+
symfony: [ "5.3", "6.0", "7.0" ]
14+
exclude:
15+
- php: "8.1"
16+
symfony: "7.0"
1417

1518
name: PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} ${{ matrix.prefer }}
1619

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
"require": {
4444
"php": "^8.1",
4545
"dragon-code/support": "^6.10",
46-
"symfony/console": "^5.3 || ^6.0"
46+
"symfony/console": "^5.3 || ^6.0 || ^7.0"
4747
},
4848
"require-dev": {
4949
"phpunit/phpunit": "^10.0",
50-
"symfony/var-dumper": "^5.3 || ^6.0"
50+
"symfony/var-dumper": "^5.3 || ^6.0 || ^7.0"
5151
},
5252
"minimum-stability": "stable",
5353
"prefer-stable": true,

0 commit comments

Comments
 (0)