1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 21:38:14 +01:00
php-debugbar/composer.json

34 lines
861 B
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",
"keywords": ["debug"],
"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"
}],
"require": {
"php": ">=5.3.0",
2014-04-23 10:13:42 +02:00
"psr/log": "~1.0"
2013-06-13 18:48:23 +08:00
},
2013-06-13 20:23:22 +08:00
"require-dev": {
"php": ">=5.3.0"
},
2013-06-13 18:48:23 +08:00
"autoload": {
"psr-0": {"DebugBar": "src/"}
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": {
"dev-master": "1.x-dev"
}
2013-06-13 18:48:23 +08:00
}
}