From 5fc6a8c68b9c0dbf752710aa1eaf14d0428419c0 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 27 Nov 2017 14:21:29 +0000 Subject: [PATCH] Install composer --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 08e65bab..32e38dce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,16 @@ jobs: - image: php:7.1 steps: - checkout - - run: composer install + - run: + name: Install Composer + command: | + php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \ + php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" && \ + php composer-setup.php && \ + php -r "unlink('composer-setup.php');" \ + chmod +x ./composer.phar && \ + mv ./composer.phar /usr/local/bin/composer + - run: composer install --no-interaction --prefer-dist - run: ./vendor/bin/phpunit workflows: