mhgolestani77 / jdf
JDF library for laravel
dev-main
2023-07-10 23:01 UTC
Requires
- php: >=8.0
- illuminate/support: 4.0.x
This package is auto-updated.
Last update: 2026-03-11 05:33:00 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',
),