job-runner / symfony-console-adapter
Installs: 14 319
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: ~8.2.0 || ~8.3.0 || ~8.4.0
- job-runner/job-runner: ^1.4
- symfony/console: ^5.0 || ^6.0 || ^7.0
Requires (Dev)
- doctrine/coding-standard: ^12.0
- phpstan/phpstan: ^2.0.1
- phpunit/phpunit: ^11.4.3
- dev-main
- 8.4.x-dev
- 1.4.0
- 1.3.0
- 1.2.1
- 1.2.0
- 1.1.0
- 1.0.0
- 0.2.0
- 0.1.0
- dev-dependabot/composer/phpstan/phpstan-tw-2.1.11
- dev-update-march
- dev-dependabot/composer/phpunit/phpunit-tw-12.0.9
- dev-renovate/doctrine-coding-standard-13.x
- dev-update-deps2025
- dev-clean
- dev-phpunit11
- dev-fezfez-patch-2
- dev-fezfez-patch-1
- dev-update-deps
This package is auto-updated.
Last update: 2025-03-25 05:06:38 UTC
README
This package provides a symfony/console adapter for JobRunner.
Installation
composer require job-runner/symfony-console-adapter
Usage
<?php declare(strict_types=1); use JobRunner\JobRunner\Job\CliJob; use JobRunner\JobRunner\Job\JobList; use JobRunner\JobRunner\CronJobRunner; use JobRunner\JobRunner\SymfonyConsole\SymfonyConsoleEventListener; use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\SingleCommandApplication; require 'vendor/autoload.php'; (new SingleCommandApplication()) ->setName('My Super Command') // Optional ->setVersion('1.0.0') // Optional ->addOption('bar', null, InputOption::VALUE_REQUIRED) ->setCode(function (InputInterface $input, OutputInterface $output) { $jobCollection = new JobList(); $jobCollection->push(new CliJob('php ' . __DIR__ . '/tutu.php', '* * * * *')); $jobCollection->push(new CliJob('php ' . __DIR__ . '/titi.php', '* * * * *', 'sample')); $jobCollection->push(new CliJob('php ' . __DIR__ . '/titi.php', '1 1 1 1 1', 'hehe')); $jobCollection->push(new CliJob('php ' . __DIR__ . '/arg.php', '* * * * *')); $section = $output->section(); CronJobRunner::create() ->withEventListener(new SymfonyConsoleEventListener($section, new Table($section))) ->run($jobCollection); }) ->run();