-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
48 lines (48 loc) · 1.18 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
45
46
47
48
{
"name": "venveo/craft-bulkedit",
"description": "Bulk edit Craft CMS element fields",
"type": "craft-plugin",
"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": "^4.0.0",
"php": "^8.0.2"
},
"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"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}