Files
breadcrumb-the-shire/config/modules.php
fs fb6e30a062 feat: add notifications module with bell UI, event listeners, and cleanup job
In-app notification system with topbar bell icon, dropdown panel,
mark-as-read/dismiss actions, and scheduled cleanup of old read
notifications. Includes event listeners for user.created and
user.deleted events, authorization policy, and full test coverage.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 22:09:44 +01:00

17 lines
537 B
PHP

<?php
/**
* Module activation configuration.
*
* Modules listed here are loaded at boot time. The APP_ENABLED_MODULES env
* variable controls overrides with deterministic semantics:
* - APP_ENABLED_MODULES not set: use this config list
* - APP_ENABLED_MODULES='': explicit no-modules mode
* - APP_ENABLED_MODULES='a,b': exact module list from env
*
* Each entry must match a directory name under modules/ containing a module.php manifest.
*/
return [
'enabled_modules' => ['addressbook', 'bookmarks', 'notifications'],
];