#!/bin/sh
# A:\Scoop\apps\composer\current\composer.ps1
if command -v pwsh.exe > /dev/null 2>&1; then
    pwsh.exe -noprofile -ex unrestricted -file "A:\Scoop\apps\composer\current\composer.ps1" "$@"
else
    powershell.exe -noprofile -ex unrestricted -file "A:\Scoop\apps\composer\current\composer.ps1" "$@"
fi
