-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.19 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
63
64
65
66
67
68
{
"name": "kenkataiwa/zend-user-module",
"description": "A generic user registration and authentication module for Zend Framework. Supports Zend\\Db and Doctrine2.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zendframework",
"user"
],
"homepage": "https://github.com/kenkataiwa/ZendUserModule",
"authors": [
{
"name": "Kenneth Kataiwa",
"email": "mail@kenkataiwa.com",
"homepage": "http://kenkataiwa.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-authentication": "^2.5.3",
"zendframework/zend-crypt": "^3.2.0",
"zendframework/zend-form": "^2.10.0",
"zendframework/zend-inputfilter": "^2.7.3",
"zendframework/zend-loader": "^2.5",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-mvc": "^3.0.4",
"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-i18n": "^1.0.0",
"zendframework/zend-mvc-plugin-prg": "^1.0.0",
"zendframework/zend-hydrator": "^2.2.1",
"zendframework/zend-captcha" : "^2.7.1"
},
"require-dev" : {
"phpmd/phpmd" : "^2",
"zendframework/zend-test": "^3.0.2",
"zfcampus/zf-development-mode": "^3.1.0",
"squizlabs/php_codesniffer" : "^2.8.1"
},
"suggest": {
"zendframework/zend-captcha" : "Zend\\Captcha if you want to use the captcha component"
},
"autoload": {
"psr-4": {
"Zend\\UserModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zend\\UserModuleTest\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"zf": {
"component": "Zend\\UserModule"
}
}
}