PHPackages                             lastcall/drupal-scaffold - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. lastcall/drupal-scaffold

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

lastcall/drupal-scaffold
========================

Scaffolding for an enterprise scale Drupal build

2.1.0(6y ago)4519319[8 issues](https://github.com/LastCallMedia/Drupal-Scaffold/issues)[17 PRs](https://github.com/LastCallMedia/Drupal-Scaffold/pulls)GPL-2.0+PHP

Since Aug 14Pushed 2y ago6 watchersCompare

[ Source](https://github.com/LastCallMedia/Drupal-Scaffold)[ Packagist](https://packagist.org/packages/lastcall/drupal-scaffold)[ RSS](/packages/lastcall-drupal-scaffold/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (17)Versions (32)Used By (0)

LCM Drupal 8 Scaffolding
========================

[](#lcm-drupal-8-scaffolding)

[![Build Status](https://camo.githubusercontent.com/153128756537c0a5139bfb670e54c25ce6b935958a70f0f99d0ca4a9b1c124eb/68747470733a2f2f636972636c6563692e636f6d2f67682f4c61737443616c6c4d656469612f44727570616c2d53636166666f6c642e7376673f7374796c653d737667)](https://circleci.com/gh/LastCallMedia/Drupal-Scaffold)[![Latest Stable Version](https://camo.githubusercontent.com/f08fff81079eed6b03fc739b539f04401ca0766774fb75c2627e30672b41dd4e/68747470733a2f2f706f7365722e707567782e6f72672f6c61737463616c6c2f64727570616c2d73636166666f6c642f762f737461626c65)](https://packagist.org/packages/lastcall/drupal-scaffold)

LCM Drupal 8 Scaffolding is brought to you by your friends at [Last Call Media](https://www.lastcallmedia.com), it is a boilerplate Drupal 8 build that bundles some standard tools to make it a good starting point for an enterprise scale Drupal build. It is conceptually similar to [drupal-composer/drupal-scaffold](https://github.com/drupal-composer/drupal-scaffold), but it has a much simpler (and more manual) Composer setup, and includes additional tools. For additional information on this project, see the [2016 Badcamp presentation slides](https://2016.badcamp.net/sites/default/files/session-files/FirstClassDevelopmentWorkflow.pdf)

Starting a New Project
----------------------

[](#starting-a-new-project)

- Use composer to create a new project, starting from this repository as a template: ```
    composer create-project lastcall/drupal-scaffold PROJECTNAME
    ```
- Bring up the Docker containers and enter the Drupal container. ```
    docker-compose up -d drupal
    docker-compose exec drupal /bin/bash
    ```
- From the repository root (`/var/www` inside the Drupal container), install NPM and composer dependencies: ```
    yarn install
    composer install
    ```
- Visit the Drupal site in your browser to install Drupal and continue. The default URL will be `http://localhost:8080`.

See the [scaffold documentation](docs/scaffold.md) for next steps.

Stop here!
----------

[](#stop-here)

Everything below this line applies to scaffold projects that are already set up. The section below will be the start of your project's README.

---

Setting Up for Local Development
--------------------------------

[](#setting-up-for-local-development)

This project is built using Drupal Scaffold. Before you begin, you must have Docker and Docker Compose installed on your local machine. For installation instructions, see the [Drupal Scaffold - Docker documentation](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/tools/docker.md).

1. [Clone](https://help.github.com/articles/cloning-a-repository/) this repository.
2. If you haven't created and [set your Pantheon machine token](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/recipes/setting-machine-token.md), do that now.
3. [Start](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/tools/docker.md#Running) the Docker environment and shell in:

    ```
    docker-compose up -d drupal
    docker-compose exec drupal bash
    ```
4. Install [Composer](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/tools/composer.md#Running) dependencies:

    ```
    composer install
    ```
5. Install [NPM](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/tools/npm.md#Running) dependencies:

    ```
    yarn install
    ```
6. Run `composer site:import` to pull down and import a copy of the site's database. If Pantheon gives you an error here, make sure you followed Step 2 above correctly and that you're running Docker in a new terminal window
7. Run `drupal site:mode  dev` to switch to dev configuration.
8. Run `gulp build` (or `gulp watch`) and `drush cr` (from within the Drupal root at `/var/www/web`) to compile the theme.
9. View your new local site in the browser at .

See the [Drupal Scaffold documentation](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/) for more information on how to use the tools and how to use this project. To find more information on the Docker stack, visit the [Docker documenation](https://github.com/LastCallMedia/Drupal-Scaffold/blob/master/docs/tools/docker.md).

Testing
-------

[](#testing)

Both testing tools listed below are using the following JSON files for switching the environments and fetching the URLs for these testing tools. If any changes are needed make changes to the files below:

- [Environments JSON](/backstop/environment.json)
- [URLs JSON](/backstop/page.json)

The option to switch environments can be used by adding the following to command `--target=prod`. It will always default to local if no target is being used.

### Nightcrawler

[](#nightcrawler)

Nightcrawler will run in CircleCI for each Pull Request, but if you want to test the PR locally use the following command

```
$ docker-compose run drupal node_modules/.bin/nightcrawler crawl

```

### Backstop

[](#backstop)

Backstop is only tested manually, see [documentation](/backstop/README.md) to test your branch.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community24

Small or concentrated contributor base

Maturity74

Established project with proven stability

 Bus Factor1

Top contributor holds 82.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~135 days

Recently: every ~284 days

Total

11

Last Release

2247d ago

Major Versions

1.4.0 → 2.0.02017-12-14

### Community

Maintainers

![](https://www.gravatar.com/avatar/08764a9d2125547417a4f3efeee159b4fc1ff4a5094326228e413ef38566da23?d=identicon)[lschumann](/maintainers/lschumann)

![](https://www.gravatar.com/avatar/7a4a154961f7167b96103447056ce7319becb50c4eb836e0cecfd26b08cfd0ba?d=identicon)[chrislcm](/maintainers/chrislcm)

---

Top Contributors

[![rbayliss](https://avatars.githubusercontent.com/u/654407?v=4)](https://github.com/rbayliss "rbayliss (311 commits)")[![jlandfried](https://avatars.githubusercontent.com/u/1078156?v=4)](https://github.com/jlandfried "jlandfried (27 commits)")[![mrossi113](https://avatars.githubusercontent.com/u/19477691?v=4)](https://github.com/mrossi113 "mrossi113 (25 commits)")[![RoloDMonkey](https://avatars.githubusercontent.com/u/1266116?v=4)](https://github.com/RoloDMonkey "RoloDMonkey (3 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![slipo](https://avatars.githubusercontent.com/u/327999?v=4)](https://github.com/slipo "slipo (2 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (2 commits)")[![tom-fleming](https://avatars.githubusercontent.com/u/458708?v=4)](https://github.com/tom-fleming "tom-fleming (1 commits)")[![jaymejohnson](https://avatars.githubusercontent.com/u/7672711?v=4)](https://github.com/jaymejohnson "jaymejohnson (1 commits)")[![lynnschumann](https://avatars.githubusercontent.com/u/13607380?v=4)](https://github.com/lynnschumann "lynnschumann (1 commits)")[![sag13684](https://avatars.githubusercontent.com/u/878728?v=4)](https://github.com/sag13684 "sag13684 (1 commits)")[![csj1012](https://avatars.githubusercontent.com/u/39135832?v=4)](https://github.com/csj1012 "csj1012 (1 commits)")

---

Tags

archiveddeprecated

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/lastcall-drupal-scaffold/health.svg)

```
[![Health](https://phpackages.com/badges/lastcall-drupal-scaffold/health.svg)](https://phpackages.com/packages/lastcall-drupal-scaffold)
```

###  Alternatives

[mautic/core

Mautic Open Source Distribution

9.8k2.6k9](/packages/mautic-core)[helsingborg-stad/municipio

A bootstrap theme for creating municipality sites.

4028.3k10](/packages/helsingborg-stad-municipio)[farmos/farmos

A web-based farm record keeping application.

1.3k7.0k1](/packages/farmos-farmos)[vardot/varbase-project

Project template for Varbase distribution.

5162.4k](/packages/vardot-varbase-project)[fourkitchens/sous-drupal-project

Starter project for Sous a Drupal distribution featuring a theme based on Emulsify Design System.

141.1k](/packages/fourkitchens-sous-drupal-project)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
