Skip to main content
New book · out now

Understanding Drupal: A Complete Guide to Caching Layers

A deep, practical tour through every caching layer in Drupal — from the render cache to chained fast backends.

Get it on LeanPub
Understanding Drupal: A Complete Guide to Caching Layers — book cover
Recent writing RSS feed →
Oct 20, 2021

Upgrading Drupal should be and can be pretty easy with Composer. However, we currently have two or three packages that need to be updated whenever a new version of Drupal core comes out.

  • drupal/core-recommended – Drupal core, itself
  • drupal/core-composer-scaffold – Composer scaffolding for required files
  • drupal/core-dev – Test and quality dependencies

Using Composer's wildcard abilities, we can get these upgraded in one shot:

composer update "drupal/core*" -W

The -W flag ensures all of the dependencies required by these packages are also updated.

Oct 12, 2021

PHPStan development sponsored by Esteemed!

I am excited to announce my latest live stream sponsor – Esteemed! Esteemed is an AI-powered talent management and career solutions provider for digital professionals (founded by a bunch of Drupal folk and has a large Drupal talent pool network!)

#phpstan  #open source  #sponsored
Jun 06, 2021

What is the deployment identifier in Drupal?

Did you know that Drupal has a deployment identifier? This deployment identifier triggers different actions in Drupal and can be used to streamline your Drupal deployments. In this video, I will walk through how the deployment identifier is used and how you set it.

#drupal