├── .gitignore ├── .travis.yml ├── composer.json ├── composer.lock ├── docs ├── .gitkeep └── install.md ├── license.md ├── phpunit.xml ├── readme.md ├── src └── Authority │ ├── Authority.php │ ├── Events │ ├── Dispatcher.php │ └── Event.php │ ├── Rule.php │ ├── RuleAlias.php │ └── RuleRepository.php └── tests ├── AuthorityTest.php ├── DispatcherTest.php ├── RuleAliasTest.php ├── RuleRepositoryTest.php └── RuleTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/docs/install.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/readme.md -------------------------------------------------------------------------------- /src/Authority/Authority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/Authority.php -------------------------------------------------------------------------------- /src/Authority/Events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/Events/Dispatcher.php -------------------------------------------------------------------------------- /src/Authority/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/Events/Event.php -------------------------------------------------------------------------------- /src/Authority/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/Rule.php -------------------------------------------------------------------------------- /src/Authority/RuleAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/RuleAlias.php -------------------------------------------------------------------------------- /src/Authority/RuleRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/src/Authority/RuleRepository.php -------------------------------------------------------------------------------- /tests/AuthorityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/tests/AuthorityTest.php -------------------------------------------------------------------------------- /tests/DispatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/tests/DispatcherTest.php -------------------------------------------------------------------------------- /tests/RuleAliasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/tests/RuleAliasTest.php -------------------------------------------------------------------------------- /tests/RuleRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/tests/RuleRepositoryTest.php -------------------------------------------------------------------------------- /tests/RuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machuga/authority/HEAD/tests/RuleTest.php --------------------------------------------------------------------------------