forked from johanderuijter/uuid-doctrine-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.16 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
{
"name": "audithsoftworks/uuid-doctrine-odm",
"description": "Allow the use of a ramsey/uuid UUID as Doctrine ODM field type.",
"keywords": [
"uuid-doctrine-odm"
],
"homepage": "https://github.com/johanderuijter/uuid-doctrine-odm",
"license": "MIT",
"authors": [
{
"name": "Shahriyar Imanov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Johan de Ruijter",
"email": "[email protected]",
"homepage": "http://www.johanderuijter.nl",
"role": "Developer"
}
],
"require": {
"php" : "^7.3",
"ext-mongodb": "*",
"ramsey/uuid": "^4.0",
"doctrine/mongodb-odm": "^2.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"AudithSoftworks\\Uuid\\Doctrine\\ODM\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AudithSoftworks\\Uuid\\Doctrine\\ODM\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}