forked from phergie/phergie-irc-client-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.24 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.24 KB
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
{
"name": "phergie/phergie-irc-client-react",
"description": "IRC client library built on React",
"keywords": [ "irc", "client", "react" ],
"license": "BSD-2-Clause",
"support": {
"email": "team@phergie.org",
"irc": "irc://irc.freenode.net/phergie",
"issues": "https://github.com/phergie/phergie-irc-client-react/issues",
"source": "https://github.com/phergie/phergie-irc-client-react"
},
"require": {
"php": ">=5.5",
"phergie/phergie-irc-parser": "~2.0",
"phergie/phergie-irc-generator": "~1.5",
"phergie/phergie-irc-connection": "~2.0",
"react/event-loop": "~0.4.0",
"react/stream": "~0.4.2",
"react/socket-client": "~0.4.2",
"react/dns": "~0.4.0",
"react/promise": "~2.0",
"psr/log": "~1.0",
"monolog/monolog": "~1.6"
},
"require-dev": {
"phergie/phergie-irc-bot-react-development": "~1.0.0"
},
"conflict" : {
"phergie/phergie-irc-plugin-react-pong": "*"
},
"autoload": {
"psr-4": {
"Phergie\\Irc\\Client\\React\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phergie\\Irc\\Tests\\Client\\React\\": "tests"
}
}
}