├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── circle.yml ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── Timezone.php └── tests └── TimezoneTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Timezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/src/Timezone.php -------------------------------------------------------------------------------- /tests/TimezoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-validation-rules/timezone/HEAD/tests/TimezoneTest.php --------------------------------------------------------------------------------