├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── config ├── .gitkeep └── restable.php ├── phpunit.xml ├── src ├── Contracts │ └── Restable.php ├── Facades │ └── Restable.php ├── Format.php ├── Pluralizer.php ├── Restable.php └── RestableServiceProvider.php └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/restable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/config/restable.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Contracts/Restable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/Contracts/Restable.php -------------------------------------------------------------------------------- /src/Facades/Restable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/Facades/Restable.php -------------------------------------------------------------------------------- /src/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/Format.php -------------------------------------------------------------------------------- /src/Pluralizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/Pluralizer.php -------------------------------------------------------------------------------- /src/Restable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/Restable.php -------------------------------------------------------------------------------- /src/RestableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel-restable/HEAD/src/RestableServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------