PHPackages                             jbzoo/toolbox-dev - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. jbzoo/toolbox-dev

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

jbzoo/toolbox-dev
=================

Developer toolbox only for JBZoo libs on github+travis

7.3.0(9mo ago)11.0M—7.7%20MITPHPPHP ^8.2CI passing

Since May 26Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/JBZoo/Toolbox-Dev)[ Packagist](https://packagist.org/packages/jbzoo/toolbox-dev)[ RSS](/packages/jbzoo-toolbox-dev/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (7)Versions (41)Used By (20)

JBZoo / Toolbox-Dev
===================

[](#jbzoo--toolbox-dev)

[![CI](https://github.com/JBZoo/Toolbox-Dev/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/JBZoo/Toolbox-Dev/actions/workflows/main.yml?query=branch%3Amaster)[![Coverage Status](https://camo.githubusercontent.com/5726caf99e26c92ec368e13dfb69057083623ebfb62930ed6a47d2d4ca7d00f5/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f4a425a6f6f2f546f6f6c626f782d4465762f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/JBZoo/Toolbox-Dev?branch=master)[![Psalm Coverage](https://camo.githubusercontent.com/17d677bcee0f978d789f1656e7f7c67b341c97d7ea167f2517a5e34f69720c92/68747470733a2f2f73686570686572642e6465762f6769746875622f4a425a6f6f2f546f6f6c626f782d4465762f636f7665726167652e737667)](https://shepherd.dev/github/JBZoo/Toolbox-Dev)[![Psalm Level](https://camo.githubusercontent.com/021b6265dc2f378d4f175dc1c26ada34fd653dcfea993103f1bc960f9794c9b7/68747470733a2f2f73686570686572642e6465762f6769746875622f4a425a6f6f2f546f6f6c626f782d4465762f6c6576656c2e737667)](https://shepherd.dev/github/JBZoo/Toolbox-Dev)[![CodeFactor](https://camo.githubusercontent.com/b6025241bf5062e04d17849304b13ae463f53b1da9b207237581e2a9b186c369/68747470733a2f2f7777772e636f6465666163746f722e696f2f7265706f7369746f72792f6769746875622f6a627a6f6f2f746f6f6c626f782d6465762f6261646765)](https://www.codefactor.io/repository/github/jbzoo/toolbox-dev/issues)

[![Stable Version](https://camo.githubusercontent.com/bc072fd6b74492750d4c9730a54f0def313ddb5256278bbd05c086da9627f725/68747470733a2f2f706f7365722e707567782e6f72672f6a627a6f6f2f746f6f6c626f782d6465762f76657273696f6e)](https://packagist.org/packages/jbzoo/toolbox-dev/)[![Total Downloads](https://camo.githubusercontent.com/fd7e0e0e4d0ea53de2a7cb290ccda978747f296aa515700901cc090c192f2f9e/68747470733a2f2f706f7365722e707567782e6f72672f6a627a6f6f2f746f6f6c626f782d6465762f646f776e6c6f616473)](https://packagist.org/packages/jbzoo/toolbox-dev/stats)[![Dependents](https://camo.githubusercontent.com/6fe127816aba4e135f3f57ed6a067cbefb609420f4bb3adca9a9b410044fd666/68747470733a2f2f706f7365722e707567782e6f72672f6a627a6f6f2f746f6f6c626f782d6465762f646570656e64656e7473)](https://packagist.org/packages/jbzoo/toolbox-dev/dependents?order_by=downloads)[![GitHub License](https://camo.githubusercontent.com/c1dcbcd59a5138312cb81033591878688bd723091ff7195f80af6248075c371e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6a627a6f6f2f746f6f6c626f782d646576)](https://github.com/JBZoo/Toolbox-Dev/blob/master/LICENSE)

Developer toolbox library that provides standardized development dependencies and debugging utilities for JBZoo projects on GitHub.

Features
--------

[](#features)

- **Enhanced Debugging**: Customized Symfony VarDumper configuration optimized for CLI development
- **Development Dependencies**: Unified package for all necessary JBZoo development tools
- **Standardized Toolchain**: Consistent development environment across JBZoo ecosystem
- **Quality Assurance**: Integrated code style checking and testing framework

Installation
------------

[](#installation)

```
composer require --dev jbzoo/toolbox-dev
```

Key Components
--------------

[](#key-components)

### VarDumper Enhancement

[](#vardumper-enhancement)

Provides an optimized debugging experience with:

- Output redirected to `php://stderr` to avoid breaking script output
- 16KB string limit for performance
- Classic indentation style for better readability
- UTF-8 encoding support

### Development Tools Integration

[](#development-tools-integration)

Includes standardized versions of:

- **jbzoo/phpunit** - Enhanced PHPUnit testing framework
- **jbzoo/codestyle** - Comprehensive code quality tools
- **jbzoo/markdown** - Markdown processing utilities
- **symfony/var-dumper** - Advanced debugging capabilities
- **php-coveralls/php-coveralls** - Coverage reporting
- **fakerphp/faker** - Test data generation

Usage
-----

[](#usage)

### Development Setup

[](#development-setup)

```
make update    # Install/update all dependencies
```

### Testing and Quality Assurance

[](#testing-and-quality-assurance)

```
make test      # Run PHPUnit tests
make test-all  # Run tests and code style checks
make codestyle # Run all code quality tools
```

### Debugging

[](#debugging)

The VarDumper configuration is automatically loaded, enhancing the `dump()` function:

```
// Enhanced debugging output
dump($variable);  // Outputs to stderr with optimized formatting
```

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Composer for dependency management

Integration
-----------

[](#integration)

This package is designed to be included as a development dependency in JBZoo projects:

```
{
    "require-dev": {
        "jbzoo/toolbox-dev": "^7.0"
    }
}
```

License
-------

[](#license)

MIT

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance58

Moderate activity, may be stable

Popularity36

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity80

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~50 days

Recently: every ~202 days

Total

40

Last Release

278d ago

Major Versions

1.0.2 → 2.0.02020-07-14

2.13.1 → 3.0.02021-11-01

3.3.1 → 4.0.02022-06-05

4.1.1 → 7.0.02023-07-09

PHP version history (5 changes)1.0.0PHP &gt;=7.2

2.1.0PHP ^7.2

4.0.0PHP &gt;=7.4

7.0.0PHP ^8.1

7.2.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/75e6de2785f6d099699f430ff58404af4fc0e83060d2953028c9664a54704a5f?d=identicon)[smetdenis](/maintainers/smetdenis)

---

Top Contributors

[![SmetDenis](https://avatars.githubusercontent.com/u/1118678?v=4)](https://github.com/SmetDenis "SmetDenis (74 commits)")

---

Tags

codestyledebugdev-toolsjbzoolintersphpstandardsdevdebugdeveloperToolboxjbzoodevkitdev-kit

### Embed Badge

![Health badge](/badges/jbzoo-toolbox-dev/health.svg)

```
[![Health](https://phpackages.com/badges/jbzoo-toolbox-dev/health.svg)](https://phpackages.com/packages/jbzoo-toolbox-dev)
```

###  Alternatives

[php-debugbar/php-debugbar

Debug bar in the browser for php application

4.4k29.8M67](/packages/php-debugbar-php-debugbar)[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.3k133.0M757](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.3k2.3M65](/packages/fruitcake-laravel-debugbar)[vpietri/adm-quickdevbar

QuickDevBar is a developer toolbar for magento 2

577360.4k](/packages/vpietri-adm-quickdevbar)[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k16.4k79](/packages/elgg-elgg)[buggregator/trap

A simple and powerful tool for debugging PHP applications.

2702.2M67](/packages/buggregator-trap)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
