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 <[email protected]>
This commit is contained in:
Stef van Esch
2023-01-22 15:01:32 +01:00
committed by GitHub
co-authored by Barry vd. Heuvel
parent b55769213c
commit 9e50460017
2 changed files with 14 additions and 8 deletions
+7 -1
View File
@@ -21,9 +21,15 @@ jobs:
matrix: matrix:
os: [ubuntu-20.04, windows-2019] os: [ubuntu-20.04, windows-2019]
php: [8.1, 8.0, 7.4, 7.3] php: [8.1, 8.0, 7.4, 7.3]
laravel: [8.*, 9.*] laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable] dependency-version: [prefer-lowest, prefer-stable]
exclude: exclude:
- php: 8.0
laravel: 10.*
- php: 7.4
laravel: 10.*
- php: 7.3
laravel: 10.*
- php: 8.0 - php: 8.0
dependency-version: prefer-lowest dependency-version: prefer-lowest
- php: 7.4 - php: 7.4
+7 -7
View File
@@ -25,25 +25,25 @@
"barryvdh/reflection-docblock": "^2.0.6", "barryvdh/reflection-docblock": "^2.0.6",
"composer/class-map-generator": "^1.0", "composer/class-map-generator": "^1.0",
"doctrine/dbal": "^2.6 || ^3", "doctrine/dbal": "^2.6 || ^3",
"illuminate/console": "^8 || ^9", "illuminate/console": "^8 || ^9 || ^10",
"illuminate/filesystem": "^8 || ^9", "illuminate/filesystem": "^8 || ^9 || ^10",
"illuminate/support": "^8 || ^9", "illuminate/support": "^8 || ^9 || ^10",
"nikic/php-parser": "^4.7", "nikic/php-parser": "^4.7",
"phpdocumentor/type-resolver": "^1.1.0" "phpdocumentor/type-resolver": "^1.1.0"
}, },
"require-dev": { "require-dev": {
"ext-pdo_sqlite": "*", "ext-pdo_sqlite": "*",
"friendsofphp/php-cs-fixer": "^2", "friendsofphp/php-cs-fixer": "^2",
"illuminate/config": "^8 || ^9", "illuminate/config": "^8 || ^9 || ^10",
"illuminate/view": "^8 || ^9", "illuminate/view": "^8 || ^9 || ^10",
"mockery/mockery": "^1.4", "mockery/mockery": "^1.4",
"orchestra/testbench": "^6 || ^7", "orchestra/testbench": "^6 || ^7 || ^8",
"phpunit/phpunit": "^8.5 || ^9", "phpunit/phpunit": "^8.5 || ^9",
"spatie/phpunit-snapshot-assertions": "^3 || ^4", "spatie/phpunit-snapshot-assertions": "^3 || ^4",
"vimeo/psalm": "^3.12" "vimeo/psalm": "^3.12"
}, },
"suggest": { "suggest": {
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)." "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10)."
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true, "prefer-stable": true,