forked from nowiko/AliceBundle
-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
composer.json
59 lines (56 loc) · 1.53 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
{
"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": "^8.2",
"doctrine/doctrine-bundle": "^2.11.3",
"doctrine/data-fixtures": "^1.7",
"doctrine/orm": "^3.1",
"doctrine/persistence": "^3.3.1",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"theofidry/alice-data-fixtures": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6.17",
"phpspec/prophecy": "^1.14.0",
"symfony/phpunit-bridge": "^6.4.4 || ^7.0",
"phpspec/prophecy-phpunit": "^2.0",
"monolog/monolog": "^3.5"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"bin-dir": "bin",
"sort-packages": true
}
}