File tree Expand file tree Collapse file tree 2 files changed +18
-8
lines changed Expand file tree Collapse file tree 2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
14
- php : [ "8.1 ", "8.2" ]
15
- laravel : [ "^9 .0", "^10.0" ]
14
+ php : ["8.3 ", "8.2", "8.1" ]
15
+ laravel : ["^11 .0", "^10.0", "^9.0" ]
16
16
dependency-version : [ prefer-lowest, prefer-stable ]
17
+ exclude :
18
+ - laravel : " ^11.0"
19
+ php : " 8.1"
20
+ include :
21
+ - laravel : " ^11.0"
22
+ testbench : 9.*
23
+ - laravel : " ^10.0"
24
+ testbench : 8.*
25
+ - laravel : " ^9.0"
26
+ testbench : 7.*
17
27
18
28
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
19
29
36
46
37
47
- name : Install dependencies
38
48
run : |
39
- composer require "laravel/framework:${{ matrix.laravel }}" --dev --no-interaction --no-update
49
+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "symfony/console:>=4.3.4" --dev --no-interaction --no-update
40
50
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
41
51
42
52
- name : Execute tests
Original file line number Diff line number Diff line change 27
27
],
28
28
"require" : {
29
29
"php" : " ^8.1" ,
30
- "illuminate/database" : " ^9|^10" ,
31
- "illuminate/support" : " ^9|^10" ,
30
+ "illuminate/database" : " ^9.0 |^10.0|^11.0 " ,
31
+ "illuminate/support" : " ^9.0 |^10.0|^11.0 " ,
32
32
"nesbot/carbon" : " >=2.62.1"
33
33
},
34
34
"require-dev" : {
35
35
"ciareis/bypass" : " ^1.0" ,
36
36
"dg/bypass-finals" : " ^1.4" ,
37
37
"guzzlehttp/guzzle" : " ^7.8" ,
38
38
"laravel/pint" : " ^1.3" ,
39
- "orchestra/testbench" : " 7.*|8.* " ,
40
- "pestphp/pest" : " ^1.21" ,
41
- "phpunit/phpunit" : " ^9.1 "
39
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0.2 " ,
40
+ "pestphp/pest" : " ^1.21|^2.0 " ,
41
+ "phpunit/phpunit" : " ^9.4 || ^10.5 || ^11.0 "
42
42
},
43
43
"autoload" : {
44
44
"psr-4" : {
You can’t perform that action at this time.
0 commit comments