mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-19 18:43:12 +00:00
Added support for Laravel 10 (+ update testing matrix) (#1407)
* Laravel 10 support * Add events v10 to suggestions * Exclude invalid combinations from testing matrix, test on PHP 8.2 * Update CHANGELOG.md * Use laravel/laravel dev-master as 10.x version * Exclude one more laravel-php combination * Use 10.* instead if dev-master * 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
edfb05621c
commit
ce24d4b013
@@ -18,7 +18,7 @@ jobs:
|
|||||||
COMPOSER_NO_INTERACTION: 1
|
COMPOSER_NO_INTERACTION: 1
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php: [8.1, 8.0, 7.4, 7.3]
|
php: [8.2, 8.1, 8.0, 7.4, 7.3]
|
||||||
lumen: [8.*]
|
lumen: [8.*]
|
||||||
name: P${{ matrix.php }} - Lumen${{ matrix.lumen }}
|
name: P${{ matrix.php }} - Lumen${{ matrix.lumen }}
|
||||||
steps:
|
steps:
|
||||||
@@ -82,9 +82,17 @@ jobs:
|
|||||||
COMPOSER_NO_INTERACTION: 1
|
COMPOSER_NO_INTERACTION: 1
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php: [8.1, 8.0, 7.4, 7.3]
|
php: [8.2, 8.1, 8.0, 7.4, 7.3]
|
||||||
laravel: [9.*, 8.*]
|
laravel: [10.*, 9.*, 8.*]
|
||||||
exclude:
|
exclude:
|
||||||
|
- php: 8.0
|
||||||
|
laravel: 10.*
|
||||||
|
- php: 7.4
|
||||||
|
laravel: 10.*
|
||||||
|
- php: 7.4
|
||||||
|
laravel: 10.*
|
||||||
|
- php: 7.3
|
||||||
|
laravel: 10.*
|
||||||
- php: 7.4
|
- php: 7.4
|
||||||
laravel: 9.*
|
laravel: 9.*
|
||||||
- php: 7.3
|
- php: 7.3
|
||||||
@@ -104,7 +112,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --no-progress sample
|
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --stability=dev --no-progress sample
|
||||||
cd sample
|
cd sample
|
||||||
composer config minimum-stability dev
|
composer config minimum-stability dev
|
||||||
composer update --prefer-stable --prefer-dist --no-progress
|
composer update --prefer-stable --prefer-dist --no-progress
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
- Improve return type of mock helper methods in tests [#1405 / bentleyo](https://github.com/barryvdh/laravel-ide-helper/pull/1405)
|
- Improve return type of mock helper methods in tests [#1405 / bentleyo](https://github.com/barryvdh/laravel-ide-helper/pull/1405)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- Added Laravel 10 support [#1407 / lptn](https://github.com/barryvdh/laravel-ide-helper/pull/1407)
|
||||||
- Add support for custom casts that implement `CastsInboundAttributes` [#1329 / sforward](https://github.com/barryvdh/laravel-ide-helper/pull/1329)
|
- Add support for custom casts that implement `CastsInboundAttributes` [#1329 / sforward](https://github.com/barryvdh/laravel-ide-helper/pull/1329)
|
||||||
- Add option `use_generics_annotations` for collection type hints [#1298 / tanerkay](https://github.com/barryvdh/laravel-ide-helper/pull/1298)
|
- Add option `use_generics_annotations` for collection type hints [#1298 / tanerkay](https://github.com/barryvdh/laravel-ide-helper/pull/1298)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user