forked from phpspec/phpspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (46 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "phpspec/phpspec",
"description": "Specification-oriented BDD framework for PHP 5.3+",
"keywords": ["BDD", "SpecBDD", "TDD", "spec", "specification", "tests", "testing"],
"homepage": "http://phpspec.net/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"homepage": "http://marcelloduarte.net/"
}
],
"require": {
"php": ">=5.3.3",
"phpspec/prophecy": "~1.1",
"phpspec/php-diff": "~1.0.0",
"symfony/console": "~2.1",
"symfony/event-dispatcher": "~2.1",
"symfony/finder": "~2.1",
"symfony/yaml": "~2.1"
},
"require-dev": {
"behat/behat": "~2.5",
"bossa/phpspec2-expect": "dev-master"
},
"suggest": {
"phpspec/nyan-formatters": "~1.0 – Adds Nyan formatters"
},
"autoload": {
"psr-0": {
"PhpSpec": "src/"
}
},
"bin": ["bin/phpspec"],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}