Download the PHP package matfish/craft-console-scheduler without Composer

On this page you can find all versions of the php package matfish/craft-console-scheduler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package craft-console-scheduler

Console Scheduler

This package adds the ability to schedule console commands directly from code.

Why?

While you may write a cron configuration entry for each task you need to schedule on your server, this can quickly become a pain, because your task schedule is not recorded to source control and you must SSH into your server to view your existing cron entries, add additional entries or change the schedule.

This package will allow you to:

  1. Define only one command in crontab and the rest will be handled in code.
  2. Use intuitive and readable fluent syntax to define the frequency.
  3. Log all executed commands to a dedicated console-scheduler-{date}.log file, along with any output the command may generate and the exit code.

Installation

  1. Include the package:

  2. Install the plugin:

Initial Setup

Add the following line to your crontab

This will ensure the scheduler runs every minute, and checks for due commands to run. It is recommended to set the frequency according to the highest frequency your project requires. E.g if the most frequent command you have runs hourly, there is no need to call the scheduler every minute, and you can use 0 * * * * instead

Usage

  1. Create a config/console-scheduler.php file
  2. Add schedules according to the following example:

Supported frequencies:

Methods without a specified time can be followed by an at method using fluent syntax.

If you need more control you can also use the raw cron method to define your own frequency, e.g:

Testing

When CRAFT_ENVIRONMENT=dev you can pass a --test option to the scheduler (in Y-m-d H:i format), to mimic a time which is not the present, and make sure the commands run as expected. E.g:

The --test option will be ignored in any other environment.

License

You can try Console Scheduler in a development environment for as long as you like. Once your site goes live, you are required to purchase a license for the plugin. License is purchasable through the Craft Plugin Store.

For more information, see Craft's Commercial Plugin Licensing.

Requirements

This plugin requires Craft CMS 4.0.0 or later.

Acknowledgements

This package is heavily inspired by Laravel's Task Scheduling feature.

Contribution Guidelines

Community is at the heart of open-source projects. We are always happy to receive constructive feedback from users to incrementally improve the product and/or the documentation.

Below are a few simple rules that are designed to facilitate interactions and prevent misunderstandings:

Please only open a new issue for bug reports. For feature requests and questions open a new Discussion instead, and precede [FR] to the title.

If you wish to endorse an existing FR please just vote the OP up, while refraining from +1 replies.


All versions of craft-console-scheduler with dependencies

PHP Build Version
Package Version
Requires craftcms/cms Version ^5.0
dragonmantank/cron-expression Version ^3.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package matfish/craft-console-scheduler contains the following files

Loading the files please wait ....