forked from lorenzo/audit-stash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.03 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
{
"name": "lorenzo/audit-stash",
"description": "Flexible and rock solid audit log tracking plugin for cakephp",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.0.0",
"cakephp/orm": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"cakephp/cakephp": "^3.6",
"cakephp/elastic-search": "^2.0-dev",
"friendsofcake/process-mq": "dev-master"
},
"suggest": {
"cakephp/elastic-search": "The default persister engine for audit-stash is elastic search and requires this plugin",
"friendsofcake/process-mq": "Use this package if you prefer sending the audit events to RabbitMQ",
"friendsofcake/crud": "audit-stash provide Crud Action classes for displaying audit logs"
},
"autoload": {
"psr-4": {
"AuditStash\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AuditStash\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}