Files
Cloud-CMS/build-composer.sh
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

8 lines
286 B
Bash

#!/usr/bin/env bash
# A simple helper script to run composer
# useful if your dev host environment doesn't have PHP
# on windows replace $PWD with your working repo root folder
docker run --rm \
--volume $PWD:/app \
composer install --ignore-platform-reqs --optimize-autoloader