forked from phiamo/MopaBootstrapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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/symfony": ">=2.1,<2.4-dev",
"mopa/composer-bridge": "1.*"
},
"suggest": {
"twitter/bootstrap": "2.0.*",
"knplabs/knp-paginator-bundle": "dev-master",
"knplabs/knp-menu-bundle": "1.1.*",
"knplabs/knp-menu": "2.0.*@dev",
"craue/formflow-bundle": "dev-master",
"jlong/sass-twitter-bootstrap": "dev-master"
},
"repositories": [
{
"type": "package",
"package": {
"version": "dev-master",
"name": "twitter/bootstrap",
"source": {
"url": "https://github.com/twitter/bootstrap.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/twitter/bootstrap/zipball/master",
"type": "zip"
}
}
},
{
"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": "2.1.x-dev"
}
}
}