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 6b47bd6 commit 0fb1c9bCopy full SHA for 0fb1c9b
composer.json
@@ -16,6 +16,9 @@
16
"classmap": ["src/"]
17
},
18
"require-dev": {
19
- "satooshi/php-coveralls": "dev-master"
+ "phpunit/phpunit": "^4.8"
20
+ },
21
+ "require": {
22
+ "php": ">5.3"
23
}
24
phpunit.xml
@@ -0,0 +1,14 @@
1
+<phpunit
2
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.1/phpunit.xsd"
4
+ bootstrap="tests/bootstrap.php"
5
+ backupGlobals="true"
6
+ verbose="true"
7
+ colors="true"
8
+>
9
+ <testsuites>
10
+ <testsuite name="SimpleXML Debug Tests">
11
+ <directory>tests</directory>
12
+ </testsuite>
13
+ </testsuites>
14
+</phpunit>
0 commit comments