If I type:
PS C:\wamp\www\laravel-master> php artisan bundle:install bootstrapper
I am getting:
PHP Warning: file_get_contents(http://github.com/patricktalmadge/bootstrapper/zipball
/master): failed to open stream: Unable to find the socket transport "ssl" -
did you forget to enable it when you configured PHP? in C:\wamp\www\laravel-m
aster\laravel\cli\tasks\bundle\providers\provider.php on line 69
I am running WAMP Server and I have enabled php_openssl in php.ini and ssl_module in httpd.conf. I reckon that it is caused by localhost configuration issues and it is not the Laravel specific problem. What more can I check to get this working?
The output of phpinfo() in Wamp is not the same config that PHP running from commandline is using.
To find the .ini file that PHP in CMD is running type
php --ini.Be sure to enable the
extension=php_openssl.dllin that file. (just remove the semicolon in front).