-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
52 lines (52 loc) · 1.53 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
{
"name": "room11/jeeves",
"description": "Chat bot",
"keywords": ["bot", "chat"],
"homepage": "https://github.com/Room-11/Jeeves",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "[email protected]",
"homepage": "https://pieterhordijk.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {"Room11\\Jeeves\\": "src/"},
"files": ["src/helpers.php"]
},
"autoload-dev": {
"psr-4": {"Room11\\Jeeves\\Tests\\": "tests/src/"}
},
"require": {
"php": ">=7.1",
"lib-libxml": ">=2.7.8",
"ext-mbstring": "*",
"ext-intl": "*",
"amphp/aerys": "~0.4",
"amphp/amp": "^1.2",
"amphp/artax": "^2",
"amphp/file": "0.1.*",
"amphp/websocket": "^0.1",
"ekinhbayar/interval-parser": "^0.1",
"daverandom/async-bitly-client": "^0.1",
"daverandom/async-microsoft-translate-client": "^1.0",
"daverandom/exceptional-json": "^1.0",
"daverandom/mutex": "~0.0",
"peehaa/async-twitter": "^0.3",
"peehaa/async-chatter-bot": "^0.2",
"php-ds/php-ds": "*",
"psr/log": "^1",
"rdlowrey/auryn": "^1.1",
"room11/dom-utils": "~1.0",
"room11/google-searcher": "~1.0",
"room11/stack-chat": "dev-master",
"sabre/uri": "^1.0",
"sebastian/version": "^2.0",
"symfony/yaml": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
}
}