forked from sagebind/slack-client
-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
34 lines (34 loc) · 867 Bytes
/
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
{
"name": "mpociot/slack-client",
"keywords": ["slack", "api", "realtime"],
"license": "MIT",
"description": "A better Slack client, with RTM API support",
"authors": [{
"name": "Stephen Coakley",
"email": "[email protected]"
}],
"require": {
"php": ">=5.5",
"mpociot/phpws": "^2.0",
"evenement/evenement": "~3.0",
"guzzlehttp/guzzle": "~6.0",
"react/event-loop": "^1.0 || ^0.5 || ^0.4",
"react/promise": "^2.2",
"react/promise-timer": "^1.2.1"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"fzaninotto/faker": "~1.4",
"apigen/apigen": "^4.1"
},
"autoload": {
"psr-4": {
"Slack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slack\\Tests\\": "tests"
}
}
}