File tree 3 files changed +25
-39
lines changed
3 files changed +25
-39
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
fail-fast : true
13
13
matrix :
14
- php : [8.1,8.0, 7.4, 7.3]
15
- laravel : [^8.12, ^9.0]
16
- exclude :
17
- - php : 7.3
18
- laravel : ' ^9.0'
19
- - php : 7.4
20
- laravel : ' ^9.0'
14
+ php : [8.2,8.1]
15
+ laravel : [10.0]
21
16
22
17
name : P${{ matrix.php }} - L${{ matrix.laravel }}
23
18
Original file line number Diff line number Diff line change 15
15
}
16
16
],
17
17
"require" : {
18
- "php" : " ^7.3|^8.0 " ,
19
- "illuminate/support" : " ^8.0|^9 .0" ,
20
- "illuminate/console" : " ^8.0|^9 .0" ,
21
- "illuminate/database" : " ^8.0|^9 .0" ,
22
- "illuminate/auth" : " ^8.0|^9 .0" ,
23
- "illuminate/notifications" : " ^8.0|^9 .0"
18
+ "php" : " ^8.1 " ,
19
+ "illuminate/support" : " ^10 .0" ,
20
+ "illuminate/console" : " ^10 .0" ,
21
+ "illuminate/database" : " ^10 .0" ,
22
+ "illuminate/auth" : " ^10 .0" ,
23
+ "illuminate/notifications" : " ^10 .0"
24
24
},
25
25
"autoload" : {
26
26
"psr-4" : {
27
27
"Dyrynda\\ Artisan\\ " : " src/"
28
28
}
29
29
},
30
30
"require-dev" : {
31
- "mockery/mockery" : " ^1.4.2 " ,
32
- "phpunit/phpunit" : " ^9.3.3 " ,
33
- "orchestra/testbench" : " ^6.0|^7 .0"
31
+ "mockery/mockery" : " ^1.4.4 " ,
32
+ "phpunit/phpunit" : " ^9.6.0 || ^10.0.7 " ,
33
+ "orchestra/testbench" : " ^8 .0"
34
34
},
35
35
"autoload-dev" : {
36
36
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit bootstrap =" vendor/autoload.php"
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- colors =" true"
6
- verbose =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false" >
12
- <testsuites >
13
- <testsuite name =" Package Test Suite" >
14
- <directory >./tests/</directory >
15
- </testsuite >
16
- </testsuites >
17
- <filter >
18
- <whitelist >
19
- <directory suffix =" .php" >src/</directory >
20
- </whitelist >
21
- </filter >
22
- <php >
23
- <env name =" MAIL_DRIVER" value =" null" />
24
- </php >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php" backupGlobals =" false" colors =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
+ <coverage >
4
+ <include >
5
+ <directory suffix =" .php" >src/</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuites >
9
+ <testsuite name =" Package Test Suite" >
10
+ <directory >./tests/</directory >
11
+ </testsuite >
12
+ </testsuites >
13
+ <php >
14
+ <env name =" MAIL_MAILER" value =" array" />
15
+ </php >
25
16
</phpunit >
You can’t perform that action at this time.
0 commit comments