Download the PHP package hmazter/laravel-schedule-list without Composer

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

Laravel Schedule List

Build Status StyleCI

Latest Stable Version Latest Unstable Version Total Downloads License

Laravel 5.6+ package to add a artisan command to list all scheduled artisan commands. With schedule time (cron expression), the command to execute and the command description.

Install

Require this package with composer using the following command:

Note! For Laravel version 5.5 and below use 0.2.0 tag.

Usage

Usage from the command line to show all your scheduled artisan commands:

Outputs:

Crontab style output

Use --cron to show the output in the same style as it would go in a crontab file.

Outputs:

Verbose output

Use -vv to show the full command, including php binary path and output path.

Outputs:

Using -vv together with --cron does not change to output from normal --cron output.

Programmatic use

For occasions when you need to access the list of scheduled events programmatically \Hmazter\LaravelScheduleList\ScheduleList::all exists that will return all the scheduled events as an array of ScheduleEvent.

Inject the ScheduleList or resolve it from the Container and then call all() to get all scheduled events. Usage of it can be seen in ListScheduler::handle

Define PHP Binary Path

If you use custom PHP Binary paths or you are using \Hmazter\LaravelScheduleList\ScheduleList::all within the context of a web application and not through the console, you can publish the package config file and defining your own binary path:

For example config/schedule-list.php:

Known limitations

Laravel ships with some special scheduling functions ex between, unlessBetween, when and skip these are not handled right now in the schedule listing output. They are evaluated at each execution of the schedule and does not define any expression that can be included in the table.


All versions of laravel-schedule-list with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
illuminate/support Version 5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0
illuminate/console Version 5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0
dragonmantank/cron-expression Version ^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 hmazter/laravel-schedule-list contains the following files

Loading the files please wait ....