-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·121 lines (117 loc) · 4.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"repositories": [
{
"type": "package",
"package": {
"name": "fontawesome/fontawesome",
"version": "3.0.2",
"dist": {
"url": "https://github.com/FortAwesome/Font-Awesome/archive/v3.0.2.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "tapmodo/Jcrop",
"version": "dev-master",
"dist": {
"url": "https://github.com/tapmodo/Jcrop/archive/master.zip",
"type": "zip"
}
}
},
{
"type": "git",
"url": "https://github.com/cpttripzz/ratchet-bundle"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.4",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~2.3",
"sensio/framework-extra-bundle": "~3.0",
"sensio/generator-bundle": "~2.3",
"incenteev/composer-parameter-handler": "~2.0",
"friendsofsymfony/user-bundle": "1.3.2",
"friendsofsymfony/oauth-server-bundle": "dev-master",
"friendsofsymfony/jsrouting-bundle": "2.0.*@dev",
"friendsofsymfony/rest-bundle": "1.3.*",
"jms/serializer-bundle": "dev-master",
"sonata-project/admin-bundle": "dev-master",
"sonata-project/user-bundle": "dev-master",
"sonata-project/doctrine-orm-admin-bundle": "dev-master",
"sonata-project/core-bundle": "~2.2@dev",
"mopa/bootstrap-bundle": "v3.0.0-beta3",
"twbs/bootstrap": "v3.2.0",
"components/jquery": "1.9.*",
"hwi/oauth-bundle": "0.4.*@dev",
"knplabs/knp-menu": "2.0.*@dev,>=2.0.0-beta1",
"knplabs/knp-menu-bundle": "2.0.*@dev",
"knplabs/knp-paginator-bundle": "~2.4",
"egeloen/google-map-bundle": "~2.1",
"willdurand/geocoder": "*",
"willdurand/geocoder-bundle": "3.0.*@dev",
"stof/doctrine-extensions-bundle": "*",
"willdurand/faker-bundle": "*",
"doctrine/migrations": "dev-master",
"doctrine/doctrine-migrations-bundle": "*",
"dsyph3r/google-geolocation-bundle": "dev-master",
"jcroll/foursquare-api-bundle": "1.0.*",
"genemu/form-bundle": "2.2.*",
"liip/imagine-bundle": "dev-master",
"tapmodo/Jcrop": "dev-master",
"jeremymlane/bootbox": "dev-master",
"predis/predis": "0.8.x-dev",
"snc/redis-bundle": "1.1.x-dev",
"drmonty/datatables": "dev-master",
"raulfraile/ladybug-bundle": "~1.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"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"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}