JDF library for laravel

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:jdf-extension

dev-main 2023-07-10 23:01 UTC

This package is auto-updated.

Last update: 2024-05-11 00:56:33 UTC


README

JDF Library for Laravel

Installation

In the require key of composer.json file add the following

"require": {
    "mhgolestani77/jdf": "*"
}

Run the Composer update command

$ composer update

In your config/app.php add 'MHGolestani77\jdf\jdfServiceProvider' to the end of the $providers array

    'providers' => array(

        'Illuminate\Foundation\Providers\ArtisanServiceProvider',
        'Illuminate\Auth\AuthServiceProvider',
        ...
        'MHGolestani77\Jdf\JdfServiceProvider',

    ),