feat: add minimal plugin scaffold
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
64dd0a98f3
commit
0ae4434d09
2 changed files with 27 additions and 0 deletions
10
KimaiHeatmapBundle.php
Normal file
10
KimaiHeatmapBundle.php
Normal 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
17
composer.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue