├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── CalendarExport.php ├── CalendarStream.php ├── Constants.php ├── Exception │ ├── CalendarEventException.php │ ├── CalendarException.php │ └── CalendarRecurrenceException.php ├── Model │ ├── Calendar.php │ ├── CalendarAlarm.php │ ├── CalendarEvent.php │ ├── CalendarFreeBusy.php │ ├── CalendarTodo.php │ ├── Description │ │ ├── Conference.php │ │ ├── Geo.php │ │ └── Location.php │ ├── Recurrence │ │ ├── DataType │ │ │ ├── Frequency.php │ │ │ ├── Weekday.php │ │ │ └── WeekdayNum.php │ │ └── RecurrenceRule.php │ └── Relationship │ │ ├── Attendee.php │ │ └── Organizer.php └── Utility │ ├── Formatter.php │ └── Provider.php └── tests ├── CalendarExportTest.php ├── CalendarStreamTest.php ├── Model ├── CalendarEventTest.php ├── CalendarTest.php ├── Recurrence │ └── RecurrenceRuleTest.php └── Relationship │ ├── AttendeeTest.php │ └── OrganizerTest.php ├── Utility ├── FormatterTest.php └── ProviderTest.php ├── test-local-tz.ics ├── test-local.ics └── test-utc.ics /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CalendarExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/CalendarExport.php -------------------------------------------------------------------------------- /src/CalendarStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/CalendarStream.php -------------------------------------------------------------------------------- /src/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Constants.php -------------------------------------------------------------------------------- /src/Exception/CalendarEventException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Exception/CalendarEventException.php -------------------------------------------------------------------------------- /src/Exception/CalendarException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Exception/CalendarException.php -------------------------------------------------------------------------------- /src/Exception/CalendarRecurrenceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Exception/CalendarRecurrenceException.php -------------------------------------------------------------------------------- /src/Model/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Model/Calendar.php -------------------------------------------------------------------------------- /src/Model/CalendarAlarm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Model/CalendarAlarm.php -------------------------------------------------------------------------------- /src/Model/CalendarEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasvrcek/ICS/HEAD/src/Model/CalendarEvent.php -------------------------------------------------------------------------------- /src/Model/CalendarFreeBusy.php: -------------------------------------------------------------------------------- 1 |