An open API service indexing awesome lists of open source software.

https://github.com/lexik/lexikcronfilegeneratorbundle

This symfony bundle provides service for generate cron file
https://github.com/lexik/lexikcronfilegeneratorbundle

cron crontab symfony symfony-bundle

Last synced: 10 months ago
JSON representation

This symfony bundle provides service for generate cron file

Awesome Lists containing this project

README

          

LexikCronFileGeneratorBundle
============================

[![PHP Version](https://img.shields.io/packagist/php-v/lexik/cron-file-generator-bundle)](https://packagist.org/packages/lexik/cron-file-generator-bundle)
![Packagist Downloads](https://img.shields.io/packagist/dm/lexik/cron-file-generator-bundle?style=flat-square&label=Downloads%20Monthly)
[![Latest Stable Version](https://poser.pugx.org/lexik/cron-file-generator-bundle/v/stable.svg)](https://packagist.org/packages/lexik/cron-file-generator-bundle)
[![CI Tests](https://github.com/lexik/LexikCronFileGeneratorBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/lexik/LexikCronFileGeneratorBundle/actions/workflows/ci.yml)

This symfony bundle provides cron file generation utilities.

Installation
============

Documentation
-------------

The bulk of the documentation is stored in the [`Resources/doc`](Resources/doc/index.md) directory of this bundle:

* [Getting started](Resources/doc/index.md#getting-started)
* [Configuration](Resources/doc/index.md#configuration)
* [Command](Resources/doc/index.md#command)
* [Bonus](Resources/doc/index.md#bonus)

Applications using Symfony Flex
----------------------------------

Open a command console at your project directory and execute :

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

Applications not using 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:

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

This command requires you to have Composer installed globally, as explained
in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.

### Step 2: Enable the Bundle

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

```php
['all' => true],
// ...
];
```