forked from doctrine/data-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1 KB
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
{
"name": "muchar/data-fixtures",
"type": "library",
"description": "Fork from Data Fixtures for all Doctrine Object Managers. Fixed schema dependencies",
"keywords": ["database"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
],
"require": {
"php": ">=5.3.2",
"doctrine/common": "~2.2"
},
"require-dev": {
"doctrine/orm": "~2.4"
},
"conflict": {
"doctrine/orm": "< 2.4"
},
"suggest": {
"doctrine/orm": "For loading ORM fixtures",
"doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
"doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
},
"autoload": {
"psr-0": { "Doctrine\\Common\\DataFixtures": "lib/" }
},
"autoload-dev": {
"psr-0": { "Doctrine\\Tests": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}