File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 9
9
fail-fast : true
10
10
matrix :
11
11
php : [8.2, 8.1]
12
- laravel : [10.*, 9.*]
12
+ laravel : [10.*, 9.*, 8.* ]
13
13
dependency-version : [prefer-lowest, prefer-stable]
14
14
include :
15
15
- laravel : 10.*
16
16
testbench : 8.*
17
17
- laravel : 9.*
18
18
testbench : 7.*
19
+ - laravel : 8.*
20
+ testbench : 6.5.*
19
21
20
22
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
21
23
22
24
steps :
23
25
- name : Checkout code
24
- uses : actions/checkout@v2
26
+ uses : actions/checkout@v4
25
27
26
28
- name : Cache dependencies
27
- uses : actions/cache@v2
29
+ uses : actions/cache@v4
28
30
with :
29
31
path : ~/.composer/cache/files
30
32
key : dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
42
44
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
43
45
44
46
- name : Execute tests
45
- run : vendor/bin/phpunit
47
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change @@ -188,6 +188,11 @@ You can also enable [debugging mode](https://developers.google.com/analytics/dev
188
188
``` bash
189
189
composer test
190
190
```
191
+ or
192
+
193
+ ``` bash
194
+ ./vendor/bin/phpunit
195
+ ```
191
196
192
197
## Security
193
198
Original file line number Diff line number Diff line change 33
33
],
34
34
"require" : {
35
35
"php" : " ^8.1 || ^8.2" ,
36
- "illuminate/bus" : " ^9.0 || ^10.0" ,
37
- "illuminate/queue" : " ^9.0 || ^10.0" ,
38
- "illuminate/http" : " ^9.0 || ^10.0" ,
39
- "illuminate/validation" : " ^9.0 || ^10.0" ,
36
+ "illuminate/bus" : " ^8.0 || ^ 9.0 || ^10.0" ,
37
+ "illuminate/queue" : " ^8.0 || ^ 9.0 || ^10.0" ,
38
+ "illuminate/http" : " ^8.74 || ^ 9.0 || ^10.0" ,
39
+ "illuminate/validation" : " ^8.0 || ^ 9.0 || ^10.0" ,
40
40
"guzzlehttp/guzzle" : " ^7.5"
41
41
},
42
42
"require-dev" : {
43
43
"mockery/mockery" : " ^1.4.4" ,
44
44
"nesbot/carbon" : " ^2.66" ,
45
- "orchestra/testbench" : " ^7.0 || ^8.0" ,
45
+ "orchestra/testbench" : " ^6.20 || ^ 7.0 || ^8.0" ,
46
46
"phpunit/phpunit" : " ^9.5"
47
47
},
48
48
"autoload" : {
You can’t perform that action at this time.
0 commit comments