mhgolestani77 / jdf
JDF library for laravel
dev-main
2023-07-10 23:01 UTC
Requires
- php: >=8.0
- illuminate/support: 4.0.x
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-11 06:39:30 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',
),