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