-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.3 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
49
50
51
{
"name": "trych/kirby-field-composer",
"description": "Kirby plugin providing methods to intelligently handle field values to compose complex strings.",
"version": "2.0.2",
"license": "MIT",
"type": "kirby-plugin",
"homepage": "https://github.com/trych/kirby-field-composer",
"authors": [
{
"name": "Timo Rychert",
"email": "[email protected]",
"homepage": "https://trych.dev"
}
],
"support": {
"issues": "https://github.com/trych/kirby-field-composer/issues",
"source": "https://github.com/trych/kirby-field-composer",
"docs": "https://github.com/trych/kirby-field-composer"
},
"require": {
"getkirby/composer-installer": "^1.1"
},
"extra": {
"installer-name": "field-composer"
},
"autoload": {
"psr-4": {
"trych\\FieldComposer\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"keywords": [
"php",
"plugin",
"kirby",
"kirby-cms",
"kirby-plugin",
"field",
"field-methods",
"method-chaining",
"templating",
"strings",
"content-fields",
"helper-functions"
]
}