forked from venveo/craft-bulkedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "venveo/craft-bulkedit",
"description": "Bulk edit Craft CMS element fields",
"type": "craft-plugin",
"version": "2.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"bulk edit"
],
"support": {
"docs": "https://github.com/venveo/craft-bulkedit/blob/master/README.md",
"issues": "https://github.com/venveo/craft-bulkedit/issues"
},
"license": "MIT",
"authors": [
{
"name": "Venveo",
"homepage": "https://venveo.com"
}
],
"require": {
"craftcms/cms": "^3.2.0"
},
"autoload": {
"psr-4": {
"venveo\\bulkedit\\": "src/"
}
},
"extra": {
"name": "Bulk Edit",
"handle": "venveo-bulk-edit",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-bulkedit/master/CHANGELOG.md",
"class": "venveo\\bulkedit\\Plugin"
}
}