-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 948 Bytes
/
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
{
"name": "photon/storage-mongodb-object",
"type": "library",
"description": "Micro ORM for MongoDB",
"keywords": [
"photon",
"storage",
"mongodb",
"orm"
],
"homepage": "http://www.photon-project.com/",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "William MARTIN",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Community",
"homepage": "https://github.com/photon/storage-mongodb-object/blob/master/CONTRIBUTORS.md"
}
],
"require": {
"php" : "^5.5 || ^7.0",
"mongodb/mongodb": "^1.1",
"photon/photon": "^2.0",
"photon/utils-mongodb": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {
"photon\\storage\\mongodb\\": "src/"
}
}
}