Skip to content

Magical PHP CLI styling: Colors, Tables, Progress bars & ASCII Art for beautiful terminal UX.

License

Notifications You must be signed in to change notification settings

WizardLoop/WizardCLI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

46 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

πŸ§™β€β™‚οΈβœ¨ WizardCLI

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! ✨

About

Magical PHP CLI styling: Colors, Tables, Progress bars & ASCII Art for beautiful terminal UX.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages