mhgolestani77 / jdf
JDF library for laravel
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:jdf-extension
Requires
- php: >=8.0
- illuminate/support: 4.0.x
This package is auto-updated.
Last update: 2025-04-11 03:16:23 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',
),