-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.2 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
{
"name": "jschreuder/middle",
"description": "Middleware based micro-framework build on components by everyone else",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jelmer Schreuder",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/http-message": "^1.0",
"psr/log": "^2.0 || ^3.0",
"psr/http-server-middleware": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^7.2",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"twig/twig": "^3.0",
"laminas/laminas-session": "^2.12",
"symfony/routing": "^6.0"
},
"suggest": {
"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": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"jschreuder\\Middle\\": "src"
}
}
}