-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
31 lines (31 loc) · 898 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
{
"name": "rmiller/phpspec-extension",
"type": "behat-extension",
"description": "PhpSpec extension for Behat",
"keywords": ["phpspec", "behat", "bdd"],
"homepage": "https://github.com/richardmiller/PhpSpecExtension",
"license": "MIT",
"authors": [
{
"name": "Richard Miller",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"behat/behat": "^3.0,>=3.0.4",
"phpspec/phpspec": "^3.0",
"symfony/process": "^2.1|^3.0"
},
"require-dev": {
"rmiller/error-extension": "^0.5",
"rmiller/exemplify-extension": "^0.5"
},
"suggests": {
"rmiller/error-extension": "^0.5",
"rmiller/exemplify-extension": "^0.5"
},
"autoload": {
"psr-4": { "RMiller\\BehatSpec\\Extension\\PhpSpecExtension\\": "" }
}
}