https://github.com/icinga/ipl-scheduler
https://github.com/icinga/ipl-scheduler
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/icinga/ipl-scheduler
- Owner: Icinga
- Created: 2022-08-25T12:01:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T10:14:47.000Z (about 2 years ago)
- Last Synced: 2025-04-13T20:47:56.925Z (about 1 year ago)
- Language: PHP
- Size: 72.3 KB
- Stars: 1
- Watchers: 10
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Icinga PHP Library - Tasks Scheduler
[](https://php.net/)

Framework-independent scheduler that executes tasks at regular intervals or once at specific times in an event loop.
The tasks are pure PHP code and the frequency is defined via cron expressions. Yields events for which you can install
listeners:
* when an operation of a task is scheduled,
* upon running an operation of a task,
* when an operation of a task is done or failed,
* and when a task is canceled or expired.
Scheduled or running tasks can be removed or canceled at any time.
## Installation
The recommended way to install this library is via [Composer](https://getcomposer.org):
```
composer require ipl/scheduler
```