-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 945 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": "productsupcom/guzzle-react-bridge",
"type": "library",
"description": "Guzzle HTTP client bridge with ReactPHP event loop",
"keywords": ["react", "guzzle", "http", "async", "promises", "curl"],
"homepage": "http://github.com/productsupcom/guzzle-react-bridge",
"license": "MIT",
"support": {
"issues": "https://github.com/productsupcom/guzzle-react-bridge/issues"
},
"authors": [
{
"name": "Alexey Shokov",
"email": "alexey@shockov.com"
}
],
"require": {
"react/event-loop": "^1.0",
"guzzlehttp/promises": "^1.3",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"monolog/monolog": "~1.20"
},
"autoload": {
"psr-4": {
"Productsup\\GuzzleReactBridge\\": "src/"
},
"files": [
"src/functions.php"
]
}
}