Skip to content

Commit c68041c

Browse files
authored
[1.x] Adds Laravel 10 support (#629)
* Adds Laravel 10 support * Ignores Laravel 10 on PHP 8.0
1 parent f9bd5ec commit c68041c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
php: ['8.0', 8.1, 8.2]
20-
laravel: [8, 9]
20+
laravel: [8, 9, 10]
2121
driver: [swoole, openswoole]
2222
exclude:
23+
- php: 8.0
24+
laravel: 10
2325
- php: 8.2
2426
laravel: 8
2527

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"require": {
1717
"php": "^8.0",
18-
"laravel/framework": "^8.83.26|^9.38.0",
18+
"laravel/framework": "^8.83.26|^9.38.0|^10.0",
1919
"laminas/laminas-diactoros": "^2.5",
2020
"laravel/serializable-closure": "^1.0",
2121
"nesbot/carbon": "^2.60",
@@ -25,7 +25,7 @@
2525
"guzzlehttp/guzzle": "^7.2",
2626
"mockery/mockery": "^1.4",
2727
"nunomaduro/collision": "^5.10|^6.0",
28-
"orchestra/testbench": "^6.16|^7.0",
28+
"orchestra/testbench": "^6.16|^7.0|^8.0",
2929
"phpunit/phpunit": "^9.3",
3030
"spiral/roadrunner": "^2.8.2"
3131
},

0 commit comments

Comments
 (0)