From e8da0fc399c329e35ad27f3f35ffca1d45b08871 Mon Sep 17 00:00:00 2001 From: Maks Date: Mon, 23 Jul 2012 19:31:01 +0300 Subject: [PATCH] [PHP] Update Composer examples --- docs/user/languages/php.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/languages/php.md b/docs/user/languages/php.md index 9f184343..a1ecce6d 100644 --- a/docs/user/languages/php.md +++ b/docs/user/languages/php.md @@ -76,7 +76,7 @@ and then use ENV variable values in any later script like your dependencies inst Here is an example using the above ENV variable to modify the dependencies when using the composer package manager to run the tests against the 2 differnt versions of Symfony as defined above. before_script: - - curl -s http://getcomposer.org/installer | php -- --quiet + - curl -s https://getcomposer.org/installer | php -- --quiet - php composer.phar require symfony/framework-bundle:${SYMFONY_VERSION} Here we use DB variable value to pick phpunit configuration file: @@ -113,7 +113,7 @@ Then you can use phpcs as simply as phpunit command You can also install [Composer](http://packagist.org/) packages into the Travis PHP environment. Use the following: - curl -s http://getcomposer.org/installer | php + curl -s https://getcomposer.org/installer | php -- --quiet php composer.phar install ### Installing PHP extensions