-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "netpromotion/profiler",
"description": "Profiler with adapter for Tracy",
"license": "MIT",
"keywords": [
"debug",
"profiler",
"webprofiler",
"Tracy"
],
"authors": [
{
"name": "Petr Knap",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "5.4.45",
"ext-dom": true,
"ext-mbstring": true
}
},
"require": {
"php": ">=5.4",
"petrknap/php-profiler": "^1.1",
"petrknap/php-singleton": "^1.0"
},
"conflict-note": "We are using 'conflict' combined with 'require-dev' to '*' as soft require.",
"conflict": {
"tracy/tracy": "<2.2 || >=3",
"nette/di": "<2.2 || >=3"
},
"require-dev": {
"tracy/tracy": "*",
"nette/di": "*",
"nette/bootstrap": "^2.3",
"nette/application": "^2.3",
"latte/latte": "^2.3",
"phpunit/phpunit": "^4.8",
"netpromotion/tracy-wrapper": "^1.0",
"laravel/lumen-framework": "^5.0"
},
"autoload": {
"psr-4": {
"Netpromotion\\Profiler\\": "src/Profiler"
}
},
"autoload-dev": {
"psr-4": {
"Netpromotion\\Profiler\\Test\\": "tests",
"Netpromotion\\Profiler\\Demo\\Nette\\": "demo/nette/src"
}
}
}