定制 wizardloop/wizardcli 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wizardloop/wizardcli

最新稳定版本:1.0.0

Composer 安装命令:

composer require wizardloop/wizardcli

包简介

🧙‍♂️ WizardCLI – Magical PHP CLI styling: Colors, Tables, Progress bars & ASCII Art for beautiful terminal UX.

README 文档

README

The magical PHP CLI toolkit - add color, tables, progress bars & ASCII Art to your terminal!

MIT License Tests Packagist Packagist Downloads Build Status

Turn your boring terminal into a magical world!
Add colors, enchanting tables, spellbinding progress bars, and wizardly ASCII art banners to any PHP console application.

✨ Features

  • 🌈 Colors & Styles Print colored and styled text in seconds
  • 🪄 ASCII Art Wizard banners & magical terminal art
  • 📊 Tables Clean, beautiful table rendering for your data
  • Progress Bars Show task progress with charm and multiple themes
  • 🎩 Multiple Themes Wizard, Sorcerer, Dark, Gold & more
  • 💎 Modern API Easy to use, works everywhere PHP runs

🚀 Installation

composer require wizardloop/wizardcli

🪄 Quick Example

use WizardCLI\WizardCLI;

require 'vendor/autoload.php';

$cli = new WizardCLI(['theme' => 'wizard']);

$cli->art("WizardCLI"); // Magic banner
$cli->color("Welcome to the magical CLI!", "magenta+bold");
$cli->table(["Name", "Spell"], [
    ["Merlin", "Invisibility"],
    ["Morgana", "Fireball"]
]);
$cli->progressBar(100, "Created By Wizard Loop | @WizardLoop");
for ($i = 1; $i <= 100; $i++) {
    usleep(40000);
    $cli->progressAdvance(); 
}
$cli->progressFinish();

🌟 More Examples

Progress Bar

$cli->progressBar(30, "Brewing potion");
for ($i = 1; $i <= 30; $i++) {
    usleep(40000);
    $cli->progressAdvance();
}
$cli->progressFinish();

ASCII Art

$cli->art("✨ Wizard CLI ✨");

Table

$cli->table(["Wizard", "Power"], [
    ["Gandalf", "Lightning"],
    ["Harry", "Expelliarmus"]
]);

See examples/ for more!

🧪 Run Tests

composer test

🛠️ Contributing

Pull requests, issues, and magical ideas are very welcome!
See CONTRIBUTING.md for details.

🧙‍♂️ Connect

📄 License

MIT License
Made with 🪄 by WizardLoop

✨ Time for magic in your terminal! ✨

统计信息

  • 总下载量: 6
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-07-02