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

37 lines
951 B
JSON
Raw Normal View History

2015-09-25 10:29:08 +01:00
{
"name": "symfony/ldap",
"type": "library",
"description": "An abstraction in front of PHP's LDAP functions, compatible with PHP 5.3.9 onwards.",
"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": ">=5.5.9",
2015-10-14 15:40:43 +01:00
"symfony/polyfill-php56": "~1.0",
"symfony/options-resolver": "~2.8|~3.0",
2015-09-25 10:29:08 +01:00
"ext-ldap": "*"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Ldap\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
2015-09-25 10:29:08 +01:00
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2016-05-13 19:13:23 +01:00
"dev-master": "3.2-dev"
2015-09-25 10:29:08 +01:00
}
}
}