2

我正在尝试安装作曲家。我使用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。

4

1 回答 1

2

如果您确实为 php CLI 启用了 openSSL,那么它应该会在您php -m在终端中运行时显示出来。如果没有,则运行php --ini并编辑显示在此命令输出中的 php.ini。

于 2013-06-07T09:03:46.330 回答