forked from Maks3w/FR3DLdapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.47 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
41
42
43
44
{
"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.5",
"psr/log": "~1.0",
"symfony/config": "2.3 - 3",
"symfony/dependency-injection": "2.3 - 3",
"symfony/polyfill-php56": "^1.1",
"symfony/security": "2.3 - 3",
"symfony/security-bundle": "2.3 - 3",
"zendframework/zend-ldap": "2.5 - 3"
},
"require-dev": {
"fabpot/php-cs-fixer": "1.11.*",
"fr3d/psr3-message-assertions": "0.1.*",
"friendsofsymfony/user-bundle": "~1.3",
"maks3w/phpunit-methods-trait": "^4.6",
"phpunit/phpunit": "^4.6",
"symfony/validator": "2.3 - 3"
},
"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 unmanned LDAP servers"
},
"autoload": {
"psr-4": {
"FR3D\\LdapBundle\\": ""
}
}
}