-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.14 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
{
"name": "vardump/recentchanges",
"description": "A Widget showing the last updated entries.",
"type": "craft-plugin",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"recentchanges",
"widget"
],
"support": {
"docs": "https://github.com/vardump-de/recentchanges/blob/master/README.md",
"issues": "https://github.com/vardump-de/recentchanges/issues"
},
"license": "MIT",
"authors": [
{
"name": "rmdev",
"homepage": "https://github.com/rmdev"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"vardump\\recentchanges\\": "src/"
}
},
"extra": {
"name": "Recentchanges",
"handle": "recentchanges",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/vardump-de/recentchanges/craft4/CHANGELOG.md",
"class": "vardump\\recentchanges\\Plugin"
},
"minimum-stability": "dev",
"prefer-stable": true
}