All Projects → lexik → LexikCronFileGeneratorBundle

lexik / LexikCronFileGeneratorBundle

Licence: MIT license
This symfony bundle provides service for generate cron file

Programming Languages

PHP
23972 projects - #3 most used programming language
Twig
543 projects

Projects that are alternatives of or similar to LexikCronFileGeneratorBundle

Crontab
Yii2 extension for crontab support
Stars: ✭ 170 (+750%)
Mutual labels:  cron, crontab
Schedule Bundle
Schedule Cron jobs (commands/callbacks/bash scripts) within your Symfony application.
Stars: ✭ 216 (+980%)
Mutual labels:  cron, symfony-bundle
Cron Parser
Java Parser For Cron Expressions
Stars: ✭ 176 (+780%)
Mutual labels:  cron, crontab
Crontabmanager
PHP library for GNU/Linux cron jobs management.
Stars: ✭ 113 (+465%)
Mutual labels:  cron, crontab
watchman
📆 更夫(watchman)是一款可视化的定时任务配置 Web 工具,麻麻不用担心我漏掉任何更新啦!
Stars: ✭ 40 (+100%)
Mutual labels:  cron, crontab
Go Quartz
Simple, zero-dependency scheduling library for Go
Stars: ✭ 118 (+490%)
Mutual labels:  cron, crontab
Cronsun
A Distributed, Fault-Tolerant Cron-Style Job System.
Stars: ✭ 2,493 (+12365%)
Mutual labels:  cron, crontab
Go Crond
⏰ Cron daemon written in golang (for eg. usage in docker images)
Stars: ✭ 59 (+195%)
Mutual labels:  cron, crontab
node-cron-expression
Declarative functional cron expression builder
Stars: ✭ 17 (-15%)
Mutual labels:  cron, crontab
croner
Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environments.
Stars: ✭ 169 (+745%)
Mutual labels:  cron, crontab
Cronos Bundle
Easy update your crontab by using @cron annotations in Symfony commands.
Stars: ✭ 73 (+265%)
Mutual labels:  cron, symfony-bundle
crontab
cron expression parser and executor for dotnet core.
Stars: ✭ 13 (-35%)
Mutual labels:  cron, crontab
Ppgo job
PPGo_Job是一款可视化的、多人多权限的、一任务多机执行的定时任务管理系统,采用golang开发,安装方便,资源消耗少,支持大并发,可同时管理多台服务器上的定时任务。
Stars: ✭ 1,152 (+5660%)
Mutual labels:  cron, crontab
Quantum Core
⌚ Cron-like job scheduler for Elixir
Stars: ✭ 1,905 (+9425%)
Mutual labels:  cron, crontab
Crontab
Parse Cron Expressions, Compose Cron Expression Strings and Caluclate Execution Dates.
Stars: ✭ 62 (+210%)
Mutual labels:  cron, crontab
Cronv
A visualizer for CRONTAB
Stars: ✭ 196 (+880%)
Mutual labels:  cron, crontab
Crontab
⏰ Cron expression generator
Stars: ✭ 44 (+120%)
Mutual labels:  cron, crontab
Vue Cron Generator
Cron Generator Implemented by Vue.js and Element-ui(基于Vue&Element-UI构建的在线Cron表达式生成器)
Stars: ✭ 48 (+140%)
Mutual labels:  cron, crontab
delay-timer
Time-manager of delayed tasks. Like crontab, but synchronous asynchronous tasks are possible scheduling, and dynamic add/cancel/remove is supported.
Stars: ✭ 257 (+1185%)
Mutual labels:  cron, crontab
Automation-using-Shell-Scripts
Development Automation using Shell Scripting.
Stars: ✭ 41 (+105%)
Mutual labels:  cron, crontab

LexikCronFileGeneratorBundle

Build Status Coverage Status

This symfony bundle provides service for generate cron file.

Installation

Documentation

The bulk of the documentation is stored in the Resources/doc directory of this bundle:

Applications that use Symfony Flex

Open a command console, enter your project directory and execute:

$ composer require lexik/cron-file-generator-bundle

Applications that don't use Symfony Flex

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require lexik/cron-file-generator-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Lexik\Bundle\LexikCronFileGeneratorBundle\LexikCronFileGeneratorBundle(),
        ];

        // ...
    }

    // ...
}
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].