diff --git a/artisan b/artisan index 14ccfd6f..a70a6c64 100644 --- a/artisan +++ b/artisan @@ -3,7 +3,7 @@ /* |-------------------------------------------------------------------------- -| Register The Composer Auto Loader +| Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader @@ -13,23 +13,7 @@ | */ -require __DIR__.'/vendor/autoload.php'; - -/* -|-------------------------------------------------------------------------- -| Register The Workbench Loaders -|-------------------------------------------------------------------------- -| -| The Laravel workbench provides a convenient place to develop packages -| when working locally. However we will need to load in the Composer -| auto-load files for the packages so that these can be used here. -| -*/ - -if (is_dir($workbench = __DIR__.'/workbench')) -{ - Illuminate\Workbench\Starter::start($workbench); -} +require __DIR__.'/bootstrap/autoload.php'; /* |-------------------------------------------------------------------------- diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php new file mode 100644 index 00000000..f6adac71 --- /dev/null +++ b/bootstrap/autoload.php @@ -0,0 +1,31 @@ +