Initial commit
parents
.gitignore
0 → 100644
LICENSE
0 → 100644
Module.php
0 → 100644
README.md
0 → 100644
build/.gitignore
0 → 100644
build/logs/.gitignore
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "unicaen/zfc-user", | ||
"description": "A generic user registration and authentication module for ZF2. Supports Zend\\Db and Doctrine2.", | ||
"type": "library", | ||
"require": { | ||
"php": "^5.5|^7.0", | ||
"zendframework/zend-authentication": "^2.5", | ||
"zendframework/zend-crypt": "^3.0", | ||
"zendframework/zend-form": "^2.9", | ||
"zendframework/zend-inputfilter": "^2.7", | ||
"zendframework/zend-loader": "^2.5", | ||
"zendframework/zend-modulemanager": "^2.7", | ||
"zendframework/zend-mvc": "^3.0", | ||
"zendframework/zend-servicemanager": "^3.0", | ||
"zendframework/zend-stdlib": "^3.0", | ||
"zendframework/zend-validator": "^2.8", | ||
"zendframework/zend-db": "^2.8", | ||
"zendframework/zend-view": "^2.8", | ||
"zendframework/zend-session" : "^2.7", | ||
"zendframework/zend-http" : "^2.5", | ||
"zendframework/zend-mvc-plugin-flashmessenger": "^1.0", | ||
"zendframework/zend-i18n": "^2.7", | ||
"zendframework/zend-mvc-plugin-prg": "^1.0", | ||
"zendframework/zend-hydrator": "^2.0" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : ">=3.7,<4", | ||
"phpmd/phpmd" : "1.4.*", | ||
"squizlabs/php_codesniffer" : "1.4.*", | ||
"zendframework/zend-captcha" : "^2.6" | ||
}, | ||
"suggest": { | ||
"zendframework/zend-captcha" : "Zend\\Captcha if you want to use the captcha component" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"ZfcUser": "src/" | ||
}, | ||
"classmap": [ | ||
"./Module.php" | ||
] | ||
} | ||
} |
config/README.md
0 → 100644
config/module.config.php
0 → 100644