jbzoo / toolbox-dev
Developer toolbox only for JBZoo libs on github+travis
Installs: 1 034 639
Dependents: 21
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- fakerphp/faker: >=1.24.1
- jbzoo/codestyle: ^7.2
- jbzoo/jbdump: >=1.5.6|^7.0
- jbzoo/markdown: ^7.0.2
- jbzoo/phpunit: ^7.2
- php-coveralls/php-coveralls: >=2.8.0
- symfony/var-dumper: >=7.3.4
- dev-master / 7.x-dev
- 7.3.0
- 7.2.0
- 7.1.0
- 7.0.1
- 7.0.0
- 4.1.1
- 4.1.0
- 4.0.1
- 4.0.0
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.13.1
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.2
- 2.9.1
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.0
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.0.2
- 1.0.1
- 1.0.0
- dev-bump
- dev-docs
- dev-bump-versions
This package is auto-updated.
Last update: 2025-09-28 11:19:37 UTC
README
Developer toolbox library that provides standardized development dependencies and debugging utilities for JBZoo projects on GitHub.
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
composer require --dev jbzoo/toolbox-dev
Key Components
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
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
Development Setup
make update # Install/update all dependencies
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
The VarDumper configuration is automatically loaded, enhancing the dump()
function:
// Enhanced debugging output dump($variable); // Outputs to stderr with optimized formatting
Requirements
- PHP 8.2 or higher
- Composer for dependency management
Integration
This package is designed to be included as a development dependency in JBZoo projects:
{ "require-dev": { "jbzoo/toolbox-dev": "^7.0" } }
License
MIT