summaryrefslogtreecommitdiffstats
path: root/phpcov-rpm.patch
diff options
context:
space:
mode:
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();