{"id":36629012,"url":"https://github.com/pdsinterop/flysystem-nextcloud","last_synced_at":"2026-01-12T09:35:19.511Z","repository":{"id":40327045,"uuid":"315380753","full_name":"pdsinterop/flysystem-nextcloud","owner":"pdsinterop","description":"Flysystem adapter for the Nextcloud filesystem","archived":false,"fork":false,"pushed_at":"2025-05-16T08:59:33.000Z","size":66,"stargazers_count":9,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-04T03:27:51.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pdsinterop.org/flysystem-nextcloud/","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":null,"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}},"created_at":"2020-11-23T16:50:57.000Z","updated_at":"2025-10-31T14:06:32.000Z","dependencies_parsed_at":"2024-02-05T14:40:46.075Z","dependency_job_id":"4c53cc4e-2562-4e6c-afc8-b3434426029f","html_url":"https://github.com/pdsinterop/flysystem-nextcloud","commit_stats":{"total_commits":51,"total_committers":3,"mean_commits":17.0,"dds":"0.27450980392156865","last_synced_commit":"d1a1622941395a717ee3b80480a382372d4a9c10"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/pdsinterop/flysystem-nextcloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fflysystem-nextcloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fflysystem-nextcloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fflysystem-nextcloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fflysystem-nextcloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pdsinterop","download_url":"https://codeload.github.com/pdsinterop/flysystem-nextcloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pdsinterop%2Fflysystem-nextcloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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-12T09:35:19.421Z","updated_at":"2026-01-12T09:35:19.493Z","avatar_url":"https://github.com/pdsinterop.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flysystem Nextcloud\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_Flysystem adapter for the Nextcloud filesystem_\n\n## Table of Contents\n\n\u003c!-- toc --\u003e\n\n- [Background](#background)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Develop](#develop)\n- [Contribute](#contribute)\n- [License](#license)\n\n\u003c!-- tocstop --\u003e\n\n## Background\n\nThis project is part of the PHP stack of projects by PDS Interop. It is used by\nthe Solid-Nextcloud app.\n\nAs the functionality seemed useful for other projects, it was implemented as a\nseparate package.\n\n## Installation\n\nThe advised install method is through composer:\n\n```\ncomposer require pdsinterop/flysystem-nextcloud\n```\n\n## Usage\n\nThis package offers features to interact with the Filesystem provided by\nNextcloud through the Flysystem API.\n\nTo use the adapter, instantiate it and add it to a Flysystem filesystem:\n\n```php\n\u003c?php\n/** @var IRootFolder $rootFolder */\n$folder = $rootFolder-\u003egetUserFolder('userId')-\u003eget('/some/directory');\n\n// Create the Nextcloud Adapter\n$adapter = new \\Pdsinterop\\Flysystem\\Adapter\\Nextcloud($folder);\n\n// Create Flysystem as usual, adding the Adapter\n$filesystem = new \\League\\Flysystem\\Filesystem($adapter);\n\n// Read the contents of a file\n$content = $filesystem-\u003eread('/some.file');\n```\n\n## Develop\n\n- Do not forget to install the required dependencies using `composer`.\n\n- Most of the logic here involves Nextcloud and/or FlySystem. You'll want to familiarise yourself with their workings.\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/flysystem-nextcloud/contributors\n[issues-link]: https://github.com/pdsinterop/flysystem-nextcloud/issues\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/flysystem-nextcloud.svg\n[maintained-shield]: https://img.shields.io/maintenance/yes/2025\n[pdsinterop-shield]: https://img.shields.io/badge/-PDS%20Interop-7C4DFF.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[releases-page]: https://github.com/pdsinterop/flysystem-rdf/releases\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/flysystem-nextcloud\n[version-shield]: https://img.shields.io/github/v/release/pdsinterop/flysystem-nextcloud?sort=semver\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdsinterop%2Fflysystem-nextcloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpdsinterop%2Fflysystem-nextcloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpdsinterop%2Fflysystem-nextcloud/lists"}