forked from theofidry/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (54 loc) · 1.46 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": "brensch@gmail.com"
},
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com",
"homepage": "https://github.com/theofidry"
}
],
"autoload": {
"psr-4": {
"Hautelook\\AliceBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hautelook\\AliceBundle\\": [
"fixtures",
"tests"
]
}
},
"require": {
"php": "^7.3 || ^8.0",
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"doctrine/data-fixtures": "^1.2",
"doctrine/orm": "^2.5.11",
"doctrine/persistence": "^1.3.4 || ^2.0",
"psr/log": "^1.0",
"symfony/finder": "^3.4 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.4.24 || ^4.0 || ^5.0",
"theofidry/alice-data-fixtures": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpspec/prophecy": "^1.7",
"symfony/phpunit-bridge": "^5.1"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"bin-dir": "bin",
"sort-packages": true
}
}