From 598b487605b9b30cdf6871de01821353cc46ddad Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Thu, 1 Jan 2015 15:50:57 +0000 Subject: [PATCH] Removed the workbench functionality --- .gitignore | 1 - app/config/app.php | 1 - app/config/workbench.php | 31 ------------------------------- bootstrap/autoload.php | 15 --------------- 4 files changed, 48 deletions(-) delete mode 100644 app/config/workbench.php diff --git a/.gitignore b/.gitignore index 44c43bb6..290dae62 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ # Laravel /bootstrap/compiled.php /vendor -/workbench # Configuration .env.*.php diff --git a/app/config/app.php b/app/config/app.php index f93cf6a3..15f6db4b 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -119,7 +119,6 @@ return [ 'Illuminate\Translation\TranslationServiceProvider', 'Illuminate\Validation\ValidationServiceProvider', 'Illuminate\View\ViewServiceProvider', - 'Illuminate\Workbench\WorkbenchServiceProvider', 'Dingo\Api\Provider\ApiServiceProvider', 'GrahamCampbell\Throttle\ThrottleServiceProvider', diff --git a/app/config/workbench.php b/app/config/workbench.php deleted file mode 100644 index 735a7949..00000000 --- a/app/config/workbench.php +++ /dev/null @@ -1,31 +0,0 @@ - '', - - /* - |-------------------------------------------------------------------------- - | Workbench Author E-Mail Address - |-------------------------------------------------------------------------- - | - | Like the option above, your e-mail address is used when generating new - | workbench packages. The e-mail is placed in your composer.json file - | automatically after the package is created by the workbench tool. - | - */ - - 'email' => '', - -]; diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 27d0835a..3514286c 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -43,18 +43,3 @@ if (file_exists($compiled = __DIR__.'/compiled.php')) { */ Patchwork\Utf8\Bootup::initMbstring(); - -/* -|-------------------------------------------------------------------------- -| 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); -}