Skip to content

Commit 50df84e

Browse files
authored
Merge pull request #53 from binafy/upgrade
[1.x] Support Laravel 12
2 parents c3e6eb8 + c33df6a commit 50df84e

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [8.0, 8.1, 8.2, 8.3]
12-
laravel: [9.*, 10.*, 11.*]
11+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
12+
laravel: [9.*, 10.*, 11.*, 12.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 12.*
16+
testbench: 10.*
17+
pest-plugin-laravel: 3.1.0
18+
1519
- laravel: 11.*
1620
testbench: 9.*
1721
pest-plugin-laravel: 2.3.0
@@ -25,15 +29,27 @@ jobs:
2529
pest-plugin-laravel: 1.4.0
2630

2731
exclude:
32+
- laravel: 12.*
33+
php: 8.1
34+
35+
- laravel: 12.*
36+
php: 8.0
37+
2838
- laravel: 11.*
2939
php: 8.1
30-
40+
3141
- laravel: 11.*
3242
php: 8.0
3343

44+
- laravel: 10.*
45+
php: 8.4
46+
3447
- laravel: 10.*
3548
php: 8.0
3649

50+
- laravel: 9.*
51+
php: 8.4
52+
3753
- laravel: 9.*
3854
php: 8.3
3955

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"minimum-stability": "stable",
2424
"authors": [
2525
{
26-
"name": "milwad-dev",
26+
"name": "Milwad Khosravi",
2727
"email": "milwad.dev@gmail.com",
2828
"role": "author",
2929
"homepage": "https://github.com/milwad-dev"
@@ -46,11 +46,11 @@
4646
},
4747
"require": {
4848
"php": "^8.0",
49-
"laravel/framework": "^9.0|^10.0|^11.0"
49+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
5050
},
5151
"require-dev": {
52-
"pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0",
53-
"orchestra/testbench": "^7.0|^8.0|^9.0"
52+
"pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0|^3.0.0",
53+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0"
5454
},
5555
"config": {
5656
"sort-packages": true,

0 commit comments

Comments
 (0)