-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.95 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "quillstack/framework",
"description": "The Quillstack Framework, a light and simple micro-framework to build the API.",
"type": "library",
"license": "MIT",
"keywords": [
"framework",
"php",
"php8",
"micro-framework",
"psr",
"psr-7",
"psr-11",
"psr-15",
"php8",
"api",
"micro-service"
],
"homepage": "https://quillstack.org/packages/framework",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"require": {
"ext-json": "*",
"php": "^8.1",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"quillstack/auth": "^0.8",
"quillstack/cache": "^0.6",
"quillstack/cli": "^0.6",
"quillstack/clock": "^0.6",
"quillstack/config": "^0.6",
"quillstack/di": "^0.6",
"quillstack/dotenv": "^0.7",
"quillstack/events": "^0.6",
"quillstack/middleware": "^0.9",
"quillstack/orm": "^0.6",
"quillstack/output": "^0.6",
"quillstack/queue": "^0.8",
"quillstack/response": "^0.8",
"quillstack/router": "^0.8",
"quillstack/serializer": "^0.6",
"quillstack/server-request": "^0.8"
},
"autoload": {
"psr-4": {
"Quillstack\\Framework\\": "src/",
"Quillstack\\Framework\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.13.x-dev"
}
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"quillstack/benchmark": "^2.0",
"quillstack/unit-tests": "^0.9"
},
"scripts": {
"test": "unit-tests",
"test:coverage": "phpdbg -qrr vendor/bin/unit-tests",
"stan": "phpstan analyse",
"benchmark": "benchmark"
}
}