forked from sebastianbergmann/phpunit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
75 lines (75 loc) · 1.82 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "zf1s/phpunit",
"replace": {
"phpunit/phpunit": "^3.7.38",
"phpunit/php-text-template": "^1.2.1",
"phpunit/phpunit-mock-objects": "^1.2.3",
"phpunit/php-file-iterator": "^1.4.5"
},
"description": "The PHP Unit Testing framework.",
"type": "library",
"keywords": [
"phpunit",
"xunit",
"testing"
],
"homepage": "https://github.com/zf1s/phpunit",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/zf1s/phpunit/issues"
},
"repositories": [
{
"type": "pear",
"url": "https://pear.php.net"
}
],
"require": {
"php": ">=5.3.3",
"phpunit/php-text-template": "^1.2.1",
"phpunit/phpunit-mock-objects": "^1.2.3",
"phpunit/php-file-iterator": "^1.4.5",
"phpunit/php-code-coverage": "^1.2.6",
"phpunit/php-timer": "1.0.7",
"symfony/yaml": "<7",
"ext-ctype": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-spl": "*"
},
"require-dev": {
"pear-pear.php.net/pear": "~1.9|~1.10"
},
"suggest": {
"phpunit/php-invoker": "~1.1"
},
"bin": [
"composer/bin/phpunit"
],
"autoload": {
"classmap": [
"PHPUnit/",
"deps/php-file-iterator/src",
"deps/php-text-template/src",
"deps/phpunit-mock-objects/PHPUnit"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.7.x-dev"
}
},
"include-path": [
"",
"../../symfony/yaml/"
]
}