File tree 2 files changed +13
-8
lines changed
2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : true
15
15
matrix :
16
- php : [7.3, 7.4, 8.0, 8.1]
17
- laravel : [^8.0]
16
+ php : [7.3, 7.4, '8.0', 8.1]
17
+ laravel : [8, 9]
18
+ exclude :
19
+ - php : 7.3
20
+ laravel : 9
21
+ - php : 7.4
22
+ laravel : 9
18
23
19
24
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
20
25
32
37
33
38
- name : Install dependencies
34
39
run : |
35
- composer require "illuminate/contracts=${{ matrix.laravel }}" --no-update
40
+ composer require "illuminate/contracts=^ ${{ matrix.laravel }}" --no-update
36
41
composer update --prefer-dist --no-interaction --no-progress
37
42
38
43
- name : Execute tests
Original file line number Diff line number Diff line change 16
16
"require" : {
17
17
"php" : " ^7.3|^8.0" ,
18
18
"ext-json" : " *" ,
19
- "illuminate/support" : " ^8.0" ,
19
+ "illuminate/support" : " ^8.0|^9.0 " ,
20
20
"jenssegers/agent" : " ^2.6" ,
21
- "laravel/fortify" : " ^1.6.1 "
21
+ "laravel/fortify" : " ^1.9 "
22
22
},
23
23
"require-dev" : {
24
- "inertiajs/inertia-laravel" : " ^0.3 " ,
25
- "laravel/sanctum" : " ^2.6 " ,
24
+ "inertiajs/inertia-laravel" : " ^0.5.2 " ,
25
+ "laravel/sanctum" : " ^2.7 " ,
26
26
"mockery/mockery" : " ^1.0" ,
27
- "orchestra/testbench" : " ^6.0" ,
27
+ "orchestra/testbench" : " ^6.0|^7.0 " ,
28
28
"phpunit/phpunit" : " ^9.3"
29
29
},
30
30
"autoload" : {
You can’t perform that action at this time.
0 commit comments