forked from nette/tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.14 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
42
43
44
45
46
47
48
49
{
"name": "tracy/tracy",
"description": "😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.",
"keywords": ["debug", "debugger", "nette", "profiler", "xdebug"],
"homepage": "https://tracy.nette.org",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
},
{
"name": "Nette Community",
"homepage": "https://nette.org/contributors"
}
],
"require": {
"php": ">=8.0 <8.4",
"ext-session": "*",
"ext-json": "*"
},
"require-dev": {
"nette/utils": "^3.0",
"nette/di": "^3.0",
"nette/http": "^3.0",
"nette/mail": "^3.0",
"nette/tester": "^2.2",
"latte/latte": "^2.5",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"phpstan/phpstan": "^1.0"
},
"conflict": {
"nette/di": "<3.0"
},
"autoload": {
"classmap": ["src"],
"files": ["src/Tracy/functions.php"]
},
"minimum-stability": "dev",
"scripts": {
"phpstan": "phpstan analyse",
"tester": "tester tests"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}