-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
64 lines (64 loc) · 1.55 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
63
64
{
"name": "directorytree/ldaprecord",
"type": "library",
"description": "A fully-featured LDAP ORM.",
"homepage": "https://www.ldaprecord.com",
"keywords": [
"active directory",
"directory",
"ad",
"ldap",
"windows",
"adldap",
"adldap2",
"ldaprecord",
"orm"
],
"license": "MIT",
"support": {
"docs": "https://ldaprecord.com",
"issues": "https://github.com/DirectoryTree/LdapRecord/issues",
"source": "https://github.com/DirectoryTree/LdapRecord",
"email": "[email protected]"
},
"authors": [
{
"name": "Steve Bauman",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-ldap": "*",
"ext-json": "*",
"ext-iconv": "*",
"psr/log": "*",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"nesbot/carbon": "*",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0",
"spatie/ray": "^1.24",
"laravel/pint": "^1.6",
"fakerphp/faker": "^1.21"
},
"archive": {
"exclude": [
"/tests"
]
},
"autoload": {
"psr-4": {
"LdapRecord\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LdapRecord\\Tests\\": "tests/"
}
}
}