Download the PHP package spatie/laravel-short-schedule without Composer

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

Schedule artisan commands to run at a sub-minute frequency

Latest Version on Packagist Tests Total Downloads

Laravel's native scheduler allows you to schedule Artisan commands to run every minute.

If you need to execute something with a higher frequency, for example every second, than you've come to the right package. With laravel-short-schedule installed, you can do this:

Alternatively, you could add this to the shortSchedule method in your console kernel:

Are you a visual learner?

In this video you'll see a demonstration of the package.

Want to know how it works under the hood? Then watch this video.

Finally, there's this video that shows how the package is tested. You'll learn how you can test ReactPHP powered loops.

These videos are also part of the Laravel Package Training.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

In your production environment you can start the short scheduler with this command

You should use a process monitor like Supervisor to keep this task going at all times, and to automatically start it when your server boots. Whenever you change the schedule, you should restart this command.

Handle memory leaks

To deal with commands that leak memory, you can set the lifetime in seconds of the short schedule worker:

After the given amount of seconds, the worker and all it's child processes will be terminated, freeing all memory. Then supervisor (or similar watcher) will bring it back.

Lumen

Before you can run the php artisan short-schedule:run command in your Lumen project, you should make a copy of the ShortScheduleRunCommand into your app/Commands folder:

Next, edit the new ShortScheduleRunCommand.php file, and change the namespace from namespace Spatie\ShortSchedule\Commands; to namespace App\Console\Commands; and you're good to go!

Usage

Un your routes/console.php file, you can use the ShortSchedule facade to schedule commands.

In app\Console\Kernel you should add a method named shortSchedule.

Specify the amount of seconds

You can run an artisan command every single second like this:

You can specify a specific amount of seconds using everySeconds

You can even schedule tasks at sub-second frequency. This task will run every half a second.

Scheduling shell commands

Use exec to schedule a bash command.

Preventing overlaps

By default, a scheduled command will run, even if the previous invocation is still running.

You can prevent that by tacking on withoutOverlapping

Between time constraints

Limit the task to run between start and end times.

It is safe use overflow days. In this example the command will run on every second between 21:00 and 01:00

Truth test constraints

The command will run if the given closure return a truthy value. The closure will be evaluated at the same frequency the command is scheduled. So if you schedule the command to run every second, the given closure will also run every second.

Environment constraints

The command will only run on the given environment.

You can also pass an array:

Composite constraints

You can use all constraints mentioned above at once. The command will only execute if all the used constraints pass.

Maintenance Mode

Commands won't run whilst Laravel is in maintenance mode. If you would like to force a command to run in maintenance mode you can use the runInMaintenanceMode method.

Running Tasks On One Server

Limit commands to only run on one server at a time.

Events

Executing any code when responding to these events is blocking. If your code takes a long time to execute, all short scheduled jobs will be delayed. We highly recommend to put any code you wish to execute in response to these events on a queue.

Spatie\ShortSchedule\Events\ShortScheduledTaskStarting

This event will be fired right before a task will be started. It has these public properties:

Spatie\ShortSchedule\Events\ShortScheduledTaskStarted

This event will be fired right before a task has been started. It has these public properties:

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you've found a bug regarding security please mail [email protected] instead of using the issue tracker.

Credits

License

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


All versions of laravel-short-schedule with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/cache Version ^10|^11.0
react/event-loop Version ^1.5
spatie/laravel-package-tools Version ^1.16.4
spatie/temporary-directory Version ^2.2.1
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 spatie/laravel-short-schedule contains the following files

Loading the files please wait ....