-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
79 lines (79 loc) · 2.5 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
74
75
76
77
78
79
{
"name": "sgomez/botman-bundle",
"description": "BotMan integration for Symfony",
"authors": [
{
"name": "Sergio Gómez",
"email": "[email protected]"
}
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-curl": "*",
"ext-json": "*",
"botman/botman": "^2.4",
"php-http/client-common": "^1.7",
"php-http/client-implementation": "^1.0",
"symfony/cache": "^3.4|^4.0",
"symfony/config": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-foundation": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/routing": "^3.4|^4.0",
"tightenco/collect": "^5.6"
},
"require-dev": {
"botman/driver-amazon-alexa": "^1.0",
"botman/driver-botframework": "^1.0",
"botman/driver-cisco-spark": "^1.0",
"botman/driver-facebook": "^1.0",
"botman/driver-hangouts": "^1.0",
"botman/driver-hipchat": "^1.0",
"botman/driver-kik": "^1.0",
"botman/driver-nexmo": "^1.0",
"botman/driver-slack": "^2.0",
"botman/driver-telegram": "^1.0",
"botman/driver-twilio": "^1.0",
"botman/driver-twitter": "^1.0",
"botman/driver-wechat": "^1.0",
"illuminate/support": "^5.6",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/httplug-bundle": "^1.11",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-phpunit": "^0.10.0",
"phpstan/phpstan-symfony": "^0.10.1",
"phpunit/phpunit": "^7.3",
"symplify/easy-coding-standard": "^4.6"
},
"suggest": {
"botman/driver-telegram": "^1.5",
"php-http/httplug-bundle": "^1.11"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sgomez\\Bundle\\BotmanBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sgomez\\Bundle\\BotmanBundle\\Tests\\": "tests/",
"App\\": "tests/Fixtures/App"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check src tests",
"fix-cs": "vendor/bin/ecs check --fix src tests",
"phpstan": "vendor/bin/phpstan analyse src tests --level max"
}
}