forked from mctekk/zohocrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·57 lines (56 loc) · 1.8 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
{
"name": "mctekk/zohocrm",
"type": "library",
"description": "Wrapper for interact with Zoho CRM API for php",
"keywords": ["Zoho CRM API PHP Wrapper"],
"license": "MIT",
"authors": [
{
"name": "Vojislav Jovanovic",
"email": "[email protected]",
"homepage": "https://github.com/vaish/zohocrm-php"
},
{
"name": "Frangeris Peguero",
"email": "[email protected]",
"homepage": "https://github.com/mctekk/zohocrm"
},
{
"name": "Sparo Hawk",
"homepage": "https://github.com/mctekk/zohocrm"
},
{
"name": "Kaioken",
"homepage": "https://github.com/mctekk/zohocrm"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Zoho\\CRM\\Common\\": "src/Zoho/Common/",
"Zoho\\CRM\\Config\\": "src/Zoho/Config/",
"Zoho\\CRM\\Entities\\": "src/Zoho/Entities/",
"Zoho\\CRM\\Exception\\": "src/Zoho/Exception/",
"Zoho\\CRM\\Request\\": "src/Zoho/Request/",
"Zoho\\CRM\\Wrapper\\": "src/Zoho/Wrapper/",
"Zoho\\CRM\\": "src/Zoho/CRM/"
}
},
"autoload-dev": {
"psr-4": {
"Zoho\\CRM\\Common\\": "src/Zoho/Common/",
"Zoho\\CRM\\Config\\": "src/Zoho/Config/",
"Zoho\\CRM\\Entities\\": "src/Zoho/Entities/",
"Zoho\\CRM\\Exception\\": "src/Zoho/Exception/",
"Zoho\\CRM\\Request\\": "src/Zoho/Request/",
"Zoho\\CRM\\Wrapper\\": "src/Zoho/Wrapper/",
"Zoho\\CRM\\": "src/Zoho/CRM/"
}
} ,
"require-dev": {
"codeception/verify": "*"
}
}