├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Acl.php ├── AclInterface.php ├── Assertion ├── AssertionAggregate.php ├── AssertionInterface.php ├── AssertionManager.php ├── CallbackAssertion.php ├── Exception │ └── InvalidAssertionException.php ├── ExpressionAssertion.php └── OwnershipAssertion.php ├── Exception ├── ExceptionInterface.php ├── InvalidArgumentException.php └── RuntimeException.php ├── ProprietaryInterface.php ├── Resource ├── GenericResource.php └── ResourceInterface.php └── Role ├── GenericRole.php ├── Registry.php └── RoleInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/composer.json -------------------------------------------------------------------------------- /src/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Acl.php -------------------------------------------------------------------------------- /src/AclInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/AclInterface.php -------------------------------------------------------------------------------- /src/Assertion/AssertionAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/AssertionAggregate.php -------------------------------------------------------------------------------- /src/Assertion/AssertionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/AssertionInterface.php -------------------------------------------------------------------------------- /src/Assertion/AssertionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/AssertionManager.php -------------------------------------------------------------------------------- /src/Assertion/CallbackAssertion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/CallbackAssertion.php -------------------------------------------------------------------------------- /src/Assertion/Exception/InvalidAssertionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/Exception/InvalidAssertionException.php -------------------------------------------------------------------------------- /src/Assertion/ExpressionAssertion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/ExpressionAssertion.php -------------------------------------------------------------------------------- /src/Assertion/OwnershipAssertion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Assertion/OwnershipAssertion.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/ProprietaryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/ProprietaryInterface.php -------------------------------------------------------------------------------- /src/Resource/GenericResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Resource/GenericResource.php -------------------------------------------------------------------------------- /src/Resource/ResourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Resource/ResourceInterface.php -------------------------------------------------------------------------------- /src/Role/GenericRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Role/GenericRole.php -------------------------------------------------------------------------------- /src/Role/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Role/Registry.php -------------------------------------------------------------------------------- /src/Role/RoleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-permissions-acl/HEAD/src/Role/RoleInterface.php --------------------------------------------------------------------------------