Download the PHP package tbondois/php-debug without Composer
On this page you can find all versions of the php package tbondois/php-debug. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tbondois/php-debug
More information about tbondois/php-debug
Files in tbondois/php-debug
Package php-debug
Short Description PHP debug libraries (dumpers...) for common needs. should not be installed in production or use IP restriction feature.
License MIT
Homepage https://packagist.org/packages/tbondois/php-debug
Informations about the package php-debug
PHP Debug
Presentation
This project is based on Kint and VarDumper. I added some features like IP restrictions.
Installation in a project
Update it in a project
Usage
Inclusion and basic usage
Access Control (Recommended for Production environments)
Disable debug functions in the environment
To ensure this functions will be skipped, define manually in your $_ENV
a specific variable.
-
In Symfony or Laravel or project using
symfony/dotenv
, add this to you.env
file :- Or use the native PHP command :
- Or using this library helpers :
Disable debug feature in the environment except for some people :
If you want the features being executed for specific IP, add :
-
In your
.env
file ; -
Or in PHP using native functions :
- Or using this library helpers :
You obviously have to replace <IP ADDRESSES>
by one or more IP addresses separated by comas (,
).
It will be compared by the one in $_SERVER["REMOTE_ADDR"]
.
The Blocking Modes :
Suivant la valeur de TB_DEBUG_BLOCK_MODE
:
- 0 : Blocked nowhere for nobody.
- 1 : Block web for addresses not whitelisted.
- 2 : Blocked in web for everybody
- 4 : Blocked in local terminal
- 5 : (2+1) Blocked in local terminal AND web for addresses not whitelisted.
- 6 : (4 + 2) Blocked everywhere for everybody.
References
All versions of php-debug with dependencies
kint-php/kint Version ^3.2
kint-php/kint-js Version ^2.0
symfony/var-dumper Version >=2.8
symfony/polyfill-mbstring Version *
symfony/polyfill-iconv Version *
symfony/polyfill-ctype Version *