Skip to content

Commit

Permalink
build: drop Laravel <10 and PHP <8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo committed Mar 27, 2024
1 parent 8d0061d commit c799760
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 35 deletions.
32 changes: 2 additions & 30 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,38 +11,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
php: ['8.1', '8.2', '8.3']
laravel: ['10.*', '11.*']
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: 6.*
php: '8.1'
- laravel: 6.*
php: '8.2'
- laravel: 6.*
php: '8.3'
- laravel: 7.*
php: '8.1'
- laravel: 7.*
php: '8.2'
- laravel: 7.*
php: '8.3'
- laravel: 8.*
php: '8.2'
- laravel: 8.*
php: '8.3'
- laravel: 9.*
php: '7.4'
- laravel: 9.*
php: '8.3'
- laravel: 10.*
php: '7.4'
- laravel: 10.*
php: '8.0'
- laravel: 11.*
php: '7.4'
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
"php": "^8.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.15",
Expand Down

0 comments on commit c799760

Please sign in to comment.