├── .phpstorm.meta.php ├── LICENSE ├── README.md ├── composer.json └── src ├── CLI.php ├── Command.php ├── Commands ├── About.php ├── Help.php └── Index.php ├── Console.php ├── Languages ├── en │ └── cli.php ├── es │ └── cli.php └── pt-br │ └── cli.php ├── Stream.php └── Streams ├── Stderr.php ├── Stdout.php └── Stream.php /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/composer.json -------------------------------------------------------------------------------- /src/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/CLI.php -------------------------------------------------------------------------------- /src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Command.php -------------------------------------------------------------------------------- /src/Commands/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Commands/About.php -------------------------------------------------------------------------------- /src/Commands/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Commands/Help.php -------------------------------------------------------------------------------- /src/Commands/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Commands/Index.php -------------------------------------------------------------------------------- /src/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Console.php -------------------------------------------------------------------------------- /src/Languages/en/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Languages/en/cli.php -------------------------------------------------------------------------------- /src/Languages/es/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Languages/es/cli.php -------------------------------------------------------------------------------- /src/Languages/pt-br/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Languages/pt-br/cli.php -------------------------------------------------------------------------------- /src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Stream.php -------------------------------------------------------------------------------- /src/Streams/Stderr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Streams/Stderr.php -------------------------------------------------------------------------------- /src/Streams/Stdout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Streams/Stdout.php -------------------------------------------------------------------------------- /src/Streams/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/cli/HEAD/src/Streams/Stream.php --------------------------------------------------------------------------------