forked from php-middleware/http-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 674 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 674 Bytes
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
{
"name": "php-middleware/http-authentication",
"description": "HTTP Authentication middleware with PSR-7",
"type": "library",
"keywords": [
"middleware",
"psr",
"psr-7",
"authentication"
],
"require": {
"php": ">=5.5",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.6",
"zendframework/zend-diactoros": "^1.1.3"
},
"autoload": {
"psr-4": {
"PhpMiddleware\\HttpAuthentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpMiddlewareTest\\HttpAuthentication\\": "test/"
}
}
}