From fda3dd4584ff8b31de36cf0efa3f5820d23d0de0 Mon Sep 17 00:00:00 2001 From: Nikita Strelkov Date: Wed, 5 Oct 2016 20:14:31 +0500 Subject: [PATCH] Add installation of GIT and make list of php packages more readable --- ansible/vars/all.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ansible/vars/all.yml b/ansible/vars/all.yml index d85e094..1d0e7d2 100755 --- a/ansible/vars/all.yml +++ b/ansible/vars/all.yml @@ -1,7 +1,7 @@ --- server: install: '1' - packages: [vim, htop, iotop, bwm-ng] + packages: [vim, htop, iotop, bwm-ng, git] timezone: UTC locale: en_US.UTF-8 vagrant_local: @@ -10,8 +10,19 @@ vagrant_local: php: install: '1' ppa: php - packages: [php7.0-cli, php7.0-intl, php7.0-mcrypt, php7.0-mysql, php7.0-curl, php7.0-json, php7.0-xml, php7.0-mbstring] + packages: + - php7.0-cli + - php7.0-intl + - php7.0-mcrypt + - php7.0-mysql + - php7.0-curl + - php7.0-json + - php7.0-xml + - php7.0-mbstring pecl_packages: [php-zip] xdebug: install: '1' + +composer: + timeout: '2000' \ No newline at end of file