-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 1022 Bytes
/
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
{
"name": "ciaranmcnulty/behat-localwebserverextension",
"type": "library",
"description": "Extension for behat users who forget to start their webserver",
"keywords": ["tdd","bdd","behat"],
"homepage": "http://github.com/ciaranmcnulty/behat-localwebserverextension",
"license": "MIT",
"authors": [
{
"name": "Ciaran McNulty",
"email": "[email protected]",
"homepage": "http://ciaranmcnulty.com",
"role": "Developer"
}
],
"require" : {
"php" : "^5.4||~7.0",
"behat/behat" : "~3.0",
"symfony/process" : "~2.3||~3.0"
},
"require-dev": {
"ciaranmcnulty/phpspec-typehintedmethods" : "~1.0",
"phpspec/phpspec": "~2.1",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.0"
},
"config": {
"bin-dir" : "bin"
},
"autoload": {
"psr-4" : {
"Cjm\\Behat\\LocalWebserverExtension\\" : "src"
}
}
}