forked from Spea/fixture-dumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.52 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
50
51
{
"name": "dag-io/fixture-dumper",
"type": "library",
"description": "Dump fixtures from doctrine.",
"keywords": ["database", "fixture", "dumper"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Martin Parsiegla",
"email": "[email protected]",
"homepage": "http://speanet.info"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Spea/fixture-dumper/contributors"
}
],
"require": {
"php": ">=5.3.2",
"doctrine/common": ">=2.2,<2.5-dev",
"symfony/options-resolver": "~2.1",
"symfony/filesystem": "~2.1",
"phpcollection/phpcollection": "~0.2",
"jms/cg": "1.0.0"
},
"require-dev": {
"symfony/yaml": ">=2.1",
"phpunit/phpunit": "3.7.*",
"doctrine/data-fixtures": "1.0.*@dev"
},
"suggest": {
"doctrine/data-fixtures": "For loading fixtures",
"nelmio/alice": "To load fixtures in yml or array format",
"symfony/yaml": "If you want to dump fixtures in yml format",
"doctrine/orm": "For dumping ORM fixtures",
"doctrine/mongodb-odm": "For dumping MongoDB ODM fixtures",
"doctrine/phpcr-odm": "For dumping PHPCR ODM fixtures"
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-0": { "Sp\\FixtureDumper": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}