File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 4
4
/clover.xml
5
5
/build
6
6
/vendor
7
- .phpunit.cache / test-results
7
+ .phpunit.cache
Original file line number Diff line number Diff line change 13
13
"illuminate/support" : " ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
14
14
},
15
15
"require-dev" : {
16
- "orchestra/testbench" : " ^4.0|^5.0|^6.0|^7.0|^8.0" ,
17
- "phpunit/phpunit" : " ^8.0|^9.0|^10.0" ,
18
- "nunomaduro /larastan" : " ^0.6| ^1.0|^2.0"
16
+ "orchestra/testbench" : " ^4.0|^5.0|^6.0|^7.0|^8.0|^9.0 " ,
17
+ "phpunit/phpunit" : " ^8.0|^9.0|^10.0|^11.0 " ,
18
+ "larastan /larastan" : " ^1.0|^2.0"
19
19
},
20
20
"autoload" : {
21
21
"psr-4" : {
28
28
}
29
29
},
30
30
"scripts" : {
31
- "test" : " vendor/bin/phpunit" ,
31
+ "test" : " XDEBUG_MODE=coverage vendor/bin/phpunit" ,
32
32
"lint" : " vendor/bin/phpstan analyse"
33
33
},
34
34
"extra" : {
Original file line number Diff line number Diff line change 1
1
includes:
2
- - ./ vendor/nunomaduro /larastan/extension.neon
2
+ - vendor/larastan /larastan/extension.neon
3
3
parameters:
4
4
level: 5
5
5
paths:
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
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.0 /phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
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/11.1 /phpunit.xsd" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
3
3
<coverage includeUncoveredFiles =" false" >
4
- <include >
5
- <directory suffix =" .php" >src/</directory >
6
- </include >
7
4
<report >
8
5
<clover outputFile =" build/clover.xml" />
9
6
</report >
23
20
<env name =" DB_DATABASE" value =" :memory:" />
24
21
<env name =" DB_CONNECTION" value =" sqlite" />
25
22
</php >
23
+ <source >
24
+ <include >
25
+ <directory suffix =" .php" >src/</directory >
26
+ </include >
27
+ </source >
26
28
</phpunit >
You can’t perform that action at this time.
0 commit comments