-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "mabasic/mariobasic-n7",
"description": "My personal website built with Phel.",
"authors": [
{
"name": "Mario Bašić",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1",
"aws/aws-sdk-php": "^3.279",
"erusev/parsedown-extra": "^0.8.1",
"phel-lang/phel-lang": "v0.11.0",
"rakibtg/sleekdb": "^2.15",
"spatie/yaml-front-matter": "^2.0",
"vlucas/phpdotenv": "^5.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"scripts": {
"dev:slow": "PHEL_MODE=slow php -S localhost:8000 -t public/",
"dev:fast": "composer build && PHEL_MODE=fast php -S localhost:8000 -t public/",
"pre-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "vendor/bin/phel test",
"build": "vendor/bin/phel build",
"build:no-cache": "vendor/bin/phel build --no-cache",
"format": "vendor/bin/phel format"
}
}