-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
66 lines (66 loc) · 1.66 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
{
"name" : "mouf/database.doctrine-orm-wrapper",
"description" : "This package contains wrapper classes that make Doctrine ORM easy to use in Mouf",
"keywords" : [
"doctrine",
"orm",
"wrapper",
"mouf"
],
"homepage" : "https://mouf-php.com/packages/mouf/database.doctrine-orm-wrapper",
"type" : "mouf-library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=7.1",
"doctrine/orm" : "~2.7",
"mouf/database.dao-interface" : "2.*",
"mouf/utils.common.doctrine-annotations-wrapper" : "~1.2",
"mouf/database.doctrine-dbal-wrapper" : "~1.1",
"symfony/filesystem" : "~2.1",
"mouf/utils.constants.debug" : "~1.0",
"mouf/mouf-validators-interface" : "~2.0",
"mouf/utils.common.doctrine-cache-wrapper": "~1.0",
"mouf/database.patcher": "^2.3"
},
"suggest": {
"mouf/database.patcher": "Allows creating DB patches automatically on schema update"
},
"autoload" : {
"psr-4" : {
"Mouf\\Doctrine\\ORM\\" : "src/"
}
},
"extra" : {
"mouf" : {
"install" : [{
"type" : "url",
"url" : "entityManagerInstall/?installMode=1"
}
],
"doc" : [{
"title" : "Defining properties for the 'entityManager' instance",
"url" : "doc/define-properties.md"
}, {
"title" : "Create / Update your DB schema",
"url" : "doc/schema.md"
}, {
"title" : "Generated DAO classes",
"url" : "doc/daos.md"
}, {
"title" : "Writing packages that provide entities",
"url" : "doc/writing_packages.md"
}
],
"logo" : "logo.png",
"require-admin" : [
"src/EntityManagerWrapperAdmin.php"
]
}
}
}