-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.36 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "juneszh/alight-admin",
"description": "Alight Admin is a quick admin panel extension based on the Alight framework.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"lightweight",
"framework",
"restful",
"fast-route",
"medoo",
"simplecache",
"psr-16",
"monolog",
"whoops",
"job-scheduler"
],
"authors": [
{
"name": "June So",
"email": "june@alight.cc"
}
],
"autoload": {
"psr-4": {
"Alight\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alight\\Admin\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"juneszh/alight": "^3.0",
"gregwar/captcha": "^2.1",
"symfony/var-exporter": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"phpstan/phpstan": "^2.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "@php tools/lint.php",
"analyse": "phpstan analyse --no-progress --debug",
"test": "phpunit --do-not-cache-result",
"check": [
"@composer validate --strict --no-check-publish --no-check-lock",
"@lint",
"@analyse",
"@test"
]
}
}