-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
140 lines (135 loc) · 5.04 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "codeconsortium/ccdn-sandbox",
"description": "The \"CodeConsortium Standard Edition\" distribution",
"license": "MIT",
"type": "project",
"autoload": {
"psr-0": { "": "src/" }
},
"minimum-stability": "dev",
"repositories": [
{
"type": "package",
"package": {
"name": "todc/todc-bootstrap",
"version": "dev-master",
"source": {
"url": "https://github.com/todc/todc-bootstrap.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/todc/todc-bootstrap/zipball/master",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "isagalaev/highlight",
"version": "dev-master",
"source": {
"url": "https://github.com/isagalaev/highlight.js.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/isagalaev/highlight.js/zipball/master",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "reecefowell/moment",
"version": "dev-master",
"source": {
"url": "https://github.com/reecefowell/moment.git",
"type": "git",
"reference": "master"
},
"dist": {
"url": "https://github.com/reecefowell/moment/archive/master.zip",
"type": "zip"
}
}
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.4",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"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",
"jms/security-extra-bundle": "1.5.1",
"jms/di-extra-bundle": "1.4.0",
"kriswallsmith/assetic": "1.1.*@dev",
"psecio/versionscan": "dev-master",
"sensiolabs/security-checker": "dev-master",
"leafo/lessphp": "*",
"twitter/bootstrap": "v2.3.1",
"isagalaev/highlight": "dev-master",
"knplabs/knp-paginator-bundle": "dev-master",
"codeconsortium/ccdn-component-common-bundle": "2.0.*",
"codeconsortium/ccdn-component-bb-code-bundle": "2.0.*",
"codeconsortium/ccdn-component-dashboard-bundle": "2.0.*",
"codeconsortium/ccdn-user-bundle": "2.0.*",
"codeconsortium/ccdn-user-security-bundle": "2.0.*",
"codeconsortium/ccdn-user-profile-bundle": "2.0.*",
"codeconsortium/ccdn-user-admin-bundle": "2.0.*",
"codeconsortium/ccdn-message-bundle": "2.0.*",
"codeconsortium/ccdn-forum-bundle": "2.0.*",
"isagalaev/highlight": "dev-master",
"reecefowell/moment": "dev-master",
"reecefowell/jquery-checkboxes": "dev-master",
"reecefowell/jquery-timestamper": "dev-master"
},
"require-dev": {
"doctrine/data-fixtures": "1.0.*@dev",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"elao/web-profiler-extra-bundle": "2.3.*@dev",
"raulfraile/ladybug-bundle": "dev-master",
"js/mysqlnd-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",
"bin/security-checker security:check",
"bin/versionscan scan"
],
"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",
"bin/security-checker security:check",
"bin/versionscan scan"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}