-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.16 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
{
"name": "nfauchelle/phergie-keep-alive",
"description": "Phergie plugin which monitors when the last activity on a connection was and if it exceeds a certain time limit the connection is closed and re-created",
"keywords": [ "phergie", "irc", "bot", "plugin" ],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Nick",
"homepage": "https://github.com/nfauchelle/PhergieKeepAlive",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"irc": "irc://irc.freenode.net/phergie",
"issues": "https://github.com/nfauchelle/PhergieKeepAlive/issues",
"source": "https://github.com/nfauchelle/PhergieKeepAlive"
},
"minimum-stability": "dev",
"require": {
"phergie/phergie-irc-bot-react": "1.*"
},
"require-dev": {
"phpunit/phpunit": "4.5.*",
"phake/phake": "2.0.0-beta2"
},
"autoload": {
"psr-4": {
"Phergie\\Irc\\Plugin\\React\\KeepAlive\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phergie\\Irc\\Tests\\Plugin\\React\\KeepAlive\\": "tests"
}
}
}