Skip to content

Commit

Permalink
Merge pull request #14 from robiningelbrecht/support-symfony-7
Browse files Browse the repository at this point in the history
Support symfony 7
  • Loading branch information
robiningelbrecht committed Dec 7, 2023
2 parents e458aab + 2de8590 commit 8b83c59
Show file tree
Hide file tree
Showing 6 changed files with 361 additions and 314 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,26 @@ jobs:
test-suite:
name: PHPStan, PHPcs & Testsuite
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]

steps:
# https://github.com/marketplace/actions/setup-php-action
- name: Setup PHP 8.1 with Xdebug 3.x
- name: Setup PHP ${{ matrix.php-versions }} with Xdebug 3.x
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: ${{ matrix.php-versions }}
coverage: xdebug

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

- name: Remove composer.lock
run: |
rm composer.lock
- name: Install dependencies
run: composer install --prefer-dist

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"ext-simplexml": "*",
"ext-xmlreader": "*",
"phpunit/phpunit": "^10.3",
"symfony/console": "^5.4||^6.2"
"symfony/console": "^5.4||^6.2||^7.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 8b83c59

Please sign in to comment.