-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.15 KB
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.15 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
{
"name": "boneframework/debug-bar",
"description": "Debug Bar for Bone Framework",
"license": "MIT",
"authors": [
{
"name": "Derek Satephen McLean",
"email": "delboy1978uk@gmail.com"
}
],
"require": {
"php": "^8.3",
"ext-pdo": "*",
"boneframework/contracts": "^v1.0",
"delboy1978uk/bone-view": "^v1.8.1",
"php-debugbar/php-debugbar": "^1.23",
"slam/dbal-debugstack-middleware": "^2.1",
"delboy1978uk/booty": "^1.2",
"delboy1978uk/bone-console": "^1.7",
"delboy1978uk/bone-doctrine": "^2.2"
},
"require-dev":{
"delboy1978uk/dev-tools": "^1.0.5",
"delboy1978uk/barnacle": "^2.5"
},
"autoload":{
"psr-4":{
"Bone\\DebugBar\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"Tests\\Bone\\DebugBar\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": false
}
},
"scripts": {
"post-install-cmd": "echo 'Please add `Bone\\DebugBar\\DebugBarPackage` to your `config/packages.php`.'"
}
}