{"id":16315016,"url":"https://github.com/zingimmick/laravel-flysystem-oss","last_synced_at":"2025-03-20T22:30:36.334Z","repository":{"id":38327853,"uuid":"449753843","full_name":"zingimmick/laravel-flysystem-oss","owner":"zingimmick","description":"OSS storage filesystem for Laravel","archived":false,"fork":false,"pushed_at":"2024-08-21T23:24:34.000Z","size":104,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-11T21:55:52.039Z","etag":null,"topics":["flysystem","laravel","oss"],"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":"2022-01-19T15:45:27.000Z","updated_at":"2024-08-21T23:24:38.000Z","dependencies_parsed_at":"2023-02-17T09:30:48.907Z","dependency_job_id":"5ac8972b-aa1e-47f2-b588-b8df3a7f857a","html_url":"https://github.com/zingimmick/laravel-flysystem-oss","commit_stats":{"total_commits":64,"total_committers":4,"mean_commits":16.0,"dds":0.453125,"last_synced_commit":"f7d289616fb043be585a1071ffa7060a1278008d"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":"zingimmick/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-oss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-oss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-oss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-oss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zingimmick","download_url":"https://codeload.github.com/zingimmick/laravel-flysystem-oss/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221809170,"owners_count":16883869,"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","oss"],"created_at":"2024-10-10T21:55:51.964Z","updated_at":"2024-10-28T08:45:42.165Z","avatar_url":"https://github.com/zingimmick.png","language":"PHP","funding_links":["https://www.paypal.com/paypalme/zingimmick"],"categories":[],"sub_categories":[],"readme":"# Laravel Flysystem OSS\n\nOSS storage filesystem for Laravel based on [zing/flysystem-oss](https://github.com/zingimmick/flysystem-oss)\n\n[![Build Status](https://github.com/zingimmick/laravel-flysystem-oss/actions/workflows/tests.yml/badge.svg?banch=master)](https://github.com/zingimmick/laravel-flysystem-oss/actions)\n[![Code Coverage](https://codecov.io/gh/zingimmick/laravel-flysystem-oss/branch/master/graph/badge.svg)](https://codecov.io/gh/zingimmick/laravel-flysystem-oss)\n[![Latest Stable Version](https://poser.pugx.org/zing/laravel-flysystem-oss/v/stable.svg)](https://packagist.org/packages/zing/laravel-flysystem-oss)\n[![Total Downloads](https://poser.pugx.org/zing/laravel-flysystem-oss/downloads)](https://packagist.org/packages/zing/laravel-flysystem-oss)\n[![Latest Unstable Version](https://poser.pugx.org/zing/laravel-flysystem-oss/v/unstable.svg)](https://packagist.org/packages/zing/laravel-flysystem-oss)\n[![License](https://poser.pugx.org/zing/laravel-flysystem-oss/license)](https://packagist.org/packages/zing/laravel-flysystem-oss)\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 OSS using [Composer](https://getcomposer.org):\n\n```bash\ncomposer require zing/laravel-flysystem-oss\n```\n\n## Configuration\n\n```php\nreturn [\n    // ...\n    'disks' =\u003e [\n        // ...\n        'oss' =\u003e [\n            'driver' =\u003e 'oss',\n            'root' =\u003e '',\n            'access_key_id' =\u003e env('OSS_ACCESS_KEY_ID'),\n            'access_key_secret' =\u003e env('OSS_ACCESS_KEY_SECRET'),\n            'bucket' =\u003e env('OSS_BUCKET'),\n            'endpoint' =\u003e env('OSS_ENDPOINT'),\n            'is_cname' =\u003e env('OSS_IS_CNAME', false),\n            'security_token' =\u003e env('OSS_SECURITY_TOKEN'),\n        ],\n    ]\n];\n```\n\n## Environment\n\n```dotenv\nOSS_ACCESS_KEY_ID=\nOSS_ACCESS_KEY_SECRET=\nOSS_BUCKET=\nOSS_ENDPOINT=\nOSS_IS_CNAME=false\nOSS_SECURITY_TOKEN=\n```\n\n## License\n\nLaravel Flysystem OSS 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-oss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzingimmick%2Flaravel-flysystem-oss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzingimmick%2Flaravel-flysystem-oss/lists"}