{"id":33994548,"url":"https://github.com/kduma-oss/cli-s3-satis","last_synced_at":"2026-03-08T22:31:32.105Z","repository":{"id":212845353,"uuid":"732441181","full_name":"kduma-OSS/CLI-s3-satis","owner":"kduma-OSS","description":"Tool to generate a Composer PHP packages repository and synchronise it with an AWS S3 bucket.","archived":false,"fork":false,"pushed_at":"2025-10-07T14:14:29.000Z","size":304,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T16:13:28.416Z","etag":null,"topics":["docker","laravel-zero","php","serverless-satis"],"latest_commit_sha":null,"homepage":"https://opensource.duma.sh/systems/serverless-satis/s3-satis/","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/kduma-OSS.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-16T17:24:15.000Z","updated_at":"2025-10-07T14:14:32.000Z","dependencies_parsed_at":"2023-12-18T18:57:27.898Z","dependency_job_id":"341ff218-b518-4420-9354-1ff87fb62eaa","html_url":"https://github.com/kduma-OSS/CLI-s3-satis","commit_stats":null,"previous_names":["kduma-oss/cli-s3-satis"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/kduma-OSS/CLI-s3-satis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kduma-OSS%2FCLI-s3-satis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kduma-OSS%2FCLI-s3-satis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kduma-OSS%2FCLI-s3-satis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kduma-OSS%2FCLI-s3-satis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kduma-OSS","download_url":"https://codeload.github.com/kduma-OSS/CLI-s3-satis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kduma-OSS%2FCLI-s3-satis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27702409,"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","status":"online","status_checked_at":"2025-12-13T02:00:09.769Z","response_time":147,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["docker","laravel-zero","php","serverless-satis"],"created_at":"2025-12-13T07:59:59.883Z","updated_at":"2025-12-13T08:00:00.809Z","avatar_url":"https://github.com/kduma-OSS.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `s3-satis` tool\n\nTool to generate a [Composer](https://getcomposer.org/) PHP packages repository\n(based on [Satis - static Composer repository generator](https://github.com/composer/satis))\nand synchronize generated repository with a [Amazon S3](https://aws.amazon.com/s3/)\n(or compatible) bucket.\n\n\nCheck full documentation here: [opensource.duma.sh/systems/serverless-satis/s3-satis](https://opensource.duma.sh/systems/serverless-satis/s3-satis)\n\n\n## Setup\n\nYou can install `s3-satis` tool in four ways:\n\n- As a [Docker](https://www.docker.com/) container -using image [ghcr.io/kduma-oss/s3-satis](https://github.com/kduma-OSS/CLI-s3-satis/pkgs/container/s3-satis)\n- Global composer installation - tool will be available globally as `s3-satis` command\n- You can download phar executable file from [GitHub Releases](https://github.com/kduma-OSS/CLI-s3-satis/releases/latest) page\n- Download source code form [GitHub](https://github.com/kduma-OSS/CLI-s3-satis) to run\n\n## Usage\n\nFirst prepare a `satis.json` file with your repository configuration.\nThis tool is based on [Satis - static Composer repository generator](https://github.com/composer/satis){:target=\"_blank\"},\nso please check [Satis documentation](https://getcomposer.org/doc/articles/handling-private-packages-with-satis.md){:target=\"_blank\"}\nfor configuration options.\n\n```json\n{\n  \"name\": \"my/repo\",\n\n  \"homepage\": \"https://satis.example.com\",\n\n  \"repositories\": [\n    { \"type\": \"vcs\", \"url\": \"https://github.com/laravel/framework\" }\n  ],\n\n  \"require-all\": true\n}\n```\n\nSecond, configure your environment variables (or `.env` file) with your S3 bucket credentials:\n```env\nS3_ACCESS_KEY_ID=\nS3_SECRET_ACCESS_KEY=\nS3_REGION=us-east-1\nS3_BUCKET=\nS3_ENDPOINT=\nS3_USE_PATH_STYLE_ENDPOINT=false\n```\n\nThen run `s3-satis` tool to generate repository and upload it to S3 bucket:\n```bash\ns3-satis build satis.json\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkduma-oss%2Fcli-s3-satis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkduma-oss%2Fcli-s3-satis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkduma-oss%2Fcli-s3-satis/lists"}