summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: ecba9386e3c3ccc36c6fbd7bfc9363203e6a6754 (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": "An easy-to-use PHP unit testing framework.",
	"homepage": "https://tester.nette.org",
	"keywords": ["testing", "unit", "nette"],
	"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.3.0"
	},
	"autoload": {
		"classmap": ["src/"]
	},
	"bin": ["src/tester"],
	"extra": {
		"branch-alias": { "dev-master": "1.7-dev" }
	}
}