1<p align="center"><img src="http://climate.thephpleague.com/img/CLImate_Blink.gif" width="300" alt="CLImate" /></p>
2
3[](https://github.com/thephpleague/climate/tags)
4[](LICENSE.md)
5[](https://travis-ci.org/thephpleague/climate)
6[](https://scrutinizer-ci.com/g/thephpleague/climate/code-structure)
7[](https://scrutinizer-ci.com/g/thephpleague/climate)
8[](https://packagist.org/packages/league/climate)
9
10Running PHP from the command line? CLImate is your new best bud.
11
12CLImate allows you to easily output colored text, special formats, and more.
13
14
15## Installation
16
17The recommended method of installing this library is via [Composer](https://getcomposer.org/).
18
19Run the following command from your project root:
20
21```bash
22$ composer require league/climate
23```
24
25
26## Usage
27
28```php
29require_once __DIR__ . "/vendor/autoload.php";
30
31$climate = new \League\CLImate\CLImate;
32
33$climate->red('Whoa now this text is red.');
34$climate->blue('Blue? Wow!');
35```
36
37_Read more at https://climate.thephpleague.com/_
38
39
40## Credits
41
42This library was created by [Joe Tannenbaum](https://joe.codes/).
43It is currently maintained and developed by [Craig Duncan](https://twitter.com/duncan3dc).
44Much love to [Damian Makki](https://dribbble.com/damianmakki) for the logo.
45