feat: initial commit

This commit is contained in:
Stephan Plöhn 2025-08-22 10:18:22 +02:00
commit e106ee4c4c
17 changed files with 271 additions and 0 deletions

43
composer.json Normal file
View file

@ -0,0 +1,43 @@
{
"name": "deichrakete/kirby-moin",
"description": "Kirby starterkit with a custom folder structure and Tailwind CSS",
"type": "project",
"keywords": [
"kirby",
"cms",
"starterkit",
"tailwindcss
],
"authors": [
{
"name": "Bastian Allgeier",
"email": "bastian@getkirby.com",
"homepage": "https://getkirby.com"
}
],
"homepage": "https://getkirby.com",
"support": {
"email": "support@getkirby.com",
"forum": "https://forum.getkirby.com",
"source": "https://github.com/getkirby/plainkit"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"getkirby/cms": "^5.0"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
},
"optimize-autoloader": true
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 -t public/ vendor/getkirby/cms/router.php"
]
},
"extra": {
"kirby-cms-path": false
}
}