-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1002 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
40
41
42
43
44
45
46
{
"name": "wsydney76/kirby4-playground",
"description": "Kirby 4 Playground",
"version": "2.0.0",
"type": "project",
"keywords": [
"kirby",
"cms",
"tutorial"
],
"authors": [
{
"name": "wsydney76",
"homepage": "https://github.com/wsydney76/kirby4-tutorial"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"getkirby/cms": "^4.0",
"wearejust/kirby-twig": "^5.0",
"vlucas/phpdotenv": "^5.6",
"illuminate/collections": "^10.40",
"ezyang/htmlpurifier": "^4.6",
"getkirby/cli": "^1.5"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
},
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"site\\": "site/"
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"start": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 kirby/router.php"
]
}
}