-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (35 loc) · 927 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": "steirico/kirby-plugin-custom-add-fields",
"description": "Custom fields for Kirby's add dialog. This plugin allows to define the fields shown on the page add dialog in a page's blueprint.",
"version": "2.0.0",
"type": "kirby-plugin",
"license": "MIT",
"keywords": [
"kirby3",
"plugin",
"field",
"add dialog", "add page",
"custom field", "custom add field", "custom add dialog", "custom add dialog field"
],
"authors": [
{
"name": "Rico Steiner",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"files": [
"config.php"
],
"psr-4": {
"Steineri\\CustomAddFields\\": "src/"
}
},
"require": {
"getkirby/composer-installer": "^1.1"
},
"config": {
"optimize-autoloader": true
}
}