forked from phiamo/MopaBootstrapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.87 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
56
57
58
59
60
{
"name": "mopa/bootstrap-bundle",
"type": "symfony-bundle",
"description": "Easy integration of twitters bootstrap into symfony2",
"keywords": ["form", "extra form", "bootstrap", "bootstrap form", "template"],
"license": "MIT",
"authors": [
{
"name": "Philipp A. Mohrenweiser",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/phiamo/MopaBootstrapBundle/contributors"
}
],
"autoload": {
"psr-0": {
"Mopa\\Bundle\\BootstrapBundle\\": ""
}
},
"target-dir": "Mopa/Bundle/BootstrapBundle",
"require": {
"symfony/framework-bundle": "~2.3|~3.0|^4.0",
"symfony/twig-bundle": "~2.3|~3.0|^4.0",
"symfony/form": "~2.3|~3.0|^4.0",
"symfony/console": "~2.3|~3.0|^4.0",
"twig/twig": "^1.14.2|^2.0",
"mopa/composer-bridge": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"symfony/security-bundle": "~2.3|~3.0|^4.0",
"symfony/translation": "~2.3|~3.0|^4.0"
},
"conflict": {
"symfony/twig-bridge": "<2.3"
},
"suggest": {
"twbs/bootstrap": ">2.0,<4.0-dev",
"knplabs/knp-paginator-bundle": "~2.3",
"knplabs/knp-menu-bundle": "~2.0@dev",
"mopa/bootstrap-sandbox-bundle": "~2.3",
"craue/formflow-bundle": "~2.0",
"twbs/bootstrap-sass": "v3.1.1"
},
"scripts": {
"post-install-cmd": [
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap"
],
"post-update-cmd": [
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}