-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
57 lines (57 loc) · 1.42 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
{
"name": "retailcrm/mg-bot-api-client-php",
"description": "PHP client for MG Bot API",
"type": "library",
"keywords": ["API", "RetailCRM", "REST", "bot"],
"homepage": "http://www.retailcrm.ru/",
"license": "MIT",
"authors": [
{
"name": "RetailCRM",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"jms/serializer": "3.*",
"symfony/validator": "5.4.*|^6",
"doctrine/annotations": "^1",
"guzzlehttp/guzzle": "7.*",
"symfony/intl": "5.4.*|^6",
"symfony/cache": "5.4.*|^6"
},
"require-dev": {
"phpmd/phpmd": "2.*",
"squizlabs/php_codesniffer": "3.4.*",
"symfony/dotenv": "5.4.*",
"phpunit/phpunit": "^9",
"phpstan/phpstan": "0.12.*"
},
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"RetailCrm\\Mg\\": "src/",
"RetailCrm\\Common\\": "src/"
},
"files": ["extra/autoloader.php"]
},
"autoload-dev": {
"psr-4": {
"RetailCrm\\Mg\\": "tests/",
"RetailCrm\\Common\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"bin-dir": "vendor/bin",
"process-timeout": 600
}
}