-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.24 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
{
"name": "ujjwal/psr7-http-session",
"description": "Alternative to PHP's native session handler for PSR-7",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"keywords": [
"psr-7",
"psr7",
"session",
"http",
"http-session"
],
"authors": [
{
"name": "Ujjwal Ojha",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"paragonie/cookie": "^3.2.0",
"symfony/options-resolver": "^3.3",
"zendframework/zend-math": "^3.0",
"psr/http-message": "^1.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"http-interop/http-middleware": "^0.4.1",
"zendframework/zend-stratigility": "^2.0",
"phpunit/phpunit": "^6.2",
"mockery/mockery": "^0.9.9",
"mikey179/vfsStream": "^1.6"
},
"suggest": {
"http-interop/http-middleware": "To use interop based single pass session middleware for automatically starting session and writing to cookie",
"zendframework/zend-stratigility": "To use double pass session middleware for automatically starting session and writing to cookie"
},
"autoload": {
"psr-4": {
"Ojhaujjwal\\Session\\": "src/",
"Ojhaujjwal\\SessionTest\\": "tests/"
}
}
}