forked from amocrm/amocrm-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 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
59
{
"name": "amocrm/amocrm-api-library",
"description": "amoCRM API Client",
"license": "MIT",
"authors": [
{
"name": "Nikita Bessudnov",
"email": "[email protected]",
"homepage": "https://github.com/bessudnov"
}
],
"keywords": [
"amocrm api",
"oauth2",
"api client",
"client",
"authorization",
"authorisation",
"amocrm"
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"amocrm/oauth2-amocrm": "^2.0",
"guzzlehttp/guzzle": "6.* || 7.*",
"illuminate/support": "5.* || 6.* || 7.* || 8.*",
"symfony/dotenv": "4.* || 5.*",
"fig/http-message-util": "1.*",
"ramsey/uuid": "^3 || ^4",
"lcobucci/jwt": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "7.*.*",
"squizlabs/php_codesniffer": "3.5.*"
},
"autoload": {
"psr-4": {
"AmoCRM\\": "src/",
"AmoCRM\\Client\\": "src/AmoCRM/Client",
"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"
]
}
}