Download the PHP package flowrise-hms/appointment without Composer

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

Appointment module

Scheduling, waitlist, outbound sync outbox, and Filament admin surfaces for FlowRise HMS.

Operator documentation (staff-facing)

End-user workflows for reception, clinical staff, and administrators: docs/user-guide/appointments.md.

Branch context (required reading)

All domain models extend BelongsToBranch:

Console commands, queues, and tests must set branch context or call Model::withoutGlobalScopes() when operating across branches.

Entity overview

Model Table Purpose
Appointment appointments Core booked encounter shell (patient, location, status, times).
AppointmentParticipant appointment_participants FHIR-style participants (participant_type, actor_reference string).
AppointmentResource appointment_resources Room/equipment allocations with time windows; feeds conflict checks.
AppointmentRecurrenceRule appointment_recurrence_rules Metadata only — no engine expands occurrences yet.
AppointmentAudit appointment_audits Optional domain audit rows (manual / Filament); not auto-written by scheduling.
ScheduleBlock appointment_schedule_blocks Practitioner/location blocks for conflict detection.
WaitlistEntry appointment_waitlist_entries Prioritized wait queue per branch/patient preferences.
AppointmentSyncOutbox appointment_sync_outbox Reliable outbound events for integrations.

Relationships quick reference

Appointment

AppointmentSyncOutbox

WaitlistEntry

AppointmentAudit

ScheduleBlock

Child rows (Participant, Resource, RecurrenceRule)

Soft UUID references

These columns are strings without FK until interoperability stabilizes:

Prefer Staff UUIDs where Staff exists; document external FHIR ids separately if needed.

Services and workflows

AppointmentSchedulingService

Outbox producer

Events emitted today:

event_name When
appointment.booked After create
appointment.rescheduled After reschedule (+ version bump)
appointment.checked_in After check-in
appointment.cancelled After cancel

Idempotency: idempotency_key is sha256("{appointment_id}|{event_name}|{version}"). AppointmentSyncOutbox::firstOrCreate skips duplicates for the same triple.

Payload (JSON): appointment_id, status, ISO8601 start_at, end_at.

Outbox consumer (stub)

Artisan command appointment:process-sync-outbox (Modules\Appointment\Console\Commands\ProcessAppointmentSyncOutboxCommand) selects due pending rows (respects withoutGlobalScopes) and marks them completed — replace internals with real HTTP / message-bus dispatch.

Scheduler entry (project routes/console.php from repository root):

Ensure host cron runs php artisan schedule:run every minute in production.

Filament: no manual create route for outbox rows — entries are system-generated; operators may view/edit for troubleshooting.

Waitlist scoring

WaitlistScoringService returns a numeric score only; persist computed_priority_score from Filament or a future job.

Recurrence rules

Rules stored on AppointmentRecurrenceRule are not expanded into additional appointments. Admin CRUD is informational until a recurrence engine is implemented.

Appointment audits vs activity log

Operator notes

Developer commands

Tests


All versions of appointment with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
flowrise-hms/core Version dev-main
flowrise-hms/patient Version dev-main
guava/calendar Version ^3.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 flowrise-hms/appointment contains the following files

Loading the files please wait ...