File tree 2 files changed +12
-9
lines changed
2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
name : tests
2
2
3
- on : [push, pull_request]
3
+ on :
4
+ - push
5
+ - pull_request
4
6
5
7
jobs :
6
8
tests :
7
9
runs-on : ubuntu-latest
10
+
8
11
strategy :
9
12
fail-fast : false
10
13
matrix :
11
14
php : [8.1, 8.2]
12
15
stability : [prefer-stable]
13
- laravel : [" ^10.0" ]
14
- # exclude:
15
- # - php: 8.0
16
- # laravel: "^10.0"
16
+ laravel : ['11.0', ^10.0]
17
+ exclude :
18
+ - laravel : ' 11.0 '
19
+ php : 8.1
17
20
18
21
name : PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.laravel }}
19
22
38
41
run : composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --with laravel/framework:${{ matrix.laravel }}
39
42
40
43
- name : Execute tests
41
- run : vendor/bin/phpunit --verbose
44
+ run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 23
23
"require" : {
24
24
"php" : " >=8.1" ,
25
25
"kkszymanowski/traitor" : " ^1.0" ,
26
- "laravel/framework" : " ^10.0"
26
+ "laravel/framework" : " ^10.0|^11.0 "
27
27
},
28
28
"require-dev" : {
29
29
"mockery/mockery" : " ^1.3.2" ,
30
- "orchestra/testbench" : " ^8.0" ,
31
- "phpunit/phpunit" : " ^8.4|^9.0"
30
+ "orchestra/testbench" : " ^8.0|^9.0 " ,
31
+ "phpunit/phpunit" : " ^8.4|^9.0|^10.5 "
32
32
},
33
33
"autoload" : {
34
34
"psr-4" : {
You can’t perform that action at this time.
0 commit comments