forked from khepin/KhepinYamlFixturesBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1005 Bytes
/
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
{
"name": "khepin/yaml-fixtures-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for easy loading of YAML based fixtures.",
"keywords": ["data fixtures doctrine yaml"],
"homepage": "https://github.com/khepin/KhepinYamlFixturesBundle",
"license": "MIT",
"authors": [
{
"name": "Sébastien Armand",
"email": "[email protected]"
}
],
"require": {
"doctrine/data-fixtures": "1.*",
"doctrine/doctrine-fixtures-bundle": "2.*",
"doctrine/orm": "2.*",
"doctrine/doctrine-bundle": "1.*"
},
"require-dev": {
"doctrine/mongodb-odm": "1.*",
"doctrine/mongodb": "1.*",
"doctrine/mongodb-odm-bundle": "3.*",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-0": {
"Khepin\\YamlFixturesBundle": "",
"Khepin": "tests"
}
},
"target-dir": "Khepin/YamlFixturesBundle"
}