mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-16 21:08:34 +01:00
1386fe5c4f
* PHP 8.1 warning fixes Added #[\ReturnTypeWillChange] or appropriate return values Typed parameters where appropriate * Fixing unit tests to run without warnings * Update to more reasonable versions of PHP and PHPUnit (was missing PHPUnit 8) * mb_check_encoding param 1 can not be null * Fix SeekingData class for 8.1 * Update tests to not polute the temp directory * Revert PHP contrant * Tabs to spaces * Use Symfony\Component\VarDumper\Cloner\Data\SeekingData instead of local backported version Avoids Fatal error: Declaration of DebugBar\DataFormatter\VarDumper\SeekingData::seek($key) must be compatible with Symfony\Component\VarDumper\Cloner\Data::seek(string|int $key): ?static Co-authored-by: Barry vd. Heuvel <barryvdh@gmail.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "maximebf/debugbar",
|
|
"description": "Debug bar in the browser for php application",
|
|
"keywords": ["debug", "debugbar"],
|
|
"homepage": "https://github.com/maximebf/php-debugbar",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Maxime Bouroumeau-Fuseau",
|
|
"email": "maxime.bouroumeau@gmail.com",
|
|
"homepage": "http://maximebf.com"
|
|
},
|
|
{
|
|
"name": "Barry vd. Heuvel",
|
|
"email": "barryvdh@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1|^8",
|
|
"psr/log": "^1|^2|^3",
|
|
"symfony/var-dumper": "^4|^5|^6"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": ">=7.5.20 <10.0",
|
|
"twig/twig": "^1.38|^2.7|^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DebugBar\\": "src/DebugBar/"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"kriswallsmith/assetic": "The best way to manage assets",
|
|
"monolog/monolog": "Log using Monolog",
|
|
"predis/predis": "Redis storage"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.18-dev"
|
|
}
|
|
}
|
|
}
|