-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (28 loc) · 936 Bytes
/
composer.json
File metadata and controls
29 lines (28 loc) · 936 Bytes
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
{
"name": "dpfavand/jsonfieldtype",
"description": "An extension to add JSON as a field type within Bolt. Uses Andrew Cantino's JSONEditor (https://github.com/cantino/jsoneditor, MIT license). Supports key:var pairs, arrays, sub-objects. JSON can be loaded into a Twig object using Bolt's json_decode filter. Note: Editor will break if invalid JSON is in the database field.",
"type": "bolt-extension",
"require": {
"bolt/bolt": ">=2.0.0,<3.0.0"
},
"license": "MIT",
],
"keywords": [
"backend", "field", "json"
],
"autoload": {
"files": [
"init.php"
],
"psr-4": {
"Bolt\\Extension\\dpfavand\\jsonfieldtype\\": ""
}
},
"extra": {
"bolt-assets": "assets",
"bolt-screenshots": [
"screenshot.png"
]
}
}