job-runner / symfony-notifier-adapter
Installs: 13 658
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 3
Requires
- php: ~8.2.0 || ~8.3.0 || ~8.4.0
- job-runner/job-runner: ^1.4
- symfony/notifier: ^6.0 || ^7.0
Requires (Dev)
- doctrine/coding-standard: ^12.0
- phpstan/phpstan: ^2.0.1
- phpunit/phpunit: ^11.4.3
This package is auto-updated.
Last update: 2024-12-23 07:27:56 UTC
README
This package provides a symfony/notifier adapter for JobRunner.
Installation
composer require job-runner/symfony-notifier-adapter
Usage
<?php declare(strict_types=1); use JobRunner\JobRunner\Job\CliJob; use JobRunner\JobRunner\Job\JobList; use JobRunner\JobRunner\CronJobRunner; use Symfony\Component\Notifier\Bridge\RocketChat\RocketChatTransport; use Symfony\Component\Notifier\Channel\ChatChannel; use Symfony\Component\Notifier\Notifier; use JobRunner\JobRunner\SymfonyNotifier\SymfonyNotifierEventListener; require 'vendor/autoload.php'; $rocket = new RocketChatTransport('mytoken', '#mychannel'); $rocket->setHost('chat.myhost.com'); $chat = new ChatChannel($rocket); $notifier = new Notifier(['chat' => $chat]); $jobCollection = new JobList(); $jobCollection->push(new CliJob('php ' . __DIR__ . '/tutu.php', '* * * * *')); CronJobRunner::create() ->withEventListener((new SymfonyNotifierEventListener($notifier))->withNotificationChannelFail(['chat'])) ->run($jobCollection);