summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 24fbfbccae2e8ae1e74ae1542e79b59316abbad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
    }
}