davidjeddy/yii2-naabs3

FreeRadius administration module for Yii2.

dev-master 2018-02-18 21:54 UTC

This package is auto-updated.

Last update: 2024-05-05 18:07:09 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

Build Status Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads composer.lock codecov Maintainability SensioLabsInsight

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 the required sections; THEN run composer install in the projects root.

Usage

  1. Add the module via the ./config/web.php configuration file.
    'modules' => [
        ....
        'naabs3' => [
            'class' => dje\naabs3\Module::class,
            'defaultRoute' => 'site/index'
        ],
        ...
    ],