Skip to content

Commit aa876c8

Browse files
authored
Merge pull request #177 from 5am-code/updates
Laravel 12 compatibility
2 parents 9cf529d + 92adfd7 commit aa876c8

File tree

2 files changed

+32
-14
lines changed

2 files changed

+32
-14
lines changed

.github/workflows/main.yml

+27-9
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,42 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: ["8.0", "8.1", "8.2"]
15-
laravel: ["8.*", "11.*"]
16-
testbench: ["6.*", "9.*"]
14+
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
15+
laravel: ['8.*', '11.*', '12.*']
16+
testbench: ['6.*', '9.*', '10.*']
1717
dependency-version: [prefer-stable]
1818
include:
1919
- laravel: 8.*
2020
testbench: 6.*
2121
- laravel: 11.*
2222
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2325
exclude:
2426
- laravel: 11.*
25-
php: "8.0"
27+
php: '8.0'
2628
- laravel: 11.*
27-
php: "8.1"
28-
- laravel: "8.*"
29-
testbench: "9.*"
30-
- laravel: "11.*"
31-
testbench: "6.*"
29+
php: '8.1'
30+
- laravel: 12.*
31+
php: '8.0'
32+
- laravel: 12.*
33+
php: '8.1'
34+
- laravel: 8.*
35+
testbench: 9.*
36+
- laravel: 8.*
37+
testbench: 10.*
38+
- laravel: 11.*
39+
testbench: 6.*
40+
- laravel: 11.*
41+
testbench: 10.*
42+
- laravel: 12.*
43+
php: '8.0'
44+
- laravel: 12.*
45+
php: '8.1'
46+
- laravel: 12.*
47+
testbench: 9.*
48+
- laravel: 12.*
49+
testbench: 6.*
3250

3351
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ubuntu-latest
3452

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"require": {
2828
"php": "^8.0",
2929
"guzzlehttp/guzzle": "^7.0.1",
30-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
30+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^6.0|^8.0|^9.0",
34-
"pestphp/pest": "^1.22|^2.34",
35-
"pestphp/pest-plugin-laravel": "^1.3|^2.3",
36-
"phpunit/phpunit": "^9.0|^10.5"
33+
"orchestra/testbench": "^6.0|^8.0|^9.0|^10.0",
34+
"pestphp/pest": "^1.22|^2.34|^3.7",
35+
"pestphp/pest-plugin-laravel": "^1.3|^2.3|^3.1",
36+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3"
3737
},
3838
"autoload": {
3939
"psr-4": {

0 commit comments

Comments
 (0)