forked from richardmiller-zz/BehatSpec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (38 loc) · 1.38 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
{
"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.4",
"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\\BehatSpecExtension\\": "src/Extension/BehatSpecExtension",
"RMiller\\ErrorExtension\\": "src/Extension/ErrorExtension/src",
"RMiller\\ExemplifyExtension\\": "src/Extension/ExemplifyExtension/src",
"RMiller\\PhpSpecExtension\\": "src/Extension/PhpSpecExtension/src",
"RMiller\\PhpSpecRunExtension\\": "src/Extension/PhpSpecRunExtension/src"
}
},
"minimum-stability": "dev"
}