{"id":15106032,"url":"https://github.com/mrgarest/seoforge","last_synced_at":"2025-07-28T12:03:12.625Z","repository":{"id":257768713,"uuid":"859302367","full_name":"mrgarest/seoforge","owner":"mrgarest","description":"Simple Laravel SEO Package","archived":false,"fork":false,"pushed_at":"2025-05-03T20:01:01.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-08T03:35:21.317Z","etag":null,"topics":["json-ld","json-schema","laravel","laravel-package","php","seo"],"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/mrgarest.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}},"created_at":"2024-09-18T12:41:24.000Z","updated_at":"2025-05-03T19:59:51.000Z","dependencies_parsed_at":"2025-02-08T04:31:16.781Z","dependency_job_id":"b130cf8f-479a-4412-b549-9953392f1f94","html_url":"https://github.com/mrgarest/seoforge","commit_stats":null,"previous_names":["mrgarest/seoforge"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mrgarest/seoforge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrgarest%2Fseoforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrgarest%2Fseoforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrgarest%2Fseoforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrgarest%2Fseoforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrgarest","download_url":"https://codeload.github.com/mrgarest/seoforge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrgarest%2Fseoforge/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267512943,"owners_count":24099628,"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","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["json-ld","json-schema","laravel","laravel-package","php","seo"],"created_at":"2024-09-25T21:00:33.359Z","updated_at":"2025-07-28T12:03:12.561Z","avatar_url":"https://github.com/mrgarest.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SeoForge\n\nA simple SEO package for Laravel that allows you to quickly create meta tags, json-ld, sitemaps, and RSS feeds.\n\n## Installation\n\nYou can install the package via composer:\n\n```\ncomposer require mrgarest/seoforge\n```\n## Example\n\n### Meta tags\n\n```php\nuse MrGarest\\SeoForge\\MetaTags;\n```\n\n```php\n$seo = new MetaTags();\n$seo-\u003esetLocale(str_replace('_', '-', app()-\u003egetLocale()));\n$seo-\u003esetTitle('SeoForge');\n$seo-\u003esetDescription('Simple Laravel SEO Package');\n$seo-\u003esetType('website');\n$seo-\u003esetUrl(route('home'));\n\nreturn view('welcome', [\n    'seo' =\u003e $seo-\u003ebuild()\n]);\n```\n\n### Json-ld\n\n```php\nuse MrGarest\\SeoForge\\Schema\\ArticleSchema;\n```\n\n```php\n$seo = new ArticleSchema(ArticleSchema::TYPE_ARTICLE);\n$seo-\u003esetTitle('SeoForge');\n$seo-\u003esetDescription('Simple Laravel SEO Package');\n$seo-\u003esetDate('2024-09-18T15:24:18+00:00');\n$seo-\u003esetUrl('https://example.com/seoforge');\n$seo-\u003esetAuthor(ArticleSchema::AUTHOR_TYPE_PERSON, 'Garest', 'https://github.com/mrgarest');\n$seo-\u003esetPublisher('Garest', 'https://example.com/seoforge.png');\n$seo-\u003eaddImage('https://example.com/seoforge.png');\n\nreturn view('welcome', [\n    'seo' =\u003e $seo-\u003ebuild()\n]);\n```\n\n### Sitemap\n\n```php\nuse MrGarest\\SeoForge\\Sitemap;\n```\n\n```php\n$seo = new Sitemap();\n$seo-\u003eaddItem(route('home'), '2024-09-18T15:24:18+00:00', null, 1);\n$seo-\u003eaddItem(route('news'), '2024-09-18T15:24:18+00:00', null, 0.8);\n$seo-\u003eaddItem(route('gallery'), '2024-09-18T15:24:18+00:00', null, 0.6);\nreturn $seo-\u003ebuild();\n```\n\n### RSS\n\n```php\nuse MrGarest\\SeoForge\\Rss;\n```\n\n```php\n$seo = new Rss();\n$seo-\u003esetTitle('SeoForge');\n$seo-\u003esetLanguage('en');\n$seo-\u003esetDescription('Simple Laravel SEO Package');\n$seo-\u003esetUrl(route('home'));\n$seo-\u003esetImage('https://example.com/seoforge.png', 'SeoForge', route('home'));\n$seo-\u003eaddItem('SeoForge', 'Simple Laravel SEO Package', 'A simple SEO package for Laravel that allows you to quickly create meta tags, json-ld, sitemaps, and RSS feeds.', 'https://example.com/seoforge', '2024-09-18T15:24:18+00:00', 'https://example.com/seoforge1.png');\n\nreturn $seo-\u003ebuild();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrgarest%2Fseoforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrgarest%2Fseoforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrgarest%2Fseoforge/lists"}