-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 946 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
38
39
{
"name": "phel-lang/router",
"type": "library",
"description": "A Phel router based on symfony routing component",
"keywords": [
"phel",
"lisp",
"functional",
"language"
],
"homepage": "https://phel-lang.org/",
"license": "MIT",
"authors": [
{
"name": "Jens Haase",
"email": "[email protected]"
},
{
"name": "Jose Maria Valera Reales",
"email": "[email protected]",
"homepage": "https://chemaclass.com"
}
],
"require": {
"php": ">=8.2",
"phel-lang/phel-lang": ">=0.15",
"symfony/routing": "^6.4 || ^7.0"
},
"scripts": {
"build": "vendor/bin/phel build --no-cache",
"format": "vendor/bin/phel format",
"test": "vendor/bin/phel test"
},
"config": {
"platform": {
"php": "8.2"
}
}
}