質問編集履歴
1
composer.jsonの中身追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -70,6 +70,86 @@
|
|
70
70
|
Installation failed, reverting ./composer.json to its original content.
|
71
71
|
```
|
72
72
|
|
73
|
+
```
|
74
|
+
//composer.json
|
75
|
+
{
|
76
|
+
"name": "symfony/framework-standard-edition",
|
77
|
+
"license": "MIT",
|
78
|
+
"type": "project",
|
79
|
+
"description": "The \"Symfony Standard Edition\" distribution",
|
80
|
+
"autoload": {
|
81
|
+
"psr-4": { "": "src/" },
|
82
|
+
"classmap": [ "vendor/lsolesen/pel/src" , "app/AppKernel.php", "app/AppCache.php" ]
|
83
|
+
},
|
84
|
+
"autoload-dev": {
|
85
|
+
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
|
86
|
+
},
|
87
|
+
"repositories": [
|
88
|
+
{
|
89
|
+
"type": "pear",
|
90
|
+
"url": "http://pear.php.net"
|
91
|
+
}
|
92
|
+
],
|
93
|
+
"require": {
|
94
|
+
"php": ">=5.3.3",
|
95
|
+
"symfony/symfony": "2.8.*",
|
96
|
+
"doctrine/orm": ">=2.2.3,<2.4-dev",
|
97
|
+
"doctrine/doctrine-bundle": "1.2.*",
|
98
|
+
"twig/extensions": "1.0.*",
|
99
|
+
"symfony/swiftmailer-bundle": "2.3.*",
|
100
|
+
"sensio/distribution-bundle": "5.0.*",
|
101
|
+
"sensio/framework-extra-bundle": "2.3.*",
|
102
|
+
"incenteev/composer-parameter-handler": "~2.0",
|
103
|
+
"jms/security-extra-bundle": "1.5.*",
|
104
|
+
"jms/di-extra-bundle": "1.4.*",
|
105
|
+
"lsolesen/pel": "0.9.8",
|
106
|
+
"gedmo/doctrine-extensions": "2.3.*",
|
107
|
+
"shark/simple_html_dom": "dev-master",
|
108
|
+
"pear-pear/mail_mimedecode": "1.5.*",
|
109
|
+
"rakuten-ws/rws-php-sdk": "1.*",
|
110
|
+
"liuggio/excelbundle": ">=1.0.4",
|
111
|
+
"doctrine/annotations": "^1.2",
|
112
|
+
"phpoffice/phpspreadsheet": "^1.8",
|
113
|
+
"twig/twig": "^1.42"
|
114
|
+
},
|
115
|
+
"scripts": {
|
116
|
+
"symfony-scripts": [
|
117
|
+
"Incenteev\ParameterHandler\ScriptHandler::buildParameters",
|
118
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap",
|
119
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache",
|
120
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets",
|
121
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile",
|
122
|
+
"Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::prepareDeploymentTarget"
|
123
|
+
],
|
124
|
+
"post-install-cmd": [
|
125
|
+
"@symfony-scripts"
|
126
|
+
],
|
127
|
+
"post-update-cmd": [
|
128
|
+
"@symfony-scripts"
|
129
|
+
]
|
130
|
+
},
|
131
|
+
"config": {
|
132
|
+
"bin-dir": "bin",
|
133
|
+
"secure-http": false,
|
134
|
+
"platform": {
|
135
|
+
"php": "5.6"
|
136
|
+
},
|
137
|
+
"soft-packages": true
|
138
|
+
},
|
139
|
+
"extra": {
|
140
|
+
"symfony-app-dir": "app",
|
141
|
+
"symfony-web-dir": "web",
|
142
|
+
"branch-alias": {
|
143
|
+
"dev-master": "2.8-dev"
|
144
|
+
}
|
145
|
+
},
|
146
|
+
"require-dev": {
|
147
|
+
"sensio/generator-bundle": "^3.1",
|
148
|
+
"symfony/phpunit-bridge": "^5.1"
|
149
|
+
}
|
150
|
+
}
|
151
|
+
```
|
152
|
+
|
73
153
|
### 補足情報(FW/ツールのバージョンなど)
|
74
154
|
CentOS 6.7
|
75
155
|
composer 1.10
|