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

Commit 5f2df26

Browse files
Merge pull request #27 from TheDragonCode/2.x
Added Laravel 11 support
2 parents 106966b + 95fb048 commit 5f2df26

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

Diff for: .github/workflows/phpunit.yml

+22-4
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,7 +47,19 @@ jobs:
4147
- laravel: "10.0"
4248
php: "8.0"
4349

44-
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} ${{ matrix.prefer }}
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+
62+
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
4563

4664
steps:
4765
- name: Checkout code
@@ -52,7 +70,7 @@ jobs:
5270
with:
5371
php-version: ${{ matrix.php }}
5472
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv
55-
coverage: none
73+
coverage: xdebug
5674

5775
- name: Install dependencies
5876
run: composer require laravel/framework:^${{ matrix.laravel }}

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 || ^10.0"
5252
},
5353
"minimum-stability": "stable",
5454
"prefer-stable": true,

Diff for: phpunit.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
bootstrap="vendor/autoload.php"
88
colors="true"
99
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
10+
convertNoticesToExceptions="false"
11+
convertWarningsToExceptions="false"
1212
processIsolation="false"
1313
stopOnError="false"
1414
stopOnFailure="false"

0 commit comments

Comments
 (0)