.github
1 year ago
.phan
1 year ago
src
1 year ago
tests
1 year ago
.editorconfig
1 year ago
LICENSE
1 year ago
README.md
1 year ago
composer.json
1 year ago
composer.lock
1 year ago
phpcs-ruleset.xml
1 year ago
phpunit.xml
1 year ago
phpunit.xml
19 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit bootstrap="tests/bootstrap.php" colors="true"> |
| 3 | <testsuites> |
| 4 | <testsuite name="Unirest Test Suite"> |
| 5 | <directory>./tests</directory> |
| 6 | </testsuite> |
| 7 | </testsuites> |
| 8 | |
| 9 | <filter> |
| 10 | <whitelist> |
| 11 | <directory suffix=".php">src</directory> |
| 12 | </whitelist> |
| 13 | </filter> |
| 14 | |
| 15 | <php> |
| 16 | <ini name="date.timezone" value="UTC"/> |
| 17 | </php> |
| 18 | </phpunit> |
| 19 |