forked from dimitri-koenig/phpspec-data-provider-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 934 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
36
37
38
{
"name": "coduo/phpspec-data-provider-extension",
"type": "library",
"keywords": ["phpspec", "dataprovider", "extension", "coduo", "data", "provider"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
},
{
"name": "Michał Dąbrowski",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"phpspec/phpspec": "~3.0"
},
"require-dev": {
"behat/behat": "^3.1",
"symfony/filesystem": "^3.1",
"symfony/process": "^3.1",
"symfony/console": "^3.1",
"bossa/phpspec2-expect": "^2.0"
},
"autoload": {
"psr-0": { "Coduo\\PhpSpec": "src/"}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}