-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 929 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 929 Bytes
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
{
"name": "larium/framework",
"description": "A PSR-15 framework.",
"keywords": ["larium", "framework"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Kollaros",
"email": "andreas@larium.net"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "~1.0",
"psr/container": "^1.0|^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"laminas/laminas-diactoros": "^3.3",
"nikic/fast-route": "~1.3.0"
},
"minimum-stabildity": "stable",
"autoload": {
"psr-4": {
"Larium\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Larium\\Framework\\": "tests/"
}
}
}