Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 649 Bytes

UTILIZANDO_O_COMPOSER_NO_WINDOWS.md

File metadata and controls

44 lines (28 loc) · 649 Bytes

#Utilizando o Composer no Windows

##Instalando

Para instalar o composer no Windows é preciso ter o Openssl instalado e habilitado no seu php.ini.

###Habilitando openssl no php.ini

; Como está inicialmente
;extension=php_openssl.dll

; Como deve ficar
extension=php_openssl.dll

###Baixando o Composer

curl -sS https://getcomposer.org/installer | php

// Ou

php -r "readfile('https://getcomposer.org/installer');" | php

###Verificando a instalação

php composer.phar

##Instalando as dependências

php composer.phar install

##Rodando os testes

vendor\bin\phpunit.bat tests