1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Prach Pongpanich <prachpub@gmail.com>
Date: Tue, 30 Sep 2014 12:48:29 +0700
Subject: Use system autoload
Forwarded: not-needed
---
phpunit | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/phpunit b/phpunit
index 84afaf1..d3b6dce 100755
--- a/phpunit
+++ b/phpunit
@@ -1,4 +1,4 @@
-#!/usr/bin/env php
+#!/usr/bin/php
<?php declare(strict_types=1);
/*
* This file is part of PHPUnit.
@@ -47,7 +47,7 @@ if (isset($GLOBALS['_composer_autoload_path'])) {
unset($GLOBALS['_composer_autoload_path']);
} else {
- foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
+ foreach (array(__DIR__ . '/../share/php/PHPUnit/Autoload.php', __DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
if (file_exists($file)) {
define('PHPUNIT_COMPOSER_INSTALL', $file);
|