Skip to content

Commit 1a3ef5a

Browse files
authored
Merge pull request #49 from milwad-dev/upgrade
[1.x] Support Laravel 12
2 parents 3d59dac + 207a9db commit 1a3ef5a

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

.github/workflows/run-tests.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [windows-latest, ubuntu-latest]
12-
php: [8.0, 8.1, 8.2, 8.3]
13-
laravel: [9.*, 10.*, 11.*]
12+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
13+
laravel: [9.*, 10.*, 11.*, 12.*]
1414
dependency-version: [prefer-stable]
1515
include:
16+
- laravel: 12.*
17+
testbench: 10.*
18+
phpunit: 11.*
19+
1620
- laravel: 11.*
1721
testbench: 9.*
1822
phpunit: 11.*
@@ -26,15 +30,27 @@ jobs:
2630
phpunit: 10.*
2731

2832
exclude:
33+
- laravel: 12.*
34+
php: 8.1
35+
36+
- laravel: 12.*
37+
php: 8.0
38+
2939
- laravel: 11.*
3040
php: 8.1
3141

3242
- laravel: 11.*
3343
php: 8.0
3444

45+
- laravel: 10.*
46+
php: 8.4
47+
3548
- laravel: 10.*
3649
php: 8.0
3750

51+
- laravel: 9.*
52+
php: 8.4
53+
3854
- laravel: 9.*
3955
php: 8.3
4056

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": "milwad khosravi",
13+
"name": "Milwad Khosravi",
1414
"email": "milwad.dev@gmail.com",
1515
"homepage": "https://github.com/milwad-dev",
16-
"role": "Developer"
16+
"role": "Author"
1717
}
1818
],
1919
"require": {
2020
"php": "^8.0",
21-
"binafy/laravel-stub": "^1.0",
21+
"binafy/laravel-stub": "^1.1",
2222
"doctrine/dbal": "^3.8|4.*",
23-
"laravel/framework": "^9.0|^10.0|^11.0"
23+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^7.0|^8.0|^9.0",
26+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
2727
"phpunit/phpunit": "^9.0|^10.0|^11.0"
2828
},
2929
"autoload": {

0 commit comments

Comments
 (0)