-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.01 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
{
"name": "phel-lang/web-skeleton",
"description": "A minimalistic skeleton to build your web-app using Phel Lang.",
"keywords": [
"phel",
"lisp",
"functional",
"language"
],
"homepage": "https://phel-lang.org/",
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.2",
"phel-lang/phel-lang": "^0.16",
"phel-lang/router": "^0.6"
},
"require-dev": {
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"PhelGenerated\\": "src/PhelGenerated"
}
},
"scripts": {
"run:dev": [
"Composer\\Config::disableProcessTimeout",
"rm -rf out && php -S localhost:8080 -t public"
],
"run:prod": [
"Composer\\Config::disableProcessTimeout",
"composer build && php -S localhost:8080 -t public"
],
"build": "vendor/bin/phel build --no-cache",
"format": "vendor/bin/phel format",
"test": "vendor/bin/phel test",
"repl": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phel repl"
]
}
}