-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
56 lines (55 loc) · 1.28 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
55
{
"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",
"bolt/boltforms" : "^2.4"
},
"require-dev" : {
"phpunit/phpunit" : "^4.7"
},
"repositories" : [{
"type" : "composer",
"name" : "bolt",
"url" : "https://extensions.bolt.cm/satis/"
}
],
"authors" : [{
"name" : "Lodewijk Evers",
"email" : "[email protected]",
"homepage" : "https://github.com/jadwigo"
}
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"autoload" : {
"files" : [
"init.php"
],
"psr-4" : {
"Bolt\\Extension\\Bolt\\SimpleForms\\" : [
"",
"src"
]
}
},
"autoload-dev" : {
"psr-4" : {
"Bolt\\Extension\\Bolt\\SimpleForms\\Tests\\" : "tests/",
"Bolt\\Tests\\" : "vendor/bolt/bolt/tests/phpunit/unit/"
}
},
"extra" : {
"bolt-icon": "assets/icon-simple-forms.png",
"branch-alias" : {
"dev-master" : "2.0.*-dev"
}
}
}