├── .github └── workflows │ ├── run-tests-L11.yml │ └── update-changelog.yml ├── .gitignore ├── CHANGELOG.MD ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── database └── migrations │ └── create_test_models_table.php.stub ├── phpunit.xml.dist ├── src └── HumanTimestamps.php └── tests ├── HasHumanTimestampsTest.php ├── ModelBuilder.php └── TestCase.php /.github/workflows/run-tests-L11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/.github/workflows/run-tests-L11.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/composer.lock -------------------------------------------------------------------------------- /database/migrations/create_test_models_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/database/migrations/create_test_models_table.php.stub -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/HumanTimestamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/src/HumanTimestamps.php -------------------------------------------------------------------------------- /tests/HasHumanTimestampsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/tests/HasHumanTimestampsTest.php -------------------------------------------------------------------------------- /tests/ModelBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/tests/ModelBuilder.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisdicarlo/eloquent-human-timestamps/HEAD/tests/TestCase.php --------------------------------------------------------------------------------