-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
executable file
·56 lines (56 loc) · 1.59 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
{
"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": ">=7.2",
"guzzlehttp/guzzle": "^6.3",
"ext-redis": ">=2.2.7"
},
"autoload": {
"psr-4": {
"Zoho\\CRM\\": "src/Zoho/CRM/"
}
},
"require-dev": {
"vlucas/phpdotenv": "^4.1",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2",
"codeception/module-filesystem": "^1.0",
"codeception/module-phalcon": "^1.0",
"codeception/verify": "*",
"fzaninotto/faker": "^1.9",
"odan/phinx-migrations-generator": "^5",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "1.*",
"symfony/var-dumper": "^4.3@dev",
"codeception/module-phpbrowser": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}