Basic iCal parser

Maintainers

Package info

github.com/exussum12/ical

pkg:composer/exussum12/ical

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.2 2020-07-28 13:27 UTC

This package is auto-updated.

Last update: 2026-03-01 00:55:34 UTC


README

A basic iCal parser.

Install

preferred method is Composer

composer require exussum12/ical

Use

in your PHP file, there are a few ways to call, depending on where your iCal is stored.

Eg iCal over HTTP

$cal = new exussum12\Ical\IcsUrl('http://yourdomain/ical.ics')
foreach ($cal->getEvents() as $event) {
    var_dump ($event->getStart());
}