{"id":36980071,"url":"https://github.com/thinkverse/well-known","last_synced_at":"2026-01-13T22:49:42.329Z","repository":{"id":57068889,"uuid":"418234327","full_name":"thinkverse/well-known","owner":"thinkverse","description":"A Laravel package for quickly adding .well-known URLs","archived":true,"fork":false,"pushed_at":"2022-09-13T02:24:36.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-19T00:18:50.498Z","etag":null,"topics":["laravel","laravel-package","php","well-known"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/thinkverse/well-known","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/thinkverse.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null},"funding":{"ko_fi":"thinkverse","custom":["https://www.paypal.me/thinkverse","https://buymeacoffee.com/thinkverse"]}},"created_at":"2021-10-17T19:25:46.000Z","updated_at":"2024-04-06T11:52:20.000Z","dependencies_parsed_at":"2022-08-24T10:20:40.477Z","dependency_job_id":null,"html_url":"https://github.com/thinkverse/well-known","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":"spatie/package-skeleton-laravel","purl":"pkg:github/thinkverse/well-known","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkverse%2Fwell-known","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkverse%2Fwell-known/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkverse%2Fwell-known/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkverse%2Fwell-known/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thinkverse","download_url":"https://codeload.github.com/thinkverse/well-known/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinkverse%2Fwell-known/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28403750,"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":["laravel","laravel-package","php","well-known"],"created_at":"2026-01-13T22:49:41.530Z","updated_at":"2026-01-13T22:49:42.323Z","avatar_url":"https://github.com/thinkverse.png","language":"PHP","funding_links":["https://ko-fi.com/thinkverse","https://www.paypal.me/thinkverse","https://buymeacoffee.com/thinkverse"],"categories":[],"sub_categories":[],"readme":"\u003e **Warning** Package is deprecated, it's recommended to add your `/.well-known` routes in your route files.\n\n# A Laravel package for quickly adding .well-known URLs\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/thinkverse/well-known.svg?style=flat-square)](https://packagist.org/packages/thinkverse/well-known)\n[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/thinkverse/well-known/run-tests?label=tests)](https://github.com/thinkverse/well-known/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/thinkverse/well-known/Check%20\u0026%20fix%20styling?label=code%20style)](https://github.com/thinkverse/well-known/actions?query=workflow%3A\"Check+%26+fix+styling\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/thinkverse/well-known.svg?style=flat-square)](https://packagist.org/packages/thinkverse/well-known)\n\n`well-known` is a Laravel package for quickly adding well-known locations ([RFC8615](https://datatracker.ietf.org/doc/html/rfc8615)) to a Laravel application, with support for redirects and static URLs.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require thinkverse/well-known\n```\n\nYou can publish the config file with:\n```bash\nphp artisan vendor:publish --tag=\"well-known-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\nreturn [\n    'redirects' =\u003e [\n        'change-password' =\u003e '/settings/security',\n    ],\n    'static' =\u003e [\n        'security.txt' =\u003e fn () =\u003e response('Hello world.'),\n    ],\n];\n```\n\n## Usage\n\nTo use `well-known`, install the package and publish the configuration. Now you can update, \nadd and or remove redirects and static .well-known URLs with ease.\n\nA registrar for some well-known URIs can be found at [iana.org/assignments/well-known-uris/](https://www.iana.org/assignments/well-known-uris/well-known-uris.xhtml).\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [thinkverse](https://github.com/thinkverse)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinkverse%2Fwell-known","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthinkverse%2Fwell-known","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinkverse%2Fwell-known/lists"}