All Projects → MUlt1mate → Cron Manager

MUlt1mate / Cron Manager

Licence: mit
A PHP cron task manager for MVC-type applications

Projects that are alternatives of or similar to Cron Manager

Dramatiq dashboard
A dashboard for dramatiq, specific to its Redis broker.
Stars: ✭ 82 (-79.29%)
Mutual labels:  task-manager, task-scheduler, task-runner
gronx
Lightweight, fast and dependency-free Cron expression parser (due checker), task scheduler and/or daemon for Golang (tested on v1.13 and above) and standalone usage
Stars: ✭ 206 (-47.98%)
Mutual labels:  crontab, task-manager, task-scheduler
Dramatiq
A fast and reliable background task processing library for Python 3.
Stars: ✭ 2,844 (+618.18%)
Mutual labels:  task-manager, task-scheduler, task-runner
bikeshed
Lock free hierarchical work scheduler
Stars: ✭ 78 (-80.3%)
Mutual labels:  task-runner, task-manager, task-scheduler
Celery
Distributed Task Queue (development branch)
Stars: ✭ 18,378 (+4540.91%)
Mutual labels:  task-manager, task-scheduler, task-runner
reflow
A light-weight lock-free series/parallel combined scheduling framework for tasks. The goal is to maximize parallelism in order to minimize the execution time overall.
Stars: ✭ 23 (-94.19%)
Mutual labels:  task-runner, task-manager, task-scheduler
Pypyr
pypyr task-runner cli & api for automation pipelines. Automate anything by combining commands, different scripts in different languages & applications into one pipeline process.
Stars: ✭ 173 (-56.31%)
Mutual labels:  task-manager, task-runner
Ten Hands
⚡ Simplest way to organize and run command-line tasks
Stars: ✭ 228 (-42.42%)
Mutual labels:  task-manager, task-runner
PHP-Frameworks-Bench
Popular PHP Frameworks Benchmark.
Stars: ✭ 28 (-92.93%)
Mutual labels:  codeigniter, yii
crontab
cron expression parser and executor for dotnet core.
Stars: ✭ 13 (-96.72%)
Mutual labels:  crontab, task-scheduler
Openmangosteen
Devops定时调用http接口,定时执行SSH命令的WEB定时任务工具。
Stars: ✭ 41 (-89.65%)
Mutual labels:  task-manager, task-scheduler
TaskManager
A C++14 Task Manager / Scheduler
Stars: ✭ 81 (-79.55%)
Mutual labels:  task-manager, task-scheduler
qinglong
支持python3、javaScript、shell、typescript 的定时任务管理面板(A timed task management panel that supports typescript, javaScript, python3, and shell)
Stars: ✭ 6,944 (+1653.54%)
Mutual labels:  crontab, task-manager
Mmake
Mmake is a small program which wraps make to provide additional functionality, such as user-friendly help output, remote includes, and eventually more. It otherwise acts as a pass-through to standard make.
Stars: ✭ 1,593 (+302.27%)
Mutual labels:  task-manager, task-runner
Rqueue
Rqueue aka Redis Queue [Task Queue, Message Broker] for Spring framework
Stars: ✭ 76 (-80.81%)
Mutual labels:  task-manager, task-scheduler
scheduler
Task Scheduler for Laravel applications. UI from scratch
Stars: ✭ 18 (-95.45%)
Mutual labels:  task-manager, task-scheduler
routinger
Routinger is a task scheduler app that is made to make you a better person at no extra cost. The code is open-source. Dart language and Flutter framework are used extensively.
Stars: ✭ 14 (-96.46%)
Mutual labels:  task-manager, task-scheduler
Marl
A hybrid thread / fiber task scheduler written in C++ 11
Stars: ✭ 1,078 (+172.22%)
Mutual labels:  task-scheduler, task-runner
Crontab
Yii2 extension for crontab support
Stars: ✭ 170 (-57.07%)
Mutual labels:  crontab, yii
celery.node
Celery task queue client/worker for nodejs
Stars: ✭ 164 (-58.59%)
Mutual labels:  task-runner, task-manager

PHP Cron tasks manager

This is a flexible tasks manager designed for MVC-type applications. It's used instead of standard linux crontab command.

The purpose of this tool is to provide an easy way to manipulate repetitive tasks.

Live Demo

Build Status Code Climate Test Coverage License Gitter

How this is works

Replace all tasks in crontab file with one which will invoke method TaskRunner::checkAndRunTasks().

Import tasks from current crontab file or add them manually. Active tasks will run one by one if current time matches with the task's time expression. Output of tasks can be handled. For each execution will be assigned status:

  • Success if method returned true;
  • Error if method returned false or an exception was caught;
  • Started if task is running or wasn't ended properly.

Features

  • Works with any storage engines
  • Flexible implementation with interfaces
  • Disable, enable and run tasks through tool interface
  • Handle tasks output however you want
  • Time expression helper shows next run dates
  • Monitor runs results
  • Export and import tasks from crontab
  • Add needed method for new task from dropdown

Installation

Install package via Composer

composer require mult1mate/cron-manager

Requirements

Configure

  • Create tables if you want to store data in database (SQL queries in DbHelper class)
  • Implement TaskInterface and TaskRunInterface or use predefined classes from the Example folder
  • Copy and modify controller and views. Or create your own.
  • Import tasks through interface or add them manually
  • Add new line into crontab file that will invoke TaskRunner::checkAndRunTasks()
  • Disable tasks that will be invoke through the manager
  • Make sure that manager is not publicly available

See also examples for ActiveRecord, CodeIgniter, Yii2, File storage

Screenshots

Tasks list Report Logs Import and export

See Live Demo for more!

Changelog

  • v1.1.0 - File storage models added
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].