├── .editorconfig ├── .github └── workflows │ ├── coding-standards.yml │ └── unit-tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── composer.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── src ├── Constants.php └── GlobalAliases.php └── tests └── ConstantsTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coding-standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/.github/workflows/coding-standards.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/src/Constants.php -------------------------------------------------------------------------------- /src/GlobalAliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/src/GlobalAliases.php -------------------------------------------------------------------------------- /tests/ConstantsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrunwell/time-constants/HEAD/tests/ConstantsTest.php --------------------------------------------------------------------------------