File tree Expand file tree Collapse file tree 3 files changed +35
-16
lines changed Expand file tree Collapse file tree 3 files changed +35
-16
lines changed Original file line number Diff line number Diff line change @@ -13,23 +13,36 @@ jobs:
1313 strategy :
1414 matrix :
1515 php-version :
16- - 7.4
17- - 8.0
16+ - " 7.4"
17+ - " 8.0"
18+ - " 8.1"
19+ - " 8.2"
1820 laravel-version :
19- - ^8
20- - ^9
21+ - " ^8"
22+ - " ^9"
23+ - " ^10"
2124 exclude :
22- - php-version : 7.4
23- laravel-version : ^9
24-
25+ - php-version : " 7.4"
26+ laravel-version : " ^9"
27+ - php-version : " 7.4"
28+ laravel-version : " ^10"
29+ - php-version : " 8.0"
30+ laravel-version : " ^10"
2531 steps :
26- - uses : actions/checkout@v2
32+ - uses : actions/checkout@v3
2733
2834 - uses : shivammathur/setup-php@v2
2935 with :
3036 coverage : none
3137 php-version : ${{ matrix.php-version }}
3238
33- - run : composer require illuminate/contracts:${{ matrix.laravel-version }} --no-interaction --prefer-dist --no-interaction
39+ - run : >
40+ composer require
41+ illuminate/contracts:${{ matrix.laravel-version }}
42+ --no-interaction
43+ --prefer-dist
44+ --no-progress
45+ --update-with-all-dependencies
46+ ${{ matrix.composer.arg }}
3447
3548 - run : vendor/bin/phpstan
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## v2.1.0
11+
12+ ### Added
13+
14+ - Support Laravel 10
15+
1016## v2.0.1
1117
1218### Fixed
Original file line number Diff line number Diff line change 1515 ],
1616 "require" : {
1717 "php" : " ^7.4 || ^8" ,
18- "illuminate/console" : " ^8 || ^9" ,
19- "illuminate/contracts" : " ^8 || ^9" ,
20- "illuminate/support" : " ^8 || ^9" ,
18+ "illuminate/console" : " ^8 || ^9 || ^10 " ,
19+ "illuminate/contracts" : " ^8 || ^9 || ^10 " ,
20+ "illuminate/support" : " ^8 || ^9 || ^10 " ,
2121 "thecodingmachine/safe" : " ^1 || ^2"
2222 },
2323 "require-dev" : {
2424 "ergebnis/composer-normalize" : " ^2" ,
25- "laravel/lumen-framework" : " ^8 || ^9" ,
26- "mll-lab/php-cs-fixer-config" : " ^4.4.1 " ,
27- "nunomaduro/larastan" : " ^0.7 || ^1" ,
28- "orchestra/testbench" : " ^6 || ^7" ,
25+ "laravel/lumen-framework" : " ^8 || ^9 || ^10 " ,
26+ "mll-lab/php-cs-fixer-config" : " ^5 " ,
27+ "nunomaduro/larastan" : " ^0.7 || ^1 || ^2 " ,
28+ "orchestra/testbench" : " ^6 || ^7 || ^8 " ,
2929 "thecodingmachine/phpstan-safe-rule" : " ^1"
3030 },
3131 "minimum-stability" : " dev" ,
You can’t perform that action at this time.
0 commit comments