{"id":16315013,"url":"https://github.com/zingimmick/laravel-flysystem-obs","last_synced_at":"2025-03-16T14:30:52.779Z","repository":{"id":38325588,"uuid":"371751066","full_name":"zingimmick/laravel-flysystem-obs","owner":"zingimmick","description":"OBS storage filesystem for Laravel","archived":false,"fork":false,"pushed_at":"2025-02-24T15:11:29.000Z","size":137,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T16:25:48.006Z","etag":null,"topics":["flysystem","laravel","obs"],"latest_commit_sha":null,"homepage":"","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/zingimmick.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"custom":"https://www.paypal.com/paypalme/zingimmick"}},"created_at":"2021-05-28T15:54:27.000Z","updated_at":"2025-02-24T15:11:36.000Z","dependencies_parsed_at":"2024-07-10T05:31:01.602Z","dependency_job_id":"b3bf095c-712a-442e-b3f5-257aba6f633f","html_url":"https://github.com/zingimmick/laravel-flysystem-obs","commit_stats":{"total_commits":110,"total_committers":4,"mean_commits":27.5,"dds":0.4181818181818182,"last_synced_commit":"68b0dfc860c020cad09a3ec96c82a4bfc5a7a7a3"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":"zingimmick/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-obs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-obs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-obs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-obs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zingimmick","download_url":"https://codeload.github.com/zingimmick/laravel-flysystem-obs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243818192,"owners_count":20352629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["flysystem","laravel","obs"],"created_at":"2024-10-10T21:55:51.238Z","updated_at":"2025-03-16T14:30:52.291Z","avatar_url":"https://github.com/zingimmick.png","language":"PHP","funding_links":["https://www.paypal.com/paypalme/zingimmick"],"categories":[],"sub_categories":[],"readme":"# Laravel Flysystem OBS\n\nOBS storage filesystem for Laravel based on [zing/flysystem-obs](https://github.com/zingimmick/flysystem-obs)\n\n[![Build Status](https://github.com/zingimmick/laravel-flysystem-obs/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/zingimmick/laravel-flysystem-obs/actions)\n[![Code Coverage](https://codecov.io/gh/zingimmick/laravel-flysystem-obs/branch/master/graph/badge.svg)](https://codecov.io/gh/zingimmick/laravel-flysystem-obs)\n[![Latest Stable Version](https://poser.pugx.org/zing/laravel-flysystem-obs/v/stable.svg)](https://packagist.org/packages/zing/laravel-flysystem-obs)\n[![Total Downloads](https://poser.pugx.org/zing/laravel-flysystem-obs/downloads)](https://packagist.org/packages/zing/laravel-flysystem-obs)\n[![Latest Unstable Version](https://poser.pugx.org/zing/laravel-flysystem-obs/v/unstable.svg)](https://packagist.org/packages/zing/laravel-flysystem-obs)\n[![License](https://poser.pugx.org/zing/laravel-flysystem-obs/license)](https://packagist.org/packages/zing/laravel-flysystem-obs)\n\n\u003e **Requires**\n\u003e - **[PHP 8.0+](https://php.net/releases/)**\n\u003e - **[Laravel 9.0+](https://laravel.com/docs/releases)**\n\n## Version Information\n\n| Version | Illuminate | PHP Version | Status                  |\n|:--------|:-----------|:------------|:------------------------|\n| 2.x     | 9.x        | \u003e= 8.0      | Active support :rocket: |\n| 1.x     | 6.x - 8.x  | \u003e= 7.2      | Active support          |\n\nRequire Laravel Flysystem OBS using [Composer](https://getcomposer.org):\n\n```bash\ncomposer require zing/laravel-flysystem-obs\n```\n\n## Configuration\n\n```php\nreturn [\n    // ...\n    'disks' =\u003e [\n        // ...\n        'obs' =\u003e [\n            'driver' =\u003e 'obs',\n            'root' =\u003e '',\n            'key' =\u003e env('OBS_KEY'),\n            'secret' =\u003e env('OBS_SECRET'),\n            'bucket' =\u003e env('OBS_BUCKET'),\n            'endpoint' =\u003e env('OBS_ENDPOINT'),\n            'is_cname' =\u003e env('OBS_IS_CNAME', false),\n            'security_token' =\u003e env('OBS_SECURITY_TOKEN'),\n        ],\n    ]\n];\n```\n\n## Environment\n\n```dotenv\nOBS_KEY=\nOBS_SECRET=\nOBS_BUCKET=\nOBS_ENDPOINT=\nOBS_IS_CNAME=false\nOBS_SECURITY_TOKEN=\n```\n\n## License\n\nLaravel Flysystem OBS is an open-sourced software licensed under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzingimmick%2Flaravel-flysystem-obs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzingimmick%2Flaravel-flysystem-obs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzingimmick%2Flaravel-flysystem-obs/lists"}