{"id":36992561,"url":"https://github.com/invokable/laravel-fullfeed","last_synced_at":"2026-01-13T23:44:43.408Z","repository":{"id":329887420,"uuid":"1120878817","full_name":"invokable/laravel-fullfeed","owner":"invokable","description":"Extracts the main content from web pages for use in feed readers","archived":false,"fork":false,"pushed_at":"2026-01-05T08:04:35.000Z","size":552,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-05T20:31:26.619Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/revolution/laravel-fullfeed","language":"PHP","has_issues":false,"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/invokable.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["invokable"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2025-12-22T05:02:19.000Z","updated_at":"2026-01-05T08:04:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/invokable/laravel-fullfeed","commit_stats":null,"previous_names":["invokable/laravel-fullfeed"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/invokable/laravel-fullfeed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/invokable%2Flaravel-fullfeed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/invokable%2Flaravel-fullfeed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/invokable%2Flaravel-fullfeed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/invokable%2Flaravel-fullfeed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/invokable","download_url":"https://codeload.github.com/invokable/laravel-fullfeed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/invokable%2Flaravel-fullfeed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2026-01-13T23:44:43.322Z","updated_at":"2026-01-13T23:44:43.396Z","avatar_url":"https://github.com/invokable.png","language":"PHP","funding_links":["https://github.com/sponsors/invokable"],"categories":[],"sub_categories":[],"readme":"# FullFeed\n\n[![tests](https://github.com/invokable/laravel-fullfeed/actions/workflows/tests.yml/badge.svg)](https://github.com/invokable/laravel-fullfeed/actions/workflows/tests.yml)\n\n## Overview\n\nFullFeed is a Laravel package that extracts the main content from web pages for use in feed readers.  \nIt uses site-specific rules defined in a JSON file to parse and retrieve exactly the content you need.\n\nWe've separated the FullFeed package from our private feed reader app and made it publicly available.\n\n## Requirements\n\n- PHP \u003e= 8.4\n    - Since using `Dom\\HTMLDocument`, must be 8.4 or higher.\n- Laravel \u003e= 12.x\n\n## Installation\n\n```shell\ncomposer require revolution/laravel-fullfeed\n```\n\nPublish config and site definition files\n\n```shell\nphp artisan vendor:publish --tag=fullfeed\n```\n\n`config/fullfeed.php` and `resources/fullfeed` will be created.\n\n### Update site definition files\n\nWhen updating via `composer update`, you can automatically publish the latest site definition files.  \nAdd the following to the `composer.json`\n\n```json\n        \"post-update-cmd\": [\n            \"@php artisan vendor:publish --tag=laravel-assets --ansi --force\",\n            \"@php artisan vendor:publish --tag=fullfeed-site --ansi --force\"\n        ],\n```\n\n## Configuration\n\nIf you want to add your own site rules, add them in `resources/fullfeed`.\n\n## Usage\n\n```php\nuse Revolution\\Fullfeed\\Facades\\FullFeed;\n\n$html = FullFeed::get($url);\n```\n\n## Testing\n\n```php\nuse Revolution\\Fullfeed\\Facades\\FullFeed;\n\nFullFeed::expects('get')\n    -\u003ewith('https://example.com/article/1')\n    -\u003eandReturn('\u003cdiv\u003eMain content\u003c/div\u003e');\n\n// Your test code here\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvokable%2Flaravel-fullfeed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finvokable%2Flaravel-fullfeed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvokable%2Flaravel-fullfeed/lists"}