forked from atoum/AtoumBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.24 KB
/
composer.json
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
{
"name": "atoum/atoum-bundle",
"description": "Bundle around atoum unit testing framework",
"type": "symfony-bundle",
"keywords": ["atoum", "test", "unit testing"],
"homepage": "https://github.com/atoum/AtoumBundle",
"license": "MIT",
"authors": [
{
"name": "Florian Lonqueu-Brochard",
"email": "dev@florianlb.fr"
},
{
"name": "Community contributors",
"homepage": "https://github.com/atoum/AtoumBundle/graphs/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "2.*",
"symfony/console": "2.*",
"symfony/finder": "2.*",
"symfony/dom-crawler": "2.*",
"symfony/css-selector": "2.*",
"atoum/atoum": "dev-master",
"fzaninotto/faker": "1.*"
},
"require-dev": {
"symfony/form": "2.*"
},
"replace": {
"rezzza/atoum-bundle": "*",
"jedi/atoum-bundle": "*"
},
"autoload": {
"psr-0": {
"atoum\\AtoumBundle": ""
}
},
"target-dir": "atoum/AtoumBundle",
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}