Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Merge pull request #2 from necromant2005/patch-1
Browse files Browse the repository at this point in the history
Fix autoloading
  • Loading branch information
ovr committed Jun 29, 2015
2 parents 96b4b15 + 3e4f100 commit 08a9cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/phpsa
Expand Up @@ -6,7 +6,7 @@ if (!ini_get('date.timezone')) {
/**
* @author Patsura Dmitry http://github.com/ovr <talk@dmtry.me>
*/
foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
foreach (array(__DIR__ . '/../../../autoload.php', __DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
if (file_exists($file)) {
include_once $file;
define('COMPOSER_INSTALL', $file);
Expand Down

0 comments on commit 08a9cdb

Please sign in to comment.