{"id":21543241,"url":"https://github.com/visuellverstehen/statamic-pixxio-flysystem","last_synced_at":"2026-02-05T20:32:20.937Z","repository":{"id":158031022,"uuid":"633291987","full_name":"visuellverstehen/statamic-pixxio-flysystem","owner":"visuellverstehen","description":"A Statamic addon which provides a Flysystem Adapter for the Pixxio API","archived":false,"fork":false,"pushed_at":"2025-01-21T14:25:59.000Z","size":69,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-07T17:49:15.619Z","etag":null,"topics":["filesystem","laravel","pixxio","statamic"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/visuellverstehen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-04-27T07:29:58.000Z","updated_at":"2024-06-21T09:02:40.000Z","dependencies_parsed_at":"2024-04-19T11:35:03.102Z","dependency_job_id":"a3b6a6b6-ea1e-42b1-8ad3-521a81e8e7ea","html_url":"https://github.com/visuellverstehen/statamic-pixxio-flysystem","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/visuellverstehen/statamic-pixxio-flysystem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visuellverstehen%2Fstatamic-pixxio-flysystem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visuellverstehen%2Fstatamic-pixxio-flysystem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visuellverstehen%2Fstatamic-pixxio-flysystem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visuellverstehen%2Fstatamic-pixxio-flysystem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/visuellverstehen","download_url":"https://codeload.github.com/visuellverstehen/statamic-pixxio-flysystem/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/visuellverstehen%2Fstatamic-pixxio-flysystem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29133396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T19:36:52.185Z","status":"ssl_error","status_checked_at":"2026-02-05T19:35:40.941Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["filesystem","laravel","pixxio","statamic"],"created_at":"2024-11-24T05:13:36.714Z","updated_at":"2026-02-05T20:32:20.918Z","avatar_url":"https://github.com/visuellverstehen.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Statamic Pixxio Flysystem\n\n![Statamic 3.4+](https://img.shields.io/badge/Statamic-4.0+-FF269E?style=for-the-badge\u0026link=https://statamic.com)\n\n\u003e Statamic Pixxio Flysystem is a Statamic addon that does something pretty neat.\n\n## Features\n- Provide a Flysystem Adapter for Pixxio\n- Exclude specific directories from the asset-container.\n\n---\n## Licensing\n\nPixxio Flysystem is a commercial addon - you **must purchase a license** via the [Statamic Marketplace](https://statamic.com/addons/visuellverstehen/pixxio-flysystem) to use it in a production environment.\n\n---\n\n## How to Install\n\n### Run the following command from your project root:\n\n``` bash\ncomposer require visuellverstehen/statamic-pixxio-flysystem\n```\n\n### Add your Pixxio credentials to config/filesystems.php\n\n``` php\n'disks' =\u003e [\n    'pixxio' =\u003e [\n        'driver' =\u003e 'pixxio',\n        'api_key' =\u003e env('PIXXIO_API_KEY'),\n        'refresh_token' =\u003e env('PIXXIO_REFRESH_TOKEN'),\n        'endpoint' =\u003e env('PIXXIO_ENDPOINT'),\n    ],\n],\n```\n\n### Run migrations\n\n``` bash\nphp artisan migrate\n```\n\n### Edit blueprint\n\nAdd `alt`, `copyright` and `description` fields to the asset-container blueprint.\n\n### Run synchronization script:\n\n``` bash\nphp artisan pixxio:sync\n```\nIf you wish to only import newly added files you can use the `--new` option.\n``` bash\nphp artisan pixxio:sync --new\n```\n\nIn order to keep the database updated schedule a task that runs synchronization script regularly.\n\n---\n## Configurations\n\n``` bash\nphp artisan vendor:publish --provider=\"VV\\PixxioFlysystem\\ServiceProvider\" --tag=\"flysystem-pixxio-config\"\n```\n\nExclude certain directories in config/flysystem-pixxio.php\n\n``` php\n'exclude' =\u003e [\n        'directories' =\u003e [\n            '/home',\n        ],\n    ],\n```\n\n---\n## How to Use\n\n- Simply create an Asset-Container with pixxio as your driver.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisuellverstehen%2Fstatamic-pixxio-flysystem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvisuellverstehen%2Fstatamic-pixxio-flysystem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvisuellverstehen%2Fstatamic-pixxio-flysystem/lists"}