-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.49 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
{
"name": "directorytree/ldaprecord-browser",
"type": "library",
"description": "Browse your LDAP server in your Laravel application.",
"homepage": "https://www.ldaprecord.com",
"keywords": [
"adldap",
"ldap",
"ldaprecord",
"ldap-browser",
"ad",
"activedirectory",
"active-directory"
],
"license": "MIT",
"support": {
"docs": "https://ldaprecord.com",
"issues": "https://github.com/DirectoryTree/LdapRecord-Browser/issues",
"source": "https://github.com/DirectoryTree/LdapRecord-Browser",
"email": "[email protected]"
},
"authors": [
{
"name": "Steve Bauman",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"livewire/livewire": "^2.0",
"directorytree/ldaprecord-laravel": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.0",
"spatie/ray": "^1.25"
},
"archive": {
"exclude": [
"/screenshots",
"/tests"
]
},
"autoload": {
"psr-4": {
"LdapRecord\\Browser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LdapRecord\\Browser\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"LdapRecord\\Browser\\BrowserServiceProvider"
]
}
}
}