質問編集履歴
1
composer.jsonの中身追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -142,6 +142,166 @@
|
|
142
142
|
|
143
143
|
|
144
144
|
|
145
|
+
```
|
146
|
+
|
147
|
+
//composer.json
|
148
|
+
|
149
|
+
{
|
150
|
+
|
151
|
+
"name": "symfony/framework-standard-edition",
|
152
|
+
|
153
|
+
"license": "MIT",
|
154
|
+
|
155
|
+
"type": "project",
|
156
|
+
|
157
|
+
"description": "The \"Symfony Standard Edition\" distribution",
|
158
|
+
|
159
|
+
"autoload": {
|
160
|
+
|
161
|
+
"psr-4": { "": "src/" },
|
162
|
+
|
163
|
+
"classmap": [ "vendor/lsolesen/pel/src" , "app/AppKernel.php", "app/AppCache.php" ]
|
164
|
+
|
165
|
+
},
|
166
|
+
|
167
|
+
"autoload-dev": {
|
168
|
+
|
169
|
+
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
|
170
|
+
|
171
|
+
},
|
172
|
+
|
173
|
+
"repositories": [
|
174
|
+
|
175
|
+
{
|
176
|
+
|
177
|
+
"type": "pear",
|
178
|
+
|
179
|
+
"url": "http://pear.php.net"
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
],
|
184
|
+
|
185
|
+
"require": {
|
186
|
+
|
187
|
+
"php": ">=5.3.3",
|
188
|
+
|
189
|
+
"symfony/symfony": "2.8.*",
|
190
|
+
|
191
|
+
"doctrine/orm": ">=2.2.3,<2.4-dev",
|
192
|
+
|
193
|
+
"doctrine/doctrine-bundle": "1.2.*",
|
194
|
+
|
195
|
+
"twig/extensions": "1.0.*",
|
196
|
+
|
197
|
+
"symfony/swiftmailer-bundle": "2.3.*",
|
198
|
+
|
199
|
+
"sensio/distribution-bundle": "5.0.*",
|
200
|
+
|
201
|
+
"sensio/framework-extra-bundle": "2.3.*",
|
202
|
+
|
203
|
+
"incenteev/composer-parameter-handler": "~2.0",
|
204
|
+
|
205
|
+
"jms/security-extra-bundle": "1.5.*",
|
206
|
+
|
207
|
+
"jms/di-extra-bundle": "1.4.*",
|
208
|
+
|
209
|
+
"lsolesen/pel": "0.9.8",
|
210
|
+
|
211
|
+
"gedmo/doctrine-extensions": "2.3.*",
|
212
|
+
|
213
|
+
"shark/simple_html_dom": "dev-master",
|
214
|
+
|
215
|
+
"pear-pear/mail_mimedecode": "1.5.*",
|
216
|
+
|
217
|
+
"rakuten-ws/rws-php-sdk": "1.*",
|
218
|
+
|
219
|
+
"liuggio/excelbundle": ">=1.0.4",
|
220
|
+
|
221
|
+
"doctrine/annotations": "^1.2",
|
222
|
+
|
223
|
+
"phpoffice/phpspreadsheet": "^1.8",
|
224
|
+
|
225
|
+
"twig/twig": "^1.42"
|
226
|
+
|
227
|
+
},
|
228
|
+
|
229
|
+
"scripts": {
|
230
|
+
|
231
|
+
"symfony-scripts": [
|
232
|
+
|
233
|
+
"Incenteev\ParameterHandler\ScriptHandler::buildParameters",
|
234
|
+
|
235
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
|
236
|
+
|
237
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
|
238
|
+
|
239
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
|
240
|
+
|
241
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile",
|
242
|
+
|
243
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::prepareDeploymentTarget"
|
244
|
+
|
245
|
+
],
|
246
|
+
|
247
|
+
"post-install-cmd": [
|
248
|
+
|
249
|
+
"@symfony-scripts"
|
250
|
+
|
251
|
+
],
|
252
|
+
|
253
|
+
"post-update-cmd": [
|
254
|
+
|
255
|
+
"@symfony-scripts"
|
256
|
+
|
257
|
+
]
|
258
|
+
|
259
|
+
},
|
260
|
+
|
261
|
+
"config": {
|
262
|
+
|
263
|
+
"bin-dir": "bin",
|
264
|
+
|
265
|
+
"secure-http": false,
|
266
|
+
|
267
|
+
"platform": {
|
268
|
+
|
269
|
+
"php": "5.6"
|
270
|
+
|
271
|
+
},
|
272
|
+
|
273
|
+
"soft-packages": true
|
274
|
+
|
275
|
+
},
|
276
|
+
|
277
|
+
"extra": {
|
278
|
+
|
279
|
+
"symfony-app-dir": "app",
|
280
|
+
|
281
|
+
"symfony-web-dir": "web",
|
282
|
+
|
283
|
+
"branch-alias": {
|
284
|
+
|
285
|
+
"dev-master": "2.8-dev"
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
},
|
290
|
+
|
291
|
+
"require-dev": {
|
292
|
+
|
293
|
+
"sensio/generator-bundle": "^3.1",
|
294
|
+
|
295
|
+
"symfony/phpunit-bridge": "^5.1"
|
296
|
+
|
297
|
+
}
|
298
|
+
|
299
|
+
}
|
300
|
+
|
301
|
+
```
|
302
|
+
|
303
|
+
|
304
|
+
|
145
305
|
### 補足情報(FW/ツールのバージョンなど)
|
146
306
|
|
147
307
|
CentOS 6.7
|