File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,17 @@ jobs:
12
12
strategy :
13
13
fail-fast : true
14
14
matrix :
15
- os : [ubuntu-latest, windows-latest ]
16
- php : [8.1 ]
17
- laravel : [10.* ]
18
- stability : [prefer-lowest, prefer-stable ]
15
+ os : [ubuntu-latest]
16
+ dependency-version : [prefer-dist ]
17
+ php : [8.2, 8.3 ]
18
+ laravel : [10.*, 11.* ]
19
19
include :
20
20
- laravel : 10.*
21
- testbench : ^8.0
21
+ testbench : 8.*
22
+ - laravel : 11.*
23
+ testbench : 9.*
22
24
23
- name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix. os }}
25
+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
24
26
25
27
steps :
26
28
- name : Checkout code
40
42
41
43
- name : Install dependencies
42
44
run : |
43
- composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
44
- composer update --${{ matrix.stability }} --prefer-dist --no-interaction
45
+ composer install --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
45
46
46
47
- name : Execute tests
47
48
run : vendor/bin/pest
Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"require" : {
21
- "php" : " ^8.0|^8.1 " ,
21
+ "php" : " ^8.2 " ,
22
22
"spatie/laravel-package-tools" : " ^1.12" ,
23
- "illuminate/contracts" : " ^8 .0|^9.0|^10 .0"
23
+ "illuminate/contracts" : " ^10 .0|^11 .0"
24
24
},
25
25
"require-dev" : {
26
26
"friendsofphp/php-cs-fixer" : " ^3.8" ,
27
- "nunomaduro/collision" : " ^6.0 " ,
27
+ "nunomaduro/collision" : " ^6.1 " ,
28
28
"nunomaduro/larastan" : " ^2.0.1" ,
29
- "orchestra/testbench" : " ^7.0|^ 8.0" ,
29
+ "orchestra/testbench" : " ^8.0" ,
30
30
"pestphp/pest" : " ^1.21" ,
31
31
"pestphp/pest-plugin-laravel" : " ^1.1" ,
32
32
"phpstan/extension-installer" : " ^1.1" ,
33
33
"phpstan/phpstan-deprecation-rules" : " ^1.0" ,
34
34
"phpstan/phpstan-phpunit" : " ^1.0" ,
35
- "phpunit/phpunit" : " ^9.5 " ,
35
+ "phpunit/phpunit" : " ^9.6 " ,
36
36
"spatie/laravel-ray" : " ^1.26"
37
37
},
38
38
"autoload" : {
You can’t perform that action at this time.
0 commit comments