diff options
author | Remi Collet <remi@remirepo.net> | 2019-04-18 08:43:33 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-04-18 08:43:33 +0200 |
commit | a667050a507f835f73edc289f642ec4028a3d501 (patch) | |
tree | d97d75efecc03d6fdf8e0bb154dac6bc788a1c58 /src/Symfony/Component/Ldap | |
parent | 54e35f37c9bd3cfa11f7da4157a157593cdf4dba (diff) |
v2.8.51
Diffstat (limited to 'src/Symfony/Component/Ldap')
-rw-r--r-- | src/Symfony/Component/Ldap/composer.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Symfony/Component/Ldap/composer.json b/src/Symfony/Component/Ldap/composer.json new file mode 100644 index 0000000..bdbba74 --- /dev/null +++ b/src/Symfony/Component/Ldap/composer.json @@ -0,0 +1,35 @@ +{ + "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.3.9", + "symfony/polyfill-php56": "~1.0", + "ext-ldap": "*" + }, + "autoload": { + "psr-4": { "Symfony\\Component\\Ldap\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + } +} |