This repository was archived by the owner on Sep 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1
1
composer.phar
2
2
/vendor /
3
-
4
- # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
5
- # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6
- # composer.lock
3
+ .phpunit.result.cache
Original file line number Diff line number Diff line change 31
31
"phpcs" : " ./vendor/bin/phpcs --standard=PSR12 src tests" ,
32
32
"phpcs:fix" : " ./vendor/bin/phpcbf --standard=PSR12 src tests" ,
33
33
"phpstan" : " ./vendor/bin/phpstan analyse src -c phpstan.neon" ,
34
+ "tests" : " ./vendor/bin/phpunit tests" ,
34
35
"docker:shell" : " docker run --rm --interactive --tty --volume $PWD:/app composer /bin/sh"
35
36
}
36
37
}
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ backupGlobals =" false"
5
+ backupStaticAttributes =" false"
6
+ colors =" true"
7
+ convertErrorsToExceptions =" true"
8
+ convertNoticesToExceptions =" true"
9
+ convertWarningsToExceptions =" true"
10
+ processIsolation =" false"
11
+ stopOnFailure =" false"
12
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
13
+ failOnWarning =" true"
14
+ >
15
+ <coverage >
16
+ <include >
17
+ <directory suffix =" .php" >src/</directory >
18
+ </include >
19
+ </coverage >
20
+ </phpunit >
You can’t perform that action at this time.
0 commit comments