Remove installation of php-zip and install composer packages from source

This commit is contained in:
Nikita Strelkov
2016-10-05 21:53:43 +05:00
parent cfff327fb2
commit 1866e5a013
2 changed files with 6 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
- name: Install Composer - name: Install Composer
shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer creates=/usr/local/bin/composer shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer creates=/usr/local/bin/composer
- name: Increase process timeout
shell: composer --global config process-timeout {{ composer.timeout }}
- name: Install packages - name: Install packages
shell: cd /vagrant && composer install --optimize-autoloader shell: composer install --optimize-autoloader --prefer-source
args:
chdir: /vagrant

View File

@@ -19,10 +19,6 @@ php:
- php7.0-json - php7.0-json
- php7.0-xml - php7.0-xml
- php7.0-mbstring - php7.0-mbstring
pecl_packages: [php-zip]
xdebug: xdebug:
install: '1' install: '1'
composer:
timeout: '2000'