Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fbeba50
initial idea was to add rendering for gd image to show a thumbnail to…
KOLANICH Mar 13, 2011
d6764a4
Null improved
KOLANICH Jan 6, 2012
59636bb
Numeric improvement
KOLANICH Jan 6, 2012
c0dd938
Added support sqlite3 class
KOLANICH Jan 6, 2012
ddfe8e2
Added PDO
KOLANICH Jan 6, 2012
fc5dd64
String processing added
KOLANICH Feb 28, 2012
851b796
added curl easy handle some methods get target variable by references…
KOLANICH Jul 10, 2012
bb46a39
added some tests
KOLANICH Jul 10, 2012
4948b40
added a box for bollean
KOLANICH Aug 16, 2012
be6014e
strings, booleans and integers rendering improved some fixes in objec…
KOLANICH Nov 29, 2012
de5c15f
Create README.md
KOLANICH Dec 8, 2012
6077a06
Added Exception rendering
KOLANICH Dec 29, 2012
75b48ba
added composer.json
KOLANICH Dec 29, 2012
b2a6f0c
Added image support
KOLANICH Mar 26, 2013
a392615
Fixed bug with strings rendering.
KOLANICH Oct 26, 2013
03f991e
Objects rendering improvements
KOLANICH Nov 20, 2013
1662b22
added .php_cs and .editorconfig
KOLANICH Mar 23, 2014
62df2b9
added namespaces
KOLANICH Apr 30, 2014
20d09b5
Lowercase <?php
szepeviktor Mar 14, 2015
3d5aab3
Merge pull request #2 from szepeviktor/patch-1
KOLANICH Mar 16, 2015
b6735b1
Allow inheritance
szepeviktor Mar 16, 2015
b382a09
cosmetics
szepeviktor Mar 16, 2015
df5f54c
style fix with PHP-CS-Fixer +fixes in tests + composer.json + doxyfi…
KOLANICH Mar 16, 2015
a0c4b7b
htmlspecialchars for single lines
szepeviktor Mar 20, 2015
f7d3d26
Merge pull request #5 from szepeviktor/patch-3
KOLANICH Mar 20, 2015
2934550
Add main class to identify dBug created tables
szepeviktor Mar 20, 2015
d00db45
getVariableName fix (#12)
KOLANICH Nov 5, 2015
2227110
Merge pull request #9 from szepeviktor/patch-4
KOLANICH Nov 6, 2015
8f086a4
fix composer.json
KOLANICH Nov 6, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root = true
[*]
end_of_line = lf
insert_final_newline = false
indent_style = tab[*.php]charset=utf-8
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
composer.phar
vendor/
15 changes: 15 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('LICENSE.txt')
->notName('README.md')
->notName('dBug.doxyfile')
->notName('composer.*')
->exclude('vendor')
->in(__DIR__)
;

return Symfony\CS\Config\Config::create()
->fixers(array('-indentation','-braces','-psr0','-controls_spaces'))
->finder($finder)
;
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# dBug
dBug
====
my mod of dBug
A debug output library which is used to visualize different datatypes.
Initially was developed by ospinto.

## How to use
For more info visit [https://kolanich.github.com/dBug/]

include_once("dBug.php");
new dBug($myVariable);
[![openhub stats](https://openhub.net/p/php-dbug/widgets/project_partner_badge.gif)](https://openhub.net/p/php-dbug)

More examples at http://dbug.ospinto.com/examples.php
## Very very brief list of features

## Features

PHP version of ColdFusion’s cfdump.
Extended PHP version of ColdFusion�s cfdump.

Outputs colored and structured tabular variable information.

Expand All @@ -22,4 +23,4 @@ Stylesheet can be easily edited.

Table cells can be expanded and collapsed.

Its FREE!!!
Its FREE!!!
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name" : "KOLANICH/dBug",
"type" : "library",
"description" : "A debug output library which is used to visualize different datatypes.",
"keywords" : ["debug", "output", "table", "visualization","cfdump","ColdFusion"],
"homepage" : "https://github.com/KOLANICH/dBug",
"license" : "GPL-2.0",
"authors" : [{
"name" : "KOLANICH",
"homepage" : "https://github.com/KOLANICH",
"role" : "Developer"
}, {
"name" : "Kwaku 'ospinto' Otchere",
"email" : "[email protected]",
"homepage" : "http://dbug.ospinto.com/",
"role" : "Former author"
}
],
"require" : {
"php" : ">=5.3",
"ext-Reflection" : "*"
},
"support" : {
"issues" : "https://github.com/KOLANICH/dBug/issues"
},
"autoload" : {
"classmap" : [
"dBug.php"
]
}
}
Loading