-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.17 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "appserver-io-psr/auth",
"description": "PSR, for a PHP based authentication module",
"homepage": "https://github.com/appserver-io-psr/auth",
"license": "OSL-3.0",
"keywords": [
"php",
"interface",
"authentication"
],
"authors": [
{
"name": "Tim Wagner",
"email": "tw@appserver.io",
"homepage": "http://www.appserver.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"appserver-io/collections": "~1.0",
"appserver-io-psr/servlet": "~4.0",
"appserver-io-psr/security": "~1.0",
"appserver-io-psr/application": "~1.0"
},
"require-dev": {
"appserver-io/http": "~2.0",
"appserver-io/build": "~1.0",
"appserver-io/storage": "~2.0"
},
"autoload": {
"psr-4": {
"AppserverIo\\Psr\\Auth\\": [
"src/",
"tests/"
]
}
},
"support": {
"email": "tw@appserver.io",
"issues": "https://github.com/appserver-io-psr/auth/issues",
"source": "https://github.com/appserver-io-psr/auth"
}
}