-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
41 lines (41 loc) · 1023 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
37
38
39
40
41
{
"name": "nicklasw/instagram-api",
"license": "MIT",
"authors": [
{
"name": "Nicklas Wallgren",
"email": "[email protected]"
}
],
"description": "Instagram private API SDK",
"require": {
"guzzlehttp/guzzle": "^6.0|^7.0|^7.2",
"psr/http-message": "^1.0|^2.0",
"php": ">=7.2",
"webmozart/assert": "^1.0",
"tebru/gson-php": "^0.7",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"squizlabs/php_codesniffer": "^3.0",
"phan/phan": "^4.0",
"drenso/phan-extensions": "^3.2"
},
"autoload": {
"psr-4": {
"Instagram\\SDK\\": "src/"
},
"files": [
"src/definitions.php"
]
},
"scripts": {
"test": "/vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --standard=ruleset.xml ./src",
"lint-fix": "vendor/bin/phpcbf --standard=ruleset.xml ./src",
"code-analyze": "vendor/bin/phan --color",
"code-analyze-report": "vendor/bin/phan -m build/logs/checkstyle.cs"
}
}