-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
33 lines (33 loc) · 1.04 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
{
"name": "shweshi/laravel-unsplash-wrapper",
"description": "A Laravel wrapper for Unsplash",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Shashi Prakash Gautam",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.1",
"php" : "~5.6|~7.0",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"shweshi\\LaravelUnsplashWrapper\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"shweshi\\LaravelUnsplashWrapper\\Providers\\UnsplashServiceProvider",
"shweshi\\LaravelUnsplashWrapper\\Providers\\UnsplashUsersServiceProvider",
"shweshi\\LaravelUnsplashWrapper\\Providers\\UnsplashPhotosServiceProvider",
"shweshi\\LaravelUnsplashWrapper\\Providers\\UnsplashCollectionsServiceProvider",
"shweshi\\LaravelUnsplashWrapper\\Providers\\UnsplashSearchServiceProvider"
]
}
}
}