forked from ZF-Commons/ZfcUser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 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
62
{
"name": "zf-commons/zfc-user",
"description": "A generic user registration and authentication module for ZF2. Supports multiple adapters with built-in support for Zend\\Db.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"authentication"
],
"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/"
},
{
"name": "Daniel Strøm",
"email": "[email protected]",
"homepage": "http://eye4web.dk/"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require": {
"php": ">=5.3.3",
"zendframework/zend-authentication": "~2.1",
"zendframework/zend-crypt": "~2.1",
"zendframework/zend-form": "~2.1",
"zendframework/zend-http" : "~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-session" : "~2.1",
"zendframework/zend-stdlib": "~2.1",
"zendframework/zend-validator": "~2.1",
"zendframework/zend-view": "~2.1",
"zf-commons/zfc-base": "~0.1.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=3.7,<4",
"squizlabs/php_codesniffer" : "1.4.*"
},
"autoload": {
"psr-0": {
"ZfcUser": "src/"
},
"classmap": [
"./Module.php"
]
}
}