-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.59 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
{
"name": "chemaclass/phel-doom",
"description": "DOOM-lite showcase written in Phel Lang. Terminal raycaster, pure functional state, ANSI render.",
"keywords": [
"phel",
"lisp",
"functional",
"doom",
"raycaster",
"game"
],
"authors": [
{
"name": "Jose M. Valera Reales",
"email": "phel@chemaclass.com",
"homepage": "https://chemaclass.com"
}
],
"homepage": "https://github.com/Chemaclass/phel-doom",
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"phel-lang/phel-lang": "^0.46",
"symfony/console": "^7.4"
},
"require-dev": {
"symfony/var-dumper": "^7.4"
},
"scripts": {
"dev": "vendor/bin/phel run phel-doom.main",
"play": "vendor/bin/phel run phel-doom.main play",
"build": "vendor/bin/phel build --no-cache",
"format": "vendor/bin/phel format",
"format-check": "vendor/bin/phel format --dry-run",
"lint": "vendor/bin/phel lint src tests",
"test": "PHEL_DOOM_SILENT=1 vendor/bin/phel test",
"doctor": "vendor/bin/phel doctor",
"ci": [
"@format-check",
"@lint",
"@test",
"@build"
],
"install-hooks": "git config core.hooksPath .githooks",
"agents-install": "vendor/bin/phel agent-install claude -n --quiet --force",
"post-install-cmd": [
"@install-hooks",
"@agents-install"
],
"post-update-cmd": [
"@install-hooks",
"@agents-install"
],
"repl": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phel repl"
]
}
}