├── .circleci └── config.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Exceptions │ └── InvalidDateRangeException.php └── Temporal.php └── tests ├── TemporalTest.php └── TestCase.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | .idea 5 | ._DS_STORE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Exceptions/InvalidDateRangeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/src/Exceptions/InvalidDateRangeException.php -------------------------------------------------------------------------------- /src/Temporal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/src/Temporal.php -------------------------------------------------------------------------------- /tests/TemporalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/tests/TemporalTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmelsg/cj-temporal-models/HEAD/tests/TestCase.php --------------------------------------------------------------------------------