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

	"autoload": {
		"classmap": ["hamcrest"]
	},
	"autoload-dev": {
		"classmap": ["tests", "generator"]
	},

	"require": {
		"php": "^5.3|^7.0"
	},

	"require-dev": {
		"satooshi/php-coveralls": "^1.0",
		"phpunit/php-file-iterator": "1.3.3",
		"phpunit/phpunit": "~4.0"
	},

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

    "extra": {
        "branch-alias": {
            "dev-master": "2.0-dev"
        }
    }
}