-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1.09 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
{
"name": "api-skeletons/zf-doctrine-audit",
"description": "Doctrine 2 Entity Auditing",
"type": "zf-module",
"license": "MIT",
"keywords": [
"audit",
"doctrine"
],
"authors": [
{
"name": "Tom Anderson",
"email": "[email protected]",
"homepage": "http://www.tomhanderson.com"
}
],
"require": {
"php": ">=7.1",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-authentication": "^2.5.3",
"doctrine/doctrine-orm-module": "^1.1.5 || ^2.1",
"api-skeletons/zf-doctrine-data-fixture": "^5.0.7",
"api-skeletons/zf-doctrine-repository": "^1.0"
},
"require-dev": {
"zendframework/zend-code": "3.2.0",
"api-skeletons/coding-standard": "^1.0",
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"ZF\\Doctrine\\Audit\\": "src/"
},
"classmap": [
"./Module.php"
]
},
"extra": {
"zf": {
"module": "ZF\\Doctrine\\Audit"
}
}
}