We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not like in help but just one item per line. why?
that can be used in further automations like fig.
The text was updated successfully, but these errors were encountered:
if you want to go deeper down the rabbit hole you could also create an publish a script to take care of that. https://fig.io/docs/getting-started
sadly there is no parser for PHP available yet so its manual work.
Sorry, something went wrong.
i created one myself kirby make:command commands --global
kirby make:command commands --global
<?php declare(strict_types = 1); use Kirby\CLI\CLI; return [ 'description' => 'All commands', 'command' => static function (CLI $cli): void { $commands = $cli->commands(); foreach ($commands['core'] as $command) { $cli->out($command); } if (count($commands['global']) > 0) { foreach ($commands['global'] as $command) { $cli->out($command); } } if (count($commands['custom']) > 0) { foreach ($commands['custom'] as $command) { $cli->out($command); } } if (count($commands['plugins']) > 0) { foreach ($commands['plugins'] as $command) { $cli->out($command); } } } ];
but it would be nice to have this out-of-the-box
No branches or pull requests
not like in help but just one item per line. why?
that can be used in further automations like fig.
The text was updated successfully, but these errors were encountered: