summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a1b48c1f6dc342d18841da6070e8c04508393044 (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
{
	"name": "hamcrest/hamcrest-php",
	"type": "library",
	"description": "This is the PHP port of Hamcrest Matchers",
	"keywords": ["test"],
	"license": "BSD",
	"authors": [
	],

	"autoload": {
		"classmap": ["hamcrest"],
		"files": ["hamcrest/Hamcrest.php"]
	},
	"autoload-dev": {
		"classmap": ["tests", "generator"]
	},

	"require": {
		"php": ">=5.3.2"
	},

	"require-dev": {
		"satooshi/php-coveralls": "dev-master",
		"phpunit/php-file-iterator": "1.3.3"
	},

	"replace": {
		"kodova/hamcrest-php": "*",
		"davedevelopment/hamcrest-php": "*",
		"cordoval/hamcrest-php": "*"
	}
}