thadico-platform / org-module
Module for synchronized users
v1.0.41
2024-10-10 09:31 UTC
Requires
- php: ^8.1
- ext-curl: *
- guzzlehttp/guzzle: ^7.2
- laravel/framework: ^10.10
- yaangvu/laravel-base: ^4.0
Requires (Dev)
- illuminate/console: ^7|^8|^9|^10
- illuminate/database: ^7|^8|^9|^10
- illuminate/http: ^7|^8|^9|^10
- illuminate/pagination: ^7|^8|^9|^10
README
You can install this package via composer using this command:
composer require thadico-platform/org-module
Register event providers:
\KeyHoang\OrgModule\Providers\EventServiceProvider::class
Using this schedule:
$schedule->command(SyncUserCommand::class)->daily();
$schedule->command(SyncDepartmentCommand::class)->daily();
Using this RabbitMQJob:
'sync-user' => SyncUserQueue::class . '@handle'