davidjeddy / yii2-naabs3
This package is abandoned and no longer maintained.
No replacement package was suggested.
FreeRadius administration module for Yii2.
dev-master
2026-04-19 00:23 UTC
Requires
- yiisoft/yii2: ^2.0.13
This package is auto-updated.
Last update: 2026-04-19 00:24:48 UTC
README
[!WARNING] ⚠️ This project has been archived and is no longer maintained. ⚠️
Github has shown it does not respect its users. Other have said it better than I can.
- https://www.theregister.com/2022/06/30/software_freedom_conservancy_quits_github/
- https://www.andrlik.org/dispatches/migrating-from-github-motivation/
- https://techresolve.blog/2025/12/27/looking-to-migrate-company-off-github-whats-the/
- https://lord.io/leaving-github/
- https://dev.to/alanwest/how-to-actually-migrate-from-github-to-codeberg-without-losing-your-mind-33bf>
Development has moved to Codeberg: ➡️ https://codeberg.org/DavidJEddy/yii2-naabs3
Please update your remotes:
git remote set-url origin https://codeberg.org/DavidJEddy/yii2-naabs3
Naabs 3
What
Naabs 3 (Network access and billing service, version 3) is a module for the Yii2 framework to administer a FreeRadius database.
Badges
Credit
Could not do this without the work of the following person/s and teams: Yii Software LLC Eugene Terentev
Install
Either
- Execute
composer install davidjeddy/yii2-naabs3in the project root. - Or add
"davidjeddy/yii2-naabs3": "^1",to your projects composer.json in therequiredsections; THEN runcomposer installin the projects root.
Usage
- Add the module via the ./config/web.php configuration file.
'modules' => [
....
'naabs3' => [
'class' => dje\naabs3\Module::class,
'defaultRoute' => 'site/index'
],
...
],