-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.28 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
{
"name": "dwendrich/expressive-session-middleware",
"description": "Session handling middleware for use with zend expressive 3 based on zend-session.",
"keywords": [
"session handling",
"psr-15",
"zend",
"expressive",
"middleware"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Wendrich",
"email": "daniel.wendrich@gmail.com"
}
],
"autoload": {
"psr-4": {
"SessionMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SessionMiddlewareTest\\": "test/"
}
},
"require": {
"php": "^7.1",
"zendframework/zend-session": "^2.7",
"zendframework/zend-servicemanager": "^3.3",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"http-interop/http-middleware": "^0.4.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0.8",
"squizlabs/php_codesniffer": "^2.8.1"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --color=never --coverage-text"
}
}