summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 4ba4bd63256dd6783fd36460a322c67052d2d488 (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
{
	"name": "nette/tester",
	"description": "Nette Tester: enjoyable unit testing in PHP with code coverage reporter. 🍏🍏🍎🍏",
	"homepage": "https://tester.nette.org",
	"keywords": ["testing", "unit", "nette", "phpunit", "code coverage", "xdebug", "phpdbg", "clover", "assertions"],
	"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
	"authors": [
		{
			"name": "David Grudl",
			"homepage": "https://davidgrudl.com"
		},
		{
			"name": "Nette Community",
			"homepage": "https://nette.org/contributors"
		}
	],
	"require": {
		"php": ">=5.6.0"
	},
	"autoload": {
		"classmap": ["src/"]
	},
	"bin": ["src/tester"],
	"extra": {
		"branch-alias": { "dev-master": "2.0-dev" }
	}
}