Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/00f100/phpdbug

Debug for PHP scripts
https://github.com/00f100/phpdbug

composer console debug debugger easy php php7

Last synced: about 2 months ago
JSON representation

Debug for PHP scripts

Awesome Lists containing this project

README

        

# phpdbug

Debug for PHP scripts

[![Total Downloads](https://poser.pugx.org/00F100/phpdbug/downloads)](https://packagist.org/packages/00F100/phpdbug)

## Installation
--------------------

Run on terminal:

```sh

composer require 00f100/phpdbug

```

Or add in your composer.json

```json

"require-dev": {
"00f100/phpdbug": "*"
},

```

## Usage
--------------------

Run in your code:

```php
'bar'
);

// Force die
debug($var);
// or
d($var);

// Non-force die
debug($var, false);
// or
d($var, false);

```