summaryrefslogtreecommitdiffstats
path: root/src/Symfony/Component/Ldap/composer.json
blob: 2bc4c2f25c9cc36fd7bb2065bb4e8049e8410213 (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
32
33
34
35
36
{
    "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.1.3",
        "symfony/options-resolver": "^4.2|^5.0",
        "ext-ldap": "*"
    },
    "require-dev": {
        "symfony/security-core": "^4.4"
    },
    "conflict": {
        "symfony/options-resolver": "<4.2"
    },
    "autoload": {
        "psr-4": { "Symfony\\Component\\Ldap\\": "" },
        "exclude-from-classmap": [
            "/Tests/"
        ]
    },
    "minimum-stability": "dev"
}