Files
swiftadmin/vendor/symfony/var-exporter/composer.json

32 lines
850 B
JSON
Raw Normal View History

2022-08-19 19:48:37 +08:00
{
"name": "symfony/var-exporter",
"type": "library",
"description": "Allows exporting any serializable PHP data structure to plain PHP code",
"keywords": ["export", "serialize", "instantiate", "hydrate", "construct", "clone"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
2022-11-28 19:11:12 +08:00
"php": ">=8.0.2"
2022-08-19 19:48:37 +08:00
},
"require-dev": {
2022-11-28 19:11:12 +08:00
"symfony/var-dumper": "^5.4|^6.0"
2022-08-19 19:48:37 +08:00
},
"autoload": {
"psr-4": { "Symfony\\Component\\VarExporter\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}