We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6252f66 commit 7b78dafCopy full SHA for 7b78daf
composer.json
@@ -32,7 +32,7 @@
32
],
33
"scripts": {
34
"test": [
35
- "php vendor/phpunit/phpunit/phpunit --colors test/"
+ "php vendor/phpunit/phpunit/phpunit"
36
37
"build": [
38
"php -d phar.readonly=off ./vendor/bin/phar-composer build ./"
phpunit.xml
@@ -0,0 +1,14 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit
3
+ bootstrap="vendor/autoload.php"
4
+ colors="true"
5
+ executionOrder="depends,defects"
6
+ failOnRisky="true"
7
+ failOnWarning="true"
8
+>
9
+ <testsuites>
10
+ <testsuite name="default">
11
+ <directory>test</directory>
12
+ </testsuite>
13
+ </testsuites>
14
+</phpunit>
0 commit comments