https://github.com/buggregator/trap
A local debug server and utilities set for PHP projects
https://github.com/buggregator/trap
buggregator bugregator cli composer composer-package console debug dump hacktoberfest php sentry smtp
Last synced: 15 days ago
JSON representation
A local debug server and utilities set for PHP projects
- Host: GitHub
- URL: https://github.com/buggregator/trap
- Owner: buggregator
- License: bsd-3-clause
- Created: 2023-05-13T09:09:06.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-04-03T01:30:06.000Z (21 days ago)
- Last Synced: 2025-04-06T12:42:13.752Z (17 days ago)
- Topics: buggregator, bugregator, cli, composer, composer-package, console, debug, dump, hacktoberfest, php, sentry, smtp
- Language: PHP
- Homepage: https://buggregator.dev
- Size: 3.7 MB
- Stars: 166
- Watchers: 5
- Forks: 11
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
![]()
Revolutionize Your Debugging Experience with PHP
Buggregator Trap
[](https://twitter.com/buggregator)
[](https://discord.gg/qF3HpXhMEP)
[](https://patreon.com/roxblnfk)
**Trap** is a package designed to enhance the debugging experience in conjunction with the Buggregator Server.
Trap includes:- A set of functions for direct interaction with any Buggregator server.
- Extensions for Symfony VarDumper that become active immediately after installing Trap.
- A minimized version of the [Buggregator Server](https://github.com/buggregator/server) that does not require Docker
and is intended solely for local use.
- Use PHPStorm? Consider using Trap with the [Buggregator Plugin](https://github.com/buggregator/phpstorm-plugin) for a seamless debugging experience.**Table of content:**
- [Installation](#installation)
- [Overview](#overview)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)## Installation
To install Buggregator Trap in your PHP application, add the package as a dev dependency
to your project using Composer:```bash
composer require --dev buggregator/trap -W
```[](https://packagist.org/packages/buggregator/trap)
[](https://packagist.org/packages/buggregator/trap)
[](LICENSE.md)
[](https://packagist.org/packages/buggregator/trap)And that's it. Trap is [ready to go](#usage).
### Phar
Sometimes your project may conflict with Trap's dependencies, or you might be interested in using only the local
server (e.g., for analyzing local profiler files).
In this case, consider installing Trap as a Phar (a self-contained PHP executable).
Using wget:```bash
wget https://github.com/buggregator/trap/releases/latest/download/trap.phar
chmod +x trap.phar
./trap.phar --version
```Using [Phive](https://phar.io/):
```bash
phive install buggregator/trap
```## Overview
Buggregator Trap provides a toolkit for use in your code. Firstly, just having Buggregator Trap in your
package enhances the capabilities of Symfony Var-Dumper.If you've already worked with `google/protobuf`, you probably know how unpleasant it can be.
Now let's compare the dumps of protobuf-message: on the left (with trap) and on the right (without trap).
This simultaneously compact and informative output format of protobuf message will be just as compact
and informative in the Buggregator Server interface. Now, working with protobuf is enjoyable.---
Buggreagtor Trap includes a console application - a mini-server.
The application is entirely written in PHP and does not require Docker to be installed in the system.
It may seem like it's just the same as the `symfony/var-dumper` server, but it's not.
Buggregator Trap boasts a much wider range of handlers ("traps") for debug messages:- Symfony var-dumper,
- Monolog,
- Sentry,
- SMTP,
- HTTP dumps,
- Ray,
- Any raw dataYou can effortlessly visualize and analyze console information about various elements of your codebase.
Here's a sneak peek into the console output you can expect with Trap:
| symfony/var-dumper (proto) | Binary Data |
|--------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------|
|  |  || SMTP Mail Trap | HTTP Dump |
|--------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
|  |  |---
Additionally, you can manually set traps in the code. Use the `trap()` function,
which works almost the same as Symfony's `dump()`, but configures the dumper to send dumps to the local server,
unless other user settings are provided.Also, the `trap()` has a lot of useful options:
```php
// Limit the depth of the dumped structure
trap($veryDeepArray)->depth(3);foreach ($veryLargeArray as $item) {
// We don't need to dump more than 3 items
trap($item)->times(3);
}// Dump once if the condition is true
trap($animal)->once()->if($var instanceof Animal\Cat);
```---
> [!TIP]
> Feature in development:
> add the flag `--ui` to rise the web interface of the Buggregator Server without docker.

---We care about the quality of our products' codebase and strive to provide the best user experience.
Buggregator Trap has passed the Proof of Concept stage and is now an important part of the Buggregator ecosystem.
We have big plans for the development of the entire ecosystem and we would be delighted if you join us on this journey.## Usage
After successfully [installing](#installation) Buggregator Trap, you can initiate the debugging process by using the following command:
```bash
vendor/bin/trap
```This command will start the Trap server, ready to receive any debug messages. Once a debug message is trapped, you will see a convenient report about it right here in the terminal.
Then just call the `trap()` function in your code:
```php
// dump the current stack trace
trap()->stackTrace();// dump a variable with a depth limit
trap($var)->depth(4);// dump a named variables sequence
trap($var, foo: $far, bar: $bar);// dump a variable and return it
$responder->respond(trap($response)->return());
```> **Note**:
> The `trap()` function configures `$_SERVER['REMOTE_ADDR']` and `$_SERVER['REMOTE_PORT']` automatically,
> if they are not set.Also, there are a couple of shortcuts here:
- `tr(...)` - equivalent to `trap(...)->return()`
- `td(...)` - equivalent to `trap(...); die;`If called without arguments, they will display a short stack trace, used memory, and time between shortcut calls.
```php
function handle($input) {
tr(); // Trace #0 -.--- 3.42M$data = $this->prepareData($input);
tr(); // Trace #1 0.015ms 6.58M
$this->processor->process(tr(data: $data));
td(); // exit with output: Trace #2 1.15ms 7.73M
}
```### Default port
Trap automatically recognizes the type of traffic.
Therefore, there is no need to open separate ports for different protocols.
By default, it operates on the same ports as the Buggregator Server: `9912`, `9913`, `1025`, and `8000`.
However, if you wish to utilize a different port, you can easily make this adjustment using the `-p` option:```bash
vendor/bin/trap -p9912 --ui=8000
```Environment variables can also be used to set endpoints:
- `TRAP_TCP_PORTS` - for TCP traffic: `9912,9913,1025,8000`
- `TRAP_TCP_HOST` - for the TCP host (default: `127.0.0.1`)
- `TRAP_UI_PORT` - for the web interface: `8080`### Choosing Your Senders
Buggregator Trap provides a variety of "senders" that dictate where the dumps will be sent. Currently, the available
sender options include:- `console`: Shows dumps directly in the console.
- `server`: Sends dumps to a remote Buggregator server.
- `file`: Saves dumps in a file for later use.
- `mail-to-file`: Creates a folder for each recipient and saves each message as a JSON file. Useful for testing mails.
If you send a mail `To: [email protected], [email protected]`, the following folders will be created:
- `runtime/mail/[email protected]`
- `runtime/mail/[email protected]`By default, the Trap server is set to display dumps in the console. However, you can easily select your preferred
senders using the `-s` option.For instance, to simultaneously use the console and file senders, you would input:
```bash
vendor/bin/trap -sconsole -sfile
```## Contributing
We believe in the power of community-driven development. Here's how you can contribute:
- Share your experience:
- If you find a bug or have a feature request, please [create an issue](https://github.com/buggregator/trap/issues).
- Help others by answering questions on [Discord](https://discord.gg/qF3HpXhMEP) or asking your own.
- Share the love and tell others about Buggregator.
- Write code:
- If you want to fix a bug or add a feature, let us know in the issue tracker.
[There are issues](https://github.com/buggregator/trap/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) labeled "help wanted" that are a good place to start.
- Have good documentation writing skills? We'd love your help improving our [docs](https://github.com/buggregator/docs/tree/master/docs).
- Sponsor us:
- If you use Buggregator in a commercial setting, consider [becoming a sponsor](https://patreon.com/roxblnfk) to help us maintain and improve the project.
- You also can promote a specific feature or bug fix.
We mark sponsored tasks with the honorary label [`SPONSORED`](https://github.com/buggregator/trap/issues?q=label%3ASPONSORED).## License
Buggregator Trap is open-sourced software licensed under the BSD-3 license.