Installation ============ Versions -------- - Development version: master - Stable version: v0.1.3 Installation with Composer -------------------------- Configure your `composer.json`: ```json { "require": { "fguillot/picofeed": "0.1.3" } } ``` Or simply: ```bash composer require fguillot/picofeed:0.1.3 ``` And download the code: ```bash composer install # or update ``` Usage example with the Composer autoloader: ```php download('http://linuxfr.org/news.atom'); $parser = $reader->getParser( $resource->getUrl(), $resource->getContent(), $resource->getEncoding() ); $feed = $parser->execute(); echo $feed; } catch (Exception $e) { // Do something... } ```