-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 925 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
{
"name": "phpdiscordsdk/phpdiscordsdk",
"description": "A Light Weight PHP Discord SDK Library to build Discord Bots with Web Panel",
"license": "MIT",
"keywords": ["phpdiscord", "phpdiscordsdk", "php discord bot"],
"authors": [
{
"name": "Yuvaraj Mudaliar",
"homepage": "https://web.inmelodies.in",
"email": "yuvim86@gmail.com"
}
],
"autoload": {
"psr-4": {
"HobsRkm\\SDK\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"react/socket": "^1.9",
"ratchet/pawl": "^0.3.5",
"react/event-loop": "^1.2",
"react/promise": "^2.8",
"react/http": "1.5"
},
"require-dev": {
"phpunit/phpunit": "9.5.*",
"clue/block-react": "1.4",
"seregazhuk/react-promise-testing": "^0.6.1"
}
}