feat: add minimal plugin scaffold

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christopher Mühl 2026-04-08 11:14:09 +02:00
parent 64dd0a98f3
commit 0ae4434d09
No known key found for this signature in database
GPG key ID: 925AC7D69955293F
2 changed files with 27 additions and 0 deletions

10
KimaiHeatmapBundle.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace KimaiPlugin\KimaiHeatmapBundle;
use App\Plugin\PluginInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class KimaiHeatmapBundle extends Bundle implements PluginInterface
{
}

17
composer.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "kimai-plugin/heatmap-bundle",
"type": "kimai-plugin",
"description": "GitHub-style activity heatmap dashboard widget for Kimai",
"license": "MIT",
"autoload": {
"psr-4": {
"KimaiPlugin\\KimaiHeatmapBundle\\": ""
}
},
"extra": {
"kimai": {
"require": 25200,
"name": "Activity Heatmap"
}
}
}