-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
33 lines (33 loc) · 900 Bytes
/
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
{
"name": "mindplay/middleman",
"type": "library",
"description": "PSR-7 middleware dispatcher. Let's stop trying to make this complicated.",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Rasmus Schultz",
"email": "rasmus@mindplay.dk"
}
],
"require": {
"php": "^7.3 || ^8.0",
"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",
"mindplay/readable": "^1"
},
"require-dev": {
"mindplay/testies": "^1.0",
"phpunit/php-code-coverage": "^9 || ^10 || ^11",
"nyholm/psr7": "^1.4"
},
"scripts": {
"test": "XDEBUG_MODE=coverage php test/test.php"
},
"autoload": {
"psr-4": {
"mindplay\\middleman\\": "src/"
}
}
}