1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 13:28:35 +01:00
php-debugbar/composer.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2013-06-13 18:48:23 +08:00
{
"name": "maximebf/debugbar",
"description": "Debug bar in the browser for php application",
2015-12-10 10:50:24 +01:00
"keywords": ["debug", "debugbar"],
2013-06-13 18:48:23 +08:00
"homepage": "https://github.com/maximebf/php-debugbar",
"type": "library",
"license": "MIT",
2015-12-10 10:50:24 +01:00
"authors": [
{
"name": "Maxime Bouroumeau-Fuseau",
"email": "maxime.bouroumeau@gmail.com",
"homepage": "http://maximebf.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
2013-06-13 18:48:23 +08:00
"require": {
2019-10-18 16:33:49 +02:00
"php": "^7.1",
2015-12-03 09:44:48 +00:00
"psr/log": "^1.0",
2019-11-24 10:46:11 +01:00
"symfony/var-dumper": "^2.6|^3|^4|^5"
2013-06-13 18:48:23 +08:00
},
2013-06-13 20:23:22 +08:00
"require-dev": {
2018-05-12 22:42:30 +02:00
"phpunit/phpunit": "^5"
2013-06-13 20:23:22 +08:00
},
2013-06-13 18:48:23 +08:00
"autoload": {
2015-12-03 09:46:01 +00:00
"psr-4": {
"DebugBar\\": "src/DebugBar/"
}
2013-06-13 20:23:22 +08:00
},
"suggest": {
"kriswallsmith/assetic": "The best way to manage assets",
2013-09-20 15:46:52 -04:00
"monolog/monolog": "Log using Monolog",
"predis/predis": "Redis storage"
2014-07-02 09:26:38 +02:00
},
"extra": {
"branch-alias": {
2019-10-18 15:48:34 +02:00
"dev-master": "1.16-dev"
2014-07-02 09:26:38 +02:00
}
2013-06-13 18:48:23 +08:00
}
}