steve-brett / shcalendar
Sacred Harp recurring event calculator
Installs: 84
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 3
Type:project
Requires
- rlanvin/php-rrule: ^2.5
Requires (Dev)
- phpunit/phpunit: ^10
- dev-main
- v1.8.0
- v1.7.0
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.1
- v1.0.0
- dev-feature/boxing-day+1-singing
- dev-feature/london-ch-special
- dev-feature/update-bank-holidays
- dev-bugfix/0th-easter
- dev-dev/get-dates-until
- dev-dev/error-handling
- dev-dev/multi-special
- dev-dev/refactor-offsets
- dev-dev/refactor-offset
- dev-test-rewrite
This package is auto-updated.
Last update: 2025-03-26 19:23:36 UTC
README
Formula date manager for Sacred Harp singings
http://stevebrett.nfshost.com/shcalendar/
Annual Sacred Harp singings are organised using date formulae, usually relating to the day's position in the month (e.g. second Sunday), or a special date (e.g. Palm Sunday).
This tool allows for human input of what could be a quite complex recurrence rule by finding all likely formulae for a specific date. The user can then choose their singing formula from a list of options, and then generate future dates.
The current formula uses an array format that extends the RFC 5545 format used by rlanvin/php-rrule.
OFFSET : string
The offset of the event from the reference day, using the same format asBYDAY
.STARTOFFSET : int
For multi-day events, how many days the start of the event is before the end.SPECIAL : string
The key of an array of special events.
Examples
The Saturday before the second Sunday in May
['BYMONTH' => 5, 'BYDAY' => '2SU', 'OFFSET' => '-1SA']
The second Saturday in February
['BYMONTH' => 2, 'BYDAY' => '2SA']
The third Sunday in September and the Saturday before
[ 'BYMONTH' => 9, 'BYDAY' => '3SU', 'STARTOFFSET' => -1]
The Saturday after the Whitsun bank holiday
['SPECIAL' => 'whitsun', 'OFFSET' => '1SA']
The Saturday before the first fifth Sunday after the 4th July (yes, this is a real singing!)
['SPECIAL' => '5SU47', 'OFFSET' => '-1SA']