forked from mpociot/slack-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1 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
38
39
40
41
{
"name": "spatialmedia/slack-client",
"keywords": ["slack", "api", "realtime"],
"license": "MIT",
"description": "A better Slack client, with RTM API support",
"authors": [
{
"name": "Stephen Coakley",
"email": "[email protected]"
},
{
"name": "Jack Wilkinson",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"mpociot/phpws": "^2.0",
"evenement/evenement": "~3.0",
"guzzlehttp/guzzle": "~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.0",
"fakerphp/faker": "~1.9",
"apigen/apigen": "^4.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Slack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slack\\Tests\\": "tests"
}
}
}