forked from lmc-eu/steward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.27 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
{
"name": "lmc/steward",
"description": "Steward - makes Selenium WebDriver + PHPUnit testing easy and robust",
"keywords": [
"selenium",
"webdriver",
"phpunit",
"testing"
],
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lmc\\Steward\\": "src/"
}
},
"require": {
"php": ">=5.5.5",
"ext-zip": "*",
"ext-curl": "*",
"phpunit/phpunit": "^4.8.6",
"symfony/console": "~2.7",
"symfony/process": "~2.7",
"symfony/finder": "~2.7",
"symfony/event-dispatcher": "~2.7",
"nette/reflection": "~2.2",
"nette/utils": "~2.2",
"facebook/webdriver": "~0.6.0",
"clue/graph": "~0.9.0",
"graphp/algorithms": "^0.8.1",
"florianwolters/component-util-singleton": "0.3.2",
"caseyamcl/configula": "~2.3",
"doctrine/inflector": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.3.4",
"php-mock/php-mock-phpunit": "^0.3",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"ext-posix": "For colored output",
"ext-xdebug": "For remote tests debugging"
},
"bin": ["bin/steward", "bin/steward.php"]
}