forked from lorenzo/audit-stash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1.06 KB
/
composer.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
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
{
"name": "lorenzo/audit-stash",
"description": "Flexible and rock solid audit log tracking plugin for cakephp",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.2",
"cakephp/orm": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"cakephp/cakephp": "^4.0",
"cakephp/elastic-search": "^3.0",
"friendsofcake/process-mq": "dev-master",
"rector/rector": "^0.14.7"
},
"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"
}
}
}