├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── HasUuidRouteKey.php └── tests ├── HasUuidRouteKeyTest.php ├── Mocks └── Post.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/HasUuidRouteKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/src/HasUuidRouteKey.php -------------------------------------------------------------------------------- /tests/HasUuidRouteKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/tests/HasUuidRouteKeyTest.php -------------------------------------------------------------------------------- /tests/Mocks/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/tests/Mocks/Post.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryancco/laravel-uuid-models/HEAD/tests/TestCase.php --------------------------------------------------------------------------------