File tree Expand file tree Collapse file tree 4 files changed +29
-23
lines changed Expand file tree Collapse file tree 4 files changed +29
-23
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,20 @@ jobs:
16
16
fail-fast : false
17
17
matrix :
18
18
php : [8.0, 8.1]
19
- laravel : [8.*, 9.*]
19
+ laravel : [8.*, 9.*, 10.* ]
20
20
dependency-version : [prefer-lowest, prefer-stable]
21
21
include :
22
22
- laravel : 8.*
23
23
testbench : ^6.0
24
+ exclude :
25
+ - laravel : 10.*
26
+ php : 8.0
24
27
25
28
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
26
29
27
30
steps :
28
31
- name : Checkout
29
- uses : actions/checkout@v2
32
+ uses : actions/checkout@v3
30
33
31
34
- name : Setup PHP
32
35
uses : shivammathur/setup-php@v2
38
41
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
39
42
40
43
- name : Cache Composer dependencies
41
- uses : actions/cache@v1
44
+ uses : actions/cache@v3
42
45
with :
43
46
path : ${{ steps.composer-cache.outputs.dir }}
44
47
# Use composer.json for key, if composer.lock is not committed.
Original file line number Diff line number Diff line change 1
1
* .lock
2
+ * .bak
2
3
/.env
3
4
/.phpunit.result.cache
4
5
/.vscode
6
+ /* .cache
5
7
/build
6
8
/vendor
Original file line number Diff line number Diff line change 31
31
],
32
32
"require" : {
33
33
"php" : " ^8.0" ,
34
- "illuminate/support " : " ^8.0|^9.0 " ,
35
- "aws/aws-sdk-php " : " ^3.209 "
34
+ "aws/aws-sdk-php " : " ^3.209 " ,
35
+ "illuminate/support " : " ^8.0|^9.52|^10.0 "
36
36
},
37
37
"minimum-stability" : " dev" ,
38
38
"prefer-stable" : true ,
46
46
"require-dev" : {
47
47
"guzzlehttp/guzzle" : " ^7.4" ,
48
48
"nunomaduro/larastan" : " ^1.0|^2.0" ,
49
- "orchestra/testbench" : " ^6.24|^7.0" ,
50
- "phpunit/phpunit" : " ^9.5" ,
49
+ "orchestra/testbench" : " ^6.24|^7.0|^8.0 " ,
50
+ "phpunit/phpunit" : " ^9.5|^10.0 " ,
51
51
"vlucas/phpdotenv" : " ^5.4"
52
52
}
53
53
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- bootstrap =" vendor/autoload.php"
6
- colors =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false" >
12
- <testsuites >
13
- <testsuite name =" Test Suite" >
14
- <directory suffix =" Test.php" >./tests</directory >
15
- </testsuite >
16
- </testsuites >
17
- </phpunit >
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ backupGlobals =" false"
5
+ bootstrap =" vendor/autoload.php"
6
+ colors =" true"
7
+ processIsolation =" false"
8
+ stopOnFailure =" false"
9
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
10
+ cacheDirectory =" .phpunit.cache"
11
+ backupStaticProperties =" false"
12
+ >
13
+ <testsuites >
14
+ <testsuite name =" Test Suite" >
15
+ <directory suffix =" Test.php" >./tests</directory >
16
+ </testsuite >
17
+ </testsuites >
18
+ </phpunit >
You can’t perform that action at this time.
0 commit comments