Use absolute autoload path

This commit is contained in:
Toby Zerner 2015-05-06 12:13:40 +09:30
parent d1b4068121
commit a38efe6e90

View File

@ -2,7 +2,7 @@
// Require the extension's composer autoload file. This will enable all of our
// classes in the src directory to be autoloaded.
require 'vendor/autoload.php';
require __DIR__.'/vendor/autoload.php';
// Register our service provider with the Flarum application. In here we can
// register bindings and execute code when the application boots.