wilianx7 / php-recurring
PHP library for generating recurring dates, schedules, and repeated task recurrences.
3.0.0
2026-04-28 20:02 UTC
Requires
- php: ^8.3|^8.4
- nesbot/carbon: ^2.73|^3.9
Requires (Dev)
- ext-json: *
- friendsofphp/php-cs-fixer: 3.75.0
- phpstan/phpstan: 2.1.12
- phpunit/phpunit: ^10.0|^11.0|^12.0
README
PHP library for generating recurring dates for schedules, repeated tasks, and calendar-like recurrence rules.
Supports daily, weekly, monthly, and yearly recurrences with custom intervals, end conditions, skipped dates, and Carbon or DateTimeInterface inputs.
Useful for:
- recurring tasks
- recurring events
- appointment schedules
- reminder schedules
- repeated billing dates
- calendar-style date generation
Installation
You can install the package via composer:
composer require wilianx7/php-recurring
Features
- Generate recurring dates for daily, weekly, monthly, and yearly schedules
- Set recurrence end rules with
NEVER,IN, orAFTER - Skip specific dates with
exceptDates - Optionally include the start date in the generated collection
- Use
Carbon,DateTime, orDateTimeImmutablein configuration
Basic usage
RecurringConfig accepts any DateTimeInterface in its date setters, so you can use Carbon, DateTime, or DateTimeImmutable.
- Configuration for every day recurrence ending never:
$startDate = new DateTimeImmutable('2019-12-26 08:00:00'); $endDate = new DateTimeImmutable('2019-12-31 23:59:59'); $recurringConfig = new RecurringConfig(); $recurringConfig->setStartDate($startDate) ->setFrequencyType(FrequencyTypeEnum::DAY()) ->setFrequencyInterval(1) ->setFrequencyEndType(FrequencyEndTypeEnum::NEVER()) ->setEndDate($endDate); $dates = RecurringBuilder::forConfig($recurringConfig)->startRecurring();
- Configuration for weekly recurrence (Monday and Sunday) ending after 5 occurrences:
$recurringConfig = new RecurringConfig(); $recurringConfig->setStartDate(new DateTimeImmutable('2019-01-01 08:00:00')) ->setFrequencyType(FrequencyTypeEnum::WEEK()) ->setFrequencyInterval(1) ->setFrequencyEndType(FrequencyEndTypeEnum::AFTER()) ->setFrequencyEndValue(5) ->setRepeatIn([WeekdayEnum::MONDAY(), WeekdayEnum::SUNDAY()]) ->setEndDate(new DateTimeImmutable('2019-12-31 23:59:59')); $dates = RecurringBuilder::forConfig($recurringConfig)->startRecurring();
- Configuration for monthly recurrence (day 27) ending in 2019-11-30:
$recurringConfig = new RecurringConfig(); $recurringConfig->setStartDate(new DateTimeImmutable('2019-01-01 08:00:00')) ->setFrequencyType(FrequencyTypeEnum::MONTH()) ->setFrequencyInterval(1) ->setFrequencyEndType(FrequencyEndTypeEnum::IN()) ->setFrequencyEndValue(new DateTimeImmutable('2019-11-30 00:00:00')) ->setRepeatIn(27) ->setEndDate(new DateTimeImmutable('2019-12-31 23:59:59')); $dates = RecurringBuilder::forConfig($recurringConfig)->startRecurring();
- Configuration for yearly recurrence (day 27 and month 10) ending in 2019-11-30:
$recurringConfig = new RecurringConfig(); $recurringConfig->setStartDate(new DateTimeImmutable('2019-01-01 08:00:00')) ->setFrequencyType(FrequencyTypeEnum::YEAR()) ->setFrequencyInterval(1) ->setFrequencyEndType(FrequencyEndTypeEnum::IN()) ->setFrequencyEndValue(new DateTimeImmutable('2019-11-30 00:00:00')) ->setRepeatIn(['day' => 27, 'month' => 10]) ->setEndDate(new DateTimeImmutable('2019-12-31 23:59:59')); $dates = RecurringBuilder::forConfig($recurringConfig)->startRecurring();
Recurring Config
| Attribute | Description | Default |
|---|---|---|
startDate |
Date the search will start for find the dates the recurrence should be generated. | Start of current year |
endDate |
Date the search for the dates will ended. | End of current year |
frequencyType |
How often the recurrence will be generated accord of the enum FrequencyTypeEnum. Can be setted as: DAY, WEEK, MONTH or YEAR. | FrequencyTypeEnum::DAY() |
frequencyInterval |
Determines the interval between recurrences according to the chosen frequency type. | 1 |
repeatIn |
Determines when recurrence should be generated according to the frequency type chosen. Can be setted, for example, as: null (for DAY); [ WeekdayEnum::MONDAY(), WeekdayEnum::SUNDAY() ] (for WEEK); 31 (for MONTH); ['day' => 31, 'month' => 2] (for YEAR)." | Null |
frequencyEndType |
Determines what will be the stopping criterion for recurrence generation according of the enum FrequencyEndTypeEnum. Can be setted as: NEVER, IN or AFTER. | FrequencyEndTypeEnum::NEVER() |
frequencyEndValue |
Determines a value according to the chosen stop criterion. Can be setted, for example, as: null (for NEVER); 3 (for AFTER); any DateTimeInterface instance such as DateTimeImmutable or Carbon (for IN). |
Null |
lastRepeatedDate |
Date the last recurrence was generated. It is used to avoid unnecessary date generation by calling the generation method more than once. | Null |
repeatedCount |
How many recurrences have already been generated. It is used to avoid unnecessary date generation by calling the generation method more than once. | Null |
exceptDates |
Dates when recurrence should not be generated even if the date conforms to the specified setting. Accepts native array. | Null |
includeStartDate |
Defines whether the start date should be included in the return array | false |
- includeStartDate: By default, the start date is not included in the return array, as it assumes that this date is already in use, requiring only the return of subsequent dates. However, you can override this behavior by setting "includeStartDate" property as true.
Recurring Builder
| Method | Description | Return |
|---|---|---|
forConfig |
Used to construct the recurrence according to setting passed by parameter. | Self |
startRecurring |
Start generating dates for recurrence | An array with all the dates generated |
Enums
| Enum | Values |
|---|---|
FrequencyEndTypeEnum |
NEVER, IN, AFTER |
FrequencyTypeEnum |
DAY, WEEK, MONTH, YEAR |
WeekdayEnum |
SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY |
Testing
composer run test