-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
34 lines (32 loc) · 885 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
{
"name": "rossriley/formeditor",
"description": "An extension to Bolt Forms to provide a basic UI",
"type": "bolt-extension",
"require": {
"bolt/bolt": ">3.0,<4.0",
"bolt/boltforms": "^4.0"
},
"license": "MIT",
"authors": [{"name": "Ross Riley", "email": "riley.ross@gmail.com"}
],
"keywords": [
"boltforms", "forms", "ui", "editor"
],
"autoload": {
"psr-4": {
"Bolt\\Extensions\\Ross\\FormEditor\\": "src",
"Bolt\\Extensions\\Ross\\FormEditor\\Tests\\": "tests"
}
},
"extra": {
"bolt-assets": "assets",
"bolt-screenshots": [
"screenshot.png",
"screenshot2.png"
],
"bolt-class": "Bolt\\Extensions\\Ross\\FormEditor\\Extension",
"branch-alias": {
"dev-v4": "4.0.x-dev"
}
}
}