#!/usr/bin/env bash
# scripts/qa/phpunit - Run PHPUnit test suite
set -euo pipefail

docker compose exec --user=application -w /app app_server \
    php ./vendor/bin/phpunit "$@"
