From 118accf1ac2597d5769939394a5d7798c4062b62 Mon Sep 17 00:00:00 2001 From: Mateusz Zalewski Date: Fri, 16 Nov 2018 18:23:26 +0100 Subject: [PATCH] Make build great again --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c0c084a..7ec00bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,12 @@ before_install: - set -a && source tests/Application/.env.test && set +a install: - - composer require "symfony/symfony:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/browser-kit:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/debug-bundle:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/dotenv:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/intl:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/web-profiler-bundle:${SYMFONY_VERSION}" --no-interaction --no-update + - composer require "symfony/web-server-bundle:${SYMFONY_VERSION}" --no-interaction --no-update - composer install --no-interaction --prefer-dist - (cd tests/Application && yarn install)