我正在尝试安装作曲家。我使用windows安装程序下载了它。我的 composer.json 看起来像这样
{
"require": {
"monolog/monolog": "1.2.*"
}
}
现在,当我尝试运行命令 composer install 它给我以下错误。
C:\ProgramData\Composer\bin>php composer.phar install
Loading composer repositories with package information
Installing dependencies (including require-dev)
- Installing monolog/monolog (1.2.1)
Downloading: 100%
Downloading: 100%
Downloading: connection...
Could not fetch http://nodeload.github.com/Seldaek/monolog/zip/1.2.1, enter your GitHub credentials to access private repos
The credentials will be swapped for an OAuth token stored in C:/Users/RUMMAN/AppData/Roaming/Composer/config.json, your password will not be stored
To revoke access to this token you can visit https://github.com/settings/applications
Username:
Password:
如果我把它们留空,它会给我以下错误
[Composer\Downloader\TransportException]
The "https://api.github.com/authorizations" file could not be downloaded: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
failed to open stream: Invalid argument
install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-custom-installers] [--no-scripts] [--no-progress] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader]
顺便提一下,我已经在我的 php 设置中启用了开放 SSL。