forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.52 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
{
"name": "doctrine/mongodb-odm",
"type": "library",
"description": "PHP Doctrine MongoDB Object Document Mapper (ODM) provides transparent persistence for PHP objects to MongoDB.",
"keywords": [
"php",
"mongodb",
"odm",
"data",
"mapper",
"mapping",
"object"
],
"homepage": "https://www.doctrine-project.org/projects/mongodb-odm.html",
"license": "MIT",
"authors": [
{ "name": "Bulat Shakirzyanov", "email": "mallluhuct@gmail.com" },
{ "name": "Kris Wallsmith", "email": "kris.wallsmith@gmail.com" },
{ "name": "Jonathan H. Wage", "email": "jonwage@gmail.com" },
{ "name": "Jeremy Mikola", "email": "jmikola@gmail.com" },
{ "name": "Maciej Malarz", "email": "malarzm@gmail.com" },
{ "name": "Andreas Braun", "email": "alcaeus@alcaeus.org" }
],
"require": {
"php": "^7.2 || ^8.0",
"ext-mongodb": "^1.5",
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.7",
"doctrine/collections": "^1.5",
"doctrine/event-manager": "^1.0",
"doctrine/instantiator": "^1.1",
"doctrine/persistence": "^1.3.5|^2.0",
"friendsofphp/proxy-manager-lts": "^1.0",
"jean85/pretty-package-versions": "^1.3.0",
"mongodb/mongodb": "^1.2.0",
"symfony/console": "^3.4|^4.1|^5.0",
"symfony/deprecation-contracts": "^2.2",
"symfony/var-dumper": "^3.4|^4.1|^5.0"
},
"require-dev": {
"ext-bcmath": "*",
"doctrine/coding-standard": "^8.2",
"jmikola/geojson": "^1.0",
"phpbench/phpbench": "^1.0.0-alpha3",
"phpstan/phpstan": "^0.12.32",
"phpunit/phpunit": "^8.5 || ^9",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.2.1"
},
"suggest": {
"ext-bcmath": "Decimal128 type support"
},
"autoload": {
"psr-4": { "Doctrine\\ODM\\MongoDB\\": "lib/Doctrine/ODM/MongoDB" }
},
"autoload-dev": {
"psr-4": {
"Doctrine\\ODM\\MongoDB\\Benchmark\\": "benchmark",
"Doctrine\\ODM\\MongoDB\\Tests\\": "tests/Doctrine/ODM/MongoDB/Tests",
"Documents\\": "tests/Documents",
"Documents74\\": "tests/Documents74",
"Stubs\\": "tests/Stubs",
"TestDocuments\\" :"tests/Doctrine/ODM/MongoDB/Tests/Mapping/Driver/fixtures"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}