Skip to content

Commit 07de3e2

Browse files
Merge pull request #49 from TheDragonCode/andrey-helldar-patch-2
Added Laravel 13 compatibility
2 parents f6f11ad + a171b32 commit 07de3e2

2 files changed

Lines changed: 25 additions & 8 deletions

File tree

.github/workflows/phpunit.yml

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
13-
laravel: [ "6.0", "7.0", "8.0", "9.0", "10.0", "11.0", "12.0" ]
12+
php: [ "8.0", "8.1", "8.2", "8.3", "8.4", "8.5" ]
13+
laravel: [ "6.0", "7.0", "8.0", "9.0", "10.0", "11.0", "12.0", "13.0" ]
1414
exclude:
1515
- laravel: "6.0"
1616
php: "8.1"
@@ -20,6 +20,8 @@ jobs:
2020
php: "8.3"
2121
- laravel: "6.0"
2222
php: "8.4"
23+
- laravel: "6.0"
24+
php: "8.5"
2325

2426
- laravel: "7.0"
2527
php: "8.1"
@@ -29,21 +31,29 @@ jobs:
2931
php: "8.3"
3032
- laravel: "7.0"
3133
php: "8.4"
34+
- laravel: "7.0"
35+
php: "8.5"
3236

3337
- laravel: "8.0"
3438
php: "8.2"
3539
- laravel: "8.0"
3640
php: "8.3"
3741
- laravel: "8.0"
3842
php: "8.4"
43+
- laravel: "8.0"
44+
php: "8.5"
3945

4046
- laravel: "9.0"
4147
php: "8.3"
4248
- laravel: "9.0"
4349
php: "8.4"
50+
- laravel: "9.0"
51+
php: "8.5"
4452

4553
- laravel: "10.0"
4654
php: "8.0"
55+
- laravel: "10.0"
56+
php: "8.5"
4757

4858
- laravel: "11.0"
4959
php: "8.0"
@@ -55,6 +65,13 @@ jobs:
5565
- laravel: "12.0"
5666
php: "8.1"
5767

68+
- laravel: "13.0"
69+
php: "8.0"
70+
- laravel: "13.0"
71+
php: "8.1"
72+
- laravel: "13.0"
73+
php: "8.2"
74+
5875
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
5976

6077
services:
@@ -82,7 +99,7 @@ jobs:
8299
coverage: xdebug
83100

84101
- name: Install dependencies
85-
run: composer require --dev laravel/framework:^${{ matrix.laravel }}
102+
run: composer require --no-security-blocking --dev laravel/framework:^${{ matrix.laravel }}
86103

87104
- name: Execute tests
88105
run: sudo vendor/bin/phpunit

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@
4040
"dragon-code/simple-dto": "^2.3",
4141
"dragon-code/support": "^6.0",
4242
"fig/http-message-util": "^1.1",
43-
"illuminate/console": ">=6.0 <13.0",
44-
"illuminate/database": ">=6.0 <13.0",
45-
"illuminate/support": ">=6.0 <13.0",
43+
"illuminate/console": ">=6.0 <14.0",
44+
"illuminate/database": ">=6.0 <14.0",
45+
"illuminate/support": ">=6.0 <14.0",
4646
"lmc/http-constants": "^1.2",
4747
"nesbot/carbon": "^1.20 || ^2.0 || ^3.0",
4848
"psr/http-message": "^1.0.1 || ^2.0"
4949
},
5050
"require-dev": {
5151
"ext-json": "*",
5252
"mockery/mockery": "^1.3.1",
53-
"orchestra/testbench": ">=4.0 <11.0",
53+
"orchestra/testbench": ">=4.0 <12.0",
5454
"phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0"
5555
},
5656
"conflict": {
@@ -89,4 +89,4 @@
8989
]
9090
}
9191
}
92-
}
92+
}

0 commit comments

Comments
 (0)