PHPackages                             orisai/nette-scheduler - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. orisai/nette-scheduler

ActiveLibrary[Queues &amp; Workers](/categories/queues)

orisai/nette-scheduler
======================

Orisai Scheduler integration for Nette

1.3.0(10mo ago)727.4k—6.8%12MPL-2.0PHPPHP 7.4 - 8.4CI passing

Since Mar 23Pushed 10mo ago2 watchersCompare

[ Source](https://github.com/orisai/nette-scheduler)[ Packagist](https://packagist.org/packages/orisai/nette-scheduler)[ Docs](https://github.com/orisai/nette-scheduler)[ RSS](/packages/orisai-nette-scheduler/feed)WikiDiscussions v1.x Synced 1mo ago

READMEChangelogDependencies (19)Versions (10)Used By (2)

 [![Orisai](https://github.com/orisai/.github/raw/main/images/repo_title.png?raw=true)](https://github.com/orisai/.github/blob/main/images/repo_title.png?raw=true)
 Nette Scheduler
======================================================================================================================================================================================

[](#nette-scheduler)

 [Orisai Scheduler](https://github.com/orisai/scheduler) integration for [Nette](https://nette.org)

 📄 Check out our [documentation](docs/README.md).

 💸 If you like Orisai, please [make a donation](https://orisai.dev/sponsor). Thank you!

 [![](https://github.com/orisai/nette-scheduler/actions/workflows/ci.yaml/badge.svg?branch=v1.x)](https://github.com/orisai/nette-scheduler/actions?query=workflow:CI+branch:v1.x) [![](https://camo.githubusercontent.com/bc01e5b47727054bea8ae15bbf23dff64ef1af9945fe6c2e726fa740c1e79527/68747470733a2f2f62616467656e2e6e65742f636f766572616c6c732f632f6769746875622f6f72697361692f6e657474652d7363686564756c65722f76312e783f63616368653d333030)](https://coveralls.io/github/orisai/nette-scheduler?branch=v1.x) [![](https://camo.githubusercontent.com/ad469256717768066b729d967a86531a9bb15022a580e6bf4b96bd225a023d60/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f7374796c653d666c61742675726c3d68747470733a2f2f62616467652d6170692e737472796b65722d6d757461746f722e696f2f6769746875622e636f6d2f6f72697361692f6e657474652d7363686564756c65722f76312e78)](https://dashboard.stryker-mutator.io/reports/github.com/orisai/nette-scheduler/v1.x) [![](https://camo.githubusercontent.com/eb869865067f3170f0a1c3fdbf78e00d4f4b18ce110156865c7cdf3fb6f0cf7a/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f6f72697361692f6e657474652d7363686564756c65723f63616368653d33363030)](https://packagist.org/packages/orisai/nette-scheduler) [![](https://camo.githubusercontent.com/29582b326ef957987ba121235509e1b4a947939eaafe3179b6022e9923010225/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f6f72697361692f6e657474652d7363686564756c65723f63616368653d33363030)](https://packagist.org/packages/orisai/nette-scheduler) [![](https://camo.githubusercontent.com/40b2374865c7727b1568a7b77cc1a8068979ac265d85d659fe73b2d337b458e6/68747470733a2f2f62616467656e2e6e65742f62616467652f6c6963656e73652f4d504c2d322e302f626c75653f63616368653d33363030)](https://choosealicense.com/licenses/mpl-2.0/)

Register scheduler extension

```
extensions:
	orisai.scheduler: OriNette\Scheduler\DI\SchedulerExtension
```

Create service which will be run as a job

```
namespace Example;

class ExampleJobService
{

	public function run(): void
	{
		// Do something
	}

}
```

```
orisai.scheduler:
	jobs:
		-
			expression: * * * * *
			callback: [@example.job.service, 'run']

services:
	example.job.service: Example\ExampleJobService
```

Create script with scheduler setup (e.g. `bin/scheduler.php`)

```
use Orisai\Scheduler\Scheduler;

require __DIR__ . '/../vendor/autoload.php';

$configurator = Bootstrap::boot();
$container = $configurator->createContainer();
$scheduler = $container->getByType(Scheduler::class);

$scheduler->run();
```

Configure crontab to run your script each minute

```
* * * * * cd path/to/project && php bin/scheduler.php >> /dev/null 2>&1

```

Looking for more? Documentation is [here](docs/README.md).

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance54

Moderate activity, may be stable

Popularity34

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity68

Established project with proven stability

 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

Every ~92 days

Total

10

Last Release

321d ago

PHP version history (3 changes)1.0.0PHP &gt;=7.4.0 &lt;8.3.0

1.2.1PHP 7.4 - 8.3

1.2.2PHP 7.4 - 8.4

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20974277?v=4)[Marek Bartoš](/maintainers/mabar)[@mabar](https://github.com/mabar)

---

Top Contributors

[![mabar](https://avatars.githubusercontent.com/u/20974277?v=4)](https://github.com/mabar "mabar (41 commits)")

---

Tags

asyncasynchronouscroncronjobcrontabfrequencyintervaljob-schedulernetteorisaiparallelphpqueuerecurringrunnerscheduleschedulerschedulingtaskasyncasynchronousschedulernettequeuecronscheduleparallelrecurringtaskintervalschedulingcrontabfrequencyrunnerJob Schedulercronjob

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/orisai-nette-scheduler/health.svg)

```
[![Health](https://phpackages.com/badges/orisai-nette-scheduler/health.svg)](https://phpackages.com/packages/orisai-nette-scheduler)
```

###  Alternatives

[orisai/scheduler

Cron job scheduler - with locks, parallelism and more

4037.1k4](/packages/orisai-scheduler)[revolt/event-loop

Rock-solid event loop for concurrent PHP applications.

92343.6M138](/packages/revolt-event-loop)[jolicode/castor

A lightweight and modern task runner. Automate everything. In PHP.

53541.0k3](/packages/jolicode-castor)[aboutcoders/job-bundle

A symfony bundle for asynchronous job processing.

2618.0k1](/packages/aboutcoders-job-bundle)[contributte/scheduler

PHP job scheduler (cron) with locking

31835.3k1](/packages/contributte-scheduler)[g4/tasker

Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds

1455.1k](/packages/g4-tasker)

PHPackages © 2026

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