| Package Data | |
|---|---|
| Maintainer Username: | shijunti19 |
| Maintainer Contact: | taylorotwell@gmail.com (Taylor Otwell) |
| Package Create Date: | 2015-10-12 |
| Package Last Update: | 2015-10-12 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-12-11 03:14:05 |
| Package Statistics | |
|---|---|
| Total Downloads: | 6 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
You can install the package via composer command line by runnign this following command.
composer require pingpong/workbench
After the package installed, add Pingpong\Workbench\WorkbenchServiceProvider to your providers array in config/app.php file.
And the last, publish the package's configuration by running:
php artisan vendor:publish
You can autoload the workbench by adding this following command to your bootstrap/autoload.php file. Put this following command at the very bottom of script.
/*
|--------------------------------------------------------------------------
| 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'))
{
Pingpong\Workbench\Starter::start($workbench);
}
Before you create a package, you need to update
nameandconfig/workbench.phpfile.
Creating a basic package.
php artisan workbench vendor/package
Creating a package with generating some scaffold resources.
php artisan workbench vendor/package --resources
For more documentation you can visit the official laravel documentation