Skip to content

Commit c799760

Browse files
committed
build: drop Laravel <10 and PHP <8.1 support
1 parent 8d0061d commit c799760

File tree

2 files changed

+7
-35
lines changed

2 files changed

+7
-35
lines changed

.github/workflows/tests.yml

+2-30
Original file line numberDiff line numberDiff line change
@@ -11,38 +11,10 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
15-
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
14+
php: ['8.1', '8.2', '8.3']
15+
laravel: ['10.*', '11.*']
1616
stability: [prefer-lowest, prefer-stable]
1717
exclude:
18-
- laravel: 6.*
19-
php: '8.1'
20-
- laravel: 6.*
21-
php: '8.2'
22-
- laravel: 6.*
23-
php: '8.3'
24-
- laravel: 7.*
25-
php: '8.1'
26-
- laravel: 7.*
27-
php: '8.2'
28-
- laravel: 7.*
29-
php: '8.3'
30-
- laravel: 8.*
31-
php: '8.2'
32-
- laravel: 8.*
33-
php: '8.3'
34-
- laravel: 9.*
35-
php: '7.4'
36-
- laravel: 9.*
37-
php: '8.3'
38-
- laravel: 10.*
39-
php: '7.4'
40-
- laravel: 10.*
41-
php: '8.0'
42-
- laravel: 11.*
43-
php: '7.4'
44-
- laravel: 11.*
45-
php: '8.0'
4618
- laravel: 11.*
4719
php: '8.1'
4820

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^7.4|^8.0",
21-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
23-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
20+
"php": "^8.1",
21+
"illuminate/console": "^10.0|^11.0",
22+
"illuminate/contracts": "^10.0|^11.0",
23+
"illuminate/database": "^10.0|^11.0",
24+
"illuminate/support": "^10.0|^11.0"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "^1.15",

0 commit comments

Comments
 (0)