summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Component/Ldap/composer.json
blob: a61b57db7ce89d72e0c8ff3f4f8b6f90cc4e6e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    "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|>=7.0.8",
        "symfony/polyfill-php56": "~1.0",
        "symfony/options-resolver": "~2.8|~3.0|~4.0",
        "ext-ldap": "*"
    },
    "autoload": {
        "psr-4": { "Symfony\\Component\\Ldap\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev"
}