-
-
Notifications
You must be signed in to change notification settings - Fork 0
Managing Extensions
Everything game-specific is built as an extension on top of the core. Manage them from Admin → Extensions.
From disk — place the extension folder under extensions/{vendor}/{name}/,
then click Sync from disk. It appears in the list, disabled.
From a ZIP — click Import, choose the .zip, review the preview
(version, permissions, routes, migrations) and confirm. If the same extension is
already installed, the import becomes an update.
- Enable — runs the extension's migrations and seeder, publishes its assets, and activates its routes, navigation and widgets. Version and dependency requirements are checked first; if they aren't met, enabling is blocked with a clear message.
- Disable — stops loading the extension. Its data stays in the database.
Import a newer ZIP of an installed extension. Files are replaced and any new migrations run automatically. Downgrades are rejected.
On the extension's detail page, click Uninstall. You choose whether to also drop its data:
- Delete data — rolls back its migrations (drops its tables) and removes its settings and files.
- Keep data — removes files but preserves the database, so a future reinstall keeps existing content.
See BUILDING_EXTENSIONS.md for the full SDK. Quick start:
php artisan hybridcore:make-extension yourvendor/yourname --with-admin --with-web
php artisan hybridcore:extensions:zip yourvendor/yourname # package for distributionHybridCore · Repository · Deployment · Extension SDK · Report a security issue
© HybridMind Labs
Getting started
Going further