summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c62584fdab3922a4e263d731bb3c31c4b5cbe6e6 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
	"name": "atoum/atoum",
	"type": "library",
	"description": "Simple modern and intuitive unit testing framework for PHP 5.3+",
	"keywords": ["TDD","atoum","test","unit testing"],
	"homepage": "http://www.atoum.org",
	"license": "BSD-3-Clause",
	"authors":
	[
		{
			"name": "Frédéric Hardy",
			"email": "frederic.hardy@atoum.org",
			"homepage": "http://blog.mageekbox.net"
		},
		{
			"name": "François Dussert",
			"email": "francois.dussert@atoum.org"
		},
		{
			"name": "Gérald Croes",
			"email": "gerald.croes@atoum.org"
		},
		{
			"name": "Julien Bianchi",
			"email": "julien.bianchi@atoum.org"
		},
		{
			"name": "Ludovic Fleury",
			"email": "ludovic.fleury@atoum.org"
		}
	],
	"require":
	{
		"php": ">=5.3.3",
		"ext-hash": "*",
		"ext-json": "*",
		"ext-session": "*",
		"ext-tokenizer": "*",
		"ext-xml": "*"
	},
	"replace": {
		"mageekguy/atoum": "*"
	},
	"bin":
	[
		"bin/atoum"
	],
	"autoload":
	{
		"classmap": [ "classes/" ]
	},
	"suggest": {
		"ext-mbstring": "Provides support for UTF-8 strings",
		"atoum/stubs": "Provides IDE support (like autocompletion) for atoum"
	},
	"extra": {
		"branch-alias": {
			"dev-master": "2.x-dev"
		}
	}
}