-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "caridea/dao",
"type": "library",
"description": "A shrimp of a DAO support library",
"keywords": ["data access", "dao", "db", "mongodb", "doctrine", "exceptions"],
"homepage": "http://github.com/libreworks/caridea-dao",
"license": "Apache-2.0",
"authors": [
{
"name": "Caridea Contributors",
"homepage": "https://github.com/libreworks/caridea-dao/contributors"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"require": {
"php": ">=7.1.0",
"psr/log": "^1.0",
"caridea/event": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0.0",
"doctrine/orm": "^2.0.0",
"mongodb/mongodb": "^1.2.0"
},
"suggest": {
"ext-mongodb": "Allows use of MongoDB DAO",
"doctrine/orm": "Allows use of Doctrine2 DAO",
"mongodb/mongodb": "In case you want to make life easier for yourself"
},
"autoload": {
"psr-4": {
"Caridea\\Dao\\": "src/"
}
}
}