質問編集履歴

1

compoer\.jsonの追加。エラー文言の追加

2016/12/11 02:15

投稿

maroniel
maroniel

スコア15

test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,253 @@
37
37
 
38
38
 
39
39
  よろしくお願いいたします。
40
+
41
+
42
+
43
+ 追記
44
+
45
+ composer.jsonの中身です。
46
+
47
+
48
+
49
+ ```ここに言語を入力
50
+
51
+ {
52
+
53
+ "name": "symfony/framework-standard-edition",
54
+
55
+ "license": "MIT",
56
+
57
+ "type": "project",
58
+
59
+ "description": "The \"Symfony Standard Edition\" distribution",
60
+
61
+ "autoload": {
62
+
63
+ "psr-0": { "": "src/" }
64
+
65
+ },
66
+
67
+ "require": {
68
+
69
+ "php": ">=5.3.3",
70
+
71
+ "symfony/symfony": "2.3.*",
72
+
73
+ "doctrine/orm": "~2.4",
74
+
75
+ "doctrine/doctrine-bundle": "1.2.*",
76
+
77
+ "doctrine/doctrine-fixtures-bundle": "2.2.*",
78
+
79
+ "twig/extensions": "1.0.*",
80
+
81
+ "symfony/assetic-bundle": "2.3.*",
82
+
83
+ "symfony/swiftmailer-bundle": "2.3.*",
84
+
85
+ "symfony/monolog-bundle": "2.3.*",
86
+
87
+ "sensio/distribution-bundle": "2.3.*",
88
+
89
+ "sensio/framework-extra-bundle": "2.3.*",
90
+
91
+ "sensio/generator-bundle": "2.3.*",
92
+
93
+ "incenteev/composer-parameter-handler": "~2.0",
94
+
95
+ "sonata-project/easy-extends-bundle": "2.1.*",
96
+
97
+ "sonata-project/doctrine-extensions": "1.*",
98
+
99
+ "sonata-project/intl-bundle": "2.2.*",
100
+
101
+ "sonata-project/admin-bundle": "2.3.4",
102
+
103
+ "sonata-project/doctrine-orm-admin-bundle": "2.3.*",
104
+
105
+ "sonata-project/media-bundle": "2.3.*",
106
+
107
+ "sonata-project/user-bundle": "2.2.*",
108
+
109
+ "sonata-project/cache-bundle": "2.1.*",
110
+
111
+ "sonata-project/cache": "1.0.*",
112
+
113
+ "sonata-project/core-bundle": "2.3.*",
114
+
115
+ "sonata-project/formatter-bundle": "2.3.*",
116
+
117
+ "sonata-project/datagrid-bundle": "2.2.*@dev",
118
+
119
+ "sonata-project/exporter": "1.3.*",
120
+
121
+ "simplethings/entity-audit-bundle": "~0.5",
122
+
123
+ "mopa/bootstrap-bundle": "v3.0.0-beta3",
124
+
125
+ "twbs/bootstrap": "v3.0.0",
126
+
127
+ "stof/doctrine-extensions-bundle": "~1.1",
128
+
129
+ "sensio/buzz-bundle": "v1.0.0",
130
+
131
+ "liuggio/excelbundle": "~2.0",
132
+
133
+ "mbence/opentbs-bundle": "dev-master",
134
+
135
+ "knplabs/knp-snappy-bundle": "dev-master",
136
+
137
+ "profburial/wkhtmltopdf-binaries-centos6": "0.12.*",
138
+
139
+ "thrace/form-bundle": "dev-master",
140
+
141
+ "egeloen/ckeditor-bundle": "~2.0",
142
+
143
+ "adesigns/calendar-bundle": "dev-master",
144
+
145
+ "friendsofsymfony/jsrouting-bundle": "~1.5",
146
+
147
+ "ob/highcharts-bundle": "~1.2",
148
+
149
+ "oneup/uploader-bundle": "~1.3",
150
+
151
+ "spe/filesize-extension-bundle": "~0.1.0",
152
+
153
+ "willdurand/faker-bundle": "@stable",
154
+
155
+ "solarium/solarium": "3.4.1",
156
+
157
+ "nelmio/solarium-bundle": "2.*",
158
+
159
+ "fabpot/goutte": "^2.0",
160
+
161
+ "abraham/twitteroauth": "0.5.0",
162
+
163
+ "jmose/command-scheduler-bundle": "^1.0",
164
+
165
+ "beberlei/DoctrineExtensions":"1.0.5",
166
+
167
+ "nzo/url-encryptor-bundle": "~1.0",
168
+
169
+ "happyr/google-api-bundle": "~2.1",
170
+
171
+ "liip/url-auto-converter-bundle": "~1.2.0",
172
+
173
+ "mopa/barcode-bundle": "dev-master",
174
+
175
+ "avalanche123/imagine-bundle": "dev-master",
176
+
177
+ "zendframework/zend-barcode": "~2.3.7",
178
+
179
+ "zendframework/zend-servicemanager": "~2.3.7"
180
+
181
+ },
182
+
183
+ "scripts": {
184
+
185
+ "post-install-cmd": [
186
+
187
+ "Incenteev\ParameterHandler\ScriptHandler::buildParameters",
188
+
189
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
190
+
191
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
192
+
193
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
194
+
195
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile"
196
+
197
+ ],
198
+
199
+ "post-update-cmd": [
200
+
201
+ "Incenteev\ParameterHandler\ScriptHandler::buildParameters",
202
+
203
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
204
+
205
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
206
+
207
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
208
+
209
+ "Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile"
210
+
211
+ ]
212
+
213
+ },
214
+
215
+ "config": {
216
+
217
+ "bin-dir": "bin"
218
+
219
+ },
220
+
221
+ "minimum-stability": "stable",
222
+
223
+ "extra": {
224
+
225
+ "symfony-app-dir": "app",
226
+
227
+ "symfony-web-dir": "web",
228
+
229
+ "incenteev-parameters": {
230
+
231
+ "file": "app/config/parameters.yml"
232
+
233
+ },
234
+
235
+ "branch-alias": {
236
+
237
+ "dev-master": "2.3-dev"
238
+
239
+ }
240
+
241
+ },
242
+
243
+ "require-dev": {
244
+
245
+ "behat/behat": "3.0.14",
246
+
247
+ "behat/symfony2-extension": "2.0.0",
248
+
249
+ "behat/mink": "1.6.0",
250
+
251
+ "behat/mink-extension": "2.0.1",
252
+
253
+ "behat/mink-browserkit-driver": "1.2.0",
254
+
255
+ "behat/mink-selenium2-driver": "~1.2",
256
+
257
+ "behatch/contexts": "*"
258
+
259
+ }
260
+
261
+ }
262
+
263
+
264
+
265
+ ```
266
+
267
+
268
+
269
+ composer install -vvv
270
+
271
+ を実行してみたのですが、
272
+
273
+ ```
274
+
275
+ Reading /home/vagrant/.composer/cache/repo/https---packagist.org/provider-phpdocumentor$type-resolver.json from cache
276
+
277
+ PHP Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 32 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/Rule.php on line 60
278
+
279
+
280
+
281
+ Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 32 bytes) in phar:///usr/local/bin/composer/src/Composer/DependencyResolver/Rule.php on line 60
282
+
283
+
284
+
285
+ Check https://getcomposer.org/doc/articles/troubleshooting.md#memory-limit-errors for more info on how to handle out of memory errors.
286
+
287
+ ```
288
+
289
+ このエラーで止まってしまいました。