summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f17ea843741aa12879aee933ec318470f05f0a7e (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
37
38
39
40
41
{
    "name": "phpunit/phpunit-skeleton-generator",
    "description": "Tool that can generate skeleton test classes from production code classes and vice versa",
    "keywords": ["phpunit", "xunit", "testing", "skeleton"],
    "homepage": "https://github.com/sebastianbergmann/phpunit-skeleton-generator",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Sebastian Bergmann",
            "email": "sebastian@phpunit.de",
            "role": "lead"
        }
    ],
    "support": {
        "issues": "https://github.com/sebastianbergmann/phpunit-skeleton-generator/issues"
    },
    "require": {
        "php": ">=5.3.3",
        "phpunit/php-text-template": "~1.2",
        "sebastian/version": "~1.0",
        "symfony/console": "~2.4"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.0",
        "mikey179/vfsStream": "~1.2"
    },
    "autoload": {
        "classmap": [
            "src/"
        ]
    },
    "bin": [
        "phpunit-skelgen"
    ],
    "extra": {
        "branch-alias": {
            "dev-master": "2.0.x-dev"
        }
    }
}