Your IP : 216.73.216.40


Current Path : /etc/profile.d/
Upload File :
Current File : //etc/profile.d/composer.sh

# Composer initialization script

# Add path to commands installed using "composer global require ..."
if [ "${EUID:-0}" != "0" ]; then
  case :$PATH: in
    *:${HOME}/.composer/vendor/bin:*) ;;
    *) PATH=$PATH:${HOME}/.composer/vendor/bin ;;
  esac
  export PATH
fi