├── .editorconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laravel-authorize.php └── src ├── AuthorizeServiceProvider.php └── Middleware └── Authorize.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/config/laravel-authorize.php -------------------------------------------------------------------------------- /src/AuthorizeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/src/AuthorizeServiceProvider.php -------------------------------------------------------------------------------- /src/Middleware/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-authorize/HEAD/src/Middleware/Authorize.php --------------------------------------------------------------------------------