forked from ZF-Commons/ZfcUser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.83 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "zf-commons/zfc-user",
"description": "A generic user registration and authentication module for ZF2. Supports Zend\\Db and Doctrine2.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2"
],
"homepage": "https://github.com/ZF-Commons/ZfcUser",
"authors": [
{
"name": "Evan Coury",
"email": "[email protected]",
"homepage": "http://blog.evan.pro/"
},
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
}
],
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"require": {
"php": "^5.3.3|~7.0",
"zendframework/zend-authentication": "~2.1",
"zendframework/zend-crypt": "~2.1",
"zendframework/zend-form": "~2.1",
"zendframework/zend-inputfilter": "~2.1",
"zendframework/zend-loader": "~2.1",
"zendframework/zend-modulemanager": "~2.1",
"zendframework/zend-mvc": "~2.1",
"zendframework/zend-servicemanager": "~2.1",
"zendframework/zend-stdlib": "~2.1",
"zendframework/zend-validator": "~2.1",
"zendframework/zend-view": "~2.1",
"zendframework/zend-session" : "~2.1",
"zendframework/zend-http" : "~2.1",
"zf-commons/zfc-base": "0.*"
},
"require-dev" : {
"phpunit/phpunit" : ">=3.7,<4",
"phpmd/phpmd" : "1.4.*",
"squizlabs/php_codesniffer" : "1.4.*",
"zendframework/zend-captcha" : "~2.1"
},
"suggest": {
"zendframework/zend-captcha" : "Zend\\Captcha if you want to use the captcha component"
},
"autoload": {
"psr-0": {
"ZfcUser": "src/"
},
"classmap": [
"./Module.php"
]
}
}