-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
33 lines (33 loc) · 899 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
{
"name": "ciaranmcnulty/phpspec-typehintedmethods",
"type": "library",
"description": "Extension for phpspec to enhance generated methods",
"keywords": ["tdd","bdd","phpspec"],
"homepage": "http://github.com/ciaranmcnulty/phpspec-typehintedmethods",
"license": "MIT",
"authors": [
{
"name": "Ciaran McNulty",
"email": "[email protected]",
"homepage": "http://ciaranmcnulty.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Cjm\\PhpSpec\\": "src/" }
},
"config": {
"bin-dir" : "bin"
},
"require": {
"php": "^7.1",
"phpspec/phpspec": "^5.0",
"phpspec/prophecy": "^1.6"
},
"require-dev": {
"behat/behat": "~3.0",
"symfony/filesystem": "~3.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}