Home
last modified time | relevance | path

Searched refs:CLI (Results 1 – 12 of 12) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md1 # PHP-CLI
3 PHP-CLI is a simple library that helps with creating nice looking command line scripts.
29 use splitbrain\phpcli\CLI;
32 class Minimal extends CLI
61 - create a class and ``extend splitbrain\phpcli\CLI``
78 By default, the CLI class registers an exception handler and will print the exception's message to the end user and
130 The CLI class is a fully PSR-3 compatible logger (printing colored log data to STDOUT and STDERR). This is useful when
131 you call backend code from your CLI that expects a Logger instance to produce any sensible status output while running.
133 If you need to pass a class implementing the `Psr\Log\LoggerInterface` you can do so by inheriting from one of the two provided classes implementing this interface instead of `splitbrain\phpcli\CLI`.
140 Note: if your backend code calls for a PSR-3 logger but does not actually type check for the interface (AKA being LoggerAware only) you can also just pass an instance of `splitbrain\phpcli\CLI`
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DCLI.php6 * Class CLI
13 abstract class CLI extends Base class
H A DPSR3CLI.php10 * This class can be used instead of the CLI class when a class implementing
15 abstract class PSR3CLI extends CLI implements LoggerInterface {
/dokuwiki/bin/
H A Ddwpage.php4 use splitbrain\phpcli\CLI; alias
15 class PageCLI extends CLI
36 'work as this user. defaults to current CLI user',
H A Dindexer.php4 use splitbrain\phpcli\CLI; alias
14 class IndexerCLI extends CLI
H A Drender.php4 use splitbrain\phpcli\CLI; alias
22 class RenderCLI extends CLI
H A Dwantedpages.php6 use splitbrain\phpcli\CLI; alias
16 class WantedPagesCLI extends CLI
H A Dgittool.php4 use splitbrain\phpcli\CLI; alias
16 class GitToolCLI extends CLI
H A Dplugin.php5 use splitbrain\phpcli\CLI; alias
15 class PluginCLI extends CLI
26 $options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', false);
71 echo $this->colors->wrap(" No plugins providing CLI components available\n", Colors::C_RED);
90 * Instantiate a CLI plugin
99 // execute the plugin CLI
H A Dstriplangs.php4 use splitbrain\phpcli\CLI; alias
14 class StripLangsCLI extends CLI
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG24 - Backported CLI tool from GeSHi 1.1 branch (cweiske)
/dokuwiki/inc/Extension/
H A DCLIPlugin.php5 use splitbrain\phpcli\CLI;
8 * CLI plugin prototype
12 abstract class CLIPlugin extends CLI implements PluginInterface