Skip to content

Commit e61d09d

Browse files
committed
Initial drop.
0 parents  commit e61d09d

File tree

5 files changed

+1293
-0
lines changed

5 files changed

+1293
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "dflydev/stack-authentication",
3+
"description": "Middlewares to support Stack-2 Authentication conventions",
4+
"keywords": ["stack", "stack-2"],
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Dragonfly Development Inc.",
9+
"email": "[email protected]",
10+
"homepage": "http://dflydev.com"
11+
},
12+
{
13+
"name": "Beau Simensen",
14+
"email": "[email protected]",
15+
"homepage": "http://beausimensen.com"
16+
}
17+
],
18+
"autoload": {
19+
"psr-0": {
20+
"Dflydev\\Stack": "src"
21+
}
22+
},
23+
"require": {
24+
"php": ">=5.4.0",
25+
"symfony/http-foundation": "~2.1",
26+
"symfony/http-kernel": "~2.1"
27+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "3.7.21",
30+
"silex/silex": "1.1.*@dev",
31+
"stack/builder": "~1.0@dev",
32+
"stack/callable-http-kernel": "~1.0@dev",
33+
"stack/inline": "~1.0@dev",
34+
"symfony/browser-kit": "~2.1"
35+
},
36+
"extra": {
37+
"branch-alias": {
38+
"dev-master": "1.0-dev"
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)