-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·43 lines (43 loc) · 1.36 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
{
"name": "nilsenpaul/craft-sequentialedit",
"description": "This plugin lets you edit multiple elements (entries, assets, categories ...) in sequence, without being sent back to the index page each time you save your changes.",
"type": "craft-plugin",
"version": "1.0.8.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sequential edit"
],
"support": {
"docs": "https://github.com/nilsenpaul/craft-sequentialedit/blob/master/README.md",
"issues": "https://github.com/nilsenpaul/craft-sequentialedit/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Paul Verheul",
"homepage": "https://nilsenpaul.nl"
}
],
"require": {
"craftcms/cms": "^3.4.0"
},
"autoload": {
"psr-4": {
"nilsenpaul\\sequentialedit\\": "src/"
}
},
"extra": {
"name": "Sequential Edit",
"handle": "sequential-edit",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/nilsenpaul/sequential-edit/master/CHANGELOG.md",
"components": {
"sequentialEditService": "nilsenpaul\\sequentialedit\\services\\SequentialEditService"
},
"class": "nilsenpaul\\sequentialedit\\SequentialEdit"
}
}