davidjeddy / yii2-naabs3
FreeRadius administration module for Yii2.
dev-master
2018-02-18 21:54 UTC
Requires
- yiisoft/yii2: ^2.0.13
This package is auto-updated.
Last update: 2024-11-05 19:12:31 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'
],
...
],