php - Laravel: Install Microsoft Azure Client Library with composer -
does installed microsoft azure client library laravel 5 project composer on ubuntu server?
when try install composer (command: composer require microsoft/windowsazure), got next error:
using version ^0.4.1 microsoft/windowsazure ./composer.json has been updated > php artisan clear-compiled loading composer repositories package information updating dependencies (including require-dev) requirements not resolved installable set of packages. problem 1 - installation request microsoft/windowsazure ^0.4.1 -> satisfiable microsoft/windowsazure[v0.4.1]. - microsoft/windowsazure v0.4.1 requires pear-pear2.php.net/http_request2 * -> no matching package found. potential causes: - typo in package name - package not available in stable-enough version according minimum-stability setting see <https://getcomposer.org/doc/04-schema.md#minimum-stability> more details. read <https://getcomposer.org/doc/articles/troubleshooting.md> further common problems. installation failed, reverting ./composer.json original content.
does know doing wrong? help.
the problem solved modifying config of composer, setting secure-http false
"config": { "secure-http": "false" }
Comments
Post a Comment