Skip to content

Commit 8b83c59

Browse files
Merge pull request #14 from robiningelbrecht/support-symfony-7
Support symfony 7
2 parents e458aab + 2de8590 commit 8b83c59

File tree

6 files changed

+361
-314
lines changed

6 files changed

+361
-314
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,26 @@ jobs:
66
test-suite:
77
name: PHPStan, PHPcs & Testsuite
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
php-versions: [ '8.1', '8.2' ]
912

1013
steps:
1114
# https://github.com/marketplace/actions/setup-php-action
12-
- name: Setup PHP 8.1 with Xdebug 3.x
15+
- name: Setup PHP ${{ matrix.php-versions }} with Xdebug 3.x
1316
uses: shivammathur/setup-php@v2
1417
with:
15-
php-version: '8.1'
18+
php-version: ${{ matrix.php-versions }}
1619
coverage: xdebug
1720

1821
# https://github.com/marketplace/actions/checkout
1922
- name: Checkout code
2023
uses: actions/checkout@v3
2124

25+
- name: Remove composer.lock
26+
run: |
27+
rm composer.lock
28+
2229
- name: Install dependencies
2330
run: composer install --prefer-dist
2431

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"ext-simplexml": "*",
2121
"ext-xmlreader": "*",
2222
"phpunit/phpunit": "^10.3",
23-
"symfony/console": "^5.4||^6.2"
23+
"symfony/console": "^5.4||^6.2||^7.0"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)