Browse Source

minor #1642 AppVeyor - install dev deps as well (keradus)

This PR was merged into the 1.12 branch.

Discussion
----------

AppVeyor - install dev deps as well

Commits
-------

5b6fbb2 AppVeyor - install dev deps as well
Dariusz Ruminski 9 years ago
parent
commit
d4b40fa9d8
1 changed files with 6 additions and 1 deletions
  1. 6 1
      appveyor.yml

+ 6 - 1
appveyor.yml

@@ -15,13 +15,18 @@ install:
     - SET PATH=C:\tools\php;%PATH%
     - cd C:\tools\php
     - copy php.ini-production php.ini
+    - echo date.timezone="UTC" >> php.ini
+    - echo memory_limit=512M >> php.ini
+    - echo extension_dir=ext >> php.ini
+    - echo extension=php_curl.dll >> php.ini
+    - echo extension=php_openssl.dll >> php.ini
     - cd C:\tools
     - appveyor DownloadFile https://getcomposer.org/composer.phar
     - appveyor DownloadFile https://phar.phpunit.de/phpunit.phar
 
 before_test:
     - cd C:\projects\php-cs-fixer
-    - php C:\tools\composer.phar update --prefer-source --ansi --no-interaction --no-dev
+    - php C:\tools\composer.phar update --no-interaction
 
 test_script:
     - cd C:\projects\php-cs-fixer