#!/usr/bin/env bash

if [[ -f "$1/composer.json" || -f "$1/index.php" ]]; then
  echo "PHP" && exit 0
else
  exit 1
fi

