File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 17
17
18
18
strategy :
19
19
matrix :
20
- php : [7.3, 7.4, 8.0 ]
20
+ php : [8.0, 8.1 ]
21
21
stability : [prefer-lowest, prefer-stable]
22
22
23
23
# Steps represent a sequence of tasks that will be executed as part of the job
26
26
uses : actions/checkout@v2
27
27
28
28
- name : Cache dependencies
29
- uses : actions/cache@v1
29
+ uses : actions/cache@v2
30
30
with :
31
31
path : ~/.composer/cache/files
32
32
key : dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
43
43
run : composer update --${{ matrix.stability }} --prefer-dist --no-interaction
44
44
45
45
- name : Execute tests
46
- run : vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
46
+ run : vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
Original file line number Diff line number Diff line change 9
9
}
10
10
],
11
11
"require" : {
12
- "php" : " ^7.3|^ 8.0" ,
13
- "laravel/framework" : " ^8 .0" ,
12
+ "php" : " ^8.0" ,
13
+ "laravel/framework" : " ^9 .0" ,
14
14
"ramsey/uuid" : " ^4.0"
15
15
},
16
16
"autoload" : {
24
24
}
25
25
},
26
26
"require-dev" : {
27
- "orchestra/testbench" : " ^6 .0" ,
27
+ "orchestra/testbench" : " ^7 .0" ,
28
28
"phpunit/phpunit" : " ^9.3" ,
29
29
"mockery/mockery" : " ^1.4"
30
30
},
40
40
},
41
41
"config" : {
42
42
"preferred-install" : " dist"
43
- }
43
+ },
44
+ "minimum-stability" : " dev" ,
45
+ "prefer-stable" : true
44
46
}
You can’t perform that action at this time.
0 commit comments