Skip to content

v2.1.9

Compare
Choose a tag to compare
@inhere inhere released this 18 Dec 08:56
· 441 commits to master since this release
  • add command alias support
  • some modify
  • update readme
$app->command('test', TestCommand::class, [
    'aliases' => ['t']
]);

// now, yan can access test command by 
php examples/app test
// OR
php examples/app t