shalvah/clara
Composer 安装命令:
composer require shalvah/clara
包简介
🔊 Simple, pretty, testable console output for CLI apps.
README 文档
README
Simple, pretty, testable console output for PHP CLI apps. (Used in Scribe.)
Features:
- Colours and emoji to distinguish between log types
- Two different output modes, depending on how much colour you want
- Automatically hide/show debug output
- Can capture console output for easy testing—no need for mocks
- Customizable colour palette
Icons mode
Labels mode
Installation
(PHP 7.4+)
composer require shalvah/clara
Using Clara
$output = clara('myappname'); $output->info("Installing package"); $output->debug("Attempt 3 of 5"); $output->warn("The file does not exist."); $output->error("Something went wrong!"); $output->success("Done. Go and be awesome.");
Picking a mode
By default, Clara uses "icons" mode—the output is coloured differently by output type and an emoji is added (as in the first screenshot above). If you prefer, you can switch to "labels" mode:
$output = clara('myappname', \Shalvah\Clara\Clara::MODE_LABELS); // The default $output = clara('myappname', \Shalvah\Clara\Clara::MODE_ICONS);
In labels mode, (the second screenshot above), the emojis are still present, but the output types are written out, and the main output message is not coloured.
Disabling colours and emojis
If you'd like to output a line of text without the extra formatting provided by the functions above, you can use the ->line() method instead.
Customising the colour palette
You can also customise the colours Clara uses for each type, by passing in an array as the third argument, containing your preferred colours:
$output = clara('myappname', \Shalvah\Clara\Clara::MODE_ICONS, [ 'info' => 'blue', ]);
See the Symfony docs for details about supported colours.
Toggling debug output
It's common practice to include a verbose flag (--verbose) in your CLI app that lets you show additional (debug) output to the user. With Clara, you can easily enable or disable debug logging:
$isVerbose = $this->getFlag('verbose'); // If $isVerbose is true, // Clara won't print or capture any debug logs $app1 = clara('app1')->showDebugOutput($isVerbose); $app1->debug("App 1 - Output 1"); // You can also toggle debug output manually $app1->hideDebugOutput(); $app1->debug("App 1 - Output 2"); $app1->showDebugOutput(); $app1->debug("App 1 - Output 3");
Note that by default, Clara will show all output.
Muting output
Sometimes when running your app's tests, you don't want to clutter your console with the output messages. You can turn off Clara's output by using the mute() and unmute static methods. To mute or unmute a specific app, pass in the app name.
$output1 = clara('myapp1'); $output2 = clara('myapp2'); // Mute only output from "myapp1" Clara::mute('myapp1'); // Won't be printed. $output1->info("Installing package"); // Will be printed $output2->info("Installing package"); Clara::mute(); // Mute all apps Clara::unmute("myapp1"); // Unmute myapp1 Clara::unmute(); // Unmute all apps
Showing only your app's output.
Imagine your app includes another app that uses Clara. By default, the output from all apps will be shown. You can turn off output for all apps but yours by calling ->only().
// SHow only output from mymainapp $output1 = clara('mymainapp')->only(); // This is equivalent to doing: Clara::mute(); Clara::unmute('yourappname');
Capturing the output
Sometimes you need to assert that your app printed what you expect. An easy way is to use output capturing.
Clara::startCapturingOutput('myapp1'); // Clara will start capturing output from myapp1 $output1 = clara('myapp1'); $output1->warn("Going to fail"); $output1->error("Failed"); $capturedOutput = Clara::getCapturedOutput('myapp1'); // $capturedOutput = [ // "⚠ <fg=yellow>Going to fail</>", // "✖ <fg=red>Failed</>", // ] Clara::stopCapturingOutput('myapp1'); Clara::clearCapturedOutput('myapp1'); // Will empty saved output
You can reset the entire state of Clara to default by calling Clara::reset(). This will clear captured output, stop capturing for all apps and unmute all apps.
Setting an output channel
By default, Clara outputs to the console, but you can actually output to somewhere else. This is helpful if you're writing a Laravel Artisan command and want to use Clara for output while still capturing the output via Artisan's ->output() method. All you need to do is call useOutput with an instance of Symfony\Component\Console\Output\OutputInterface (for Artisan classes, it's $this->output).
$this->clara = clara('myapp' ->showDebugOutput($this->option('verbose')) ->useOutput($this->output) ->only();
shalvah/clara 适用场景与选型建议
shalvah/clara 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.55M 次下载、GitHub Stars 达 28, 最近一次更新时间为 2020 年 04 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「log」 「logging」 「cli」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shalvah/clara 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shalvah/clara 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shalvah/clara 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Zend Framework module that sets up Monolog for logging in applications.
Asynchronous Sentry for Symfony - Fire and forget
Stackdriver handler for Monolog (codeinternetapplications/monolog-stackdriver Fork).
Laravel 5.x.x library for integration Monolog Sentry
High-performance, zero-dependency PSR-3 logger for MonkeysLegion with structured logging, handlers, processors, and PHP 8.4 features.
Pacote simplificado para persistência de logs
统计信息
- 总下载量: 12.55M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 29
- 依赖项目数: 6
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-09
