forked from DirectoryTree/LdapRecord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "directorytree/ldaprecord",
"type": "library",
"description": "ActiveRecord for LDAP.",
"homepage": "https://www.ldaprecord.com",
"keywords": [
"active directory",
"directory",
"ad",
"ldap",
"windows",
"adldap",
"adldap2",
"ldaprecord"
],
"license": "MIT",
"support": {
"docs": "https://ldaprecord.com/docs",
"issues": "https://github.com/DirectoryTree/LdapRecord/issues",
"source": "https://github.com/DirectoryTree/LdapRecord",
"email": "steven_bauman@outlook.com"
},
"authors": [
{
"name": "Steve Bauman",
"email": "steven_bauman@outlook.com",
"role": "Developer"
},
{
"name": "Brad J Trammell",
"email": "bradjtrammell@outlook.com",
"role": "Forked Coding"
}
],
"require": {
"php": ">=7.1",
"ext-ldap": "*",
"ext-json": "*",
"psr/log": "~1.0",
"psr/simple-cache": "~1.0",
"nesbot/carbon": "~1.0|~2.0",
"tightenco/collect": "^5.0|6.0.*",
"illuminate/contracts": "^5.0|6.0.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "~1.0"
},
"archive": {
"exclude": ["/tests"]
},
"autoload": {
"psr-4": {
"LdapRecord\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LdapRecord\\Tests\\": "tests/"
}
}
}