forked from lmc-eu/steward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.47 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
76
77
78
79
80
81
82
83
{
"name": "lmc/steward",
"description": "Steward - makes Selenium WebDriver + PHPUnit testing easy and robust",
"keywords": [
"selenium",
"webdriver",
"phpunit",
"testing"
],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "LMC s.r.o.",
"homepage": "https://github.com/lmc-eu"
}
],
"autoload": {
"psr-4": {
"Lmc\\Steward\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\Steward\\": "src-tests/"
}
},
"require": {
"php": "^7.1",
"ext-zip": "*",
"ext-curl": "*",
"phpunit/phpunit": ">=5.7.11",
"symfony/console": "^4.0",
"symfony/process": "^4.0 !=4.0.2",
"symfony/finder": "^4.0",
"symfony/event-dispatcher": "^4.0",
"symfony/filesystem": "^4.0",
"symfony/stopwatch": "^4.0",
"symfony/yaml": "^4.0",
"symfony/options-resolver": "^4.0",
"nette/reflection": "^2.4.2",
"facebook/webdriver": "^1.4.0",
"clue/graph": "~0.9.0",
"graphp/algorithms": "^0.8.1",
"florianwolters/component-util-singleton": "0.3.2",
"doctrine/inflector": "~1.0",
"beberlei/assert": "^2.7",
"ondram/ci-detector": "^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.1",
"php-mock/php-mock-phpunit": "~1.0",
"php-coveralls/php-coveralls": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0",
"symfony/var-dumper": "^4.0",
"phpstan/phpstan-shim": "^0.9.1",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"suggest": {
"ext-posix": "For colored output",
"ext-xdebug": "For remote tests debugging"
},
"bin": ["bin/steward", "bin/steward.php"],
"scripts": {
"codestyle:check": [
"vendor/bin/php-cs-fixer fix --diff --dry-run",
"vendor/bin/phpcs --standard=ruleset.xml"
],
"codestyle:fix": [
"vendor/bin/php-cs-fixer fix --diff || exit 0",
"vendor/bin/phpcbf --standard=ruleset.xml"
],
"analyze": [
"vendor/bin/parallel-lint -j 10 ./bin ./bin/phpunit-steward ./bin/steward ./src ./src-tests",
"vendor/bin/phpstan.phar analyze ./src ./src-tests --level 2 -c phpstan.neon --ansi"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}