forked from FanchTheSystem/phpunit-skeleton-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (40 loc) · 1.08 KB
/
composer.json
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
{
"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": "[email protected]",
"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|~2.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"
}
}
}