Kir*_*iva 3 php macos curl laravel composer-php
在安装Laravel时
$ composer global require "laravel/installer=~1.1"
Run Code Online (Sandbox Code Playgroud)
得到这个错误
The "https://packagist.org/packages.json" file could not be downloaded: no valid certs found cafile stream: `/usr/local/etc/openssl/cert.pem'
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
Run Code Online (Sandbox Code Playgroud)
更新:
该命令composer self-update也会引发以下错误
[Composer\Downloader\TransportException]
The "https://getcomposer.org/version" file could not be downloaded: no valid certs found cafile stream: `/usr/local/etc/openssl/cert.
pem'
Failed to enable crypto
failed to open stream: operation failed
Run Code Online (Sandbox Code Playgroud)
我在OSX 10.9.5中使用XAMPP5.6.3(xampp-osx-5.6.3-0-installer)
我从curl下载了证书但没有工作.
问题解决了:
1)下载证书文件(使用wget下载很重要,因为复制粘贴html文件对我不起作用)
$ brew install wget
wget http://curl.haxx.se/ca/cacert.pem
Run Code Online (Sandbox Code Playgroud)
2)复制文件并粘贴到以下目录(确保有读写权限)
/Applications/XAMPP/xamppfiles/share/openssl/cacert.pem
Run Code Online (Sandbox Code Playgroud)
3)将以下行添加到php.ini
openssl.cafile=/Applications/XAMPP/xamppfiles/share/openssl/cacert.pem
Run Code Online (Sandbox Code Playgroud)
4)重启Apache
5)运行命令composer global require "laravel/installer=~1.1"将安装Larvel.