Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

  1. <?php
  2. namespace App\Providers;
  3. use App\Listeners\WebhookFailedToSendToCoreListener;
  4. use App\Listeners\WebhookSuccessfullySentToCoreListener;
  5. use Illuminate\Auth\Events\Registered;
  6. use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
  7. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  8. use Spatie\WebhookServer\Events\WebhookCallFailedEvent;
  9. use Spatie\WebhookServer\Events\WebhookCallSucceededEvent;
  10. class EventServiceProvider extends ServiceProvider
  11. {
  12. /**
  13. * The event listener mappings for the application.
  14. *
  15. * @var array
  16. */
  17. protected $listen = [
  18. WebhookCallSucceededEvent::class => [
  19. WebhookSuccessfullySentToCoreListener::class
  20. ],
  21. WebhookCallFailedEvent::class => [
  22. WebhookFailedToSendToCoreListener::class,
  23. ],
  24. ];
  25. /**
  26. * Register any events for your application.
  27. *
  28. * @return void
  29. */
  30. public function boot()
  31. {
  32. parent::boot();
  33. //
  34. }
  35. }