diff options
author | Remi Collet <fedora@famillecollet.com> | 2014-05-03 19:02:26 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2014-05-03 19:02:26 +0200 |
commit | e17c9b8c0f11d87a3b96e8bd61f2308ac9015a1c (patch) | |
tree | 74d88105ae3fe753eb804b5dde1693e6e851fc4d /phploc-rpm.patch | |
parent | f0d031b84187d26cf8de4d2f7bd774d83454550f (diff) |
php-phpunit-phploc: 2.0.5, sources from github
Diffstat (limited to 'phploc-rpm.patch')
-rw-r--r-- | phploc-rpm.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/phploc-rpm.patch b/phploc-rpm.patch new file mode 100644 index 0000000..fc04bb6 --- /dev/null +++ b/phploc-rpm.patch @@ -0,0 +1,34 @@ +diff -up ./phploc.rpm ./phploc +--- ./phploc.rpm 2014-05-03 18:50:56.000000000 +0200 ++++ ./phploc 2014-05-03 18:51:38.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env php ++#!/usr/bin/php + <?php + /** + * phploc +@@ -42,23 +42,7 @@ + * @since File available since Release 1.0.0 + */ + +-$loaded = false; +- +-foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/vendor/autoload.php') as $file) { +- if (file_exists($file)) { +- require $file; +- $loaded = true; +- break; +- } +-} +- +-if (!$loaded) { +- die( +- 'You need to set up the project dependencies using the following commands:' . PHP_EOL . +- 'wget http://getcomposer.org/composer.phar' . PHP_EOL . +- 'php composer.phar install' . PHP_EOL +- ); +-} ++require 'SebastianBergmann/PHPLOC/autoload.php'; + + $application = new SebastianBergmann\PHPLOC\CLI\Application; + $application->run(); |