File tree 4 files changed +26
-3
lines changed
4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 2
2
vendor
3
3
composer.lock
4
4
.phpunit.result.cache
5
+ /data /
Original file line number Diff line number Diff line change 23
23
" @tests-spec"
24
24
],
25
25
"tests" : " phpunit tests" ,
26
- "analyze" : " phpstan analyse --level max src " ,
26
+ "analyze" : " phpstan analyse --level max" ,
27
27
"tests-spec" : " phpspec run --no-interaction"
28
28
},
29
29
"require-dev" : {
30
30
"phpspec/phpspec" : " ^6.2" ,
31
- "phpunit/phpunit" : " ^9.3" ,
32
- "phpstan/phpstan" : " ^0.12"
31
+ "phpunit/phpunit" : " ^9.4" ,
32
+ "phpstan/phpstan" : " ^0.12.51" ,
33
+ "phpstan/phpstan-deprecation-rules" : " ^0.12.4" ,
34
+ "phpstan/phpstan-phpunit" : " ^0.12.16" ,
35
+ "squizlabs/php_codesniffer" : " ^3.5.5"
33
36
},
34
37
"autoload" : {
35
38
"psr-4" : {
Original file line number Diff line number Diff line change
1
+ includes:
2
+ - vendor/phpstan/phpstan-phpunit/extension.neon
3
+ - vendor/phpstan/phpstan-deprecation-rules/rules.neon
4
+ parameters:
5
+ tmpDir: data
6
+ level: max
7
+ paths:
8
+ - src
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation = " ./vendor/phpunit/phpunit/phpunit.xsd"
4
+ cacheResultFile =" ./data/phpunit.result.cache"
5
+ colors = " true" >
6
+ <testsuites >
7
+ <testsuite name =" Unit" >
8
+ <directory suffix =" Test.php" >./tests/</directory >
9
+ </testsuite >
10
+ </testsuites >
11
+ </phpunit >
You can’t perform that action at this time.
0 commit comments