tweak how autoloaders are called. adjust phpunit bootstrap.

This commit is contained in:
Taylor Otwell
2013-01-23 23:33:47 -06:00
parent d19398614b
commit 9d3c3ea038
4 changed files with 36 additions and 37 deletions

20
artisan
View File

@@ -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';
/*
|--------------------------------------------------------------------------