forked from khepin/KhepinYamlFixturesBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 876 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
{
"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": "khepin@gmail.com"
}
],
"require": {
"doctrine/doctrine-fixtures-bundle": "2.*",
"doctrine/orm": "2.*",
"doctrine/doctrine-bundle": "dev-master"
},
"require-dev": {
"doctrine/mongodb-odm-bundle": "dev-master",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-0": {
"Khepin\\YamlFixturesBundle": "",
"Khepin": "tests"
}
},
"target-dir": "Khepin/YamlFixturesBundle"
}