jihoun / calendar
There is no license information available for the latest version (v1.0.0) of this package.
Build calendar (.ics) files.
v1.0.0
2018-05-13 15:56 UTC
Requires
- php: >=7.1
Requires (Dev)
- codeclimate/php-test-reporter: ^0.4.4
- phpmd/phpmd: ^2.6.0
- phpunit/phpunit: ^7.1.5
- squizlabs/php_codesniffer: ^3.2.3
This package is not auto-updated.
Last update: 2024-11-23 20:26:19 UTC
README
Build calendar (.ics) file in php
This library allows quickly generating ics files in php. Outputs should be compatible with the standard https://tools.ietf.org/html/rfc5545. But currently, not every single bit of the standard is implemented.
Use
You can load this library in your project using composer:
{ "require": { "jihoun/calendar": "dev-master" }, }
Then in your code, do the following
$event = new \Jihoun\Calendar\Component\Event(); $event ->setDateTimeStart(new Property\DateTimeStart(new \DateTime())) ->setDateTimeEnd(new Property\DateTimeEnd(new \DateTime())) ->setDescription(new Property\Description('Very very lengthy description')) ->setLocation(new Property\Location('in the office')) ->setOrganizer(new Property\Organizer('john.doe@gmail.com')) ->setSummary(new Property\Summary('new test event')); $cal = new \Jihoun\Calendar\Calendar(); $cal->addComponent($event); file_put_contents('cal.ics', $cal->toString());
Contributions and feedbacks
Feel free to make me any feedback and/or contribution.