Removed the workbench functionality

This commit is contained in:
Graham Campbell
2015-01-01 15:50:57 +00:00
parent 3a36863c42
commit 598b487605
4 changed files with 0 additions and 48 deletions

1
.gitignore vendored
View File

@@ -1,7 +1,6 @@
# Laravel
/bootstrap/compiled.php
/vendor
/workbench
# Configuration
.env.*.php

View File

@@ -119,7 +119,6 @@ return [
'Illuminate\Translation\TranslationServiceProvider',
'Illuminate\Validation\ValidationServiceProvider',
'Illuminate\View\ViewServiceProvider',
'Illuminate\Workbench\WorkbenchServiceProvider',
'Dingo\Api\Provider\ApiServiceProvider',
'GrahamCampbell\Throttle\ThrottleServiceProvider',

View File

@@ -1,31 +0,0 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Workbench Author Name
|--------------------------------------------------------------------------
|
| When you create new packages via the Artisan "workbench" command your
| name is needed to generate the composer.json file for your package.
| You may specify it now so it is used for all of your workbenches.
|
*/
'name' => '',
/*
|--------------------------------------------------------------------------
| 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' => '',
];

View File

@@ -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);
}