-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 973 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
{
"name": "twitchphp/http",
"description": "Handles HTTP requests to Twitch servers",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Valithor Obsidion",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Twitch\\Http\\": "src/Twitch",
"Tests\\Twitch\\Http\\": "tests/Twitch"
}
},
"require": {
"php": "^7.4|^8.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"react/http": "^1.2",
"react/promise": "^2.2"
},
"suggest": {
"guzzlehttp/guzzle": "For alternative to ReactPHP/Http Browser"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"guzzlehttp/guzzle": "^6.0|^7.0",
"mockery/mockery": "^1.5",
"monolog/monolog": "^2.1.1 || ^3.0",
"psy/psysh": "^0.10.6",
"phpunit/phpunit": "^9.5",
"react/async": "^4 || ^3"
}
}