Skip to content

Commit 3e9871e

Browse files
authored
Merge pull request #104 from milwad-dev/upgrade
[1.x] Support Laravel 12
2 parents 8d8d809 + ffe3ee5 commit 3e9871e

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 21 additions & 2 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+
phpunit: 11.*
18+
1519
- laravel: 11.*
1620
testbench: 9.*
1721
phpunit: 11.*
@@ -25,6 +29,15 @@ jobs:
2529
phpunit: 10.*
2630

2731
exclude:
32+
- laravel: 12.*
33+
php: 8.1
34+
35+
- laravel: 12.*
36+
php: 8.0
37+
38+
- laravel: 11.*
39+
php: 8.4
40+
2841
- laravel: 11.*
2942
php: 8.1
3043

@@ -34,6 +47,12 @@ jobs:
3447
- laravel: 10.*
3548
php: 8.0
3649

50+
- laravel: 10.*
51+
php: 8.0
52+
53+
- laravel: 9.*
54+
php: 8.4
55+
3756
- laravel: 9.*
3857
php: 8.3
3958

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@
1818
"license": "MIT",
1919
"authors": [
2020
{
21-
"name": "milwad khosravi",
21+
"name": "Milwad Khosravi",
2222
"email": "[email protected]",
2323
"homepage": "https://github.com/milwad-dev",
24-
"role": "Developer"
24+
"role": "Author"
2525
}
2626
],
2727
"require": {
2828
"php": "^8.0",
29-
"laravel/framework": "9.*|10.*|11.*",
29+
"laravel/framework": "9.*|10.*|11.*|12.*",
3030
"ext-bcmath": "*",
3131
"ext-ctype": "*"
3232
},
3333
"require-dev": {
3434
"imanghafoori/php-imports-analyzer": "1.0.*",
35-
"orchestra/testbench": "^7.0|^8.0|^9.0",
35+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
3636
"phpunit/phpunit": "^9.0|^10.0|^11.0"
3737
},
3838
"autoload": {

0 commit comments

Comments
 (0)