-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
40 lines (40 loc) · 887 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
{
"name": "donmarkus/chatbot",
"description": "This package makes it simple to start building a chatbot in PHP",
"type": "library",
"homepage": "https://donmarkus.github.io/chatbot/",
"keywords": [
"bot",
"messenger-bot",
"wit-ai",
"api-ai",
"messenger-bot-boilerplate"
],
"require": {
"php": ">=7.0",
"iboldurev/api-ai-php": "^0.2.5",
"monolog/monolog": "^1.22",
"vlucas/phpdotenv": "^2.4",
"tgallice/wit-php": "^0.3.1",
"pimax/fb-messenger-php": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"DonMarkus\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Jean-Marc Amon",
"email": "[email protected]",
"homepage": "https://marclabs.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}