File tree 2 files changed +15
-19
lines changed
2 files changed +15
-19
lines changed Original file line number Diff line number Diff line change @@ -13,24 +13,20 @@ jobs:
13
13
fail-fast : false
14
14
matrix :
15
15
os : [ ubuntu-latest ]
16
- php : [ 8.3, 8.2, 8.1 ]
17
- laravel : [ 11.*, 10.*, 9.* ]
18
16
redis-client : [ phpredis, predis ]
19
- dependency-version : [ prefer-stable ]
20
17
include :
21
- - redis-client : phpredis
22
- php-extensions : redis
23
- - laravel : 11.*
18
+ - php : 8.4
19
+ laravel : 12.*
20
+ testbench : 10.*
21
+ - php : 8.3
22
+ laravel : 11.*
24
23
testbench : 9.*
25
- - laravel : 10.*
24
+ - php : 8.2
25
+ laravel : 10.*
26
26
testbench : 8.*
27
- - laravel : 9.*
27
+ - php : 8.1
28
+ laravel : 9.*
28
29
testbench : 7.*
29
- exclude :
30
- - laravel : 11.*
31
- php : 8.1
32
- - laravel : 9.*
33
- php : 8.3
34
30
35
31
services :
36
32
redis :
39
35
- 6379:6379
40
36
options : --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
41
37
42
- name : ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} (${{ matrix.redis-client }}) - ${{ matrix.dependency-version }}
38
+ name : ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} (${{ matrix.redis-client }})
43
39
44
40
steps :
45
41
- name : Checkout code
60
56
- name : Install dependencies
61
57
run : |
62
58
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
63
- composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
59
+ composer update --prefer-stable --prefer-dist --no-interaction
64
60
65
61
- name : Execute tests
66
62
run : vendor/bin/pest
Original file line number Diff line number Diff line change 29
29
"minimum-stability" : " stable" ,
30
30
"require" : {
31
31
"php" : " >=8.1" ,
32
- "illuminate/support" : " ^9.0|^10.0|^11.0" ,
33
- "illuminate/contracts" : " ^9.0|^10.0|^11.0" ,
34
- "illuminate/collections" : " ^9.0|^10.0|^11.0"
32
+ "illuminate/support" : " ^9.0|^10.0|^11.0|^12.0 " ,
33
+ "illuminate/contracts" : " ^9.0|^10.0|^11.0|^12.0 " ,
34
+ "illuminate/collections" : " ^9.0|^10.0|^11.0|^12.0 "
35
35
},
36
36
"suggest" : {
37
37
"brick/math" : " For decimal cast support"
40
40
"predis/predis" : " ^2.0" ,
41
41
"laravel/pint" : " ^1.17" ,
42
42
"pestphp/pest" : " ^1.0|^2.0|^3.0" ,
43
- "orchestra/testbench" : " ^7.0|^8.0|^9.0"
43
+ "orchestra/testbench" : " ^7.0|^8.0|^9.0|^10.0 "
44
44
},
45
45
"config" : {
46
46
"allow-plugins" : {
You can’t perform that action at this time.
0 commit comments