-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "zalas/behat-no-extension",
"description": "The ultimate Behat extension",
"type": "library",
"keywords": ["behat","extension","bdd","dependency-injection","service-container"],
"homepage": "https://github.com/jakzal/BehatNoExtension",
"license": "MIT",
"require": {
"php": "^7.2",
"behat/behat": "^3.0",
"symfony/dependency-injection": "^3.4||^4.4||^5.0"
},
"require-dev": {
"phpspec/phpspec": "^6.1",
"bossa/phpspec2-expect": "^3.0",
"symfony/process": "^3.4||^4.4||^5.0",
"symfony/filesystem": "^3.4||^4.4||^5.0",
"sebastian/comparator": "^2.0||^3.0"
},
"autoload": {
"psr-4": {
"Zalas\\Behat\\NoExtension\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Zalas\\Behat\\NoExtension\\": "spec"
}
},
"authors": [
{
"name": "Jakub Zalas",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}