-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 990 Bytes
/
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
{
"name": "anthonyedmonds/laravel-ldap-emulator",
"description": "Automatically boot an LDAP emulator while working in a local environment.",
"keywords": ["laravel", "ldap", "active directory", "emulator"],
"type": "library",
"homepage": "https://github.com/AnthonyEdmonds/laravel-ldap-emulator",
"license": "MIT",
"authors": [
{
"name": "Anthony Edmonds",
"email": "[email protected]",
"homepage": "https://anthonyedmonds.me",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"directorytree/ldaprecord-laravel": "^3",
"spatie/laravel-permission": "^6"
},
"require-dev": {
"illuminate/support": "^11"
},
"autoload": {
"psr-4": {
"AnthonyEdmonds\\LaravelLdapEmulator\\": "src/app"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}