-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.46 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "compwright/php-session",
"description": "Standalone session implementation that does not rely on the PHP session module or the $_SESSION global, ideal for ReactPHP applications",
"type": "library",
"keywords": [
"standalone",
"session",
"middleware",
"reactphp",
"psr7",
"psr15",
"psr16"
],
"authors": [
{
"name": "Jonathon Hill",
"email": "jonathon@compwright.com"
},
{
"name": "Yani",
"email": "yani@xenokore.com"
}
],
"homepage": "https://github.com/compwright/php-session",
"support": {
"issues": "https://github.com/compwright/php-session/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/compwright"
},
{
"type": "BuyMeACoffee.com",
"url": "https://www.buymeacoffee.com/compwright"
}
],
"license": "MIT",
"suggest": {
"ext-redis": "Redis extension for PHP",
"matthiasmullie/scrapbook": "Scrapbook Cache provides excellent session storage options"
},
"require": {
"php": "^8.0",
"dflydev/fig-cookies": "^3.0",
"psr/simple-cache": "^1 || ^2 || ^3",
"psr/http-message": "^1 || ^2",
"psr/http-server-handler": "^1",
"psr/http-server-middleware": "^1"
},
"require-dev": {
"behat/behat": "^3.13",
"bramus/monolog-colored-line-formatter": "^3.0",
"friendsofphp/php-cs-fixer": "^3.11",
"kodus/file-cache": "^2",
"league/flysystem": "^3.12",
"matthiasmullie/scrapbook": "^1.4",
"middlewares/access-log": "^2.0",
"monolog/monolog": "^3.2",
"php-di/php-di": "^7.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"psr/log": "^2 || ^3",
"slim/psr7": "^1.6",
"slim/slim": "^4.11"
},
"autoload": {
"psr-4": {
"Compwright\\PhpSession\\": "src/"
},
"files": [
"src/Frameworks/Slim/registerSessionMiddleware.php"
]
},
"autoload-dev": {
"psr-4": {
"Compwright\\PhpSession\\BehaviorTest\\": [
"tests/behavior"
],
"App\\": [
"tests/integration/server/App"
]
},
"files": [
"tests/integration/server/App/app.php"
]
}
}