Skip to content

Commit

Permalink
feat: drop support for PHP < 8.1, (#6)
Browse files Browse the repository at this point in the history
bump min versions
add ci testruns for PHP 8.3 and 8.4

Co-authored-by: Christopher Georg <[email protected]>
  • Loading branch information
Chris53897 and Chris8934 authored Jul 24, 2024
1 parent 6778a03 commit 01778e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 8.1, 8.2]
php: [8.1, 8.2, 8.3, 8.4]
deps: [highest]
include:
- php: 8.0
- php: 8.1
deps: lowest
steps:
- uses: zenstruck/.github@php-test-symfony
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}
],
"require": {
"php": ">=8.0"
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/var-dumper": "^5.4|^6.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6.19",
"symfony/phpunit-bridge": "^7.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0",
"twig/twig": "^2.0|^3.0"
},
"config": {
Expand Down

0 comments on commit 01778e4

Please sign in to comment.