2017 © Pedro Peláez
 

package powerbroker

Simple system for managing capabilities of users or organizations based on tier or group to which they belong

image

democracyapps/powerbroker

Simple system for managing capabilities of users or organizations based on tier or group to which they belong

  • Wednesday, April 8, 2015
  • by ejaxon
  • Repository
  • 2 Watchers
  • 0 Stars
  • 50 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

powers

This is a simple Laravel utility to facilitate managing capabilities of users or organizations based on the tier or group to which they belong., (*1)

Instructions for Use

Installation

Begin by installing this package through Composer., (*2)

{
    "require": {
        "democracyapps/powerbroker": "dev-master"
    }
}

Add the service provider to app.php, (*3)

// app/config/app.php

'providers' => [
    '...',
    'DemocracyApps\PowerBroker\PowerBrokerServiceProvider',
];

For convenience, you may also add the Facade to app.php, (*4)

'aliases' => [
    '...',
    'PowerBroker' => 'DemocracyApps\PowerBroker\PowerBrokerFacade',
    ];

Configuration Parameters

Next, publish the migrations by running, (*5)

php artisan vendor:publish

This will create two migrations, one for power groups (table 'da_power_groups') and one for powers (table 'da_powers')., (*6)

The Versions

08/04 2015

dev-master

9999999-dev

Simple system for managing capabilities of users or organizations based on tier or group to which they belong

  Sources   Download

MIT

The Requires

 

The Development Requires

by Eric Jackson