-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mgp25/instagram-api",
"description": "Instagram's private API for PHP",
"license": "GPL-3.0",
"keywords": [
"Instagram",
"Private",
"API",
"PHP"
],
"support": {
"issues": "https://github.com/mgp25/Instagram-API/issues",
"wiki": "https://github.com/mgp25/Instagram-API/wiki",
"source": "https://github.com/mgp25/Instagram-API/"
},
"authors": [
{
"name": "mgp25",
"email": "[email protected]",
"role": "Founder"
},
{
"name": "SteveJobzniak",
"homepage": "https://github.com/SteveJobzniak",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"InstagramAPI\\": "src/"
}
},
"require": {
"netresearch/jsonmapper": "^1.0",
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.2",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-exif": "*",
"ext-zlib": "*",
"react/event-loop": "^0.4.3",
"react/promise": "^2.5",
"react/socket-client": "^0.5",
"ratchet/pawl": "^0.2.3",
"binsoul/net-mqtt-client-react": "^0.2.1",
"clue/socks-react": "^0.6",
"clue/http-proxy-react": "^0.1.0"
},
"suggest": {
"ext-event": "Installing PHP's native Event extension enables faster Realtime class event handling."
}
}