GTD2020-05-31
GTD2020-05-31 copied to clipboard
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.
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.
一个 PHP 类,用于提取与页面关联的 RSS (1.0 和 2.0) 和 ATOM 提要的 url,以及 OPML 大纲文档。
Developed by Ivan Melgrati
开发者: Ivan Melgrati
Requirements 要求
- PHP >= 5.3.0 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:
推荐的安装方法是使用 Composer,一个 PHP 的依赖管理器,只需将 imelgrat/feed-finder 添加到项目的 Composer.json 文件中:
{
"require": {
"imelgrat/feed-finder": "*"
}
}
More details can be found over at Packagist.
更多细节可以在 Packagist 找到。
Manually 手动操作
- Copy 收到
src/feed-finder.php
to your codebase, perhaps to the 到你的代码库,也许到vendor
directory. 目录 - Add the 添加
FeedFinder
class to your autoloader or 类到你的自动加载程序或require
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.
请打开一个问题来请求一个特性或提交一个错误报告。或者即使你只是想提供一些反馈,我也很乐意听听。我也可以在 Twitter 上 @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. 创建一个新的拉请求 https://github.com/imelgrat/feed-finder