-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.1 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
46
47
48
49
{
"name": "panlatent/craft-aliyun",
"description": "Aliyun plugin for Craft",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"aliyun",
"oss"
],
"support": {
"docs": "https://github.com/panlatent/craft-aliyun/blob/master/README.md",
"issues": "https://github.com/panlatent/craft-aliyun/issues"
},
"license": "MIT",
"authors": [
{
"name": "panlatent@gmail.com",
"homepage": "https://panlatent.com/"
}
],
"require": {
"php": ">=8.1",
"craftcms/cms": "^4.0|^5.0",
"aliyuncs/oss-sdk-php": "^2.7",
"alibabacloud/client": "^1.5"
},
"autoload": {
"psr-4": {
"panlatent\\craft\\aliyun\\": "src/"
}
},
"extra": {
"name": "Aliyun",
"handle": "aliyun",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/panlatent/craft-aliyun/master/CHANGELOG.md",
"class": "panlatent\\craft\\aliyun\\Plugin"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}