first commit

This commit is contained in:
Mr Sleeps
2026-06-18 16:56:13 +01:00
commit 6e375cbea7
11 changed files with 578 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "mrsleeps/vexim-groups",
"description": "Groups management for VExim Web UI",
"type": "filament-plugin",
"license": "MIT",
"authors": [
{
"name": "Your Name",
"email": "your@email.com"
}
],
"require": {
"php": "^8.4",
"filament/filament": "^3.2",
"illuminate/support": "^11.0"
},
"autoload": {
"psr-4": {
"Vexim\\Groups\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Vexim\\Groups\\GroupServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}