From 2528d0b3fc103194a00a4ef3efd2bde11f5921b0 Mon Sep 17 00:00:00 2001 From: Spinei Dionis Date: Tue, 20 Jan 2015 03:31:42 +0200 Subject: [PATCH] self-update composer before install Updating composer before install seems like a good idea. At the moment for example the travis build is failing because of the new composer syntax with '^' and it would be fixed by composer self-update. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index fd61edc74..9734a46ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,7 @@ before_script: - if [ $DB = 'pgsql' ]; then psql -c 'create database doctrine_tests;' -U postgres; fi - if [ $DB = 'pgsql' ]; then psql -c 'create database doctrine_tests_tmp;' -U postgres; fi - if [ $DB = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS doctrine_tests_tmp;create database IF NOT EXISTS doctrine_tests;'; fi + - composer self-update - composer install --prefer-source --dev script: