forked from sulu/SuluFormBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.63 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": "sulu/sulu-form-bundle",
"description": "Bundle for creating forms in Sulu.",
"type": "sulu-bundle",
"require": {
"symfony/symfony": "^2.8.7 || ^3.0",
"symfony/swiftmailer-bundle": "^2.3 || ^3.0",
"doctrine/orm": "~2.5.3",
"php": "^5.5 || ^7.0",
"twig/twig": "^1.26 || ^2.0",
"sulu/sulu": "~1.3"
},
"require-dev": {
"jackalope/jackalope-doctrine-dbal": "^1.2.5",
"symfony/monolog-bundle": "^2.8.7 || ^3.0",
"massive/search-bundle": "@dev",
"zendframework/zend-stdlib": "~2.3",
"zendframework/zendsearch": "@dev",
"doctrine/doctrine-bundle": "^1.4",
"phpunit/phpunit": ">=4.8, <6.0",
"excelwebzone/recaptcha-bundle": "^1.4.2",
"drewm/mailchimp-api": "^2.2"
},
"suggest": {
"excelwebzone/recaptcha-bundle": "Allows to add recaptcha to any dynamic form",
"drewm/mailchimp-api": "Allows to add a newsletter subscription over mailchimp to any dynamic form"
},
"keywords": [
"sulu",
"form",
"form manager",
"dynamic"
],
"license": "MIT",
"authors": [
{
"name": "Sulu Form Contributors",
"homepage": "https://github.com/sulu/SuluFormBundle/contributors"
}
],
"homepage": "https://github.com/sulu/SuluFormBundle",
"autoload": {
"psr-4": {
"Sulu\\Bundle\\FormBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Sulu\\Bundle\\FormBundle\\Tests\\": "Tests"
}
}
}