forked from ldaptools/ldaptools-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "ldaptools/ldaptools-bundle",
"type": "symfony-bundle",
"description": "Provides easy LDAP integration for Symfony via LdapTools.",
"keywords": [
"LDAP",
"Active Directory",
"OpenLDAP",
"Microsoft Exchange"
],
"homepage": "http://github.com/ldaptools/LdapToolsBundle",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]",
"homepage": "http://www.chadsikorra.com"
}
],
"require": {
"ldaptools/ldaptools": ">=0.25",
"symfony/framework-bundle": "~2.7|~3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~1.0",
"phpspec/prophecy": "~1.6",
"phpspec/phpspec": "~3.0",
"akeneo/phpspec-skip-example-extension": "~2.0",
"doctrine/orm": "~2.4",
"symfony/form": "~2.7|~3.0",
"symfony/security-bundle": "~2.7|~3.0"
},
"suggest": {
"doctrine/doctrine-bundle": "For LDAP object type integration in Doctrine."
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"LdapTools\\Bundle\\LdapToolsBundle\\": ""}
}
}