From a667050a507f835f73edc289f642ec4028a3d501 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Apr 2019 08:43:33 +0200 Subject: v2.8.51 --- src/Symfony/Component/Ldap/composer.json | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/Symfony/Component/Ldap/composer.json (limited to 'src/Symfony/Component/Ldap') 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" + } + } +} -- cgit