-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
118 lines (118 loc) · 3.43 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "lmc/steward",
"description": "Steward - makes Selenium WebDriver + PHPUnit testing easy and robust",
"license": "MIT",
"keywords": [
"selenium",
"webdriver",
"phpunit",
"testing"
],
"authors": [
{
"name": "Ondřej Machulda",
"email": "[email protected]"
},
{
"name": "Alma Career",
"homepage": "https://github.com/almacareer/"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-SimpleXML": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-zip": "*",
"beberlei/assert": "^3.0",
"clue/graph": "^0.9.2",
"doctrine/inflector": "^2.0.3",
"graphp/algorithms": "^0.8.2",
"hanneskod/classtools": "^1.2",
"ondram/ci-detector": "^4.0",
"php-webdriver/webdriver": "^1.10.0",
"phpdocumentor/reflection-docblock": "^5.2",
"phpunit/phpunit": "^8.5.15",
"symfony/console": "^5.2.6",
"symfony/event-dispatcher": "^5.2",
"symfony/event-dispatcher-contracts": "^2.2",
"symfony/filesystem": "^5.2",
"symfony/finder": "^5.2",
"symfony/options-resolver": "^5.2",
"symfony/polyfill-mbstring": "^1.12",
"symfony/process": "^5.2",
"symfony/stopwatch": "^5.2",
"symfony/yaml": "^5.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"lmc/coding-standard": "^3.0.0",
"php-mock/php-mock-phpunit": "^2.6.0",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"symfony/var-dumper": "^5.2"
},
"suggest": {
"ext-posix": "For colored output",
"ext-xdebug": "For remote tests debugging"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lmc\\Steward\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\Steward\\": "src-tests/"
},
"exclude-from-classmap": [
"/src-tests/Process/Fixtures/InvalidTests/*"
]
},
"bin": [
"bin/steward",
"bin/steward.php"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "3.0.x-dev"
}
},
"scripts": {
"all": [
"@lint",
"@analyze",
"@test"
],
"analyze": [
"vendor/bin/ecs check src/ src-tests/ ecs.php --ansi",
"vendor/bin/phpstan analyze -c phpstan.neon --ansi"
],
"fix": [
"@composer normalize",
"vendor/bin/ecs check src/ src-tests/ ecs.php --ansi --fix"
],
"lint": [
"vendor/bin/parallel-lint -j 10 ./bin ./bin/phpunit-steward ./bin/steward ./src ./src-tests ecs.php",
"@composer validate",
"@composer normalize --dry-run"
],
"test": [
"export COLUMNS=120 && ./vendor/bin/phpunit --configuration ./src-tests/phpunit.xml --colors=always"
]
}
}