Skip to content

Commit

Permalink
Drop support for php 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvdvleuten committed Jan 19, 2023
1 parent a19b944 commit b91944b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]
php: [8.0, 8.1, 8.2]
stability: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

steps:
- name: Checkout code
Expand All @@ -30,8 +30,7 @@ jobs:
coverage: xdebug

- name: Install dependencies
run: |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest

- name: Execute tests
run: vendor/bin/phpunit
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
},
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
"symfony/http-foundation": "^4.4|^5.4|^6.0",
"symfony/http-kernel": "^4.4|^5.4|^6.0"
},
Expand Down

0 comments on commit b91944b

Please sign in to comment.