-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "nimbly/limber",
"description": "A super minimal HTTP framework that doesn't get in your way.",
"keywords": ["php", "http", "rest", "api", "framework", "middleware"],
"type": "library",
"require": {
"php": "^8.2",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0||^2.0",
"nimbly/resolve": "^2.0"
},
"license": "MIT",
"authors": [
{
"name": "Brent Scheffler",
"email": "brent@brentscheffler.com"
}
],
"autoload": {
"psr-4": {
"Nimbly\\Limber\\": "src/"
}
},
"require-dev": {
"ext-xdebug": "*",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0",
"symfony/var-dumper": "^4.2",
"nimbly/capsule": "^2.0",
"nimbly/carton": "^2.0",
"fakerphp/faker": "^1.20"
},
"autoload-dev": {
"psr-4": {
"Nimbly\\Limber\\Tests\\": "tests/",
"Nimbly\\Limber\\Examples\\": "examples/"
}
}
}