forked from jippi/cakephp-audit-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name":"jippi/cakephp-audit-log",
"version": "1.0.0",
"description":"A logging plugin for CakePHP. It takes a snapshot of the fully hydrated object after a change is complete and it also records each individual change in the case of an update action",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"audit",
"log",
"security",
"logging",
"plugin"
],
"homepage":"https://github.com/jippi/cakephp-audit-log",
"license":"MIT",
"authors":[
{
"name":"Christian Winther",
"role":"Author",
"homepage":"http://cakephp.nu/"
}
],
"support":{
"source":"https://github.com/jippi/cakephp-audit-log",
"issues":"https://github.com/jippi/cakephp-audit-log/issues",
"irc":"irc://irc.freenode.org/friendsofcake"
},
"require":{
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"friendsofcake/search": "~1.0",
"friendsofcake/crud":"~4.0",
"phpspec/php-diff":"dev-master"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"AuditLog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AuditLog\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}