forked from auraphp/Aura.Auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.16 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
{
"name": "aura/auth",
"type": "library",
"description": "Aura Auth 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": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Aura\\Auth\\": "src/",
"Aura\\Auth\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Auth\\_Config\\Common"
}
},
"branch-alias": {
"dev-develop-2": "2.0.x-dev"
}
},
"suggest": {
"ext/ldap": "For LDAP integration.",
"ext/imap": "For IMAP/POP/NNTP integration.",
"ircmaxell/password-compat": "Provides password_verify() for PHP versions earlier than 5.5"
}
}