forked from elvetemedve/behat-test-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.44 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
{
"name": "seec/behat-test-runner",
"type": "library",
"description": "Component to help in self testing Behat extension development",
"keywords": ["tdd","bdd","behat","extension"],
"homepage": "https://github.com/nopenopenope/behat-test-runner",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Geza Buza",
"email": "[email protected]",
"homepage": "https://twitter.com/medve540",
"role": "Developer"
},
{
"name": "Maximilian Graf Schimmelmann",
"email": "[email protected]",
"homepage": "https://www.schimmelmann.org",
"role": "Developer"
}
],
"require": {
"php" : "^7.4|^8.0",
"behat/behat": "^3.0.0",
"symfony/process": "^4.4|^5.0",
"webmozart/assert": "^1.11",
"ext-curl": "*",
"seec/phpunit-consecutive-params": "^1",
"symfony/finder": "^5|^6"
},
"require-dev": {
"behat/behat": "^3.7",
"friends-of-behat/variadic-extension": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^7|^8|^9|^10",
"symplify/easy-coding-standard": "^11.3"
},
"autoload": {
"psr-4": {
"SEEC\\BehatTestRunner\\Context\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SEEC\\BehatTestRunner\\Tests\\": "tests"
}
}
}