cruddy/sentry

There is no license information available for the latest version (dev-master) of this package.
Maintainers

👁 lazychaser

Package info

github.com/cruddy/sentry

pkg:composer/cruddy/sentry

Statistics

Installs: 88

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2014-10-31 17:39 UTC

Requires

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',