streams/vendor/symfony/options-resolver/composer.json

32 lines
893 B
JSON
Raw Normal View History

2019-04-16 04:51:27 +00:00
{
"name": "symfony/options-resolver",
"type": "library",
"description": "Provides an improved replacement for the array_replace PHP function",
2019-04-16 04:51:27 +00: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": {
2020-07-07 05:21:11 +00:00
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1",
"symfony/polyfill-php73": "~1.0",
2020-07-07 05:21:11 +00:00
"symfony/polyfill-php80": "^1.15"
2019-04-16 04:51:27 +00:00
},
"autoload": {
"psr-4": { "Symfony\\Component\\OptionsResolver\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
2020-11-10 01:41:03 +00:00
"minimum-stability": "dev"
2019-04-16 04:51:27 +00:00
}