-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.84 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
45
{
"name": "inetstudio/instagram",
"description": "Package for instagram integration",
"homepage": "https://github.com/inetstudio/instagram",
"license": "MIT",
"require": {
"php": ">=7.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"emojione/emojione": "^4.5",
"lazyjsonmapper/lazyjsonmapper": "^1.6.1"
},
"authors": [
{
"name": "Konstantin Bukin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"InetStudio\\Instagram\\": "package/src",
"InetStudio\\Instagram\\Comments\\": "entities/comments/src",
"InetStudio\\Instagram\\Posts\\": "entities/posts/src",
"InetStudio\\Instagram\\Stories\\": "entities/stories/src",
"InetStudio\\Instagram\\Users\\": "entities/users/src",
"InstagramAPI\\": "libs/instagram-php/src"
}
},
"extra": {
"laravel": {
"providers": [
"InetStudio\\Instagram\\Providers\\InstagramBindingsServiceProvider",
"InetStudio\\Instagram\\Providers\\InstagramServiceProvider",
"InetStudio\\Instagram\\Comments\\Providers\\CommentsBindingsServiceProvider",
"InetStudio\\Instagram\\Comments\\Providers\\CommentsServiceProvider",
"InetStudio\\Instagram\\Posts\\Providers\\PostsBindingsServiceProvider",
"InetStudio\\Instagram\\Posts\\Providers\\PostsServiceProvider",
"InetStudio\\Instagram\\Stories\\Providers\\StoriesBindingsServiceProvider",
"InetStudio\\Instagram\\Stories\\Providers\\StoriesServiceProvider",
"InetStudio\\Instagram\\Users\\Providers\\UsersBindingsServiceProvider",
"InetStudio\\Instagram\\Users\\Providers\\UsersServiceProvider"
]
}
}
}