konradmichalik/console-style-kit
Composer 安装命令:
composer require konradmichalik/console-style-kit
包简介
Symfony Console Style Helper Extensions
README 文档
README
A PHP package for creating consistent and beautiful console output with various styling elements.
Warning
This package is in early development and may change significantly.
🔥 Installation
composer require konradmichalik/console-style-kit
⚡ Usage
Simple API
use ConsoleStyleKit\ConsoleStyleKit; use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Output\ConsoleOutput; $style = new ConsoleStyleKit(new ArrayInput([]), new ConsoleOutput()); $style->blockquote('Important message', 'INFO'); $style->rating(5, 4); $style->showBadge('SUCCESS'); $style->loading('Processing data', 3); $loading = $style->loading('Processing'); // ... do work $loading->stop();
Note
Auto-update mode requires declare(ticks=1) at the top of your PHP file to enable tick functions. The animation will update automatically on every PHP statement execution, providing smooth animation during long-running operations without any manual intervention. Always call ->start() after ->enableAutoUpdate() to ensure proper initialization.
Object-Oriented API
use ConsoleStyleKit\Elements\BlockquoteElement; use ConsoleStyleKit\Elements\RatingElement; use ConsoleStyleKit\Elements\BadgeElement; use ConsoleStyleKit\Elements\LoadingElement; use ConsoleStyleKit\Enums\BlockquoteType; use ConsoleStyleKit\Enums\RatingStyle; use ConsoleStyleKit\Enums\BadgeColor; use ConsoleStyleKit\Enums\LoadingCharacterSet; BlockquoteElement::create($style, 'Enhanced blockquote', BlockquoteType::WARNING)->render(); RatingElement::circle($style, 5, 4, true)->render(); BadgeElement::create($style, 'CUSTOM')->setColor(BadgeColor::BLUE)->render();
Output Examples
# Blockquote with type ┃ WARNING ┃ This is a warning message # Rating display ● ● ● ● ○ (4/5) # Badge SUCCESS # Timeline ● 2024-01-01 ─ Project Start │ ● 2024-06-01 ─ Milestone Reached │ ● 2024-12-01 ─ Project Complete # Loading Animation ⠋ Processing data …
Available Elements
- Blockquotes: INFO, TIP, IMPORTANT, WARNING, CAUTION
- Ratings: Circle and bar styles with colorful options
- Badges: Various colors and semantic types
- Separators: Customizable width and characters
- Key-Value pairs: With arrows and colors
- Timeline: Multi-event display with custom connectors
- Loading animations: Animated progress indicators with multiple styles and character sets
🧑💻 Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
⭐ License
Licensed under GPL-3.0-or-later. See LICENSE for details.
konradmichalik/console-style-kit 适用场景与选型建议
konradmichalik/console-style-kit 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.03k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 09 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 konradmichalik/console-style-kit 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 konradmichalik/console-style-kit 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2025-09-05