-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name" : "salaros/vtwsclib-php",
"license" : "MIT",
"description" : "Vtiger Web Services PHP Client Library",
"homepage" : "https://github.com/salaros/vtwsclib-php",
"type" : "library",
"keywords": [
"vtwsclib",
"webservices",
"vtiger",
"api client"
],
"authors": [
{
"name" : "Zhmayev Yaroslav",
"email" : "[email protected]",
"homepage" : "http://salaros.com",
"role" : "Developer"
}
],
"require": {
"php" : ">=5.5",
"guzzlehttp/guzzle" : "~6.5||~7.4"
},
"require-dev": {
"sphpdox/sphpdox" : "dev-master"
},
"autoload": {
"psr-4": {
"Salaros\\Vtiger\\VTWSCLib\\": "src/"
}
},
"scripts": {
"docs": [
"@install-pip",
"@install-pip-reqs",
"cd ./docs && make html"
],
"install-pip": "! hash pip &> /dev/null && sudo apt install -qy python-pip",
"install-pip-reqs": "pip install -r ./docs/pip-requirements.txt"
}
}