From ff9c8e202c8d90194073d855168b7f0d343060af Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Sun, 31 Oct 2010 15:29:19 +0100 Subject: [PATCH] updated README --- README | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README b/README index b0dc7c3..4235ffc 100644 --- a/README +++ b/README @@ -1,5 +1,20 @@ +A simple and fast iCal parser. +http://github.com/tpruvot/PHP-iCal + About this fork (forked at v0.5.0 from http://github.com/fangel/SG-iCalendar) +A simple example : + $ical = new SG_iCalReader( "./basic.ics" ); + //or + $ical = new SG_iCalReader( "http://example.com/calendar.ics" ); + foreach( $ical->getEvents() As $event ) { + // Do stuff with the event $event + } + +To check unit tests with phpunit, goto tests/ directory and : + phpunit AllTests + phpunit helpers/FreqTest + Changelog : 0.7.0-tpr (30 oct 2010) @@ -14,4 +29,3 @@ Changelog : + Support of Recurrent events in query Between() * various fixes on actual (5) issues -Fixed