├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── PrettyDateTime.php └── tests └── PrettyDateTimeTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/PrettyDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/src/PrettyDateTime.php -------------------------------------------------------------------------------- /tests/PrettyDateTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielstjules/php-pretty-datetime/HEAD/tests/PrettyDateTimeTest.php --------------------------------------------------------------------------------