Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit d397fd9

Browse files
Added Laravel 11 support
1 parent 106966b commit d397fd9

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

Diff for: .github/workflows/phpunit.yml

+20-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [ "7.3", "7.4", "8.0", "8.1", "8.2" ]
15-
laravel: [ "7.0", "8.0", "9.0", "10.0" ]
14+
php: [ "7.3", "7.4", "8.0", "8.1", "8.2", "8.3" ]
15+
laravel: [ "7.0", "8.0", "9.0", "10.0", "11.0" ]
1616
exclude:
1717
- laravel: "7.0"
1818
php: "8.0"
@@ -23,9 +23,15 @@ jobs:
2323
- laravel: "7.0"
2424
php: "8.2"
2525

26+
- laravel: "7.0"
27+
php: "8.3"
28+
2629
- laravel: "8.0"
2730
php: "8.2"
2831

32+
- laravel: "8.0"
33+
php: "8.3"
34+
2935
- laravel: "9.0"
3036
php: "7.3"
3137

@@ -41,6 +47,18 @@ jobs:
4147
- laravel: "10.0"
4248
php: "8.0"
4349

50+
- laravel: "11.0"
51+
php: "7.3"
52+
53+
- laravel: "11.0"
54+
php: "7.4"
55+
56+
- laravel: "11.0"
57+
php: "8.0"
58+
59+
- laravel: "11.0"
60+
php: "8.1"
61+
4462
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} ${{ matrix.prefer }}
4563

4664
steps:

Diff for: composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
"require": {
4343
"php": "^7.3 || ^8.0",
4444
"dragon-code/env-sync": "^3.4.4 || ^4.0",
45-
"illuminate/console": "^7.0 || ^8.0 || ^9.0 || ^10.0",
46-
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0"
45+
"illuminate/console": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
46+
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
4747
},
4848
"require-dev": {
4949
"mockery/mockery": "^1.3.1",
50-
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0",
51-
"phpunit/phpunit": "^9.6"
50+
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
51+
"phpunit/phpunit": "^9.6 || ^11.0"
5252
},
5353
"minimum-stability": "stable",
5454
"prefer-stable": true,

0 commit comments

Comments
 (0)