forked from Exe-Squared/Vtiger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 911 Bytes
/
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
{
"name": "clystnet/vtiger",
"type": "laravel",
"description": "Package to run Vtiger Webservice API",
"keywords": ["laravel", "vtiger"],
"homepage": "https://github.com/Clystnet/Vtiger",
"license": "MIT",
"authors": [
{
"name": "Adam Godfrey",
"email": "adam.godfrey@clystnet.com",
"homepage": "https://www.clystnet.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"guzzlehttp/guzzle": "~6.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Clystnet\\Vtiger\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Clystnet\\Vtiger\\VtigerServiceProvider"
],
"aliases": {
"Vtiger": "Clystnet\\Vtiger\\Facades\\Vtiger"
}
}
}
}