I am trying to install Laravel on a windows machine.
I followed this guide until step 11.
http://www.wikihow.com/Install-Laravel-Framework-in-Windows
I also ran two commands (which I got from https://stackoverflow.com/a/3/277878/ ... )
set http_proxy=<your_http_proxy:proxy_port>
set https_proxy=<your_https_proxy:proxy_port>
But at startup, composer installI am greeted by a message
C:\wamp\www\LARAVEL>composer install
Loading composer repositories with package information
[Composer\Downloader\TransportException]
The "https://packagist.org/packages.json" file could not be downloaded: SSL
: The specified procedure could not be found.
failed to open stream: Cannot connect to HTTPS server through proxy
How to skip the proxy for installing Laravel 4.
.
.
Here's the solution in the layer
C:\wamp\www\LARAVEL>set http_proxy=http:
C:\wamp\www\LARAVEL>set https_proxy=https:
Then I launched the team install composerand presto again!
stack
overflow.squite
morne source
share