-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
33 lines (33 loc) · 964 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
{
"name": "h4cc/alice-fixtures-bundle",
"description": "Symfony2 Bundle for loading fixture data with the Alice library.",
"keywords": ["Symfony2", "Fixtures", "Alice", "Loader", "Doctrine", "ORM", "MongoDB"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Julius Beckmann",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"nelmio/alice": "~1.6",
"doctrine/common": "~2.1",
"psr/log": "~1.0",
"symfony/finder": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/framework-bundle": "~2.1",
"doctrine/orm": "~2.1",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/mongodb-odm-bundle": "3.0.*@dev",
"matthiasnoback/symfony-config-test": "~0.2.1"
},
"autoload": {
"psr-4": {
"h4cc\\AliceFixturesBundle\\": ""
}
}
}