-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.21 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
{
"name": "dflydev/stack-basic-authentication",
"description": "HTTP Basic Authentication Stack middleware",
"keywords": ["stack", "stack-2", "authentication"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "info@dflydev.com",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "beau@dflydev.com",
"homepage": "http://beausimensen.com"
}
],
"autoload": {
"psr-0": {
"Dflydev\\Stack": "src"
}
},
"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",
"pimple/pimple": " 1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.21",
"silex/silex": "1.1.*@dev",
"stack/builder": "~1.0@dev",
"stack/callable-http-kernel": "~1.0@dev",
"stack/inline": "~1.0@dev",
"symfony/browser-kit": "~2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}