每次我想使用self-update、install或updatecomposer之类的commad时,都会生成这个错误:
[Composer\Downloader\TransportException]
The "https://getcomposer.org/version" file could not be downloaded: Failed to enable crypto
failed to open stream: operation failed使用composer安装时,我得到这个错误:
The "https://packagist.org/packages.json" file could not be downloaded: Failed to enable crypto
failed to open stream: operation failed
https://packagist.org could not be fully loaded, package information was loaded from the local cache and may be out of date我使用的是php版本5.4.9,我的操作系统是ubuntu 13.04,我的作曲家版本是:
Composer version 80499bb02418711b34bba59c1a6d8032429e5702 2013-12-06 12:32:19这快把我逼疯了,请帮帮我!
这是laravel的典型composer.json文件:
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.0.*"
},
"require-dev": {
"way/guard-laravel": "dev-master"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"}
发布于 2013-12-31 17:57:52
使用http作为解决方法。
{
"packagist": false
},
{
"type": "composer",
"url": "http://packagist.org",
"options": {
"ssl": {
"verify_peer": "false"
}
}
}https://stackoverflow.com/questions/20589076
复制相似问题