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/PropertyAccess/composer.json

41 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "symfony/property-access",
"type": "library",
"description": "Symfony PropertyAccess Component",
"keywords": ["property", "index", "access", "object", "array", "extraction", "injection", "reflection", "property path"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
2017-05-17 19:41:56 +01:00
"php": "^7.1.3",
"symfony/inflector": "~3.4|~4.0"
},
2015-12-04 22:03:03 +00:00
"require-dev": {
"symfony/cache": "~3.4|~4.0"
2015-12-04 22:03:03 +00:00
},
"suggest": {
"psr/cache-implementation": "To cache access methods."
},
"autoload": {
"psr-4": { "Symfony\\Component\\PropertyAccess\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2018-05-07 15:51:25 +01:00
"dev-master": "4.2-dev"
}
}
}