{"id":16315007,"url":"https://github.com/zingimmick/laravel-flysystem-tos","last_synced_at":"2025-10-07T22:21:20.900Z","repository":{"id":230254095,"uuid":"777078763","full_name":"zingimmick/laravel-flysystem-tos","owner":"zingimmick","description":"TOS storage filesystem for Laravel","archived":false,"fork":false,"pushed_at":"2025-02-09T06:28:30.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"2.x","last_synced_at":"2025-02-09T07:24:47.312Z","etag":null,"topics":["flysystem","laravel","tos"],"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":"2024-03-25T06:42:36.000Z","updated_at":"2025-02-09T06:28:34.000Z","dependencies_parsed_at":"2024-06-03T11:26:48.859Z","dependency_job_id":"348d1145-14dd-48ef-9d98-36d18840722f","html_url":"https://github.com/zingimmick/laravel-flysystem-tos","commit_stats":null,"previous_names":["zingimmick/laravel-flysystem-tos"],"tags_count":3,"template":false,"template_full_name":"zingimmick/package-skeleton-laravel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-tos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-tos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-tos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zingimmick%2Flaravel-flysystem-tos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zingimmick","download_url":"https://codeload.github.com/zingimmick/laravel-flysystem-tos/tar.gz/refs/heads/2.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238183495,"owners_count":19430126,"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","tos"],"created_at":"2024-10-10T21:55:50.890Z","updated_at":"2025-10-07T22:21:15.863Z","avatar_url":"https://github.com/zingimmick.png","language":"PHP","funding_links":["https://www.paypal.com/paypalme/zingimmick"],"categories":[],"sub_categories":[],"readme":"# Laravel Flysystem TOS\n\nTOS storage filesystem for Laravel based on [zing/flysystem-tos](https://github.com/zingimmick/flysystem-tos)\n\n[![Build Status](https://github.com/zingimmick/laravel-flysystem-tos/actions/workflows/tests.yml/badge.svg?branch=2.x)](https://github.com/zingimmick/laravel-flysystem-tos/actions)\n[![Code Coverage](https://codecov.io/gh/zingimmick/laravel-flysystem-tos/branch/2.x/graph/badge.svg)](https://codecov.io/gh/zingimmick/laravel-flysystem-tos)\n[![Latest Stable Version](https://poser.pugx.org/zing/laravel-flysystem-tos/v/stable.svg)](https://packagist.org/packages/zing/laravel-flysystem-tos)\n[![Total Downloads](https://poser.pugx.org/zing/laravel-flysystem-tos/downloads)](https://packagist.org/packages/zing/laravel-flysystem-tos)\n[![Latest Unstable Version](https://poser.pugx.org/zing/laravel-flysystem-tos/v/unstable.svg)](https://packagist.org/packages/zing/laravel-flysystem-tos)\n[![License](https://poser.pugx.org/zing/laravel-flysystem-tos/license)](https://packagist.org/packages/zing/laravel-flysystem-tos)\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 TOS using [Composer](https://getcomposer.org):\n\n```bash\ncomposer require zing/laravel-flysystem-tos\n```\n\n## Configuration\n\n```php\nreturn [\n    // ...\n    'disks' =\u003e [\n        // ...\n        'tos' =\u003e [\n            'driver' =\u003e 'tos',\n            'root' =\u003e '',\n            'key' =\u003e env('TOS_ACCESS_KEY_ID'),\n            'secret' =\u003e env('TOS_ACCESS_KEY_SECRET'),\n            'bucket' =\u003e env('TOS_BUCKET'),\n            'endpoint' =\u003e env('TOS_ENDPOINT'),\n            'is_cname' =\u003e env('TOS_IS_CNAME', false),\n            'security_token' =\u003e env('TOS_SECURITY_TOKEN'),\n        ],\n    ]\n];\n```\n\n## Environment\n\n```dotenv\nTOS_ACCESS_KEY_ID=\nTOS_ACCESS_KEY_SECRET=\nTOS_BUCKET=\nTOS_ENDPOINT=\nTOS_IS_CNAME=false\nTOS_SECURITY_TOKEN=\n```\n\n## License\n\nLaravel Flysystem TOS 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-tos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzingimmick%2Flaravel-flysystem-tos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzingimmick%2Flaravel-flysystem-tos/lists"}