Files
Cloud-CMS/build-composer.sh

8 lines
286 B
Bash
Raw Permalink Normal View History

2025-12-02 10:32:59 -05:00
#!/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