-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
52 lines (51 loc) · 1.28 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
{
"name": "aura/auth",
"type": "library",
"description": "Provides a unified interface to authenticate a user with local or remote authentication systems.",
"keywords": [
"auth",
"authenticate",
"authentication"
],
"homepage": "https://github.com/auraphp/Aura.Auth",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Auth Contributors",
"homepage": "https://github.com/auraphp/Aura.Auth/contributors"
}
],
"require": {
"php": ">=7.2.0"
},
"autoload": {
"psr-4": {
"Aura\\Auth\\": "src/",
"Aura\\Auth\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Auth\\_Config\\Common"
}
}
},
"minimum-stability": "stable",
"require-dev": {
"acclimate/container": "^2",
"phpunit/phpunit": "~8",
"vimeo/psalm": "~v4.15"
},
"autoload-dev": {
"psr-4": {
"Aura\\Auth\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
},
"suggest": {
"ext/ldap": "For LDAP integration.",
"ext/imap": "For IMAP/POP/NNTP integration."
}
}