davidjeddy / yii2-naabs3
FreeRadius administration module for Yii2.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/davidjeddy/yii2-naabs3
Requires
- yiisoft/yii2: ^2.0.13
This package is auto-updated.
Last update: 2025-10-05 21:07:32 UTC
README
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-naabs3
in the project root. - Or add
"davidjeddy/yii2-naabs3": "^1",
to your projects composer.json in therequired
sections; THEN runcomposer install
in the projects root.
Usage
- Add the module via the ./config/web.php configuration file.
'modules' => [
....
'naabs3' => [
'class' => dje\naabs3\Module::class,
'defaultRoute' => 'site/index'
],
...
],