forked from phpspec/phpspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (42 loc) · 1.25 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
{
"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": "[email protected]",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"homepage": "http://marcelloduarte.net/"
}
],
"require": {
"php": ">=5.3.3",
"phpspec/prophecy": "~1.0.2",
"phpspec/php-diff": "~1.0.0",
"symfony/console": "~2.1",
"symfony/event-dispatcher": "~2.1",
"symfony/finder": "~2.1",
"symfony/yaml": "~2.1"
},
"suggest": {
"whatthejeff/nyancat-scoreboard": "~1.1 – Enables the Nyan Cat formatter"
},
"autoload": {
"psr-0": {
"PhpSpec": "src/"
}
},
"bin": ["bin/phpspec"],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}