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/Ldap/composer.json
Fabien Potencier dbbcb9cd1f Merge branch '4.4' into 5.1
* 4.4:
  Improve composer.json descriptions
2021-01-10 17:29:19 +01:00

39 lines
1011 B
JSON

{
"name": "symfony/ldap",
"type": "library",
"description": "Provides a LDAP client for PHP on top of PHP's ldap extension",
"keywords": ["ldap", "active directory"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Charles Sarrazin",
"email": "charles@sarraz.in"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=7.2.5",
"symfony/options-resolver": "^4.4|^5.0",
"symfony/polyfill-php80": "^1.15",
"ext-ldap": "*"
},
"require-dev": {
"symfony/security-core": "^5.0"
},
"conflict": {
"symfony/options-resolver": "<4.4",
"symfony/security-core": "<5"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Ldap\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}