forked from dflydev/dflydev-stack-basic-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
42 lines (41 loc) · 1.11 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
{
"name": "rossriley/stack-basic-authentication",
"description": "HTTP Basic Authentication Stack middleware",
"keywords": ["stack", "stack-2", "authentication"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "[email protected]",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "[email protected]",
"homepage": "http://beausimensen.com"
},
{
"name": "Ross Riley",
"email": "[email protected]",
"homepage": "http://rossriley.co.uk"
}
],
"autoload": {
"psr-4": {
"Stack\\Auth\\": "src",
"Stack\\Auth\\Tests\\": "tests"
}
},
"require": {
"php": ">=5.4.0",
"dflydev/stack-authentication": "1.0.*@dev",
"dflydev/stack-firewall": "1.0.*@dev",
"symfony/http-foundation": "~2.1",
"symfony/http-kernel": "~2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}