Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pointybeard/helpers-functions-debug
A collection of helpful functions to assist with debugging
https://github.com/pointybeard/helpers-functions-debug
Last synced: 9 days ago
JSON representation
A collection of helpful functions to assist with debugging
- Host: GitHub
- URL: https://github.com/pointybeard/helpers-functions-debug
- Owner: pointybeard
- License: other
- Created: 2019-05-26T09:50:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-03T10:57:23.000Z (about 4 years ago)
- Last Synced: 2024-10-12T06:20:08.288Z (about 1 month ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# PHP Helpers: Debug Functions
- Version: v1.0.1
- Date: May 26 2019
- [Release notes](https://github.com/pointybeard/helpers-functions-debug/blob/master/CHANGELOG.md)
- [GitHub repository](https://github.com/pointybeard/helpers-functions-debug)A collection of helpful functions to assist with debugging
## Installation
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/helpers-functions-debug` or add `"pointybeard/helpers-functions-debug": "~1.1"` to your `composer.json` file.
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update### Requirements
This library makes use of the [PHP Helpers: Path Functions](https://github.com/pointybeard/helpers-functions-paths) (`pointybeard/helpers-functions-paths`) and [PHP Helpers: String Functions](https://github.com/pointybeard/helpers-functions-strings) (`pointybeard/helpers-functions-strings`). They are installed automatically via composer.
To include all the [PHP Helpers](https://github.com/pointybeard/helpers) packages on your project, use `composer require pointybeard/helpers` or add `"pointybeard/helpers": "~1.1"` to your composer file.
## Usage
This library is a collection of helpful functions to assist with debugging. They are included by the vendor autoloader automatically. The functions have a namespace of `pointybeard\Helpers\Functions\Debug`
The following functions are provided:
- `dd()`
- `readable_debug_backtrace()`Example usage:
```php
'Console/AbstractCommand.php',
'line' => '38',
'function' => 'init',
'class' => 'AbstractCommand',
'type' => '->',
],
[
'file' => 'console/commands/Symphony.php',
'line' => '18',
'function' => '__construct',
'class' => 'AbstractCommand',
'type' => '->',
],
[
'file' => 'vendor/pointybeard/helpers-foundation-factory/src/Factory/AbstractFactory.php',
'line' => '57',
'function' => '__construct',
'class' => "Commands\Console\Symphony",
'type' => '->',
],
[
'file' => 'Console/CommandFactory.php',
'line' => '47',
'function' => 'instanciate',
'class' => "Factory\AbstractFactory",
'type' => '::',
],
[
'file' => 'console/bin/symphony',
'line' => '54',
'function' => 'build',
'class' => 'CommandFactory',
'type' => '::',
],
];echo Debug\readable_debug_backtrace($sampleTrace, '{{CLASS}}{{TYPE}}{{FUNCTION}}() in {{FILENAME}} on line {{LINE}}').PHP_EOL;
// AbstractCommand->init() in AbstractCommand.php on line 38
// AbstractCommand->__construct() in Symphony.php on line 18
// Commands\Console\Symphony->__construct() in AbstractFactory.php on line 57
// Factory\AbstractFactory::instanciate() in CommandFactory.php on line 47
// CommandFactory::build() in symphony on line 54Debug\dd(
'apple',
1,
false,
[]
);
// string(5) "apple"
// int(1)
// bool(false)
// array(0) {}```
### Placeholders
The format of each trace line produced by Debug\readable_debug_backtrace() can be modified by setting the `format` argument. The default format is `[{{PATH}}/{{FILENAME}}:{{LINE}}] {{CLASS}}{{TYPE}}{{FUNCTION}}();` which looks something like `[../path/to/test.php:24] foo->__construct();`.
Placeholders available are:
- PATH
- FILENAME
- LINE
- CLASS
- TYPE
- FUNCTION## Support
If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/pointybeard/helpers-functions-debug/issues),
or better yet, fork the library and submit a pull request.## Contributing
We encourage you to contribute to this project. Please check out the [Contributing documentation](https://github.com/pointybeard/helpers-functions-debug/blob/master/CONTRIBUTING.md) for guidelines about how to get involved.
## License
"PHP Helpers: Debug Functions" is released under the [MIT License](http://www.opensource.org/licenses/MIT).