martanto/magma-trait

Trait and service generator for MAGMA Indonesia app

v1.0.3 2024-01-14 06:36 UTC

This package is auto-updated.

Last update: 2024-05-14 07:22:25 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package is used to generate trait and service for MAGMA Indonesia

Installation

You can install the package via composer:

composer require martanto/magma-trait

You can publish the config file with:

php artisan vendor:publish --tag="magma-trait-config"

This is the contents of the published config file:

return [
    /*
    |--------------------------------------------------------------------------
    | User Providers
    |--------------------------------------------------------------------------
    |
    | All authentication drivers have a user provider. This defines how the
    | users are actually retrieved out of your database or other storage
    | mechanisms used by this application to persist your user's data.
    |
    */
    'model' => config('auth.providers.users.model'),

    /*
    |--------------------------------------------------------------------------
    | MAGMA API url
    |--------------------------------------------------------------------------
    |
    | This one define where the MAGMA API url located
    |
    */
    'api_url' => 'https://magma.esdm.go.id/api',
];

Usage

use AuthenticatesUsers;
use ByteConverter;
use ColorPalettesTrait;
use GenerateSlug;
use GenerateUUID;
use JsonFromFileTrait;
use LoginWithMagma;
use ThrottlesLogins;

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.