{"id":41214929,"url":"https://github.com/phore/phore-objectstore","last_synced_at":"2026-01-22T23:58:38.930Z","repository":{"id":57039202,"uuid":"147478831","full_name":"phore/phore-objectstore","owner":"phore","description":"A datastore (bucket) storage with drivers for filesystem, google cloud, aws","archived":false,"fork":false,"pushed_at":"2024-07-25T11:07:02.000Z","size":191,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-21T17:48:02.274Z","etag":null,"topics":["bucket","cloud","objectstore"],"latest_commit_sha":null,"homepage":"https://infracamp.org/phore/","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/phore.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":"2018-09-05T07:36:08.000Z","updated_at":"2024-07-25T11:07:06.000Z","dependencies_parsed_at":"2024-07-25T12:30:01.531Z","dependency_job_id":"b97a3adb-4063-4d8b-a76a-9510de4bcfdc","html_url":"https://github.com/phore/phore-objectstore","commit_stats":{"total_commits":103,"total_committers":4,"mean_commits":25.75,"dds":0.6213592233009708,"last_synced_commit":"f4df13449e0e656a906c6951fb7474e9d7d6fa02"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/phore/phore-objectstore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-objectstore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-objectstore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-objectstore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-objectstore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phore","download_url":"https://codeload.github.com/phore/phore-objectstore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phore%2Fphore-objectstore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28675276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"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":["bucket","cloud","objectstore"],"created_at":"2026-01-22T23:58:38.215Z","updated_at":"2026-01-22T23:58:38.926Z","avatar_url":"https://github.com/phore.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ObjectStore - Wrapper for various cloud based buckets\n\n![tests](https://github.com/phore/phore-objectstore/workflows/tests/badge.svg)\n\n## Install\n\n```\ncomposer requre phore/objectstore\n```\n\n## Basic usage\n\n```php\n$store = new ObjectStore(\\Phore\\ObjectStore\\ObjectStoreDriverFactory::Build(\"gcs://\u003cbucket-name\u003e?keyfile=/run/secrets/google-key-1\"));\n```\n\n\n```php\n$store = new ObjectStore(new GoogleCloudStoreDriver(__DIR__ . \"/file/to/identity.json\", \"bucketName\"));\n\n$store-\u003eobject(\"object/some.json\")-\u003eput(\"Some Data\");\n\nif ($store-\u003ehas(\"object/some.json\"))\n    echo \"Object existing\";\n\necho $store-\u003eobject(\"object/some.json\")-\u003eget();\n```\n\n\n## Driver\n\nThe object store can be created with\n\n```php\n$objectStore = ObjectStore::Connect('gcs://some-bucket?keyfile=/run/secrets/xyz');\n```\n\nAvailable Drivers: [Configuration options](README_CONNECT_SETTINGS.md)\n\n| driver | driver class | example |\n|--------|-------------|---------|\n| Google Bucket                                                                 | `PhoreGoogleCloudStoreDriver`     | `gcs://\u003cbucket-name\u003e?keyfile=/run/secrets/google-key-1` |\n| Google Bucket Native Driver (Requires `google/cloud-storage`)                 | `GoogleCloudStoreDriver`          | `gcsnd://\u003cbucket-name\u003e?keyfile=/run/secrets/google-key-1` |\n| Azure Block Storage                                                           | `--`          | `azbs://\u003cbucket-name\u003e?account=\u003caccount\u003e\u0026keyfile=/run/secrets/az-key-1` |\n| Azure Block Storage Native Driver (Requires `microsoft/azure-storage-blob`)   | `AzureObjectStoreDriver`          | `azbsnd://\u003cbucket-name\u003e?account=\u003caccount\u003e\u0026keyfile=/run/secrets/az-key-1` |\n| AWS S3 Block Storage Native Driver (Requires `aws/aws-sdk-php`)               | `S3ObjectStoreDriver`             | `s3nd://\u003cbucket-name\u003e?account=\u003caccountId\u003e\u0026keyfile=/run/secrets/keyfile\u0026region=\u003cregion\u003e` |\n| Filesystem driver                                                             | `FileSystemObjectStoreDriver`     | `file://path/` |\n   \n   \nSee the [Configuration options page](README_CONNECT_SETTINGS.md) for full driver documentation\n\n## Develop\n\nThe google native drivers require a secret as service account. Create the secret using \n\n```\n./kickstart.sh secrets edit google_test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphore%2Fphore-objectstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphore%2Fphore-objectstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphore%2Fphore-objectstore/lists"}