32 lines
896 B
JSON
Raw Normal View History

2023-05-10 13:39:12 +08:00
{
"name": "symfony/options-resolver",
"type": "library",
2023-11-02 14:13:04 +08:00
"description": "Provides an improved replacement for the array_replace PHP function",
2023-05-10 13:39:12 +08:00
"keywords": ["options", "config", "configuration"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=7.2.5",
2023-11-02 14:13:04 +08:00
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-php73": "~1.0",
"symfony/polyfill-php80": "^1.16"
2023-05-10 13:39:12 +08:00
},
"autoload": {
"psr-4": { "Symfony\\Component\\OptionsResolver\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
2023-11-02 14:13:04 +08:00
"minimum-stability": "dev"
2023-05-10 13:39:12 +08:00
}