Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created April 19, 2019 04:51
Show Gist options
  • Save jpalala/4cd86a7ad67a69338b00ce27c25f49df to your computer and use it in GitHub Desktop.
Save jpalala/4cd86a7ad67a69338b00ce27c25f49df to your computer and use it in GitHub Desktop.
installing laravel - php extensions needed

Requirements

Run to install mbstring and other things for laravel

$ apt install php-mbstring php-intl php-xml php-curl

php_composer.install.sh:

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
php -r "unlink('composer-setup.php');"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment