stijnhau / user-registration
This package is abandoned and no longer maintained.
No replacement package was suggested.
A Zend Framework 3 module which extends the registration feature of ZfcUser with email address verification
dev-master
2017-06-18 12:11 UTC
Requires
- php: >=5.6
- zendframework/zend-mail: >2.4.0
- zf-commons/zfc-user: >=3.0.0
Requires (Dev)
- phpunit/phpunit: >4.7.0
This package is not auto-updated.
Last update: 2021-07-24 00:26:42 UTC
README
Installation
- Add
"stijnhau/user-registration": "0.0.*"
, to your composer.json and runphp composer.phar update
- Enable this module in
config/application.config.php
- Copy file located in
vendor/stijnhau/user-registration/config/user-registration.global.php
to./config/autoload/user-registration.global.php
and change the values as you wish.
Note
If you do not want unverified users to log in, this module also ships with a authentication adapter.
return [ 'zfcuser' => [ 'auth_adapters' => [80 => 'UserRegistration\Authentication\Adapter\EmailVerification'] ] ];