armen-e5518 / icalendar
There is no license information available for the latest version (1.1) of this package.
iCalendar widget for Yii2.
Package info
github.com/Armen-e5518/icalendar
Type:yii2-extension
pkg:composer/armen-e5518/icalendar
1.1
2018-11-21 08:09 UTC
This package is auto-updated.
Last update: 2026-03-22 00:56:10 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
composer require armen-e5518/icalendar "@dev"
or add
"armen-e5518/icalendar" : "@dev"
to the require section of your application's composer.json file.
Usage
Using a model with a basic preset:
use icalendar\iCalendar;
$ical = new iCalendar();
$lines = $ical->load( file_get_contents( 'example.ics' ) );
var_dump( $lines );