LoginSignup
3
3

More than 5 years have passed since last update.

Microsoft Azure SDK for PHPをComposerでインストールする方法 2014/05/26

Posted at

Microsoft Azure SDK for PHPをComposerでインストールする方法 2014/05/26

https://github.com/Azure/azure-sdk-for-phphttp://azure.microsoft.com/en-us/documentation/articles/php-download-sdk/に書かれている方法では、既に情報が古いので以下でインストールしましょう。

2014/05/26時点での最新のインストール方法は以下のcomposer.jsonでインストールできます。

composer.json

{
    "require": {
        "microsoft/windowsazure": "dev-dev",
        "pear-pear.php.net/http_request2": "*",
        "pear-pear.php.net/mail_mime": "*",
        "pear-pear.php.net/mail_mimedecode": "*"
    },
    "repositories": [
        {
            "type": "pear",
            "url": "http://pear.php.net"
        }
    ]
}
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3