-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "jschreuder/middle",
"description": "Middleware based micro-framework build on components by everyone else",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jelmer Schreuder",
"email": "j.schreuder@mijnpraktijk.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.4",
"psr/http-server-middleware": "^1.0",
"psr/http-message-implementation": "^2.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"psr/log": "^3.0",
"pestphp/pest": "^2.34",
"mockery/mockery": "^1.6",
"twig/twig": "^3.8",
"laminas/laminas-session": "^2.25",
"laminas/laminas-diactoros": "^3.6",
"symfony/routing": "^7.0"
},
"provide": {
"psr/http-server-middleware-implementation": "1.0"
},
"suggest": {
"psr/log-implementation": "Required when using the ErrorHandlerMiddleware",
"twig/twig": "Required when using the TwigRenderer view-engine implementation",
"symfony/routing": "Required when using the SymfonyRouter implementation",
"laminas/laminas-session": "Required when using the LaminasSession implementation"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"jschreuder\\Middle\\": "src"
}
},
"scripts": {
"test": "pest"
}
}