forked from braincrafted/bootstrap-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.68 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
{
"name": "braincrafted/bootstrap-bundle",
"description": "BraincraftedBootstrapBundle integrates Bootstrap into Symfony2 by providing templates, Twig extensions, services and commands.",
"keywords": ["bootstrap"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Florian Eckerstorfer",
"email": "[email protected]",
"homepage": "http://florian.ec"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.6",
"symfony/twig-bundle": "~2.6",
"symfony/form": "~2.6",
"symfony/console": "~2.6",
"symfony/finder": "~2.6"
},
"require-dev": {
"symfony/assetic-bundle": "~2.6",
"knplabs/knp-menu": "~2.0@alpha",
"knplabs/knp-menu-bundle": "~2.0@alpha",
"knplabs/knp-paginator-bundle": "dev-master",
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.9.*"
},
"suggest": {
"knplabs/knp-paginator-bundle": "BraincraftedBootstrapBundle styles the pagination provided by KnpPaginatorBundle.",
"knplabs/knp-menu": "Required to use KnpMenuBundle.",
"knplabs/knp-menu-bundle": "BraincraftedBootstrapBundle styles the menus provided by KnpMenuBundle.",
"twbs/bootstrap": "Twitter Bootstrap provides the assets (images, CSS and JS)"
},
"autoload": {
"psr-0": { "Braincrafted\\Bundle\\BootstrapBundle": "" }
},
"target-dir": "Braincrafted/Bundle/BootstrapBundle"
}