-
Notifications
You must be signed in to change notification settings - Fork 92
/
composer.json
37 lines (37 loc) · 931 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
{
"name": "zf-commons/zfc-user-doctrine-orm",
"description": "Doctrine2 ORM storage adapter for ZfcUser.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2"
],
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/ZF-Commons/ZfcUserDoctrineORM",
"authors": [
{
"name": "Evan Coury",
"email": "[email protected]",
"homepage": "http://blog.evan.pro/"
},
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
}
],
"require": {
"php": ">=5.3.3",
"zf-commons/zfc-user": "*",
"doctrine/doctrine-orm-module": "~1.0"
},
"autoload": {
"psr-0": {
"ZfcUserDoctrineORM": "src/"
},
"classmap": [
"./"
]
}
}