-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
62 lines (62 loc) · 1.68 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
{
"name": "piece/stagehand-testrunner",
"type": "library",
"description": "A continuous test runner for CLI",
"keywords": ["testing", "cli"],
"homepage": "https://github.com/piece/stagehand-testrunner/wiki",
"license": "BSD-2-Clause",
"authors": [
{
"name": "KUBO Atsuhiro",
"email": "[email protected]"
}
],
"config": {
"disable-tls": false,
"secure-http": true
},
"require": {
"php": ">=5.3.3",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-SPL": "*",
"piece/stagehand-alterationmonitor": "~2.0",
"piece/stagehand-componentfactory": "~1.0",
"sebastian/version": "~1.0",
"symfony/config": "~2.0",
"symfony/console": "~2.0",
"symfony/dependency-injection": "~2.0",
"symfony/finder": "~2.0",
"symfony/process": "~2.0",
"symfony/yaml": "~2.0"
},
"require-dev": {
"phake/phake": "1.0.*",
"phpunit/phpunit": ">=3.7.0"
},
"suggest": {
"phpunit/phpunit": "For using PHPUnit"
},
"autoload": {
"psr-4": { "Stagehand\\TestRunner\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Stagehand\\TestRunner\\": "tests/" },
"psr-0": {
"Stagehand\\TestRunner\\": "src/Resources/examples/",
"Stagehand_TestRunner": "src/Resources/examples/"
}
},
"bin": ["bin/testrunner"],
"extra": {
"branch-alias": {
"dev-master": "4.3.x-dev"
}
},
"scripts": {
"post-autoload-dump": [
"Stagehand\\TestRunner\\Composer\\Script::compile"
]
}
}