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
62
63
64
65
|
{
"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.6.0 || ^7.0.0 <7.5.0",
"ext-hash": "*",
"ext-json": "*",
"ext-tokenizer": "*",
"ext-xml": "*"
},
"require-dev":
{
"friendsofphp/php-cs-fixer": "^2"
},
"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",
"ext-xdebug": "Provides code coverage report (>= 2.3)"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}
|