mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
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:
co-authored by
Barry vd. Heuvel
parent
b55769213c
commit
9e50460017
@@ -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
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user