forked from athopen/psr-container-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.28 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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
{
"name": "roave/psr-container-doctrine",
"type": "library",
"description": "Doctrine Factories for PSR-11 Containers",
"homepage": "https://github.com/Roave/psr-container-doctrine",
"license" : "BSD-2-Clause",
"authors": [
{
"name": "Ben Scholzen",
"homepage": "https://github.com/dasprid"
},
{
"name": "James Titcumb",
"email": "[email protected]",
"homepage": "https://github.com/asgrim"
}
],
"require": {
"php": ">=7.3.0,<7.5.0",
"doctrine/common": "^2.6",
"doctrine/dbal": "^2.5",
"doctrine/migrations": "^2.2",
"doctrine/orm": "^2.5",
"psr/container": "^1.0.0"
},
"require-dev": {
"doctrine/coding-standard": "^7.0",
"phpunit/phpunit": "^8.5",
"psalm/plugin-phpunit": "^0.9.0",
"vimeo/psalm": "^3.8"
},
"autoload": {
"psr-4": {
"Roave\\PsrContainerDoctrine\\": "src/"
},
"files": [
"bc-namespace-shim.php"
]
},
"autoload-dev": {
"psr-4": {
"RoaveTest\\PsrContainerDoctrine\\": "test/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}