-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
34 lines (34 loc) · 1.03 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
{
"name": "rmiller/behat-spec",
"description": "Behat and PhpSpec integration",
"keywords": ["BDD", "SpecBDD", "StoryBDD"],
"homepage": "https://github.com/richardmiller/BehatSpec",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Richard Miller",
"email": "[email protected]",
"homepage": "http://richardmiller.co.uk"
}
],
"require": {
"php": ">=5.6",
"phpspec/phpspec": "^3.0",
"behat/behat": "^3.0,>=3.0.4",
"rmiller/caser": "^0.1"
},
"replace": {
"rmiller/behat-spec-extension": "self.version",
"rmiller/error-extension": "self.version",
"rmiller/phpspec-extension": "self.version",
"rmiller/exemplify-extension": "self.version",
"rmiller/phpspec-run-extension": "self.version"
},
"autoload": {
"psr-4": {
"RMiller\\BehatSpec\\": "src"
}
},
"minimum-stability": "stable"
}