forked from amocrm/amocrm-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 1.84 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "livevasiliy/amocrm-api-library",
"description": "amoCRM API Client",
"license": "MIT",
"version": "1.0.5",
"minimum-stability": "stable",
"authors": [
{
"name": "Nikita Bessudnov",
"email": "nbessudnov@team.amocrm.com",
"homepage": "https://github.com/bessudnov"
},
{
"name": "Vasiliy Pivovarov",
"email": "v2.pivovarov@itransition.com",
"homepage": "https://github.com/livevasiliy"
}
],
"keywords": [
"amocrm api",
"oauth2",
"api client",
"client",
"authorization",
"authorisation",
"amocrm"
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"amocrm/oauth2-amocrm": "~2.0.6",
"guzzlehttp/guzzle": "6.*",
"symfony/dotenv": "3.*",
"fig/http-message-util": "1.*",
"ramsey/uuid": "^3",
"lcobucci/jwt": "^3.4.6",
"nesbot/carbon": "~1.17.0",
"illuminate/support": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "5.*.*",
"squizlabs/php_codesniffer": "3.6.*"
},
"autoload": {
"psr-4": {
"AmoCRM\\": "src/",
"AmoCRM\\Client\\": "src/AmoCRM/Client",
"AmoCRM\\Enum\\": "src/AmoCRM/Enum",
"AmoCRM\\OAuth\\": "src/AmoCRM/OAuth",
"AmoCRM\\EntitiesServices\\": "src/AmoCRM/EntitiesServices",
"AmoCRM\\Exceptions\\": "src/AmoCRM/Exceptions",
"AmoCRM\\Models\\": "src/AmoCRM/Models",
"AmoCRM\\Collections\\": "src/AmoCRM/Collections",
"AmoCRM\\Filters\\": "src/AmoCRM/Filters",
"AmoCRM\\Helpers\\": "src/AmoCRM/Helpers"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml",
"style:check": "vendor/bin/phpcs",
"style:fix": "vendor/bin/phpcbf",
"serve": "php -S localhost:8181",
"git:prepush": [
"@style:check",
"@test"
]
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}