-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
32 lines (32 loc) · 849 Bytes
/
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
{
"name": "adamlundrigan/ldc-zfc-user-oauth2",
"description": "OAuth2 server integration for ZfcUser",
"keywords": [ "zfcuser", "apigility", "zf-oauth2" ],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Adam Lundrigan",
"email": "adam@lundrigan.ca"
}
],
"require": {
"zf-commons/zfc-user": "1.*",
"zfcampus/zf-oauth2": "1.*"
},
"require-dev": {
"phpunit/phpunit": ">=4.3.0",
"mockery/mockery": "0.*",
"fabpot/php-cs-fixer": "@stable",
"zendframework/zend-servicemanager": "2.*",
"ext-pdo_sqlite": "*"
},
"replace": {
"adamlundrigan/ldc-zfc-user-apigility": "*"
},
"autoload": {
"psr-4": {
"LdcZfcUserOAuth2\\": "src/"
},
"files": ["Module.php"]
}
}