laminas-feed
laminas-feed copied to clipboard
Consume and generate Atom and RSS feeds, and interact with Pubsubhubbub.
Would be awesome if Zend Feed supported parsing [JSON feeds](https://jsonfeed.org/). Publishing and parsing them is much more straightforward and lightweight compared to RSS and Atom, and adoption is starting to...
- [x] I was not able to find an [open](https://github.com/zendframework/zend-feed/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-feed/issues?q=is%3Aclosed) issue matching what I'm seeing. - [x] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/)...
I know it may be a bit too complicated due as part of migration to zf3. It makes sense to change static zend-feed interface to dynamic. ``` class Reader {...
- [x] I was not able to find an [open](https://github.com/zendframework/zend-feed/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-feed/issues?q=is%3Aclosed) issue matching what I'm seeing. - [x] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/)...
original bug: https://github.com/zendframework/zend-feed/issues/19 --- Originally posted by @necromant2005 at https://github.com/zendframework/zend-feed/pull/23
Related to #97 --- Originally posted by @froschdesign at https://github.com/zendframework/zend-feed/issues/103
Related to #101 --- Originally posted by @froschdesign at https://github.com/zendframework/zend-feed/issues/102
See stack overflow for details: https://stackoverflow.com/a/9281963/893222 The idea is to handle malformed XML thanks to [recovery option in libxml](http://www.php.net/manual/en/class.domdocument.php#domdocument.props.recover) that is implemented in userland: ```php $dom = new DOMDocument(); $dom->recover...
Hello, I wanted to provide feeds (via the Writer of Zend Feed) with the full content of an article (including some HTML5 markup) and thought to prefer atom over rss....