alescx/acl

Acl Plugin for CakePHP 3.x framework

Installs: 20

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 90

Type:cakephp-plugin

0.1.0 2016-02-12 11:30 UTC

README

Build Status License

A plugin for managing ACL in CakePHP applications.

Note: This is a non-stable plugin for CakePHP 3.0 at this time. It is currently under development and should be considered experimental.

Installing via composer

You can install this plugin into your CakePHP application using composer. For existing applications you can add the following to your composer.json file:

"require": {
	"cakephp/acl": "dev-master"
}

And run php composer.phar update

In your config\bootstrap.php:

Plugin::load('Acl', ['bootstrap' => true]);

Creating tables

To create ACL related tables, run the following Migrations command:

bin/cake migrations migrate -p Acl

Running tests

Assuming you have PHPUnit installed system wide using one of the methods stated here, you can run the tests for the Acl plugin by doing the following:

  1. Copy phpunit.xml.dist to phpunit.xml
  2. Add the relevant database credentials to your phpunit.xml if you want to run tests against a non-SQLite datasource.
  3. Run phpunit