-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.37 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.37 KB
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
{
"name": "simplygoodwork/craft-asset-summary",
"description": "Utility to show total asset storage and large files",
"type": "craft-plugin",
"license": "mit",
"authors": [
{
"name": "Good Work",
"homepage": "https://simplygoodwork.com"
}
],
"support": {
"issues": "https://github.com/simplygoodwork/craft-asset-summary/issues?state=open",
"source": "https://github.com/simplygoodwork/craft-asset-summary",
"docs": "https://github.com/simplygoodwork/craft-asset-summary",
"rss": "https://github.com/simplygoodwork/craft-asset-summary/releases.atom"
},
"require": {
"php": ">=8.2.0",
"craftcms/cms": "^5.0.0"
},
"autoload": {
"psr-4": {
"simplygoodwork\\assetsummary\\": "src/"
}
},
"extra": {
"name": "Asset Summary",
"handle": "asset-summary",
"developer": "Good Work",
"developerUrl": "https://simplygoodwork.com",
"documentationUrl": "https://github.com/simplygoodwork/craft-asset-summary",
"class": "simplygoodwork\\assetsummary\\AssetSummary"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.0"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}