-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "carlcs/craft-deleteentryversions",
"description": "Delete Entry Versions plugin for Craft CMS",
"version": "2.0.0",
"type": "craft-plugin",
"keywords": [
"utilities",
"craftcms"
],
"license": "MIT",
"authors": [
{
"name": "carlcs",
"homepage": "https://github.com/carlcs"
}
],
"support": {
"issues": "https://github.com/carlcs/craft-deleteentryversions/issues?state=open",
"source": "https://github.com/carlcs/craft-deleteentryversions",
"docs": "https://github.com/carlcs/craft-deleteentryversions",
"rss": "https://github.com/carlcs/craft-deleteentryversions/commits/v2.atom"
},
"require": {
"craftcms/cms": "^3.0.0 <3.2"
},
"autoload": {
"psr-4": {
"carlcs\\deleteentryversions\\": "src/"
}
},
"extra": {
"name": "Delete Entry Versions",
"handle": "delete-entry-versions",
"changelogUrl": "https://github.com/carlcs/craft-deleteentryversions/raw/v2/CHANGELOG.md",
"downloadUrl": "https://github.com/carlcs/craft-deleteentryversions/archive/v2.zip"
}
}