-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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
{
"name": "mineur/instagram-parser",
"description": "PHP parser to consume the instagram feed.",
"type": "php-library",
"license": "MIT",
"authors": [
{
"name": "Alex Casajuana",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"symfony/var-dumper": "^3.2",
"mockery/mockery": "^0.9.9",
"fzaninotto/faker": "^1.6",
"mmoreram/php-formatter": "^1.3"
},
"autoload": {
"psr-4": {
"Mineur\\InstagramParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mineur\\InstagramParserTest\\": "test/"
}
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"fix-code": [
"bin/php-formatter formatter:header:fix . --exclude=vendor",
"bin/php-formatter formatter:strict:fix . --exclude=vendor",
"bin/php-formatter formatter:use:sort . --exclude=vendor"
]
}
}