Files
runner-images-sangeeth/images/macos/scripts/build/php.sh
2023-11-15 12:12:28 +01:00

12 lines
248 B
Bash

#!/bin/bash -e -o pipefail
source ~/utils/utils.sh
echo Installing PHP
phpVersionToolset=$(get_toolset_value '.php.version')
brew_smart_install "php@${phpVersionToolset}"
echo Installing composer
brew_smart_install "composer"
invoke_tests "PHP"