hinto-com / job-monitor-bundle
Symfony bundle for monitoring job progress
Package info
github.com/hinto-com/job-monitor-bundle
Type:symfony-bundle
pkg:composer/hinto-com/job-monitor-bundle
Fund package maintenance!
1.0.7
2026-03-17 16:39 UTC
Requires
- php: >=8.3
- doctrine/dbal: ^3.0|^4.0
- symfony/console: ^6.4|^7.4|^8.0
- symfony/framework-bundle: ^6.4|^7.4|^8.0
- symfony/http-foundation: ^6.4|^7.4|^8.0
- symfony/messenger: ^6.4|^7.4|^8.0
- symfony/process: ^6.4|^7.4|^8.0
- symfony/routing: ^6.4|^7.4|^8.0
- symfony/twig-bundle: ^6.4|^7.4|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.94
- marcocesarato/php-conventional-changelog: ^1.17
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.1
- phpstan/phpstan-doctrine: ^2.0
- phpstan/phpstan-symfony: ^2.0
- phpunit/phpunit: ^12.5
- rector/rector: ^2.3
- symfony/dotenv: ^6.4|^7.4|^8.0
- symfony/flex: ^2.10
- symfony/phpunit-bridge: ^6.4|^7.4|^8.0
Suggests
- symfony/doctrine-messenger: Integrate with Doctrine Messenger for database-backed message queues
README
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
composer require hinto-com/job-monitor-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require hinto-com/job-monitor-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php file of your project:
// config/bundles.php return [ // ... Hinto\Bundle\JobMonitorBundle\HintoJobMonitorBundle::class => ['all' => true], ];