{"id":15659097,"url":"https://github.com/unicodeveloper/laravel-feeder","last_synced_at":"2025-10-24T10:18:14.460Z","repository":{"id":32891953,"uuid":"36486450","full_name":"unicodeveloper/laravel-feeder","owner":"unicodeveloper","description":":postbox: :package: Laravel 5 Package to extract atom and rss feeds from any website in a very good readable format","archived":false,"fork":false,"pushed_at":"2017-11-03T00:32:40.000Z","size":21,"stargazers_count":22,"open_issues_count":2,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T22:32:30.254Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unicodeveloper.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-29T06:41:47.000Z","updated_at":"2021-08-03T06:41:06.000Z","dependencies_parsed_at":"2022-09-01T00:31:02.341Z","dependency_job_id":null,"html_url":"https://github.com/unicodeveloper/laravel-feeder","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Flaravel-feeder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Flaravel-feeder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Flaravel-feeder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Flaravel-feeder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unicodeveloper","download_url":"https://codeload.github.com/unicodeveloper/laravel-feeder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252542068,"owners_count":21764907,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T13:15:00.511Z","updated_at":"2025-10-24T10:18:14.365Z","avatar_url":"https://github.com/unicodeveloper.png","language":"PHP","readme":"# laravel-feeder\n\n[![Latest Stable Version](https://poser.pugx.org/unicodeveloper/laravel-feeder/v/stable.svg)](https://packagist.org/packages/unicodeveloper/laravel-feeder)\n![](https://img.shields.io/badge/unicodeveloper-approved-brightgreen.svg)\n[![License](https://poser.pugx.org/unicodeveloper/laravel-feeder/license.svg)](LICENSE.md)\n[![Build Status](https://img.shields.io/travis/unicodeveloper/laravel-feeder.svg)](https://travis-ci.org/unicodeveloper/laravel-feeder)\n[![Quality Score](https://img.shields.io/scrutinizer/g/unicodeveloper/laravel-feeder.svg?style=flat-square)](https://scrutinizer-ci.com/g/unicodeveloper/laravel-feeder)\n[![Total Downloads](https://img.shields.io/packagist/dt/unicodeveloper/laravel-feeder.svg?style=flat-square)](https://packagist.org/packages/unicodeveloper/laravel-feeder)\n\n\u003e Laravel 5 Package to extract atom and rss feeds from any website in a very good readable format\n\n## Installation\n\n[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.\n\nTo get the latest version of Laravel Feeder, simply add the following line to the require block of your `composer.json` file.\n\n```\n\"unicodeveloper/laravel-feeder\": \"1.1.*\"\n```\n\nYou'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.\n\nOnce Laravel Feeder is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.\n\n* `Unicodeveloper\\LaravelFeeder\\LaravelFeederServiceProvider::class`\n\nYou can also use a Facade\n\n```php\n'aliases' =\u003e [\n    ...\n    'Feeder' =\u003e Unicodeveloper\\LaravelFeeder\\Facades\\LaravelFeederFacade::class,\n    ...\n]\n```\n\n## Configuration\n\nTo get started, you'll need to publish all vendor assets:\n\n```bash\n$ php artisan vendor:publish --provider=\"Unicodeveloper\\LaravelFeeder\\LaravelFeederServiceProvider\"\n```\n## Usage\n\nDownload RSS feed from URL:\n\n```php\n  $rss = Feeder::loadRss($url);\n```\n\nThe returned properties are SimpleXMLElement objects. Extracting\nthe information from the channel is easy:\n\n\n```php\n  echo 'Title: ', $rss-\u003etitle;\n  echo 'Description: ', $rss-\u003edescription;\n  echo 'Link: ', $rss-\u003elink;\n\n  foreach ($rss-\u003eitem as $item) {\n    echo 'Title: ', $item-\u003etitle;\n    echo 'Link: ', $item-\u003elink;\n    echo 'Timestamp: ', $item-\u003etimestamp;\n    echo 'Description ', $item-\u003edescription;\n    echo 'HTML encoded content: ', $item-\u003e{'content:encoded'};\n  }\n```\n\nDownload Atom feed from URL:\n\n```php\n  $atom = Feeder::loadAtom($url);\n```\n\n## Contributing\n\nPlease feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.\n\n## How can I thank you?\n\nWhy not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or HackerNews? Spread the word!\n\nDon't forget to [follow me on twitter](https://twitter.com/unicodeveloper)!\n\nThanks!\nProsper Otemuyiwa.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n## Security\n\nIf you discover any security related issues, please email [prosperotemuyiwa@gmail.com](prosperotemuyiwa@gmail.com) instead of using the issue tracker.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Flaravel-feeder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funicodeveloper%2Flaravel-feeder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Flaravel-feeder/lists"}