forked from ryldz07/mgp25
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.58 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
{
"name": "bekiryazgann/instagram",
"description": "Instagram's private API for PHP",
"license": [
"RPL-1.5",
"proprietary"
],
"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"
]
}
}