imelgrat / feed-finder
A PHP class for extracting the URLs of RSS (1.0 and 2.0) and ATOM feeds associated to a page, as well as OPML outline documents.
Requires
- php: >=5.3.0
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-10 05:46:01 UTC
README
A PHP class for extracting the URLs of RSS (1.0 and 2.0) and ATOM feeds associated to a page, as well as OPML outline documents.
Developed by Ivan Melgrati
Requirements
- PHP >= 5.3.0
Installation
Composer
The recommended installation method is through
Composer, a dependency manager for PHP. Just add
imelgrat/feed-finder
to your project's composer.json
file:
{ "require": { "imelgrat/feed-finder": "*" } }
More details can be found over at Packagist.
Manually
- Copy
src/feed-finder.php
to your codebase, perhaps to thevendor
directory. - Add the
FeedFinder
class to your autoloader orrequire
the file directly.
Feedback
Please open an issue to request a feature or submit a bug report. Or even if you just want to provide some feedback, I'd love to hear. I'm also available on Twitter as @imelgrat.
Contributing
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -am 'Added some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create a new Pull Request.