forked from vinkla/instagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 927 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
42
43
44
{
"name": "vinkla/instagram",
"description": "A Instagram bridge for Laravel",
"license": "MIT",
"keywords": ["laravel", "instagram", "images", "api", "image", "media", "facebook"],
"authors": [
{
"name": "Vincent Klaiber",
"email": "hello@vinkla.com"
}
],
"require": {
"php": ">=5.5.3",
"illuminate/contracts": "5.0.*|5.1.*",
"illuminate/support": "5.0.*|5.1.*",
"graham-campbell/manager": "~2.2",
"cosenary/instagram": "~2.0"
},
"require-dev": {
"graham-campbell/testbench": "~3.0",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.7.6"
},
"autoload": {
"psr-4": {
"Vinkla\\Instagram\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\Instagram\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}