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
- Host: GitHub
- URL: https://github.com/lexik/lexikcronfilegeneratorbundle
- Owner: lexik
- License: mit
- Created: 2019-04-08T11:38:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-23T07:46:13.000Z (over 1 year ago)
- Last Synced: 2025-05-25T20:08:23.930Z (10 months ago)
- Topics: cron, crontab, symfony, symfony-bundle
- Language: PHP
- Size: 367 KB
- Stars: 23
- Watchers: 7
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
LexikCronFileGeneratorBundle
============================
[](https://packagist.org/packages/lexik/cron-file-generator-bundle)

[](https://packagist.org/packages/lexik/cron-file-generator-bundle)
[](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],
// ...
];
```