-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.31 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
{
"name": "nstcactus/craft-disk-usage-widget",
"description": "A Craft CMS widget that displays the disk usage on your server",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin"
],
"support": {
"docs": "https://github.com/nstCactus/craft-disk-usage-widget/blob/master/README.md",
"issues": "https://github.com/nstCactus/craft-disk-usage-widget/issues"
},
"license": "MIT",
"authors": [
{
"name": "nstCactus",
"homepage": "https://github.com/nstCactus"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"mikehaertl/php-shellcommand": "^1.6.3"
},
"autoload": {
"psr-4": {
"nstcactus\\craftcms\\diskUsageWidget\\": "src/"
}
},
"extra": {
"name": "Disk usage dashboard widget",
"handle": "disk-usage-widget",
"description": "A dashboard widget that displays disk usage on your server",
"developer": "nstCactus",
"developerUrl": "https://github.com/nstCactus",
"documentationUrl": "https://github.com/nstCactus/craft-disk-usage-widget/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/nstCactus/craft-disk-usage-widget/master/CHANGELOG.md"
}
}