-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
46 lines (46 loc) · 1 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
44
45
46
{
"name": "phel-lang/phel-website",
"keywords": [
"phel",
"lisp",
"functional",
"language"
],
"homepage": "https://phel-lang.org/",
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-json": "*",
"phel-lang/phel-lang": "^0.16",
"gacela-project/gacela": "^1.9"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"PhelDocBuild\\": "build/src/php/"
}
},
"autoload-dev": {
"psr-4": {
"PhelDocBuildTests\\": "build/tests/php"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2"
}
},
"scripts": {
"build": [
"php build/api-page.php",
"php build/api-search.php"
],
"test": "./vendor/bin/phpunit"
}
}