Download the PHP package adiafora/laravel-cron-schedule without Composer

On this page you can find all versions of the php package adiafora/laravel-cron-schedule. 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 laravel-cron-schedule

Laravel Cron Scheduling

Laravel Task Scheduling is a great way to manage the cron. But the documentation contains the following warning:

By default, multiple tasks scheduled at the same time will execute sequentially based on the order they are defined in your schedule method. If you have long-running tasks, this may cause subsequent tasks to start much later than anticipated.

The method can help you. But!

The runInBackground method may only be used when scheduling tasks via the command and exec methods.

What should I do if I use code instead of running commands?..

Using our package, you can run as many cron as you want on the server, specifying its name for each one. And in the you can specify which cron should handle this task in the method. A сron launched without specifying a name will be considered a default cron. You don't need to specify anything to put a task in this cron.

Install

Run:

Usage

App\Console\Kernel

In the , replace the line:

with this:

Server

Now delete the cron entry on your server:

And add an entry instead:

Your scheduler is working now as before.

Another cron

You can add another cron to your server by specifying its name using the option . Let's give it a name :

And now you can specify the name of this cron for any task in the scheduler.

Note that the task of preparing the report will work exactly at 03:00, without waiting for the emails sending! This way you can create as many crones as you want, give them names and assign tasks to them, distributing them as you see fit. And in each cron, the task will be launched strictly at the specified time, without waiting for other tasks launched at the same time in other crones.

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-cron-schedule with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4.0 | ^8.0.0
laravel/framework Version ^8.0 | ^9.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 adiafora/laravel-cron-schedule contains the following files

Loading the files please wait ....