forked from mpociot/slack-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1010 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
35
36
37
38
39
40
{
"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]"
}],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/michaelpapesch/phpws"
}
],
"require": {
"php": ">=5.5",
"mpociot/phpws": "dev-master",
"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"
}
}
}