forked from Daniel-Marynicz/BehatParallelExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.73 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
{
"name": "dmarynicz/behat-parallel-extension",
"description": "Parallel extension for Behat",
"keywords": ["BDD", "Behat", "Symfony2", "Context", "Extension"],
"homepage": "https://github.com/Daniel-Marynicz/BehatParallelExtension",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Marynicz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"behat/behat": "^3.6",
"symfony/process": "^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/console": "^2.7.52 || ^2.8.33 || ^3.3.15 || ^3.4.3 || ^4.0 || ^5.0 || ^6.0",
"symfony/serializer": "^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^2.7.52 || ^3.0 || ^4.0 || ^4.1.12 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/yaml": "^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/expression-language": "^2.7.52 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.0",
"ext-json": "*",
"dg/bypass-finals": "^1.1 || ^1.2"
},
"autoload": {
"psr-4": {
"DMarynicz\\BehatParallelExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DMarynicz\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": [
"phpcs"
],
"phpcbf": [
"phpcbf"
],
"phpcbfWithoutErrorCode": [
"phpcbf || true"
],
"phpstan": [
"phpstan analyse"
],
"phpunit": [
"./vendor/bin/phpunit --fail-on-warning "
],
"behat": [
"./vendor/bin/behat --colors --strict --stop-on-failure"
],
"tests": [
"@phpcbfWithoutErrorCode",
"@phpcs",
"@phpstan",
"@phpunit",
"@behat"
]
}
}