kuuhkkh/lumen-generator

你缺少的一个Lumen生成器

1.1.0 2022-03-31 10:28 UTC

This package is auto-updated.

Last update: 2024-09-29 06:09:00 UTC


README

Total Downloads Latest Stable Version Latest Unstable Version License

在你的Lumen项目中缺少任何Laravel代码生成器吗?如果是,那么你就在正确的位置。

安装

要在Lumen中使用一些生成器命令(就像你在Laravel中做的那样),你需要添加这个包

composer require kukuhkkh/lumen-generator

配置

在你的bootstrap/app.php文件中,添加

$app->register(Kukuhkkh\LumenGenerator\LumenGeneratorServiceProvider::class);

可用命令

key:generate         Set the application key

make:cast            Create a new custom Eloquent cast class
make:channel         Create a new channel class
make:command         Create a new Artisan command
make:controller      Create a new controller class
make:repository      Create a new repository class
make:event           Create a new event class
make:exception       Create a new custom exception class
make:factory         Create a new model factory
make:job             Create a new job class
make:listener        Create a new event listener class
make:mail            Create a new email class
make:middleware      Create a new middleware class
make:migration       Create a new migration file
make:model           Create a new Eloquent model class
make:notification    Create a new notification class
make:pipe            Create a new pipe class
make:policy          Create a new policy class
make:provider        Create a new service provider class
make:request         Create a new form request class
make:resource        Create a new resource
make:rule            Create a new rule
make:seeder          Create a new seeder class
make:test            Create a new test class

notifications:table  Create a migration for the notifications table

schema:dump          Dump the given database schema

其他有用命令

clear-compiled    Remove the compiled class file
serve             Serve the application on the PHP development server
tinker            Interact with your application
optimize          Optimize the framework for better performance
route:list        Display all registered routes.

注意 route:list命令已通过appzcoder/lumen-route-list包添加。

Tinker include参数使用

php artisan tinker path/to/tinker/script.php

script.php示例

$environment = app()->environment();
$output = new Symfony\Component\Console\Output\ConsoleOutput();
$output->writeln("<info>Hello the app environment is `{$environment}`</info>");
$output->writeln("<comment>Did something</comment>");
$output->writeln("<error>Did something bad</error>");