-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
58 lines (58 loc) · 1.11 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
{
"name": "org_heigl/authldap",
"type": "library",
"description": "Enables wordpress-authentication via LDAP",
"keywords": [
"ldap",
"authenticate",
"auth",
"wordpress"
],
"homepage": "https://github.com/heiglandreas/authLdap",
"license": "MIT",
"authors": [
{
"name": "Andreas Heigl",
"email": "[email protected]",
"homepage": "https://andreas.heigl.org",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-ldap": "*",
"ext-json": "*"
},
"require-dev": {
"automattic/wordbless": "dev-patch-1",
"guzzlehttp/guzzle": "^7.8",
"webmozart/assert": "^1.11"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/heiglandreas/wordbless"
}
],
"autoload": {
"classmap": [
"authLdap.php"
],
"psr-4": {
"Org_Heigl\\AuthLdap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Org_Heigl\\AuthLdapTest\\": "tests/"
}
},
"scripts": {
"post-update-cmd": "php -r \"copy('vendor/automattic/wordbless/src/dbless-wpdb.php', 'wordpress/wp-content/db.php');\""
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}