-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
95 lines (88 loc) · 2.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "theofidry/alice-data-fixtures",
"description": "Nelmio alice extension to persist the loaded fixtures.",
"keywords": [
"Fixture",
"ORM",
"Alice",
"Faker",
"data",
"tests"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Théo FIDRY",
"email": "theo.fidry@gmail.com",
"homepage": "https://github.com/theofidry"
}
],
"require": {
"php": "^8.2",
"nelmio/alice": "^3.10",
"psr/log": "^1 || ^2 || ^3",
"webmozart/assert": "^1.10"
},
"require-dev": {
"doctrine/annotations": "^1.13",
"bamarni/composer-bin-plugin": "^1.4.1",
"phpspec/prophecy": "^1.14.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.10",
"symfony/phpunit-bridge": "^5.3.8 || ^6.4"
},
"conflict": {
"doctrine/orm": "<2.6.3",
"doctrine/dbal": "<3.0",
"doctrine/persistence": "<2.0",
"illuminate/database": "<8.12",
"ocramius/proxy-manager": "<2.1",
"symfony/framework-bundle": "<5.4 || >=6.0 <6.4",
"zendframework/zend-code": "<3.3.1"
},
"suggest": {
"doctrine/data-fixtures": "To use Doctrine",
"doctrine/orm": "To use Doctrine ORM",
"alcaeus/mongo-php-adapter": "To use Doctrine with the MongoDB flavour",
"doctrine/mongodb": "To use Doctrine with the MongoDB flavour",
"doctrine/mongodb-odm": "To use Doctrine with the MongoDB flavour",
"doctrine/dbal": "To use Doctrine with the PHPCR flavour",
"doctrine/phpcr-odm": "To use Doctrine with the PHPCR flavour",
"jackalope/jackalope-doctrine-dbal": "To use Doctrine with the PHPCR flavour",
"illuminate/database": "To use Eloquent",
"ocramius/proxy-manager": "To avoid database connection on kernel boot"
},
"autoload": {
"psr-4": {
"Fidry\\AliceDataFixtures\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidry\\AliceDataFixtures\\": [
"fixtures",
"tests"
]
},
"files": [
"fixtures/get-param.php"
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}