forked from asciisd/zoho-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.51 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
{
"name": "asciisd/zoho-v3",
"description": "Laravel Zoho API V3 Package",
"keywords": ["asciisd", "laravel", "zoho", "crm"],
"homepage": "https://github.com/asciisd/zoho-v3",
"license": "MIT",
"authors": [
{
"name": "aemaddin",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/contracts": "^9.0|^10.0",
"spatie/laravel-package-tools": "^1.14.2",
"zohocrm/php-sdk-2.1": "^7.1"
},
"require-dev": {
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload": {
"psr-4": {
"Asciisd\\Zoho\\": "src",
"Asciisd\\Zoho\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Asciisd\\Zoho\\Tests\\": "tests"
}
},
"scripts": {
"analysis": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit -c ./phpunit.xml --colors=always"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"providers": [
"Asciisd\\Zoho\\ZohoServiceProvider"
],
"aliases": {
"Zoho": "Asciisd\\Zoho\\Facades\\Zoho"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}