File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/vendor
22/composer.lock
3+ /tools
34.phpunit.result.cache
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phive xmlns =" https://phar.io/phive" >
3+ <phar name =" phpstan" version =" 1.10.14" installed =" 1.10.14" location =" ./tools/phpstan" copy =" false" />
4+ <phar name =" psalm" version =" 5.10.0" installed =" 5.10.0" location =" ./tools/psalm" copy =" false" />
5+ </phive >
Original file line number Diff line number Diff line change 1616 "require-dev" : {
1717 "cakephp/cakephp-codesniffer" : " ^5.0" ,
1818 "composer/composer" : " ^2.0" ,
19- "phpunit/phpunit" : " ^9.5.19 "
19+ "phpunit/phpunit" : " ^10.1.0 "
2020 },
2121 "autoload" : {
2222 "psr-4" : {
3737 "dealerdirect/phpcodesniffer-composer-installer" : true
3838 }
3939 },
40- "prefer-stable" : true
40+ "prefer-stable" : true ,
41+ "scripts" : {
42+ "check" : [
43+ " @cs-check" ,
44+ " @test"
45+ ],
46+ "cs-check" : " phpcs --colors --parallel=16 -p src/ tests/" ,
47+ "cs-fix" : " phpcbf --colors --parallel=16 -p src/ tests/" ,
48+ "phpstan" : " tools/phpstan analyse" ,
49+ "psalm" : " tools/psalm --show-info=false" ,
50+ "stan" : [
51+ " @phpstan" ,
52+ " @psalm"
53+ ],
54+ "stan-tests" : " phpstan.phar analyze -c tests/phpstan.neon" ,
55+ "stan-baseline" : " phpstan.phar --generate-baseline" ,
56+ "stan-setup" : " phive install" ,
57+ "test" : " phpunit"
58+ }
4159}
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2-
3- <phpunit
4- colors =" true"
5- bootstrap =" vendor/autoload.php"
6- >
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ colors =" true"
4+ bootstrap =" vendor/autoload.php"
5+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.1/phpunit.xsd" >
76 <testsuites >
87 <testsuite name =" plugin-installer" >
98 <directory >tests/TestCase/</directory >
Original file line number Diff line number Diff line change 22<psalm
33 errorLevel =" 2"
44 resolveFromConfigFile =" true"
5+ findUnusedPsalmSuppress =" true"
6+ findUnusedBaselineEntry =" true"
7+ findUnusedCode =" false"
58 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
69 xmlns =" https://getpsalm.org/schema/config"
710 xsi : schemaLocation =" https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
You can’t perform that action at this time.
0 commit comments