-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 1.06 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
{
"name": "vzgcoders/twitchphp",
"description": "An unofficial API to interact with the IRC chat service used by Twitch.",
"authors": [
{
"name": "Valithor Obsidion",
"email": "[email protected]"
}
],
"require": {
"react/event-loop": "^1.3",
"react/stream": "^1.1",
"react/socket": "^1.11",
"evenement/evenement": "^3.0 || ^2.0",
"monolog/monolog": "^3.2"
},
"autoload": {
"psr-4": {
"Twitch\\": "Twitch/"
}
},
"suggest": {
"team-reflex/discord-php": "Required to relay chat to Discord",
"ext-uv": "For a faster, and more performant loop. PHP >=7 only. Preferred.",
"ext-libev": "For a faster, and more performant loop",
"ext-event": "For a faster, and more performant loop",
"ext-mbstring": "For accurate calculations of string length when handling non-english characters."
},
"scripts": {
"cs": ["./vendor/bin/php-cs-fixer fix"],
"unit": ["./vendor/bin/phpunit"]
}
}