summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 7127b45c226a80985f253903c93b6790d6aa3348 (plain)
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
{
	"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": ">=5.4.4",
		"ext-session": "*",
		"ext-json": "*"
	},
	"require-dev": {
		"nette/di": "~2.3",
		"nette/tester": "~1.7"
	},
	"suggest": {
		"https://nette.org/donate": "Please support Tracy via a donation"
	},
	"autoload": {
		"classmap": ["src"],
		"files": ["src/shortcuts.php"]
	},
	"minimum-stability": "dev",
	"extra": {
		"branch-alias": {
			"dev-master": "2.4-dev"
		}
	}
}