-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
executable file
·41 lines (41 loc) · 1.08 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
{
"name": "coduo/tutu",
"license": "MIT",
"type": "project",
"description": "TuTu - simple HTTP server mocking tool in PHP.",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.5.0",
"symfony/http-kernel": "~3.0",
"symfony/options-resolver": "~3.0",
"symfony/event-dispatcher": "~3.0",
"symfony/class-loader": "~3.0",
"symfony/yaml": "~3.0",
"twig/twig": "1.*",
"coduo/php-matcher": "2.1.*",
"coduo/tutu-faker-extension": "1.0.*",
"coduo/tutu-twig-extension": "1.0.*"
},
"require-dev": {
"behat/behat": "3.*",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.0",
"phpspec/phpspec": "2.4.*",
"symfony/filesystem": "~3.0",
"symfony/process": "~3.0",
"bossa/phpspec2-expect": "~1.0"
},
"replace": {
"coduo/tutu-core": "self.version"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}