File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 22vendor
33composer.lock
44.phpunit.result.cache
5+ /data /
Original file line number Diff line number Diff line change 2323 " @tests-spec"
2424 ],
2525 "tests" : " phpunit tests" ,
26- "analyze" : " phpstan analyse --level max src " ,
26+ "analyze" : " phpstan analyse --level max" ,
2727 "tests-spec" : " phpspec run --no-interaction"
2828 },
2929 "require-dev" : {
3030 "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"
3336 },
3437 "autoload" : {
3538 "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