-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
{
"name": "doyo/behat-contexts",
"description": "DoyoLabs Behat Common Contexts",
"type": "behat-extension",
"license": "MIT",
"authors": [
{
"name": "Anthonius Munthi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Doyo\\Behat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Doyo\\Behat\\": "tests/"
}
},
"require": {
"behat/behat": "^3.5",
"behatch/contexts": "^3.2",
"symfony/expression-language": "^3.4 | ^4.3"
},
"require-dev": {
"behat/mink-browserkit-driver": "^1.3",
"behat/symfony2-extension": "^2.1",
"doyo/behat-coverage-extension": "^1.0@dev",
"doyo/phpspec-common": "dev-master",
"phpspec/phpspec": "^4.3 | ^5.0",
"phpunit/phpcov": "^4.0 | ^5.0",
"phpunit/phpunit": "^6.0 | 7.0",
"symfony/framework-bundle": "^3.4 | 4.3",
"symfony/routing": "^3.4 | ^4.3",
"symfony/translation": "^3.4 | ^4.3"
}
}