forked from MatyCZ/php-lemo-tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 885 Bytes
/
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
{
"name": "matycz/lemo-tracy",
"description": "Tracy integration to Zend Framework 2",
"type": "library",
"keywords": [
"zf2",
"tracy"
],
"homepage": "https://github.com/MatyCZ/LemoTracy",
"license": "MIT",
"authors": [
{
"name": "Matej Szendi",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"tracy/tracy": "2.*",
"zendframework/zend-loader": "2.* || 3.*",
"zendframework/zend-eventmanager": "2.* || 3.*",
"zendframework/zend-modulemanager": "2.* || 3.*",
"zendframework/zend-servicemanager": "2.* || 3.*",
"zendframework/zend-stdlib": "2.* || 3.*"
},
"autoload": {
"psr-0": {
"LemoTracy": "src/"
},
"classmap": [
"./Module.php"
]
}
}