We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfff327 commit 1866e5aCopy full SHA for 1866e5a
ansible/roles/composer/tasks/main.yml
@@ -1,5 +1,10 @@
1
- name: Install Composer
2
shell: curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer creates=/usr/local/bin/composer
3
4
+- name: Increase process timeout
5
+ shell: composer --global config process-timeout {{ composer.timeout }}
6
+
7
- name: Install packages
- shell: cd /vagrant && composer install --optimize-autoloader
8
+ shell: composer install --optimize-autoloader --prefer-source
9
+ args:
10
+ chdir: /vagrant
ansible/vars/all.yml
@@ -19,10 +19,6 @@ php:
19
- php7.0-json
20
- php7.0-xml
21
- php7.0-mbstring
22
- pecl_packages: [php-zip]
23
24
xdebug:
25
install: '1'
26
-
27
-composer:
28
- timeout: '2000'
0 commit comments