-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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
{
"name": "webfactory/doctrine-orm-test-infrastructure",
"description": "Provides utils to create a test infrastructure for Doctrine 2 entities.",
"keywords": [
"Doctrine",
"ORM",
"testing"
],
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "http://www.webfactory.de",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"doctrine/common": "^2.11|^3.0",
"doctrine/dbal": "^3.2",
"doctrine/deprecations": "^1.1",
"doctrine/event-manager": "^1.1|^2.0",
"doctrine/orm": "^2.14|^3.0",
"doctrine/persistence": "^2.0|^3.0",
"psr/log": "^2.0|^3.0",
"symfony/cache": "^5.0|^6.0|^7.0"
},
"require-dev": {
"doctrine/collections": "^1.6.8|^2.2.1",
"phpunit/phpunit": "^9.6.19",
"symfony/error-handler": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": ">= 7.0"
},
"autoload": {
"psr-4": {
"Webfactory\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webfactory\\Doctrine\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}