forked from bolt/forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 976 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
35
36
{
"name": "bolt/forms",
"description": "📦 This Bolt extension can be used to handle forms in your Bolt 5 project.",
"type": "bolt-extension",
"license": "MIT",
"authors": [
{
"name": "Bob den Otter",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.9",
"twig/twig": "^2.12 || ^3.0",
"ext-json": "*",
"gregwar/captcha-bundle": "^2.2",
"pixelopen/cloudflare-turnstile-bundle": "^0.1.3"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"bolt/core": "^5.1",
"symplify/easy-coding-standard": "^10.2"
},
"autoload": {
"psr-4": {
"Bolt\\BoltForms\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"entrypoint": "Bolt\\BoltForms\\Extension"
}
}