{"id":36428191,"url":"https://github.com/pdsinterop/php-solid-auth","last_synced_at":"2026-01-11T18:16:04.529Z","repository":{"id":45949084,"uuid":"291068660","full_name":"pdsinterop/php-solid-auth","owner":"pdsinterop","description":"OAuth2, OpenID and OIDC for Solid Server implementations","archived":false,"fork":false,"pushed_at":"2025-12-16T10:48:36.000Z","size":322,"stargazers_count":3,"open_issues_count":6,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-19T04:01:01.319Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pdsinterop.org/php-solid-auth/","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/pdsinterop.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2020-08-28T14:34:33.000Z","updated_at":"2025-12-16T10:48:38.000Z","dependencies_parsed_at":"2023-11-16T13:43:10.214Z","dependency_job_id":"684e9598-a43a-4d9a-8263-a7518600a49f","html_url":"https://github.com/pdsinterop/php-solid-auth","commit_stats":{"total_commits":190,"total_committers":6,"mean_commits":"31.666666666666668","dds":0.6473684210526316,"last_synced_commit":"797e19f74bee5593da320ed69f8ebfaefff99d03"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/pdsinterop/php-solid-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fphp-solid-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fphp-solid-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fphp-solid-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fphp-solid-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pdsinterop","download_url":"https://codeload.github.com/pdsinterop/php-solid-auth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fphp-solid-auth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28317697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: 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-11T18:16:03.721Z","updated_at":"2026-01-11T18:16:04.516Z","avatar_url":"https://github.com/pdsinterop.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Solid Auth\n\n[![Project stage: Development][project-stage-badge: Development]][project-stage-page]\n[![License][license-shield]][license-link]\n[![Latest Version][version-shield]][version-link]\n![Maintained][maintained-shield]\n\n[![PDS Interop][pdsinterop-shield]][pdsinterop-site]\n[![standard-readme compliant][standard-readme-shield]][standard-readme-link]\n[![keep-a-changelog compliant][keep-a-changelog-shield]][keep-a-changelog-link]\n\n_OAuth2, OpenID and OIDC for Solid Server implementations_\n\nThis project contains a glue layer to `league/oauth2-server` and custom code to\nprovide responses to all authentication and authorization requests made to a \nSolid Server that require OAuth2, OpenID Connect, or meta-data for either.\n\n## Table of Contents\n\n\u003c!-- toc --\u003e\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [API](#api)\n- [Contribute](#contribute)\n- [License](#license)\n\n\u003c!-- tocstop --\u003e\n\n## Installation\n\nThe advised install method is through composer:\n\n```\ncomposer require pdsinterop/solid-auth\n```\n\nPHP version 7.2 and higher is supported. The [`mbstring`](https://www.php.net/manual/en/book.mbstring.php)\nand [`json`](https://www.php.net/manual/en/book.json.php) extensions need to be \nenabled in order for this package to work.\n\n## Usage\n\nThis package has responses to request for:\n\n- OAuth2 Token\n- OpenID Connect Authorization\n- Server configuration (usually made to `/.well-known/openid-configuration`) \n\nThe classes that provide this functionality work with any [PSR-7](http://www.php-fig.org/psr/psr-7/).\ncompliant Request and Response objects.(i.e. classes that implement the \n`Psr\\Http\\Message\\ResponseInterface` and  `Psr\\Http\\Message\\ServerRequestInterface`, respectively).\n\nThis functionality is exposed by the `Pdsinterop\\Solid\\Auth\\Server`, with the\nhelp of `League\\OAuth2\\Server\\AuthorizationServer`.\n\nBesides a Request, Response and AuthorizationServer, the `Pdsinterop\\Solid\\Auth\\Server` requires a Configuration and User object.\n\nA [full example](./example.php) has been provided to help you understand how to integrate this library.\n\nSee the \"API\" section for detailed usage examples.\n\n## API\n\n    @TODO: List API per class\n\n## Contribute\n\nQuestions or feedback can be given by [opening an issue on GitHub][issues-link].\n\nAll PDS Interop projects are open source and community-friendly.\nAny contribution is welcome!\nFor more details read the [contribution guidelines][contributing-link].\n\nAll PDS Interop projects adhere to [the Code Manifesto](http://codemanifesto.com)\nas its [code-of-conduct][code-of-conduct]. Contributors are expected to abide by its terms.\n\nThere is [a list of all contributors on GitHub][contributors-page].\n\nFor a list of changes see the [CHANGELOG][changelog] or [the GitHub releases page][releases-page].\n\n## License\n\nAll code created by PDS Interop is licensed under the [MIT License][license-link].\n\n[changelog]: CHANGELOG.md\n[code-of-conduct]: CODE_OF_CONDUCT.md\n[contributing-link]: CONTRIBUTING.md\n[contributors-page]: https://github.com/pdsinterop/php-solid-auth/contributors\n[issues-link]: https://github.com/pdsinterop/php-solid-auth/issues\n[releases-page]: https://github.com/pdsinterop/php-solid-auth/releases\n[keep-a-changelog-link]: https://keepachangelog.com/\n[keep-a-changelog-shield]: https://img.shields.io/badge/Keep%20a%20Changelog-f15d30.svg?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHZpZXdCb3g9IjAgMCAxODcgMTg1Ij48cGF0aCBkPSJNNjIgN2MtMTUgMy0yOCAxMC0zNyAyMmExMjIgMTIyIDAgMDAtMTggOTEgNzQgNzQgMCAwMDE2IDM4YzYgOSAxNCAxNSAyNCAxOGE4OSA4OSAwIDAwMjQgNCA0NSA0NSAwIDAwNiAwbDMtMSAxMy0xYTE1OCAxNTggMCAwMDU1LTE3IDYzIDYzIDAgMDAzNS01MiAzNCAzNCAwIDAwLTEtNWMtMy0xOC05LTMzLTE5LTQ3LTEyLTE3LTI0LTI4LTM4LTM3QTg1IDg1IDAgMDA2MiA3em0zMCA4YzIwIDQgMzggMTQgNTMgMzEgMTcgMTggMjYgMzcgMjkgNTh2MTJjLTMgMTctMTMgMzAtMjggMzhhMTU1IDE1NSAwIDAxLTUzIDE2bC0xMyAyaC0xYTUxIDUxIDAgMDEtMTItMWwtMTctMmMtMTMtNC0yMy0xMi0yOS0yNy01LTEyLTgtMjQtOC0zOWExMzMgMTMzIDAgMDE4LTUwYzUtMTMgMTEtMjYgMjYtMzMgMTQtNyAyOS05IDQ1LTV6TTQwIDQ1YTk0IDk0IDAgMDAtMTcgNTQgNzUgNzUgMCAwMDYgMzJjOCAxOSAyMiAzMSA0MiAzMiAyMSAyIDQxLTIgNjAtMTRhNjAgNjAgMCAwMDIxLTE5IDUzIDUzIDAgMDA5LTI5YzAtMTYtOC0zMy0yMy01MWE0NyA0NyAwIDAwLTUtNWMtMjMtMjAtNDUtMjYtNjctMTgtMTIgNC0yMCA5LTI2IDE4em0xMDggNzZhNTAgNTAgMCAwMS0yMSAyMmMtMTcgOS0zMiAxMy00OCAxMy0xMSAwLTIxLTMtMzAtOS01LTMtOS05LTEzLTE2YTgxIDgxIDAgMDEtNi0zMiA5NCA5NCAwIDAxOC0zNSA5MCA5MCAwIDAxNi0xMmwxLTJjNS05IDEzLTEzIDIzLTE2IDE2LTUgMzItMyA1MCA5IDEzIDggMjMgMjAgMzAgMzYgNyAxNSA3IDI5IDAgNDJ6bS00My03M2MtMTctOC0zMy02LTQ2IDUtMTAgOC0xNiAyMC0xOSAzN2E1NCA1NCAwIDAwNSAzNGM3IDE1IDIwIDIzIDM3IDIyIDIyLTEgMzgtOSA0OC0yNGE0MSA0MSAwIDAwOC0yNCA0MyA0MyAwIDAwLTEtMTJjLTYtMTgtMTYtMzEtMzItMzh6bS0yMyA5MWgtMWMtNyAwLTE0LTItMjEtN2EyNyAyNyAwIDAxLTEwLTEzIDU3IDU3IDAgMDEtNC0yMCA2MyA2MyAwIDAxNi0yNWM1LTEyIDEyLTE5IDI0LTIxIDktMyAxOC0yIDI3IDIgMTQgNiAyMyAxOCAyNyAzM3MtMiAzMS0xNiA0MGMtMTEgOC0yMSAxMS0zMiAxMXptMS0zNHYxNGgtOFY2OGg4djI4bDEwLTEwaDExbC0xNCAxNSAxNyAxOEg5NnoiLz48L3N2Zz4K\n[license-link]: ./LICENSE\n[license-shield]: https://img.shields.io/github/license/pdsinterop/php-solid-auth.svg\n[maintained-shield]: https://img.shields.io/maintenance/yes/2024.svg\n[pdsinterop-shield]: https://img.shields.io/badge/-PDS%20Interop-gray.svg?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii01IC01IDExMCAxMTAiIGZpbGw9IiNGRkYiIHN0cm9rZS13aWR0aD0iMCI+CiAgICA8cGF0aCBkPSJNLTEgNTJoMTdhMzcuNSAzNC41IDAgMDAyNS41IDMxLjE1di0xMy43NWEyMC43NSAyMSAwIDAxOC41LTQwLjI1IDIwLjc1IDIxIDAgMDE4LjUgNDAuMjV2MTMuNzVhMzcgMzQuNSAwIDAwMjUuNS0zMS4xNWgxN2EyMiAyMS4xNSAwIDAxLTEwMiAweiIvPgogICAgPHBhdGggZD0iTSAxMDEgNDhhMi43NyAyLjY3IDAgMDAtMTAyIDBoIDE3YTIuOTcgMi44IDAgMDE2OCAweiIvPgo8L3N2Zz4K\n[pdsinterop-site]: https://pdsinterop.org/\n[project-stage-badge: Development]: https://img.shields.io/badge/Project%20Stage-Development-yellowgreen.svg\n[project-stage-page]: https://blog.pother.ca/project-stages/\n[standard-readme-link]: https://github.com/RichardLitt/standard-readme\n[standard-readme-shield]: https://img.shields.io/badge/-Standard%20Readme-brightgreen.svg\n[version-link]: https://packagist.org/packages/pdsinterop/solid-auth\n[version-shield]: https://img.shields.io/github/v/release/pdsinterop/php-solid-auth.svg?sort=semver\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdsinterop%2Fphp-solid-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdsinterop%2Fphp-solid-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdsinterop%2Fphp-solid-auth/lists"}