forked from zfcampus/zf-mvc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.6 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
{
"name": "zfcampus/zf-mvc-auth",
"description": "ZF2 Module providing Authentication and Authorization events and infrastructure",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"zend",
"module"
],
"extra": {
"branch-alias": {
"dev-master": "1.4-dev",
"dev-develop": "1.5-dev"
},
"zf": {
"module": "ZF\\MvcAuth"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-authentication": "^2.5.3",
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1",
"zendframework/zend-http": "^2.5.4",
"zendframework/zend-mvc": "^2.7.9 || ^3.0.2",
"zendframework/zend-permissions-acl": "^2.6",
"zendframework/zend-permissions-rbac": "^2.5.1",
"zendframework/zend-servicemanager": "^2.7.6 || ^3.1",
"zendframework/zend-stdlib": "^2.7.7 || ^3.0.1",
"zfcampus/zf-api-problem": "^1.2.1",
"zfcampus/zf-content-negotiation": "^1.2.1",
"zfcampus/zf-oauth2": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0",
"squizlabs/php_codesniffer": "^2.6.2",
"zendframework/zend-session": "^2.7.3"
},
"autoload": {
"psr-4": {
"ZF\\MvcAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZFTest\\MvcAuth\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}