-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (40 loc) · 1.07 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
{
"name": "jbzoo/jbdump",
"replace": {
"smetdenis/jbdump": "*"
},
"type": "library",
"description": "Script for debug and dump PHP variables and other stuff. This tool is a nice replacement for print_r() and var_dump() functions.",
"license": "MIT",
"keywords": ["jbdump", "dump", "php", "dumper", "debug", "debugging", "pretty", "print", "print_r", "var_dump", "krumo", "vars"],
"minimum-stability": "dev",
"authors": [
{
"name": "SmetDenis",
"email": "[email protected]"
},
{
"name": "Kaloyan K. Tsvetkov",
"email": "[email protected]"
},
{
"name": "Jeremy Dorn",
"email": "[email protected]"
},
{
"name": "Florin Patan",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.10"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"files": ["autoload.php"]
}
}