eviweb / laravel4-workbench
Extended Laravel4 workbench command
0.1.0
2020-01-21 10:14 UTC
Requires
- php: >=5.3.0 <7.0
- eviweb/illuminate-support: ~0.1
- illuminate/support: 4.x
- illuminate/workbench: 4.x
Requires (Dev)
- antecedent/patchwork: *
- illuminate/config: 4.x
- illuminate/console: 4.x
- illuminate/events: 4.x
- mikey179/vfsstream: ~1.6
- mockery/mockery: ~0.9
- phpunit/phpunit: 3.7.*@dev
This package is auto-updated.
Last update: 2024-11-21 21:19:38 UTC
README
This is an extension to the native workbench command provided by Laravel4
Build Status
How to install
Manually using Composer
- Run
composer require eviweb/laravel4-workbench:dev-master
- Add
'evidev\laravel4\extensions\workbench\WorkbenchServiceProvider'
in theproviders
section of yourapp/config/app.php
configuration file
Using Laravel Package Installer
- Run
php artisan package:install eviweb/laravel4-workbench:dev-master
How to use
Once the package is installed, run artisan config:publish eviweb/laravel4-workbench
, then edit the configuration file app/config/packages/laravel4-workbench/config.php
.
Use the command artisan workbench [options] vendor/package
as you done before.
This will generate your plugin skeleton.
Available options
--resources Create Laravel specific directories
--psr0 Specify a specific PSR-0 compliant namespace mapping
--ns Specify a custom namespace for this package
This feature extension ensures backward compatibility with the native implementation
This means that running artisan workbench vendor/package
or artisan workbench --resources vendor/package
would give you the same result as before.