[CentOS7] PHP Composer(컴포저) 설치하기


[CentOS7] PHP Composer(컴포저) 설치하기

Composer(컴포저) 설치 yum install -y php-cli php-zip wget unzip php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" HASH="$(wget -q -O - https://composer.github.io/installer.sig)" php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" // 출력 확인 Installer verified php composer-setup.php --install-dir=/usr/local/bin --filename=composer // 출력 확인 All settings cor...



원문링크 : [CentOS7] PHP Composer(컴포저) 설치하기