-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.31 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
51
52
53
{
"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/",
"authors": [
{
"name": "Radek Ziemniewicz",
"email": "radek@quillstack.org"
}
],
"require": {
"php": "^8",
"ext-json": "*",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"quillstack/di": "^0.0.8",
"quillstack/response": "^0.0.2",
"quillstack/server-request": "^0.0.4",
"quillstack/router": "^0.0.3",
"quillstack/middleware": "^0.0.3",
"quillstack/dotenv": "^0.0.6",
"quillstack/config": "^0.0.2"
},
"autoload": {
"psr-4": {
"Quillstack\\Framework\\": "src/",
"Quillstack\\Framework\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"require-dev": {
"quillstack/unit-tests": "^0.2.15"
}
}