forked from callmez/yii2-file-system
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
37 lines (36 loc) · 1.07 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
{
"name": "weyii/yii2-filesystem",
"type": "yii2-extension",
"description": "This extension provides a filesystem solution for Yii 2.",
"keywords": ["weyii", "yii2", "filesystem", "flysystem", "file", "storage", "qiniu"],
"license": "MIT",
"support": {
"issues": "https://github.com/weyii/yii2-filesystem/issues",
"wiki": "https://github.com/weyii/yii2-filesystem/wiki",
"source": "https://github.com/weyii/yii2-filesystem"
},
"authors": [
{
"name": "Long Zhang",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "*",
"weyii/yii2-base": "*",
"league/flysystem": "~1.0"
},
"conflict": {
"qiniu/php-sdk": "<7.0",
"aliyuncs/oss-sdk-php": "<2.0"
},
"suggest": {
"qiniu/php-sdk": "七牛云存储SDK, 请使用'~7.0'以上版本.",
"aliyuncs/oss-sdk-php": "阿里云OSS存储SDK, 请使用'~2.0'以上版本"
},
"autoload": {
"psr-4": {
"weyii\\filesystem\\": ""
}
}
}