-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
{
"name" : "miklcct/thin_php_app",
"description" : "A minimal PHP application framework",
"type" : "library",
"keywords" : ["framework", "app", "psr-15"],
"license" : ["BSD-4-Clause"],
"authors" : [
{
"name" : "Michael Tsang",
"email" : "[email protected]",
"homepage" : "https://miklcct.com/",
"role" : "developer"
}
],
"autoload" : {
"psr-4" : {
"Miklcct\\ThinPhpApp\\" : "src/"
},
"files" : [
"src/Escaper/functions.php",
"src/Response/functions.php",
"src/Utility/functions.php"
]
},
"autoload-dev": {
"psr-4" : {
"Miklcct\\ThinPhpApp\\Test\\" : "test/"
}
},
"require": {
"php" : "^7.3|^8.0",
"ralouphie/getallheaders": "^2.0|^3.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"shrikeh/teapot": "^2.3",
"http-interop/response-sender": "^1.0",
"ext-json": "*",
"psr/http-factory": "^1.0",
"symfony/polyfill-php73": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-http/psr7-integration-tests": "^1.0.0",
"phpstan/phpstan": "^0.12.3",
"phpstan/phpstan-phpunit": "^0.12.1",
"phpstan/phpstan-strict-rules": "^0.12.0",
"laminas/laminas-diactoros": "^2.8",
"guzzlehttp/guzzle": "^7.0"
}
}