forked from phiamo/MopaBootstrapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
{
"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": "phiamo@googlemail.com"
},
{
"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",
"symfony/twig-bundle": "~2.3",
"symfony/form": "~2.3",
"symfony/console": "~2.3",
"mopa/composer-bridge": "~1.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",
"jlong/sass-twitter-bootstrap": "dev-master"
},
"repositories": [
{
"type":"package",
"package": {
"version":"dev-master",
"name":"jlong/sass-twitter-bootstrap",
"source": {
"url":"https://github.com/jlong/sass-twitter-bootstrap.git",
"type":"git",
"reference":"master"
},
"dist": {
"url":"https://github.com/jlong/sass-twitter-bootstrap/zipball/master",
"type":"zip"
}
}
}
],
"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"
}
}
}