democracyapps / powerbroker
Simple system for managing capabilities of users or organizations based on tier or group to which they belong
Package info
github.com/DemocracyApps/powerbroker
Type:package
pkg:composer/democracyapps/powerbroker
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2026-03-15 01:27:31 UTC
README
This is a simple Laravel utility to facilitate managing capabilities of users or organizations based on the tier or group to which they belong.
Instructions for Use
Installation
Begin by installing this package through Composer.
{
"require": {
"democracyapps/powerbroker": "dev-master"
}
}
Add the service provider to app.php
// app/config/app.php 'providers' => [ '...', 'DemocracyApps\PowerBroker\PowerBrokerServiceProvider', ];
For convenience, you may also add the Facade to app.php
'aliases' => [ '...', 'PowerBroker' => 'DemocracyApps\PowerBroker\PowerBrokerFacade', ];
Configuration Parameters
Next, publish the migrations by running
php artisan vendor:publish
This will create two migrations, one for power groups (table 'da_power_groups') and one for powers (table 'da_powers').