-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
62 lines (62 loc) · 1.35 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
58
59
60
61
62
{
"name": "asciisd/zoho",
"description": "Asciisd Zoho provide an elegant and easy way to communicate with Zoho CRM.",
"keywords": [
"Laravel",
"zoho",
"crm"
],
"license": "MIT",
"support": {
"issues": "https://github.com/asciisd/zoho/issues",
"source": "https://github.com/asciisd/zoho"
},
"authors": [
{
"name": "Amr Ahmed",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "^7.0|^8.0|^9.0",
"nesbot/carbon": "^2.0",
"asciisd/zcrm-php-sdk": "^2.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^9.5.10"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"autoload": {
"psr-4": {
"Asciisd\\Zoho\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Asciisd\\Zoho\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Asciisd\\Zoho\\Providers\\ZohoServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit -c ./phpunit.xml --colors=always",
"analysis": "vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}