File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 3
3
* .sublime-workspace
4
4
.DS_Store
5
5
.idea /
6
- .phpunit.cache /
7
- .phpcs-cache
8
6
/vendor
9
7
composer.lock
10
8
composer.phar
11
9
phpunit.xml
12
10
phpstan.neon
13
- /.cache /phpstan /
11
+ /.cache /
Original file line number Diff line number Diff line change 3
3
<arg name =" basepath" value =" ." />
4
4
<arg name =" extensions" value =" php" />
5
5
<arg name =" parallel" value =" 80" />
6
- <arg name =" cache" value =" .phpcs- cache" />
6
+ <arg name =" cache" value =" .cache/phpcs " />
7
7
<arg name =" colors" />
8
8
9
9
<!-- Ignore warnings (n), show progress of the run (p), and show sniff names (s) -->
Original file line number Diff line number Diff line change 2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
3
xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.4/phpunit.xsd"
4
4
bootstrap =" vendor/autoload.php"
5
- colors =" true"
6
- cacheDirectory =" .phpunit.cache"
7
- >
8
- <coverage />
5
+ cacheDirectory =" .cache/phpunit"
6
+ executionOrder =" depends,defects"
7
+ beStrictAboutCoverageMetadata =" true"
8
+ beStrictAboutOutputDuringTests =" true"
9
+ failOnRisky =" true"
10
+ failOnWarning =" true" >
9
11
<testsuites >
10
12
<testsuite name =" Test Suite" >
11
13
<directory >tests/</directory >
17
19
<env name =" SQLITE_DATABASE" value =" :memory:" />
18
20
<env name =" QUEUE_CONNECTION" value =" database" />
19
21
</php >
20
- <source >
22
+
23
+ <source restrictDeprecations =" true"
24
+ restrictNotices =" true"
25
+ restrictWarnings =" true" >
21
26
<include >
22
27
<directory >./src</directory >
23
28
</include >
You can’t perform that action at this time.
0 commit comments