forked from ryldz07/mgp25
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mgp25/instagram-api",
"description": "Instagram's private API for PHP",
"license": [
"RPL-1.5",
"proprietary"
],
"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": "me@mgp25.com",
"role": "Founder"
},
{
"name": "SteveJobzniak",
"homepage": "https://github.com/SteveJobzniak",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"InstagramAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InstagramAPI\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6",
"lazyjsonmapper/lazyjsonmapper": "^1.6.1",
"guzzlehttp/guzzle": "^6.2",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-exif": "*",
"ext-zlib": "*",
"ext-bcmath": "*",
"react/event-loop": "^0.4.3",
"react/promise": "^2.5",
"react/socket": "^0.8",
"binsoul/net-mqtt-client-react": "^0.3.2",
"clue/socks-react": "^0.8.2",
"clue/http-proxy-react": "^1.1.0",
"psr/log": "^1.0",
"valga/fbns-react": "^0.1.8",
"symfony/process": "^3.4|^4.0",
"winbox/args": "1.0.0"
},
"suggest": {
"ext-event": "Installing PHP's native Event extension enables faster Realtime class event handling."
},
"require-dev": {
"react/http": "^0.7.2",
"friendsofphp/php-cs-fixer": "^2.11.0",
"monolog/monolog": "^1.23",
"phpunit/phpunit": "^5.7 || ^6.2"
},
"scripts": {
"codestyle": [
"lazydoctor -c composer.json -pfo",
"php-cs-fixer fix --config=.php_cs.dist --allow-risky yes",
"php devtools/checkStyle.php x"
],
"test": [
"phpunit tests"
]
}
}