forked from baldurrensch/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hautelook/alice-bundle",
"description": "Symfony2 Bundle to manage fixtures with Alice and Faker.",
"keywords": ["Symfony", "Fixture", "ORM", "Alice", "Faker"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Baldur Rensch",
"email": "brensch@gmail.com"
},
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com",
"homepage": "https://github.com/theofidry"
}
],
"require": {
"php": ">=5.4.0",
"nelmio/alice": "~2.1",
"symfony/finder": "^2.7|~3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.2",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"doctrine/mongodb-odm": "^1.0",
"doctrine/mongodb-odm-bundle": "^3.0",
"doctrine/orm": "~2.4",
"doctrine/phpcr-bundle": "^1.3",
"doctrine/phpcr-odm": "^1.2",
"jackalope/jackalope-doctrine-dbal": "^1.2",
"symfony/console": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0",
"sllh/php-cs-fixer-styleci-bridge": "~1.0",
"symfony/phpunit-bridge": "^2.7.4|~3.0"
},
"suggest": {
"theofidry/alice-bundle-extension": "Behat extension for HautelookAliceBundle",
"doctrine/data-fixtures": "To use Doctrine fixtures loader",
"doctrine/orm": "To use Doctrine ORM",
"doctrine/doctrine-bundle": "To use Doctrine with Symfony",
"doctrine/mongodb-odm": "To use Doctrine MongoDB",
"doctrine/mongodb-odm-bundle": "To use Doctrine MongoDB with Symfony",
"jackalope/jackalope-doctrine-dbal": "To use Doctrine PHPCR",
"doctrine/phpcr-odm": "To use Doctrine PHPCR ODM",
"doctrine/phpcr-bundle": "To use Doctrine PHPCR ODM with Symfony"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Hautelook\\AliceBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Hautelook\\AliceBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}