Install Laravel behind a proxy

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://mnel:******@192.168.20.4:8080
C:\wamp\www\LARAVEL>set https_proxy=https://mnel:******@192.168.20.4:8080 

Then I launched the team install composerand presto again! stack
overflow.squite

+2
source share
2 answers

Here's the solution in the layer

C:\wamp\www\LARAVEL>set http_proxy=http://mnel:******@192.168.20.4:8080 C:\wamp\www\LARAVEL>set https_proxy=https://mnel:******@192.168.20.4:8080

install composer presto!

fooobar.com/questions/1549825/...

@mneute

+1

All Articles