PHPackages                             guyiday/guyiday-drupal-distribution - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. guyiday/guyiday-drupal-distribution

ActiveDrupal-profile

guyiday/guyiday-drupal-distribution
===================================

The Burst Drupal distribution. For internal use only.

v1.0.0(2y ago)01PHP

Since Jan 2Pushed 2y agoCompare

[ Source](https://github.com/Guyiday/guyiday-drupal-distribution)[ Packagist](https://packagist.org/packages/guyiday/guyiday-drupal-distribution)[ RSS](/packages/guyiday-guyiday-drupal-distribution/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (18)Versions (2)Used By (0)

Burst Drupal Distribution
=========================

[](#burst-drupal-distribution)

Because we use Drupal 9 a lot, this makes all of our lives easier.

This distribution aims to remove the amount of boilerplate code we have in our projects. Less copy-pasting between projects, more re-using the same code.

How to use
----------

[](#how-to-use)

Create a composer.json, and make sure it contains at least the following:

```
{
  "type": "project",
  "minimum-stability": "dev",
  "prefer-stable": true,
  "repositories": [
    {
      "type": "composer",
      "url": "https://packages.drupal.org/8"
    }
  ],
  "require": {},
  "extra": {
    "installer-paths": {
      "web/core": [
        "type:drupal-core"
      ],
      "web/libraries/{$name}": [
        "type:drupal-library"
      ],
      "web/modules/contrib/{$name}": [
        "type:drupal-module"
      ],
      "web/profiles/contrib/{$vendor}-{$name}": [
        "type:drupal-profile"
      ],
      "web/themes/contrib/{$name}": [
        "type:drupal-theme"
      ],
      "drush/contrib/{$name}": [
        "type:drupal-drush"
      ]
    },
    "enable-patching": true,
    "drupal-scaffold": {
      "locations": {
        "web-root": "web"
      }
    },
    "composer-exit-on-patch-failure": true
  },
  "config": {
    "sort-packages": true,
    "discard-changes": true,
    "platform": {
      "php": "7.4.999",
      "ext-curl": "7.4.999",
      "ext-gd": "7.4.999"
    }
  }
}
```

Note the following:

- No drupal/core is required, it is already required by the Burst distribution.

Then, run `composer require burst/drupal-distribution`.

Now, the best step of all.. replace `/web/sites/default/settings.php` with the following:

```
