"value":"\n <p>One of the initial negatives when Drupal 8 launched was introducing Composer, PHP's dependency manager, and how it could affect non-technical users.<\/p>\n\n<p>When I started doing Drupal, I downloaded the .tar.gz or .zip file of Drupal, extracted it, and placed it within my project.<\/p>\n\n<p>I did the same for any additional modules I needed.<\/p>\n\n<p>To update them, I needed to delete my files and repeat the process of downloading and replacing them.<\/p>\n\n<h2 id=\"drush\">Drush<\/h2>\n\n<p>Then, instead of doing it manually, I used Drush, the \"Drupal shell\", to download the files. This saved some time, but it still has down-sides.<\/p>\n\n<p>What if you needed to install a module like Pathauto, which has dependencies you also need to download and install?<\/p>\n\n<p>With Drush or downloading the files manually, you'd need to download the dependencies separately.<\/p>\n\n<h2 id=\"composer\">Composer<\/h2>\n\n<p>Composer is a dependency manager, which means it can handle these dependencies for us.<\/p>\n\n<p>It looks at each project's <code>composer.json<\/code> file to find its dependencies and downloads them.<\/p>\n\n<p>For example, to install Pathauto, you run <code>composer require drupal\/pathauto<\/code>.<\/p>\n\n<p>Within its output, you'll see this:<\/p>\n\n<pre><code class=\"language-plain\">Package operations: 3 installs, 0 updates, 0 removals\n - Downloading drupal\/token (1.12.0)\n - Downloading drupal\/ctools (4.0.4)\n - Downloading drupal\/pathauto (1.12.0)\n<\/code><\/pre>\n\n<p>As well as Pathauto, it's downloading its dependencies - ctools and pathauto.<\/p>\n\n<p>Instead of downloading three modules, we can do it with one command.<\/p>\n\n<p>In fact, we don't need to know what its dependencies are - Composer will do that.<\/p>\n\n<p>Also, updating the modules is just another simple command - <code>composer update<\/code>.<\/p>\n\n<p>While it may be intimidating to non-technical users, learning a few simple commands makes installing and updating modules much easier!<\/p>\n\n ",
"format":"full_html",
"processed":"\n <p>One of the initial negatives when Drupal 8 launched was introducing Composer, PHP's dependency manager, and how it could affect non-technical users.<\/p>\n\n<p>When I started doing Drupal, I downloaded the .tar.gz or .zip file of Drupal, extracted it, and placed it within my project.<\/p>\n\n<p>I did the same for any additional modules I needed.<\/p>\n\n<p>To update them, I needed to delete my files and repeat the process of downloading and replacing them.<\/p>\n\n<h2 id=\"drush\">Drush<\/h2>\n\n<p>Then, instead of doing it manually, I used Drush, the \"Drupal shell\", to download the files. This saved some time, but it still has down-sides.<\/p>\n\n<p>What if you needed to install a module like Pathauto, which has dependencies you also need to download and install?<\/p>\n\n<p>With Drush or downloading the files manually, you'd need to download the dependencies separately.<\/p>\n\n<h2 id=\"composer\">Composer<\/h2>\n\n<p>Composer is a dependency manager, which means it can handle these dependencies for us.<\/p>\n\n<p>It looks at each project's <code>composer.json<\/code> file to find its dependencies and downloads them.<\/p>\n\n<p>For example, to install Pathauto, you run <code>composer require drupal\/pathauto<\/code>.<\/p>\n\n<p>Within its output, you'll see this:<\/p>\n\n<pre><code class=\"language-plain\">Package operations: 3 installs, 0 updates, 0 removals\n - Downloading drupal\/token (1.12.0)\n - Downloading drupal\/ctools (4.0.4)\n - Downloading drupal\/pathauto (1.12.0)\n<\/code><\/pre>\n\n<p>As well as Pathauto, it's downloading its dependencies - ctools and pathauto.<\/p>\n\n<p>Instead of downloading three modules, we can do it with one command.<\/p>\n\n<p>In fact, we don't need to know what its dependencies are - Composer will do that.<\/p>\n\n<p>Also, updating the modules is just another simple command - <code>composer update<\/code>.<\/p>\n\n<p>While it may be intimidating to non-technical users, learning a few simple commands makes installing and updating modules much easier!<\/p>\n\n ",