-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "jdr/uuid-doctrine-odm",
"description": "Allow the use of a ramsey/uuid UUID as Doctrine ODM field type.",
"keywords": [
"jdr",
"uuid-doctrine-odm"
],
"homepage": "https://github.com/johanderuijter/uuid-doctrine-odm",
"license": "MIT",
"authors": [
{
"name": "Johan de Ruijter",
"email": "dev@johanderuijter.nl",
"homepage": "http://www.johanderuijter.nl",
"role": "Developer"
}
],
"require": {
"php" : "^7.3|^8.0",
"ext-mongodb": "*",
"ramsey/uuid": "~3.0|^4",
"doctrine/mongodb-odm": "^2.0",
"doctrine/persistence": "^1.3.3|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"JDR\\Uuid\\Doctrine\\ODM\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JDR\\Uuid\\Doctrine\\ODM\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}