Download the PHP package jardissupport/scheduling without Composer

On this page you can find all versions of the php package jardissupport/scheduling. 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 scheduling

Jardis Scheduling

Build Status PHP Version

Part of Jardis — the Domain-Driven Design platform for PHP. You model your domain; Jardis generates the production-ready hexagonal code (DTOs, Command/Query handlers, repositories, persistence). This package is part of the open-source foundation that generated code runs on.

Scheduling rules as code. A pure-PHP task scheduler and cron scheduling library — parses cron expressions and defines when tasks should run via a fluent API, without executing them. No I/O, no persistence, no external dependencies.


Why This Package?


Installation


Quick Start

Define a Schedule

Get Due Tasks


Cron Expression Parser

Standalone cron parsing — usable without the Schedule API:

Supported Syntax

Feature Example
Standard 5-field 30 8 * * *
Ranges 0 9-17 * * *
Lists 0,15,30,45 * * * *
Steps */5 * * * *
Combined 1-10/3 * * * *
Seconds (6-field) */30 * * * * *
Year (7-field) 0 0 3 1 1 * 2027
Predefined @daily, @hourly, @weekly, @monthly, @yearly

Timezone Support


Fluent Time Helpers

No cron syntax required — readable method names that generate the right expressions:

Method Equivalent
everyMinute() * * * * *
everyFiveMinutes() */5 * * * *
everyFifteenMinutes() */15 * * * *
everyThirtyMinutes() */30 * * * *
hourly() 0 * * * *
hourlyAt(30) 30 * * * *
daily() 0 0 * * *
dailyAt('08:00') 0 8 * * *
weekly() 0 0 * * 0
weeklyOn(5, '14:00') 0 14 * * 5
monthly() 0 0 1 * *
monthlyOn(25, '06:00') 0 6 25 * *
yearly() 0 0 1 1 *
cron('...') Direct expression

Constraints

Additional restrictions beyond the cron expression — all composable:

Time Windows

Day Restrictions

Callable Conditions

Environment Restriction


Tags, Priority & Overlap Guard

Tags

Categorize tasks and filter by tag when querying:

Tags use OR-semantics — a task matches if it has any of the requested tags.

Priority

Higher priority tasks are returned first:

Overlap Guard

Mark tasks that should not run concurrently:


Human-Readable Descriptions


Previous Run

Find the most recent time a cron expression would have matched:


Schedule Validation

Detect configuration problems before runtime:

Check Severity
Empty schedule (no tasks) warning
Duplicate task names error
Conflicting weekdays + weekends constraints warning

Inspecting the Schedule


Error Handling

Exception When
InvalidCronExpressionException Unparseable cron syntax
InvalidScheduleException Task without name, missing expression, invalid time format

Architecture

The user sees Schedule + fluent API. Internally, each concern is its own class:

What This Package Does NOT Do

The runner calls dueNow() and decides what to do with the results.


Jardis Foundation Integration

Scheduling is a support package — no Foundation handler, no ENV configuration. The schedule is defined programmatically in your application layer:


Development


Documentation

Full documentation, guides, and API reference:

docs.jardis.io/en/support/scheduling


License

MIT License — free for any use, including commercial.

AI-Assisted Development

This package ships with a skill for Claude Code, Cursor, Continue, and Aider. Install it in your consuming project:

More details: https://docs.jardis.io/en/skills


All versions of scheduling with dependencies

PHP Build Version
Package Version
Requires php Version >=8.2
jardissupport/contracts Version ^1.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 jardissupport/scheduling contains the following files

Loading the files please wait ...