-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 837 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/vtk13/mvc"
},
{
"type": "vcs",
"url": "https://github.com/vtk13/lib-xdebug-trace"
},
{
"type": "vcs",
"url": "https://github.com/vtk13/lib-sql"
}
],
"autoload": {
"psr-4": {
"Vtk13\\TraceView\\": "src/TraceView",
"Vtk13\\LibXdebugTrace\\": "lib/lib-xdebug-trace/src",
"Vtk13\\LibSql\\": "lib/lib-sql/src",
"Vtk13\\Mvc\\": "lib/mvc/src"
}
},
"require": {
"php": ">=5.5",
"vtk13/mvc": "dev-master",
"vtk13/lib-sql": "dev-master",
"vtk13/lib-xdebug-trace": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
}
}