-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "zoho-api/zoho-subscriptions",
"description": "ZF2 module to interact with Zoho Subscriptions API",
"keywords": [
"zoho", "subscription", "plan", "api", "rest"
],
"support": {
"source": "https://github.com/jguittard/zoho-subscriptions",
"issues": "https://github.com/jguittard/zoho-subscriptions/issues"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julien Guittard",
"email": "julien.guittard@me.com"
}
],
"require": {
"zendframework/zend-inputfilter": "~2.4",
"zendframework/zend-i18n": "~2.4",
"zendframework/zend-servicemanager": "~2.4",
"zendframework/zend-modulemanager": "~2.4",
"zendframework/zend-http": "~2.4",
"zendframework/zend-json": "~2.4"
},
"require-dev": {
"fabpot/php-cs-fixer": "1.7.*",
"squizlabs/php_codesniffer": "~2.0",
"phpunit/PHPUnit": "~4.5.0"
},
"autoload": {
"psr-4": {
"Zoho\\Subscriptions\\": "src/"
},
"classmap": [
"Module.php"
]
},
"autoload-dev": {
"psr-4": {
"ZohoTest\\Subscriptions\\": "tests/"
}
}
}