-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.13 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
{
"name": "room11/stack-chat",
"description": "Chat client for Stack Exchange",
"keywords": ["chat", "client"],
"homepage": "https://github.com/Room-11/StackChat",
"license": "MIT",
"authors": [
{
"name": "Pieter Hordijk",
"email": "info@pieterhordijk.com",
"homepage": "https://pieterhordijk.com/",
"role": "developer"
},
{
"name": "Chris Wright",
"email": "cw@daverandom.com",
"homepage": "https://daverandom.com/",
"role": "developer"
}
],
"autoload": {
"files": ["src/constants.php"],
"psr-4": {
"Room11\\StackChat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Room11\\StackChat\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"lib-libxml": ">=2.7.8",
"ext-mbstring": "*",
"ext-intl": "*",
"amphp/amp": "^1.2",
"amphp/artax": "^2",
"amphp/websocket": "^0.1",
"amphp/file": "0.1.*",
"daverandom/exceptional-json": "^1.0",
"php-ds/php-ds": "*",
"psr/log": "^1",
"room11/openid": "~1.0",
"room11/dom-utils": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
}
}