-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
57 lines (57 loc) · 1.62 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": "roave/psr-container-doctrine",
"description": "Doctrine Factories for PSR-11 Containers",
"license": "BSD-2-Clause",
"type": "library",
"authors": [
{
"name": "Ben Scholzen",
"homepage": "https://github.com/dasprid"
},
{
"name": "James Titcumb",
"email": "[email protected]",
"homepage": "https://github.com/asgrim"
}
],
"homepage": "https://github.com/Roave/psr-container-doctrine",
"require": {
"php": "~8.3.0 || ~8.4.0",
"doctrine/common": "^3.4.5",
"doctrine/dbal": "^4.2.1",
"doctrine/event-manager": "^2.0.1",
"doctrine/migrations": "^3.8.2",
"doctrine/orm": "^3.3.0",
"doctrine/persistence": "^3.4.0",
"psr/cache": "^2.0.0 || ^3.0.0",
"psr/container": "^1.1.2 || ^2.0.2"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.19.0",
"symfony/yaml": "^7.1.6",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Roave\\PsrContainerDoctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RoaveTest\\PsrContainerDoctrine\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ocramius/package-versions": true
},
"platform": {
"php": "8.3.99"
},
"sort-packages": true
}
}