Skip to content

Commit 9e50460

Browse files
Added support for Laravel 10 (#1406)
* Added support for Laravel 10 * Update run-tests.yml * Update run-tests.yml * Update run-integration-tests.yml Co-authored-by: Barry vd. Heuvel <barryvdh@gmail.com>
1 parent b557692 commit 9e50460

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,15 @@ jobs:
2121
matrix:
2222
os: [ubuntu-20.04, windows-2019]
2323
php: [8.1, 8.0, 7.4, 7.3]
24-
laravel: [8.*, 9.*]
24+
laravel: [8.*, 9.*, 10.*]
2525
dependency-version: [prefer-lowest, prefer-stable]
2626
exclude:
27+
- php: 8.0
28+
laravel: 10.*
29+
- php: 7.4
30+
laravel: 10.*
31+
- php: 7.3
32+
laravel: 10.*
2733
- php: 8.0
2834
dependency-version: prefer-lowest
2935
- php: 7.4

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@
2525
"barryvdh/reflection-docblock": "^2.0.6",
2626
"composer/class-map-generator": "^1.0",
2727
"doctrine/dbal": "^2.6 || ^3",
28-
"illuminate/console": "^8 || ^9",
29-
"illuminate/filesystem": "^8 || ^9",
30-
"illuminate/support": "^8 || ^9",
28+
"illuminate/console": "^8 || ^9 || ^10",
29+
"illuminate/filesystem": "^8 || ^9 || ^10",
30+
"illuminate/support": "^8 || ^9 || ^10",
3131
"nikic/php-parser": "^4.7",
3232
"phpdocumentor/type-resolver": "^1.1.0"
3333
},
3434
"require-dev": {
3535
"ext-pdo_sqlite": "*",
3636
"friendsofphp/php-cs-fixer": "^2",
37-
"illuminate/config": "^8 || ^9",
38-
"illuminate/view": "^8 || ^9",
37+
"illuminate/config": "^8 || ^9 || ^10",
38+
"illuminate/view": "^8 || ^9 || ^10",
3939
"mockery/mockery": "^1.4",
40-
"orchestra/testbench": "^6 || ^7",
40+
"orchestra/testbench": "^6 || ^7 || ^8",
4141
"phpunit/phpunit": "^8.5 || ^9",
4242
"spatie/phpunit-snapshot-assertions": "^3 || ^4",
4343
"vimeo/psalm": "^3.12"
4444
},
4545
"suggest": {
46-
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
46+
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10)."
4747
},
4848
"minimum-stability": "dev",
4949
"prefer-stable": true,

0 commit comments

Comments
 (0)