Skip to content

Commit b505794

Browse files
Merge pull request #25 from TheDragonCode/1.x
Added Laravel 11 support
2 parents aea9f12 + 2403aa9 commit b505794

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

.github/workflows/phpunit.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,39 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "7.4", "8.0", "8.1", "8.2" ]
13-
laravel: [ "7.0", "8.0", "9.0", "10.0" ]
12+
php: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
13+
laravel: [ "7.0", "8.0", "9.0", "10.0", "11.0" ]
1414
exclude:
1515
- laravel: "7.0"
1616
php: "8.1"
1717

1818
- laravel: "7.0"
1919
php: "8.2"
2020

21+
- laravel: "7.0"
22+
php: "8.3"
23+
2124
- laravel: "9.0"
2225
php: "7.4"
2326

27+
- laravel: "9.0"
28+
php: "8.3"
29+
2430
- laravel: "10.0"
2531
php: "7.4"
2632

2733
- laravel: "10.0"
2834
php: "8.0"
2935

36+
- laravel: "11.0"
37+
php: "7.4"
38+
39+
- laravel: "11.0"
40+
php: "8.0"
41+
42+
- laravel: "11.0"
43+
php: "8.1"
44+
3045
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
3146

3247
steps:
@@ -38,7 +53,7 @@ jobs:
3853
with:
3954
php-version: ${{ matrix.php }}
4055
extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv
41-
coverage: none
56+
coverage: xdebug
4257

4358
- name: Install dependencies
4459
run: composer require --dev laravel/framework:^${{ matrix.laravel }}

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
"require": {
3939
"php": "^7.4 || ^8.0",
4040
"fig/http-message-util": "^1.1",
41-
"illuminate/routing": "^7.0 || ^8.0 || ^9.0 || ^10.0"
41+
"illuminate/routing": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
4242
},
4343
"require-dev": {
44-
"dragon-code/extended-routes": "^3.2",
45-
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0",
46-
"phpunit/phpunit": "^9.6"
44+
"dragon-code/extended-routes": "^3.2 || ^4.0",
45+
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
46+
"phpunit/phpunit": "^9.6 || ^10.0"
4747
},
4848
"minimum-stability": "stable",
4949
"prefer-stable": true,

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
bootstrap="phpunit.php"
77
colors="true"
88
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
9+
convertNoticesToExceptions="false"
10+
convertWarningsToExceptions="false"
1111
processIsolation="false"
1212
stopOnError="false"
1313
stopOnFailure="false"

0 commit comments

Comments
 (0)