-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.35 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "patchlevel/odm",
"type": "library",
"license": "MIT",
"description": "A simple ODM for MongoDB and Postgres",
"keywords": [
"mongodb",
"postgres",
"rango",
"hydrator"
],
"homepage": "https://github.com/patchlevel/odm",
"authors": [
{
"name": "Daniel Badura",
"email": "daniel.badura@patchlevel.de"
},
{
"name": "David Badura",
"email": "david.badura@patchlevel.de"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0" ,
"patchlevel/hydrator": "^1.23.0"
},
"require-dev": {
"ext-mongodb": "^2.1",
"infection/infection": "^0.32.6",
"mongodb/mongodb": "^2.1",
"patchlevel/coding-standard": "^1.3.0",
"patchlevel/rango": "1.0.0-alpha.4",
"phpat/phpat": "^0.12.4",
"phpbench/phpbench": "^1.6.1",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpunit/phpunit": "^11.5.55"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\ODM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\ODM\\Tests\\": "tests/"
}
}
}