forked from schnittstabil/psr7-csrf-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
{
"name": "schnittstabil/psr7-csrf-middleware",
"type": "library",
"description": "Stateless PSR-7 CSRF (Cross-Site Request Forgery) protection middleware - simple Slim Framework 3 integration.",
"license": "MIT",
"keywords": [ "csrf", "xsrf", "cross-site request forgery", "session riding", "hmac", "stateless", "psr", "psr7", "psr-7", "middleware", "slim", "expressive", "stratigility", "angularjs" ],
"homepage": "https://github.com/schnittstabil/psr7-csrf-middleware",
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Schnittstabil\\Psr7\\Csrf\\": "src" }
},
"autoload-dev": {
"psr-4": { "Schnittstabil\\Psr7\\Csrf\\": "tests" }
},
"require": {
"php": ">=5.6.0",
"psr/http-message": "^1.0",
"schnittstabil/csrf-tokenservice": "^2.0",
"schnittstabil/psr7-middleware-stack": "^3.0",
"schnittstabil/get": "^2.0"
},
"require-dev": {
"dflydev/fig-cookies": "^1.0",
"schnittstabil/phpunit-starter": "^6.0",
"slim/slim": "^3.3",
"zendframework/zend-diactoros": "^1.3"
},
"suggest": {
"dflydev/fig-cookies": "To protect via Cookies, e.g. MiddlewareBuilder::buildCookieToHeaderMiddleware()."
},
"scripts": {
"clean": "rm -rf build/",
"doc": [
"sugared-rim-sami",
"phpmetrics --report-html build/phpmetrics/index.html src/"
],
"lint": [
"sugared-rim-cs"
],
"test": [
"@travis",
"@lint"
],
"travis": [
"schnittstabil-phpunit-starter"
]
}
}