feat: initial commit

Basic functionality and tests and all that.
This commit is contained in:
Josh Sherman 2020-05-12 22:28:19 -05:00
commit 69c4a24301
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
10 changed files with 307 additions and 0 deletions

23
phpunit.xml Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
failOnRisky="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
verbose="true"
>
<testsuites>
<testsuite name="Random Date">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
</whitelist>
</filter>
</phpunit>