File tree 2 files changed +18
-8
lines changed
2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 14
14
matrix :
15
15
os : [ubuntu-latest]
16
16
php : [8.3, 8.2, 8.1]
17
- laravel : [10,9 ]
17
+ laravel : ["^11.0", "^10.0", "^9.0" ]
18
18
stability : [prefer-lowest, prefer-stable]
19
+ include :
20
+ - laravel : " ^11.0"
21
+ testbench : 9.*
22
+ - laravel : " ^10.0"
23
+ testbench : 8.*
24
+ - laravel : " ^9.0"
25
+ testbench : 7.*
26
+ exclude :
27
+ - laravel : " ^11.0"
28
+ php : 8.1
19
29
20
30
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
21
31
37
47
38
48
- name : Install dependencies
39
49
run : |
40
- composer require 'illuminate/contracts=^ ${{ matrix.laravel }}.0' --no-update
50
+ composer require 'illuminate/contracts=${{ matrix.laravel }}.0' --no-update
41
51
composer update --prefer-dist --no-interaction --no-progress --${{ matrix.stability }}
42
52
43
53
- name : Execute tests
44
- run : vendor/bin/pest --verbose
54
+ run : vendor/bin/pest
Original file line number Diff line number Diff line change 18
18
"require" : {
19
19
"php" : " ^8.1" ,
20
20
"spatie/laravel-package-tools" : " ^1.13.0" ,
21
- "illuminate/contracts" : " ^9.0|^10.0"
21
+ "illuminate/contracts" : " ^9.0|^10.0|^11.0 "
22
22
},
23
23
"require-dev" : {
24
24
"laravel/pint" : " ^1.0" ,
25
- "nunomaduro/collision" : " ^6.0" ,
25
+ "nunomaduro/collision" : " ^6.0|^7.0|^8.0 " ,
26
26
"nunomaduro/larastan" : " ^2.0.1" ,
27
- "orchestra/testbench" : " ^7.0|^8.0" ,
28
- "pestphp/pest" : " ^1.21 " ,
29
- "pestphp/pest-plugin-laravel" : " ^1.1 "
27
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0 " ,
28
+ "pestphp/pest" : " ^1.0|^2.0 " ,
29
+ "pestphp/pest-plugin-laravel" : " ^1.0|^2.0 "
30
30
},
31
31
"autoload" : {
32
32
"psr-4" : {
You can’t perform that action at this time.
0 commit comments