-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
39 lines (39 loc) · 904 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
{
"name": "juneszh/alight",
"description": "Alight is a light-weight PHP framework. Easily and quickly build high performance RESTful web applications.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"lightweight",
"framework",
"restful",
"fast-route",
"medoo",
"simplecache",
"psr-16",
"monolog",
"whoops",
"job-scheduler"
],
"authors": [
{
"name": "June So",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Alight\\": "src/"
}
},
"require": {
"php": ">=7.4",
"nikic/fast-route": "^1.3",
"catfan/medoo": "^2.1",
"symfony/cache": ">=5.4",
"psr/simple-cache": ">=1.0",
"monolog/monolog": ">=2.9",
"filp/whoops": "^2.15"
}
}