-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1017 Bytes
/
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
{
"name": "ellipse/session-handler",
"type": "library",
"description": "Psr-15 middleware allowing to set a custom session handler",
"keywords": [
"psr-15",
"middleware",
"session",
"handler",
"session-handler"
],
"license": "MIT",
"homepage": "https://github.com/ellipsephp/session-handler",
"support": {
"issues": "https://github.com/ellipsephp/session-handler/issues",
"source": "https://github.com/ellipsephp/session-handler"
},
"authors": [
{
"name": "pmall",
"email": "pierre.mallinjoud@gmail.com"
}
],
"require": {
"php": ">=7.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"kahlan/kahlan": "^4.0",
"eloquent/phony-kahlan": "^1.0"
},
"autoload": {
"psr-4": {
"Ellipse\\Session\\": "src"
}
}
}