forked from WyriHaximus/reactphp-http-middleware-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.25 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "mikespub/react-http-middleware-session",
"description": "react/http middleware that takes care of session handling",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
},
{
"name": "mikespub",
"homepage": "https://github.com/mikespub-org/reactphp-http-middleware-session"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-session": "^7.4 || ^8.0",
"hansott/psr7-cookies": "^3.0 || ^4.0",
"psr/http-message": "^1.1 || ^2.0",
"react/cache": "^1.2",
"react/http": "^1.11",
"react/promise": "^3.3",
"thecodingmachine/safe": "^3.4"
},
"require-dev": {
"phpspec/prophecy": "^1.26",
"wyrihaximus/async-test-utilities": "^13.1"
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\Http\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\Http\\Middleware\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}