File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
fail-fast : true
11
11
matrix :
12
- php : [7.4]
13
- laravel : [7.*, 8.*]
14
- include :
15
- - laravel : 8.*
16
- testbench : 6.*
17
- - laravel : 7.*
18
- testbench : 7.*
12
+ php : [7.4, 8.0]
13
+ laravel : [8.*]
19
14
20
15
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
21
16
42
37
coverage : none
43
38
44
39
- name : Install dependencies
45
- run : |
46
- composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
47
- composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
40
+ run : composer install
48
41
49
42
- name : Execute tests
50
43
run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^7.1"
19
+ "php" : " ^7.1|^8.0 "
20
20
},
21
21
"require-dev" : {
22
- "orchestra/testbench" : " ^4.0" ,
22
+ "orchestra/testbench" : " ^6.0" ,
23
+ "laravel/framework" : " ^8.0" ,
23
24
"phpunit/phpunit" : " ^8.0"
24
25
},
25
26
"autoload" : {
You can’t perform that action at this time.
0 commit comments