pingpong/workbench
最新稳定版本:v5.4.0
Composer 安装命令:
composer require pingpong/workbench
包简介
Laravel 5 Workbench.
README 文档
README
Version Compability
| Laravel Version | Workbench Version |
|---|---|
| 5.2.* | 5.2.* |
| 5.3.* | 5.3.* |
| 5.4.* | 5.4.* |
Installation
You can install the package via composer command line by running 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
That will publish the workbench.php config file to your config/ folder and you need to set the name and email of package creators on it.
Autoloading Workbench
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); }
Creating A Package
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
Other Documentation
For more documentation you can visit the official laravel documentation
统计信息
- 总下载量: 9.88k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-05-24