-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 860 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
{
"name": "michelmelo/laravel-instagram-api",
"description": "Implementation Instagram private API for Laravel",
"keywords": [
"instagram",
"laravel",
"instagram-api"
],
"license": "WTFPL",
"authors": [
{
"name": "Michel Melo",
"email": "eu@michelmelo.pt",
"homepage": "https://github.com/michelmelo"
}
],
"type": "package",
"homepage": "https://github.com/michelmelo/laravel-instagram-api",
"require": {
"php": ">=5.6.4",
"michelmelo/instagram-private-api": "^2.0.4"
},
"autoload": {
"psr-4": {
"MichelMelo\\InstagramApi\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}