-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- LICENSE 27 additions, 0 deletionsLICENSE
- Module.php 85 additions, 0 deletionsModule.php
- README.md 252 additions, 0 deletionsREADME.md
- build/.gitignore 5 additions, 0 deletionsbuild/.gitignore
- build/logs/.gitignore 3 additions, 0 deletionsbuild/logs/.gitignore
- composer.json 43 additions, 0 deletionscomposer.json
- config/README.md 5 additions, 0 deletionsconfig/README.md
- config/module.config.php 88 additions, 0 deletionsconfig/module.config.php
- config/zfcuser.global.php.dist 235 additions, 0 deletionsconfig/zfcuser.global.php.dist
- data/schema.mysql.sql 9 additions, 0 deletionsdata/schema.mysql.sql
- data/schema.pgsql.sql 13 additions, 0 deletionsdata/schema.pgsql.sql
- data/schema.sql 9 additions, 0 deletionsdata/schema.sql
- data/schema.sqlite.sql 9 additions, 0 deletionsdata/schema.sqlite.sql
- src/ZfcUser/Authentication/Adapter/AbstractAdapter.php 66 additions, 0 deletionssrc/ZfcUser/Authentication/Adapter/AbstractAdapter.php
- src/ZfcUser/Authentication/Adapter/AdapterChain.php 150 additions, 0 deletionssrc/ZfcUser/Authentication/Adapter/AdapterChain.php
- src/ZfcUser/Authentication/Adapter/AdapterChainEvent.php 103 additions, 0 deletionssrc/ZfcUser/Authentication/Adapter/AdapterChainEvent.php
- src/ZfcUser/Authentication/Adapter/AdapterChainServiceFactory.php 83 additions, 0 deletions...ser/Authentication/Adapter/AdapterChainServiceFactory.php
- src/ZfcUser/Authentication/Adapter/ChainableAdapter.php 20 additions, 0 deletionssrc/ZfcUser/Authentication/Adapter/ChainableAdapter.php
- src/ZfcUser/Authentication/Adapter/Db.php 233 additions, 0 deletionssrc/ZfcUser/Authentication/Adapter/Db.php
.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
config/zfcuser.global.php.dist
0 → 100644
data/schema.mysql.sql
0 → 100644
data/schema.pgsql.sql
0 → 100644
data/schema.sql
0 → 100644
data/schema.sqlite.sql
0 → 100644
src/ZfcUser/Authentication/Adapter/Db.php
0 → 100644
Please register or sign in to comment