Download the PHP package thamtech/yii2-scheduler without Composer

On this page you can find all versions of the php package thamtech/yii2-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 yii2-scheduler

Yii2 Scheduler

A configuration-driven scheduled task manager for Yii2.

This is adapted from webtoolsnz/yii2-scheduler to provide a more configuration-driven approach.

The main differences:

Latest Stable Version Build Status Scrutinizer Code Quality Code Coverage

Installation

The preferred way to install this extension is through composer.

Install using the following command.

Now that the package has been installed you need to configure the module in your application.

The config/console.php file (or the equivalent console config file if you are using a different Yii project template) should be updated to reflect the changes below:

also add this to the top of your config/console.php file:

Run the database migrations, which will create the necessary tables:

To implement the GUI for reviewing scheduled tasks and logs, add a web controller:

Example Task

You can now create your first task using scheduler. In this example, we will create ConcatStringsTask.php inside the tasks directory of your app:

In your scheduler module config within your console app, define the task:

The above code defines a simple task that runs at the start of every hour, and prints "Hello World". An alternative approach would be to hard-code some or all of the properties in your task class (like schedule). However, this example is more in line with the project's goal of being a more configuration-driven approach to defining tasks.

The $schedule property of this class defines how often the task will run, these are simply Cron Expression

You can define multiple task instances in the scheduler module config, and it is ok to reuse the same Task class for multiple instances. Here is an example with an additional "Foo Bar" task that runs every hour on the half-hour:

Running the tasks

Scheduler provides an intuitive CLI for executing tasks, below are some examples

In order to have your tasks run automatically simply setup a crontab like so

Events & Errors

Events are thrown before and running individual tasks as well as at a global level for multiple tasks

Task Level

or at the global level, to throw errors in /yii

You could throw the exceptions at the task level, however this will prevent further tasks from running.

License

The MIT License (MIT). Please see LICENSE.md for more information.


All versions of yii2-scheduler with dependencies

PHP Build Version
Package Version
Requires yiisoft/yii2 Version ^2.0.14 <2.1
dragonmantank/cron-expression Version ~1.2 || ~2.0 || ~3.0
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 thamtech/yii2-scheduler contains the following files

Loading the files please wait ....