Install Composer Di Linux Centos 7

بِسْمِ اللهِ الرَّحْمٰنِ الرَّحِيْمِ

Composer adalah dependensi menejer untuk PHP, seperti npm untuk Node.js atau pip pada python. Composer mengelola semua paket PHP yang kita butuhkan, composer digunakan pada semua framework PHP modern seperti Laravel, Symfony, Drupal dan Magento 2.

1. Copy script berikut

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php --install-dir=/usr/local/bin --filename=composer
php -r "unlink('composer-setup.php');"

2. Pastikan bahwa komposer kita sudah terinstall, ketikan perintah berikut:

composer

Jika berhasil perintah diatas akan mengeluarkan output seperti ini:

       ______
      / ____/___  ____ ___  ____  ____  ________  _____
     / /   / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
    / /___/ /_/ / / / / / / /_/ / /_/ (__  )  __/ /
    \____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
                        /_/
    Composer version 1.7.2 2018-08-16 16:57:12

    Usage:
        command [options] [arguments]

Yeay, berhasil syudaah.

Contekannya dari sini


Update 21 April 2019
02:33 WIB
Banguntapan, Bantul
Yogyakarta

comments powered by Disqus