-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
54 lines (54 loc) · 1.29 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
52
53
54
{
"name": "jalendport/craft-preparse",
"description": "A fieldtype that parses Twig when an element is saved and saves the result as plain text.",
"type": "craft-plugin",
"version": "3.0.0-alpha.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"fieldtype",
"preparse",
"twig"
],
"support": {
"docs": "https://github.com/jalendport/craft-preparse/blob/master/README.md",
"issues": "https://github.com/jalendport/craft-preparse/issues"
},
"license": "MIT",
"authors": [
{
"name": "Jalen Davenport",
"homepage": "https://jalendport.com/"
},
{
"name": "André Elvan",
"homepage": "https://www.vaersaagod.no"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"nystudio107/craft-code-editor": "^1.0.0",
"php": "^8.2.0"
},
"autoload": {
"psr-4": {
"jalendport\\preparse\\": "src/",
"aelvan\\preparsefield\\": "src/",
"besteadfast\\preparsefield\\": "src/"
}
},
"extra": {
"name": "Preparse",
"handle": "preparse-field",
"schemaVersion": "1.1.0",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/jalendport/craft-preparse/blob/master/CHANGELOG.md",
"components": {
"preparseFieldService": "jalendport\\preparse\\services\\PreparseFieldService"
},
"class": "jalendport\\preparse\\PreparseField"
}
}