-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.25 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
{
"name": "mineur/instagram-parser-bundle",
"description": "A bundle integration of Mineur instagram parser for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alex Casajuana",
"email": "alexcm.14@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"symfony/config": "~2.3|~3.0",
"symfony/http-kernel": "~2.3|~3.0",
"symfony/http-foundation": "^3.0",
"symfony/dependency-injection": "~2.3|~3.0",
"mineur/instagram-parser": "dev-master",
"rsqueue/rsqueue": "dev-master",
"rsqueue/rsqueue-bundle": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"symfony/var-dumper": "^3.2",
"mockery/mockery": "^0.9.9",
"mmoreram/php-formatter": "^1.3"
},
"autoload": {
"psr-4": {
"Mineur\\InstagramParserBundle\\": ""
}
},
"scripts": {
"fix-code": [
"vendor/bin/php-formatter formatter:header:fix . --exclude=vendor",
"vendor/bin/php-formatter formatter:strict:fix . --exclude=vendor",
"vendor/bin/php-formatter formatter:use:sort . --exclude=vendor"
]
}
}