-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
53 lines (53 loc) · 1.63 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
52
53
{
"name": "sp/fixture-dumper",
"type": "library",
"description": "Dump fixtures from doctrine.",
"keywords": ["database", "fixture", "dumper", "doctrine"],
"license": "MIT",
"authors": [
{
"name": "Martin Parsiegla",
"email": "martin.parsiegla@gmail.com",
"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.7-dev",
"symfony/options-resolver": "^2.2|^3.0",
"symfony/filesystem": "^2.2|^3.0",
"phpcollection/phpcollection": "~0.4",
"symfony/property-access": "^2.2|^3.0",
"jms/cg": "~1.2"
},
"require-dev": {
"symfony/yaml": "^2.2|^3.0",
"phpunit/phpunit": "~4.6",
"doctrine/data-fixtures": "~1.1",
"doctrine/orm": ">=2.2,<2.7-dev",
"doctrine/mongodb-odm": "^1.0.8"
},
"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"
}
}
}