summaryrefslogtreecommitdiffstats
path: root/phpcov-rpm.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-04-30 16:12:48 +0200
committerRemi Collet <fedora@famillecollet.com>2014-04-30 16:12:48 +0200
commitc42c0417f27a31e04b63a0e6081567939f4e87d8 (patch)
tree8b740fdd20fb4ee3d58a09be50ffe031a9fa35d0 /phpcov-rpm.patch
parentef196d656cdab3440a76533ebd5833356741c6d5 (diff)
php-phpunit-phpcov: 2.0.0, sources from github
Diffstat (limited to 'phpcov-rpm.patch')
-rw-r--r--phpcov-rpm.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/phpcov-rpm.patch b/phpcov-rpm.patch
new file mode 100644
index 0000000..062caeb
--- /dev/null
+++ b/phpcov-rpm.patch
@@ -0,0 +1,27 @@
+--- phpcov.rpm 2014-04-30 15:53:58.000000000 +0200
++++ phpcov 2014-04-30 15:55:08.000000000 +0200
+@@ -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/PHPCOV/autoload.php';
+
+ $application = new SebastianBergmann\PHPCOV\Application;
+ $application->run();