PHPackages                             m-adamski/symfony-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. m-adamski/symfony-schedule-bundle

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

m-adamski/symfony-schedule-bundle
=================================

Schedule Bundle for Symfony

4.0.0(2y ago)1434.9k↓25%2MITPHPPHP &gt;=8.2

Since Feb 13Pushed 2y agoCompare

[ Source](https://github.com/m-adamski/symfony-schedule-bundle)[ Packagist](https://packagist.org/packages/m-adamski/symfony-schedule-bundle)[ RSS](/packages/m-adamski-symfony-schedule-bundle/feed)WikiDiscussions 4.0 Synced 1mo ago

READMEChangelog (8)Dependencies (4)Versions (13)Used By (0)

Schedule Bundle for Symfony
===========================

[](#schedule-bundle-for-symfony)

Bundle for simplifying operations with CRON jobs.

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

[](#installation)

This Bundle can be installed by Composer:

```
$ composer require m-adamski/symfony-schedule-bundle

```

How to use it?
--------------

[](#how-to-use-it)

Bundle provide functionality to manage CRON jobs by configuration from specified file. We need to create class implementing `Adamski\Symfony\ScheduleBundle\Model\ManagerInterface` interface.

```
namespace App\Model;

use Adamski\Symfony\ScheduleBundle\Model\ManagerInterface;
use Adamski\Symfony\ScheduleBundle\Model\Schedule;

class ScheduleManager implements ManagerInterface {

    public function schedule(Schedule $schedule) {
        // TODO: ..
    }
}

```

Then we need to complete the configuration - create file `config/packages/schedule.yaml` and set path to ScheduleManager:

```
schedule:
    manager: App\Model\ScheduleManager

```

Command schedule configuration
------------------------------

[](#command-schedule-configuration)

In function `schedule` we can configure CRON jobs with required expressions. For example we want run `app:test-command` daily at 12:00:

```
public function schedule(Schedule $schedule) {
    $schedule->command("app:test-command")->dailyAt("12:00");
}

```

Schedule class provide many date-time manipulators. This functionality is inspired by Laravel Tasks Scheduling.

Schedule Frequency Options
--------------------------

[](#schedule-frequency-options)

There are many schedules that you can assign to your task.

Methodcron($expression)everyMinute()everyFiveMinutes()cron($expression)everyMinute()everyFiveMinutes()everyTenMinutes()everyFifteenMinutes()everyThirtyMinutes()hourly()hourlyAt(int $offset)daily()at(string $time)dailyAt(string $time)twiceDaily(int $first = 1, int $second = 13)weekdays()weekends()mondays()tuesdays()wednesdays()thursdays()fridays()saturdays()sundays()weekly()weeklyOn(int $day, string $time = "0:0")monthly()monthlyOn(int $day = 1, string $time = "0:0")twiceMonthly(int $first = 1, int $second = 16)quarterly()yearly()days($days)CRON
----

[](#cron)

Now it's enough to insert only one entry into crontab on server:

```
* * * * * php /path-to-project/bin/console schedule:run >> schedule.log 2>&1

```

License
-------

[](#license)

MIT

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 93.3% 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

Every ~198 days

Recently: every ~350 days

Total

12

Last Release

830d ago

Major Versions

1.3.0 → 2.0.02020-02-07

2.0.1 → 3.0.02022-05-23

3.0.x-dev → 4.0.02024-02-02

PHP version history (5 changes)1.0.0PHP ^7.1

2.0.0PHP ^7.2

3.0.0PHP &gt;=8.0.2

3.0.x-devPHP &gt;=8.1

4.0.0PHP &gt;=8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/99031579203ae7aff3a32b3309374cb5703c35abc4737509bc6b228b433d9943?d=identicon)[m-adamski](/maintainers/m-adamski)

---

Top Contributors

[![m-adamski](https://avatars.githubusercontent.com/u/21038303?v=4)](https://github.com/m-adamski "m-adamski (28 commits)")[![emulienfou](https://avatars.githubusercontent.com/u/84061?v=4)](https://github.com/emulienfou "emulienfou (1 commits)")[![zorn-v](https://avatars.githubusercontent.com/u/12619075?v=4)](https://github.com/zorn-v "zorn-v (1 commits)")

---

Tags

phpschedule-bundlesymfonysymfony-bundle

### Embed Badge

![Health badge](/badges/m-adamski-symfony-schedule-bundle/health.svg)

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

###  Alternatives

[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)

PHPackages © 2026

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