forked from baldurrensch/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (54 loc) · 1.42 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
{
"name": "hautelook/alice-bundle",
"description": "Symfony bundle to manage fixtures with Alice and Faker.",
"keywords": ["Symfony", "Fixture", "ORM", "Alice", "Faker"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Baldur Rensch",
"email": "[email protected]"
},
{
"name": "Théo FIDRY",
"email": "[email protected]",
"homepage": "https://github.com/theofidry"
}
],
"autoload": {
"psr-4": {
"Hautelook\\AliceBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hautelook\\AliceBundle\\": [
"fixtures",
"tests"
]
}
},
"require": {
"php": "^7.1",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/data-fixtures": "^1.2",
"doctrine/orm": "^2.5.11",
"psr/log": "^1.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/framework-bundle": "^3.4 || ^4.0",
"theofidry/alice-data-fixtures": "^1.0"
},
"require-dev": {
"doctrine/persistence": "^1.0",
"phpunit/phpunit": "^7.0",
"phpspec/prophecy": "^1.7",
"symfony/phpunit-bridge": "^3.4 || ^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"bin-dir": "bin",
"sort-packages": true
}
}