forked from Maks3w/FR3DLdapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.26 KB
/
composer.json
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
37
38
39
40
{
"name": "fr3d/ldap-bundle",
"type": "symfony-bundle",
"description": "This package provide users and authentication services based on LDAP directories for Symfony2 framework",
"keywords": ["ldap", "authentication"],
"license": "MIT",
"homepage": "https://github.com/Maks3w/FR3DLdapBundle",
"authors": [
{
"name": "Maks3w"
}
],
"support": {
"issues": "https://github.com/Maks3w/FR3DLdapBundle/issues",
"source": "https://github.com/Maks3w/FR3DLdapBundle"
},
"require": {
"php": ">=5.3.2",
"ext-ldap": "*",
"symfony/config": "~2.1",
"symfony/dependency-injection": "~2.1",
"symfony/security": "~2.1",
"symfony/security-bundle": "~2.1",
"zendframework/zend-ldap": "~2"
},
"require-dev": {
"fabpot/php-cs-fixer": "*",
"phpunit/phpunit": "~4",
"symfony/validator": "~2.1"
},
"suggest": {
"symfony/validator": "Allow pre-validate for existing users before register new ones",
"friendsofsymfony/user-bundle": "Integrate authentication and management for DB users, useful for unmanaged LDAP servers"
},
"autoload": {
"psr-4": {
"FR3D\\LdapBundle\\": ""
}
}
}