
apt update
apt -y install curl git unzip vim wget && \
apt-get clean
# Drupali tuuma install
composer install
# To see which versions of Drupal core are available, use this command
composer show drupal/recommended-project --all
#Check for available Drupal core and module updates:
composer outdated drupal/*
# All of your modules and themes can be updated along with Drupal core via:
composer update


# Mooduli install
php -d memory_limit=-1 `which composer` require 'drupal/masquerade' --update-no-dev  --update-with-all-dependencies
# SMTP
php -d memory_limit=-1 `which composer` require 'phpmailer/phpmailer' --update-no-dev
php -d memory_limit=-1 `which composer` require 'drupal/smtp' --update-no-dev --update-with-all-dependencies
# Theme
php -d memory_limit=-1 `which composer` require 'drupal/d8w3css' --update-no-dev --update-with-all-dependencies
#composer remove 'drupal/d8w3css' --update-with-dependencies

