-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 857 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
37
38
39
40
41
{
"name": "leocata/m1-bot",
"description": "PHP API M1",
"keywords": ["M1","php","api","client","bot","messenger"],
"license": "MIT",
"type": "library",
"minimum-stability": "alpha",
"support": {
"issues": "https://github.com/RushCode/m1-bot/issues",
"source": "https://github.com/RushCode/m1-bot"
},
"authors": [
{
"name": "Leo Cata",
"email": "leocata@yandex.ru"
}
],
"require": {
"ratchet/pawl": "^0.3",
"leocata/m1-api": "^0",
"ulrichsg/getopt-php": "^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^6.4",
"phpunit/php-code-coverage": "^5.2"
},
"autoload": {
"psr-4": {
"leocata\\m1Bot\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"leocata\\M1\\Tests\\": "./tests"
}
},
"bin": [
"mbot-cli"
]
}