-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 783 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 783 Bytes
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
{
"name" : "wabel/zoho-crm-orm",
"description" : "An ORM like package used to manipulate data from your Zoho CRM Account through the API.",
"type" : "library",
"homepage" : "http://mouf-php.com",
"keywords" : [
"Zoho CRM",
"ZohoCRM",
"Zoho",
"ORM"
],
"require" : {
"php" : ">=7.1",
"wabel/zoho-crm-client-wrapper": "~1.0",
"gossi/php-code-generator" : "^0.4 || ^0.5 || ^0.6",
"psr/log": "~1.0"
},
"require-dev" : {
"phpunit/phpunit": "^7.0",
"phpunit/php-code-coverage": "^6.1",
"gossi/php-code-generator" : "^0.6"
},
"autoload" : {
"psr-4" : {
"Wabel\\Zoho\\CRM\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Wabel\\Zoho\\CRM\\" : "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}