cruddy/sentry
There is no license information available for the latest version (dev-master) of this package.
Maintainers
dev-master
2014-10-31 17:39 UTC
Requires
- php: >=5.4.0
- cartalyst/sentry: ~2.0
- illuminate/support: ~4.1
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
Unknown License 6cf9f5c81ad53bbfb795329d013faa1e8db15e66
- Alexander Kalnoy <lazychaser.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-07 00:22:41 UTC
README
If your application uses Sentry for authentication, you can it's power to control which entities the user can have access to.
Each entity has following actions that can be performed: view, create, update, delete.
A user needs to have {entity}.{action} permission to perform an action on specified
entity. For example, in order to be able to view items of products entity, authenticated
user needs to have products.view permission.
Installation
Install the package using a Composer:
composer require cruddy/sentry:dev-master@dev
Add a service provider:
'Kalnoy\Cruddy\Sentry\SentryServiceProvider',
Set the permissions driver in Cruddy's configuration:
'permissions' => 'sentry',
