forked from API-Skeletons/zf-oauth2-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.84 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
{
"name": "api-skeletons/zf-oauth2-doctrine",
"description": "Doctrine OAuth2 Server Adapter for Apigility",
"license": "MIT",
"keywords": [
"oauth2",
"doctrine",
"apigility"
],
"require": {
"php": ">=7.1",
"zfcampus/zf-oauth2": "^1.4",
"doctrine/orm": "^2.5.11",
"doctrine/doctrine-module": "^1.2 || ^2.1",
"doctrine/doctrine-orm-module": "^1.1.5 || ^2.1",
"zfcampus/zf-mvc-auth": "^1.4.3",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-config": "^2.6 || ^3.0",
"zendframework/zend-modulemanager": "^2.0",
"zendframework/zend-servicemanager": "^3.0",
"zendframework/zend-i18n": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"zendframework/zend-form": "^2.10",
"zendframework/zend-loader": "^2.4",
"zendframework/zend-log": "^2.9",
"zendframework/zend-serializer": "^2.7",
"zendframework/zend-test": "^3.1",
"zendframework/zend-authentication": "^2.5",
"zendframework/zend-eventmanager": "^3.2",
"mockery/mockery": "^0.9.5",
"satooshi/php-coveralls": "^1.0",
"api-skeletons/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"ZF\\OAuth2\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZFTest\\OAuth2\\Doctrine\\": "test/"
}
},
"extra": {
"zf": {
"component": "ZF\\OAuth2\\Doctrine",
"config-provider": "ZF\\OAuth2\\Doctrine\\ConfigProvider"
}
},
"suggest": {
"api-skeletons/zf-oauth2-doctrine-permissions-acl": "Access Control Lists for zf-oauth2-doctrine",
"bushbaby/zf-oauth2-doctrine-mutatetablenames": "Allows configuration of the table names that this module uses"
}
}