├── .github ├── actions │ └── determine-composer-version │ │ └── action.yaml ├── renovate.json └── workflows │ ├── 1.10.yaml │ ├── 2.2.yaml │ ├── latest.yaml │ └── shellcheck.yaml ├── 1.10 ├── Dockerfile └── docker-entrypoint.sh ├── 2.2 ├── Dockerfile └── docker-entrypoint.sh ├── LICENSE ├── README.md ├── generate-stackbrew-library.sh └── latest ├── Dockerfile └── docker-entrypoint.sh /.github/actions/determine-composer-version/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/actions/determine-composer-version/action.yaml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/1.10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/workflows/1.10.yaml -------------------------------------------------------------------------------- /.github/workflows/2.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/workflows/2.2.yaml -------------------------------------------------------------------------------- /.github/workflows/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/workflows/latest.yaml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/.github/workflows/shellcheck.yaml -------------------------------------------------------------------------------- /1.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/1.10/Dockerfile -------------------------------------------------------------------------------- /1.10/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/1.10/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/2.2/Dockerfile -------------------------------------------------------------------------------- /2.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/2.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/README.md -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/latest/Dockerfile -------------------------------------------------------------------------------- /latest/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/docker/HEAD/latest/docker-entrypoint.sh --------------------------------------------------------------------------------