-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 948 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
44
45
46
47
48
49
{
"name": "xinningsu/craft-qcloud-cos",
"description": "Tencent QCloud COS integration for Craft CMS",
"type": "craft-plugin",
"keywords": [
"cos",
"tencent",
"qcloud",
"cms",
"craftcms",
"flysystem",
"filesystem",
"volume",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Thomas Su",
"email": "deng5765@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-beta.1",
"craftcms/flysystem": "^1.0.0-beta.2",
"overtrue/flysystem-cos": "^5.1"
},
"autoload": {
"psr-4": {
"Sulao\\CraftQcloudCos\\": "src/"
}
},
"extra": {
"name": "Tencent COS Volume",
"handle": "craft-qcloud-cos"
},
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}