lam0819 / termwind

πŸƒ In short, it's like Tailwind CSS, but for the PHP command-line applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Termwind logo

Termwind

TailCli example

GitHub Workflow Status (master) Total Downloads Latest Version License


Termwind allows you to build unique and beautiful PHP command-line applications, using the Tailwind CSS API. In short, it's like Tailwind CSS, but for the PHP command-line applications.

Installation & Usage

Requires PHP 8.0+

Require Termwind using Composer:

composer require nunomaduro/termwind --dev

Get Started

use function Termwind\{line, render};

// Render one line...
line($message)->uppercase()->pl2()->pr2()->fontBold()->textColor('white')->bg('blue')->render();

// Render multiple lines...
render([
    line(),
    line()->width(20)->bg('red'),
    line(),
]);

TODO...

Termwind is an open-sourced software licensed under the MIT license.

About

πŸƒ In short, it's like Tailwind CSS, but for the PHP command-line applications.

License:MIT License


Languages

Language:PHP 100.0%