summarylogtreecommitdiffstats
path: root/phpmd.install
blob: 72360306f81f7c0c52d2cbd9d69a8b6a83c1d611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  if ! /usr/bin/php -i | grep Phar >/dev/null; then
    echo
    echo "the Phar extension of php must be enabled."
    echo
    echo "check if the line extension=phar.so is commented out in your php.ini"
    echo
  fi
}
post_upgrade() {
  post_install
}