forked from cakephp/debug_kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.64 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
50
51
52
53
54
{
"name": "cakephp/debug_kit",
"description": "CakePHP Debug Kit",
"type": "cakephp-plugin",
"keywords": ["cakephp", "debug", "kit"],
"homepage": "https://github.com/cakephp/debug_kit",
"license": "MIT",
"authors": [
{
"name": "Mark Story",
"homepage": "http://mark-story.com",
"role": "Author"
},
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/debug_kit/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/debug_kit/issues",
"forum": "http://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/debug_kit"
},
"require": {
"php": ">=5.6.0",
"cakephp/cakephp": "^3.6.0",
"cakephp/chronos": "^1.0.0",
"cakephp/plugin-installer": "^1.0.0",
"composer/composer": "^1.3.0",
"jdorn/sql-formatter": "^1.2.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.0",
"phpunit/phpunit": "^5.7.14|^6.0"
},
"autoload": {
"psr-4": {
"DebugKit\\": "src",
"DebugKit\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"DebugKit\\Test\\": "tests/",
"DebugKit\\TestApp\\": "tests/test_app/"
}
},
"suggest": {
"ext-pdo_sqlite": "DebugKit needs to store panel data in a database. SQLite is simple and easy to use."
},
"minimum-stability": "stable"
}