-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 977 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "alexpts/next2",
"description": "Micro application for PSR-7",
"license": "MIT",
"type": "library",
"keywords": [
"middleware",
"router",
"routing",
"psr-7",
"micro",
"app"
],
"config": {
"optimize-autoloader": true
},
"authors": [
{
"name": "Alexpts",
"email": "alexpts3@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "~8.1",
"psr/http-message": "^1.0",
"alexpts/mutable-psr7": "^0.2.1",
"psr/http-server-middleware": "^1.0"
},
"autoload": {
"psr-4": {
"PTS\\Next2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PTS\\Next2\\Test\\": "test"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"scripts": {
"test": "vendor/bin/phpunit --config=test/phpunit.xml"
}
}