forked from iansltx/build-a-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 703 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 703 Bytes
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
{
"name": "iansltx/build-a-bot",
"description": "Build a Bot workshop companion code",
"keywords": ["PNWPHP", "conference", "php-world", "bot", "api.ai", "dialogflow", "web hook"],
"homepage": "https://github.com/iansltx/build-a-bot",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Ian Littman",
"email": "iansltx@gmail.com",
"homepage": "https://twitter.com/iansltx",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"slim/slim": "^3.8.1",
"iansltx/dialogflow-bridge": "^0.3",
"iansltx/joind-in-client": "^1.0@dev"
},
"autoload": {
"psr-4": {"BuildABot\\App\\": "src/"}
}
}