diff options
author | Yannick Ihmels <yannick@ihmels.com> | 2015-07-10 16:26:49 +0200 |
---|---|---|
committer | Yannick Ihmels <yannick@ihmels.com> | 2015-07-10 16:26:49 +0200 |
commit | b5ffecdfdee7545cf13b272849c72f0e633fa737 (patch) | |
tree | 98185baf5a97c34dd720cd7da64f401ee0beb5ef /app/common.php | |
parent | 8da11d6e030b8144250b71a5874a14fe835e837e (diff) |
Require autoloader relative from the current directory
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/common.php b/app/common.php index d1659018..b5871673 100644 --- a/app/common.php +++ b/app/common.php @@ -1,6 +1,6 @@ <?php -require 'vendor/autoload.php'; +require dirname(__DIR__) . '/vendor/autoload.php'; // Automatically parse environment configuration (Heroku) if (getenv('DATABASE_URL')) { |