From 19738973056d027ebe6e55a97c181279b6ad2f60 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 9 May 2016 10:42:11 +0200 Subject: Run PHP 7.1 on Travis - Using nightly (as of now it's PHP 7.1 alpha) - Force guzzle to be at least 5.3.1 (which fix some bugs in PHP 7) --- bin/symfony_requirements | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/symfony_requirements b/bin/symfony_requirements index 7cd559a4..8825a964 100755 --- a/bin/symfony_requirements +++ b/bin/symfony_requirements @@ -13,7 +13,7 @@ echo '> PHP is using the following php.ini file:'.PHP_EOL; if ($iniPath) { echo_style('green', ' '.$iniPath); } else { - echo_style('warning', ' WARNING: No configuration file (php.ini) used by PHP!'); + echo_style('yellow', ' WARNING: No configuration file (php.ini) used by PHP!'); } echo PHP_EOL.PHP_EOL; -- cgit v1.2.3 From 8d8d48a2bbdb5db61a210e123d99515ca4a9f52a Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Wed, 20 Jul 2016 10:44:46 +0200 Subject: Remove binary from repo Since Composer 1.2, binaries are re-installed from vendors if there aren't found. This avoid us to commit binaries vendors into the repo. :warning: You have to update your Composer to the 1.2 (`composer selfupdate`) --- bin/doctrine | 1 - bin/doctrine-dbal | 1 - bin/doctrine-migrations | 1 - bin/doctrine.php | 1 - bin/php-cs-fixer | 1 - bin/security-checker | 1 - 6 files changed, 6 deletions(-) delete mode 120000 bin/doctrine delete mode 120000 bin/doctrine-dbal delete mode 120000 bin/doctrine-migrations delete mode 120000 bin/doctrine.php delete mode 120000 bin/php-cs-fixer delete mode 120000 bin/security-checker (limited to 'bin') diff --git a/bin/doctrine b/bin/doctrine deleted file mode 120000 index 0f72e36f..00000000 --- a/bin/doctrine +++ /dev/null @@ -1 +0,0 @@ -../vendor/doctrine/orm/bin/doctrine \ No newline at end of file diff --git a/bin/doctrine-dbal b/bin/doctrine-dbal deleted file mode 120000 index 110e93c5..00000000 --- a/bin/doctrine-dbal +++ /dev/null @@ -1 +0,0 @@ -../vendor/doctrine/dbal/bin/doctrine-dbal \ No newline at end of file diff --git a/bin/doctrine-migrations b/bin/doctrine-migrations deleted file mode 120000 index 7184da71..00000000 --- a/bin/doctrine-migrations +++ /dev/null @@ -1 +0,0 @@ -../vendor/doctrine/migrations/bin/doctrine-migrations \ No newline at end of file diff --git a/bin/doctrine.php b/bin/doctrine.php deleted file mode 120000 index b22b74da..00000000 --- a/bin/doctrine.php +++ /dev/null @@ -1 +0,0 @@ -../vendor/doctrine/orm/bin/doctrine.php \ No newline at end of file diff --git a/bin/php-cs-fixer b/bin/php-cs-fixer deleted file mode 120000 index 4d771203..00000000 --- a/bin/php-cs-fixer +++ /dev/null @@ -1 +0,0 @@ -../vendor/friendsofphp/php-cs-fixer/php-cs-fixer \ No newline at end of file diff --git a/bin/security-checker b/bin/security-checker deleted file mode 120000 index 85f6e8ed..00000000 --- a/bin/security-checker +++ /dev/null @@ -1 +0,0 @@ -../vendor/sensiolabs/security-checker/security-checker \ No newline at end of file -- cgit v1.2.3