PHPackages                             eonx-com/schedule-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. eonx-com/schedule-bundle

AbandonedArchivedSymfony-bundle[Framework](/categories/framework)

eonx-com/schedule-bundle
========================

Provides the Command Scheduling logic of Laravel in a Symfony application

v1.0.0(6y ago)01.6k[1 PRs](https://github.com/eonx-com/schedule-bundle/pulls)MITPHPPHP ^7.3

Since Nov 26Pushed 6y ago1 watchersCompare

[ Source](https://github.com/eonx-com/schedule-bundle)[ Packagist](https://packagist.org/packages/eonx-com/schedule-bundle)[ RSS](/packages/eonx-com-schedule-bundle/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (4)Versions (3)Used By (0)

EonX - ScheduleBundle
=====================

[](#eonx---schedulebundle)

Provides the Command Scheduling logic of Laravel in a Symfony application.

---

Installation
------------

[](#installation)

```
$ composer require eonx-com/schedule-bundle
```

Until a recipe is created for this bundle you will need to register it manually:

```
// config/bundles.php

return [
    // Other bundles...

    EonX\ScheduleBundle\ScheduleBundle::class => ['all' => true],
];
```

Usage
-----

[](#usage)

### Register Your Scheduled Commands

[](#register-your-scheduled-commands)

To register the scheduled commands this bundle implements a concept of "schedule providers", thanks to Symfony's autoconfigure feature, the only thing required is to create services that implement `EonX\ScheduleBundle\Interfaces\ScheduleProviderInterface`. The `ScheduleInterface` passed to the `schedule` method offers all the features of the [Laravel Console Scheduling](https://laravel.com/docs/5.8/scheduling).

```
// src/Schedule/MyScheduleProvider.php

use EonX\ScheduleBundle\Interfaces\ScheduleProviderInterface;

final class MyScheduleProvider implements ScheduleProviderInterface
{
    /**
     * Schedule command on given schedule.
     *
     * @param \EonX\ScheduleBundle\Interfaces\ScheduleInterface $schedule
     *
     * @return void
     */
    public function schedule(ScheduleInterface $schedule): void
    {
        $schedule
            ->command('poc:hello-world', ['-v'])
            ->everyMinute()
            ->setMaxLockTime(120);

        $schedule
            ->command('poc:hello-world-2')
            ->everyFiveMinutes();
        }
    }
}
```

### Run The Schedule

[](#run-the-schedule)

This bundle providers a console command to run the schedule:

```
$ php bin/console schedule:run
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2364d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c6a35b20deec24986ee5baf0b9597829cb7fddc6f27188fd41fef91864877022?d=identicon)[eonx](/maintainers/eonx)

---

Top Contributors

[![natepage](https://avatars.githubusercontent.com/u/11576446?v=4)](https://github.com/natepage "natepage (17 commits)")

### Embed Badge

![Health badge](/badges/eonx-com-schedule-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/eonx-com-schedule-bundle/health.svg)](https://phpackages.com/packages/eonx-com-schedule-bundle)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[oro/platform

Business Application Platform (BAP)

644134.8k84](/packages/oro-platform)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[doppar/framework

The Doppar Framework

366.7k8](/packages/doppar-framework)[wpstarter/framework

The WpStarter Framework - Laravel Framework for WordPress

1810.1k4](/packages/wpstarter-framework)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
