chore: initialize project using ramsey/php-library-starter-kit

This commit is contained in:
Dan Jones 2021-10-14 15:41:02 -05:00
commit 3d602ddd69
35 changed files with 1119 additions and 0 deletions

21
phpunit.xml.dist Normal file
View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./vendor/autoload.php"
cacheResultFile="./build/cache/phpunit.result.cache"
colors="true"
verbose="true">
<testsuites>
<testsuite name="unit-tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
</phpunit>