awoyotoyin / zfe-auth
Common Library for Zend Expressive User Authentication
dev-master
2018-04-24 23:36 UTC
Requires
- php: ^5.6 || ^7.0
- awoyotoyin/zfe-base: ^1.0
- dasprid/container-interop-doctrine: ^1.1
- zendframework/zend-crypt: ^3.2
- zendframework/zend-stdlib: ^3.1
Requires (Dev)
- phpunit/phpunit: ^6.0.8 || ^5.7.15
This package is not auto-updated.
Last update: 2024-12-22 06:58:01 UTC
README
Installation
$ composer require awoyotoyin/zfe-auth:dev-master
Register the module
This module requires the awoyotoyin/zfe-base module and must be registered to function properly
Zend Expressive
use Zfe\Common\ConfigProvider as CommonConfigProvider; use Zfe\Auth\ConfigProvider as AuthConfigProvider; $aggregator = new ConfigAggregator([ ... CommonConfigProvider::class, AuthConfigProvider::class, ... ], $cacheConfig['config_cache_path']);
Usage
A work in progress