forked from burzum/cakephp-database-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 805 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 805 Bytes
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
{
"name": "burzum/cakephp-database-log",
"type": "cakephp-plugin",
"description": "Database logging adapter for CakePHP",
"keywords": ["log", "logging", "database"],
"homepage": "http://github.com/burzum/cakephp-database-log",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"homepage": "http://florian-kraemer.net"
}
],
"minimum-stability": "dev",
"require": {
"cakephp/plugin-installer": "*",
"cakephp/cakephp": "3.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/migrations": "~1.0"
},
"autoload": {
"psr-4": {
"Burzum\\DatabaseLog\\": "src",
"Burzum\\DatabaseLog\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "/vendor/cakephp/cakephp/tests",
"Burzum\\DatabaseLog\\Test\\": "tests"
}
}
}