├── .gitignore ├── .travis.yml ├── Console └── Command │ └── AclExtrasShell.php ├── Lib └── AclExtras.php ├── README.md ├── Test ├── Case │ ├── AllTestsTest.php │ └── Lib │ │ └── AclExtrasTest.php └── test_controllers.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/.travis.yml -------------------------------------------------------------------------------- /Console/Command/AclExtrasShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/Console/Command/AclExtrasShell.php -------------------------------------------------------------------------------- /Lib/AclExtras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/Lib/AclExtras.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/README.md -------------------------------------------------------------------------------- /Test/Case/AllTestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/Test/Case/AllTestsTest.php -------------------------------------------------------------------------------- /Test/Case/Lib/AclExtrasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/Test/Case/Lib/AclExtrasTest.php -------------------------------------------------------------------------------- /Test/test_controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/Test/test_controllers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markstory/acl_extras/HEAD/composer.json --------------------------------------------------------------------------------