forked from sudiptochoudhury/php-zoho-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.01 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
{
"name": "sudiptochoudhury/php-zoho-subscriptions",
"description": "PHP Client Library to Consume Zoho Subscriptions REST API",
"keywords":["zoho", "subscriptions", "php", "client", "rest", "api"],
"type": "library",
"homepage": "https://github.com/sudiptochoudhury/php-zoho-subscriptions",
"license": "MIT",
"authors": [
{
"name": "Sudipto Choudhury",
"homepage": "https://sudipto.net",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"sudiptochoudhury/php-api-client-forge": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.2.0",
"mockery/mockery": "^1.1.0"
},
"autoload": {
"psr-4": {
"SudiptoChoudhury\\Zoho\\Subscriptions\\": "src/Zoho/Subscriptions"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
},
"minimum-stability": "dev"
}