-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (32 loc) · 1.14 KB
/
composer.json
File metadata and controls
executable file
·38 lines (32 loc) · 1.14 KB
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" : "phmlabs/livetest2",
"require" : {
"doctrine/common" : "~2.3",
"doctrine/cache" : "~1.0",
"doctrine/annotations" : "~1.1",
"doctrine/collections" : "~1.1",
"symfony/http-foundation": "~2.2",
"symfony/yaml": "~2.2",
"symfony/console" : "~2.2",
"zendframework/zend-config" : "~2.0",
"zendframework/zend-http" : "~2.0"
},
"scripts": {
"post-update-cmd": [
"echo apply dirty patch hack until https://github.com/zendframework/zf2/issues/4039 is applied",
"cd vendor/zendframework/zend-http/src/Header/ && patch -u SetCookie.php < ../../../../../set_cookie.patch"
],
"post-install-cmd": [
"echo apply dirty patch hack until https://github.com/zendframework/zf2/issues/4039 is applied",
"cd vendor/zendframework/zend-http/src/Header/ && patch -u SetCookie.php < ../../../../../set_cookie.patch"
]
},
"autoload" : {
"psr-0" : {
"phmLabs" : "src/lib/",
"Base": "src/lib/",
"LiveTest": "src/"
}
},
"bin": ["bin/livetest"]
}