An extended theme and feature plugin for Kanboard designed to boost productivity for small teams.
Kanext alters both the look and core functionality of Kanboard, providing:
Shown running alongside the recommended GreenWing theme plugin:

Fyi: the latest version of GreenWing has an error and after installing, you need
to manually rename the plugin folder from Greenwing-1.3.2 to Greenwing.
We provide a zero-configuration Docker setup using the official Kanboard image to make contributing incredibly easy.
docker compose up -d
admin / admin).PHP caching is automatically disabled in this environment, so your code changes will immediately reflect upon refreshing the browser.
Before committing code, initialize the local repository hooks:
make init
This ensures Kanext’s custom .githooks are active, which will automatically
run the code formatter before every commit and the syntax linter before every
push.
Before pushing your commits to the repository, please verify the following, which is not an exhaustive list:
make format to ensure both PHP and frontend
code adhere to the project’s formatting rules.make lint to run the language checkers,
catching syntax errors and coding standard violations.make lint via make check-translations).Test/ directory pass
successfully.README.md if any new features or
configurations were added.composer.lock or package-lock.json are
committed if you added or updated any dependencies.Plugin.php if
preparing for a new release..gitattributes: If you added new folders or files at the root
directory that shouldn’t be included in the final release build, remember
to add them to .gitattributes (with export-ignore) to avoid having
them in the build.