--- 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();