Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 1.83 KB

README.md

File metadata and controls

55 lines (40 loc) · 1.83 KB

s3-satis tool

Tool to generate a Composer PHP packages repository (based on Satis - static Composer repository generator) and synchronize generated repository with a Amazon S3 (or compatible) bucket.

Check full documentation here: opensource.duma.sh/systems/serverless-satis/s3-satis

Setup

You can install s3-satis tool in four ways:

Usage

First prepare a satis.json file with your repository configuration. This tool is based on Satis - static Composer repository generator{:target="_blank"}, so please check Satis documentation{:target="_blank"} for configuration options.

{
  "name": "my/repo",

  "homepage": "https://satis.example.com",

  "repositories": [
    { "type": "vcs", "url": "https://github.com/laravel/framework" }
  ],

  "require-all": true
}

Second, configure your environment variables (or .env file) with your S3 bucket credentials:

S3_ACCESS_KEY_ID=
S3_SECRET_ACCESS_KEY=
S3_REGION=us-east-1
S3_BUCKET=
S3_ENDPOINT=
S3_USE_PATH_STYLE_ENDPOINT=false

Then run s3-satis tool to generate repository and upload it to S3 bucket:

s3-satis build satis.json