-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "wizdam/debug-toolbar",
"description": "Standalone Debug Toolbar based on CodeIgniter4 DebugBar - Framework Agnostic",
"type": "library",
"license": "MIT",
"config": {
"vendor-dir": "library"
},
"keywords": [
"debugbar",
"debug",
"toolbar",
"sciecola",
"lumera",
"adodb",
"php84"
],
"authors": [
{
"name": "Rochmady",
"email": "srochmady@gmail.com",
"homepage": "https://www.sangia.org",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5.22"
},
"suggest": {
"psr/http-message": "Untuk integrasi PSR-7 request/response",
"psr/simple-cache": "Untuk history storage berbasis PSR-16"
},
"autoload": {
"psr-4": {
"DebugToolbar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DebugToolbar\\Tests\\": "tests/"
}
},
"extra": {
"wizdam": {
"compatible-with": "Lumera and legacy systems running PHP 8.0+",
"php-versions": ["8.0", "8.1", "8.2", "8.3", "8.4"],
"based-on": "CodeIgniter4 4.7.2 DebugBar (MIT License)"
}
},
"archive": {
"exclude": [
"/.github/",
"/tests/",
".editorconfig",
".gitattributes",
".gitignore",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"phpunit.dist.xml",
"psalm-baseline.xml",
"psalm.xml"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}