This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/VarDumper/composer.json

38 lines
906 B
JSON
Raw Normal View History

{
"name": "symfony/var-dumper",
"type": "library",
"description": "Symfony mechanism for exploring and dumping PHP variables",
"keywords": ["dump", "debug"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
2015-01-13 12:58:22 +00:00
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
2014-11-19 21:23:28 +00:00
"php": ">=5.5.9"
},
"require-dev": {
"twig/twig": "~1.20|~2.0"
},
"suggest": {
"ext-symfony_debug": ""
},
"autoload": {
2014-08-27 16:29:38 +01:00
"files": [ "Resources/functions/dump.php" ],
2014-11-12 17:53:10 +00:00
"psr-4": { "Symfony\\Component\\VarDumper\\": "" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2014-11-11 08:37:22 +00:00
"dev-master": "3.0-dev"
}
}
}