diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-15 14:42:06 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-15 14:42:06 +0200 |
commit | 9be81f1ecc487f18cc14acc51e477d9b541d0ced (patch) | |
tree | 88e1b314e443b0db6059806eb7089c523b983f0c /composer.json | |
parent | b3c3e99e4070f7be5ca6961e1be224166edb7591 (diff) |
php-league-climate: backport
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..24fbfbc --- /dev/null +++ b/composer.json @@ -0,0 +1,36 @@ +{ + "name": "league/climate", + "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.", + "keywords": ["cli","php", "terminal", "command", "colors"], + "license": "MIT", + "authors": [ + { + "name": "Joe Tannenbaum", + "email": "hey@joe.codes", + "homepage": "http://joe.codes/", + "role": "Developer" + } + ], + "require": { + "php": ">=5.4.0", + "seld/cli-prompt": "~1.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.6", + "mockery/mockery": "~0.9", + "mikey179/vfsStream": "~1.4" + }, + "autoload": { + "psr-4": { + "League\\CLImate\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "League\\CLImate\\Tests\\": "tests/" + } + }, + "scripts": { + "test": "phpunit" + } +} |