-
Notifications
You must be signed in to change notification settings - Fork 259
/
composer.json
35 lines (35 loc) · 1.02 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
{
"name": "hautelook/alice-bundle",
"description": "Symfony2 Bundle that helps loading fixture data written with the Alice library",
"keywords": ["Symfony2", "Fixture", "ORM", "Alice"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Baldur Rensch",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"nelmio/alice": "~1.7",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"doctrine/doctrine-bundle": "~1.2"
},
"require-dev": {
"symfony/framework-bundle": "~2.1",
"symfony/console": "~2.1",
"symfony/yaml": "~2.1",
"doctrine/orm": "~2.4",
"symfony/browser-kit": "~2.1",
"symfony/validator": "~2.1",
"solarium/solarium": "~3.1",
"hautelook/solarium-fixtures": "~1.0"
},
"suggest": {
"hautelook/solarium-fixtures": "To add Solarium fixtures"
},
"autoload": {
"psr-4": { "Hautelook\\AliceBundle\\": "" }
}
}