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

44 lines
1.1 KiB
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": ">=7.2.5",
2019-05-28 18:17:01 +01:00
"symfony/options-resolver": "^4.4|^5.0",
2020-03-03 19:07:47 +00:00
"symfony/polyfill-php80": "^1.15",
2015-09-25 10:29:08 +01:00
"ext-ldap": "*"
},
"require-dev": {
2019-08-05 09:29:27 +01:00
"symfony/security-core": "^5.0"
},
2019-05-29 09:53:30 +01:00
"conflict": {
2019-08-05 09:29:27 +01:00
"symfony/options-resolver": "<4.4",
"symfony/security-core": "<5"
2019-05-29 09:53:30 +01:00
},
2015-09-25 10:29:08 +01:00
"autoload": {
"psr-4": { "Symfony\\Component\\Ldap\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
2015-09-25 10:29:08 +01:00
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2020-05-16 13:09:30 +01:00
"dev-master": "5.2-dev"
2015-09-25 10:29:08 +01:00
}
}
}