-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
91 lines (91 loc) · 3.66 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
83
84
85
86
87
88
89
90
91
{
"name": "noiselabs/noiselabs-website",
"description": "The NoiseLabs website available at http://www.noiselabs.org",
"keywords": ["noiselabs"],
"homepage": "http://www.noiselabs.org",
"license": "LGPL-3.0",
"autoload": {
"psr-0": { "": "src/" }
},
"authors": [
{
"name": "Vítor Brandão",
"email": "[email protected]",
"homepage": "http://www.noiselabs.org"
}
],
"require": {
"php": ">=5.3.8",
"symfony/framework-standard-edition": "dev-master",
"noiselabs/smarty-bundle": "dev-twitter-bootstrap",
"mopa/bootstrap-bundle": "dev-master",
"twitter/bootstrap": "master",
"knplabs/knp-paginator-bundle": "dev-master",
"knplabs/knp-menu-bundle": "dev-master",
"craue/formflow-bundle": "dev-master",
"thomas-mcdonald/bootstrap-sass": "dev-master",
"mopa/bootstrap-sandbox-bundle": "dev-master",
"liip/theme-bundle": "dev-master"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrapSass"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrap",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrapSass"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
},
"include-path": ["vendor/smarty/smarty/distribution/libs/"],
"repositories": [
{
"type": "package",
"package": {
"version": "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":"thomas-mcdonald/bootstrap-sass",
"source": {
"url":"https://github.com/thomas-mcdonald/bootstrap-sass.git",
"type":"git",
"reference":"master"
},
"dist": {
"url":"https://github.com/thomas-mcdonald/bootstrap-sass/zipball/master",
"type":"zip"
}
}
}
]
}