forked from jadwigo/SimpleForms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 939 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": "bolt/simpleforms",
"description": "This extension will allow you to insert simple forms on your site, for users to get in touch, send you a quick note or something like that. To use, configure the required fields in config.yml, and place <code>{{ simpleform('contact') }}</code> in your templates.",
"type": "bolt-extension",
"keywords": [
"forms",
"input",
"email",
"upload"
],
"require": {
"bolt/bolt": ">=2.0.0,<3.0.0"
},
"authors": [
{
"name": "Lodewijk Evers",
"email": "lodewijk@twokings.nl",
"homepage": "https://github.com/jadwigo"
}
],
"autoload": {
"files": [
"init.php"
],
"psr-4" : {
"Bolt\\Extension\\Bolt\\SimpleForms\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.*"
}
}
}