Download the PHP package chhw/commander without Composer
On this page you can find all versions of the php package chhw/commander. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package commander
Laravel Commander
This package extends Laravel generating commands.
Installation
Install by composer
If you are under Laravel 5.5, please add this code in config/app.php
below.
Also support Lumen now!!
In bootstrap/app.php
, you should:
- uncomment
$app->withEloquent();
- add
$app->register(CHHW\Commander\CommanderServiceProvider::class);
And add config/database.php
just like Laravel.
Usage
Generate Service:
Create a new service class.
Generate Repository:
Create a new repository class.
Or you can create a new repository class with
--model=
Supported methods
You can use these methods in service:
- all($columns = ['*'])
- find($id, $columns = ['*'])
- firstOrFail($columns = ['*'])
- get($columns = ['*'])
- create(array $attributes = [])
- with($relations)
- destroy($ids)
- paginate($perPage = null, $columns = ['*'], $pageName = 'page', $page = null)
- simplePaginate($perPage = null, $columns = ['*'], $pageName = 'page', $page = null)
Example:
app/Services/UserService.php
All versions of commander with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4
illuminate/console Version >=5.0
illuminate/support Version >=5.0
illuminate/database Version >=5.0
illuminate/console Version >=5.0
illuminate/support Version >=5.0
illuminate/database Version >=5.0
The package chhw/commander contains the following files
Loading the files please wait ....