generated from phel-lang/phel-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 861 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
{
"name": "chemaclass/phel-snake",
"keywords": [
"phel",
"lisp",
"functional",
"language"
],
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-readline": "*",
"phel-lang/phel-lang": "^0.15",
"chemaclass/phel-cli-gui": "^0.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "6.*"
},
"minimum-stability": "dev",
"scripts": {
"start": [
"@build",
"@play"
],
"build": "vendor/bin/phel build --no-cache",
"play": "php out/main.php",
"test": "vendor/bin/phel test",
"format": "vendor/bin/phel format src tests"
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "8.2"
}
}
}