-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 923 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
{
"name": "halalsoft/laravel-google-cloud-storage",
"description": "A Google Cloud Storage flysystem for Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"gcs",
"flysystem",
"google",
"storage"
],
"authors": [
{
"name": "Dyas Yaskur",
"email": "dyas@yaskur.com",
"homepage": "http://yaskur.com"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": "*",
"illuminate/filesystem": ">=5.6",
"league/flysystem-cached-adapter": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0"
},
"autoload": {
"psr-4": {
"Halalsoft\\LaravelGoogleCloudStorage\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
},
"laravel": {
"providers": [
"Halalsoft\\LaravelGoogleCloudStorage\\GoogleCloudStorageServiceProvider"
]
}
},
"minimum-stability": "dev"
}