forked from tgallice/fb-messenger-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 925 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
42
43
44
45
46
{
"name": "whotrades/fb-messenger-sdk",
"description": "Facebook Messenger Bot php sdk",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Thomas Gallice",
"email": "[email protected]"
},
{
"name": "Vladimir Karpov",
"email": "[email protected]"
}
],
"keywords": [
"facebook",
"messenger",
"bot messenger",
"facebook messenger",
"bot",
"conversation",
"bot conversation"
],
"autoload": {
"psr-4": {
"Tgallice\\FBMessenger\\": "src"
}
},
"require": {
"php": ">=7.4.20",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2",
"symfony/event-dispatcher": "^4.4|^5.3",
"symfony/polyfill-php80": "^1.23",
"symfony/polyfill-php81": "^1.23"
},
"require-dev": {
"phpspec/phpspec": "^7.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}