forked from doctrine/data-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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
{
"name": "marlon-be/data-fixtures",
"type": "library",
"description": "Data Fixtures for all Doctrine Object Managers",
"keywords": ["database"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{"name": "Jonathan Wage", "email": "[email protected]"}
],
"require": {
"php": "^5.6 || ^7.0",
"doctrine/common": "~2.2"
},
"require-dev": {
"doctrine/orm": "^2.5.4",
"doctrine/dbal": "^2.5.4",
"phpunit/phpunit": "^5.4.6"
},
"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.3.x-dev"
}
}
}