forked from ldaptools/ldaptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 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
41
42
43
44
45
{
"name": "ldaptools/ldaptools",
"type": "library",
"description": "LdapTools is a feature-rich LDAP library for PHP 5.6+.",
"keywords": [
"ldap",
"Active Directory",
"Microsoft Exchange",
"OpenLDAP"
],
"homepage": "http://www.phpldaptools.com",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]",
"homepage": "http://www.chadsikorra.com"
}
],
"require": {
"php": ">=5.6",
"ext-ldap": "*",
"symfony/yaml": ">=2.0",
"symfony/event-dispatcher": ">=2.0",
"ramsey/uuid": ">=3.0"
},
"suggest": {
"tedivm/stash": "Provides the cache_type 'stash' to help increase performance.",
"doctrine/cache": "Provides the cache_type 'doctrine' to help increase performance.",
"ext-mbstring": "Better UTF-8 handling.",
"ext-intl": "Better UTF-8 handling."
},
"require-dev": {
"phpspec/phpspec": "~3.0",
"friendsofphp/php-cs-fixer": "~1.0",
"tedivm/stash": ">=0.14.1",
"doctrine/cache": "~1.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {"LdapTools\\": "src/LdapTools"}
}
}