Skip to main content

Create a Composer-managed WordPress Site with Bedrock

Learn more about Bedrock and Composer-managed WordPress sites.


Info:
Early Access

The WordPress Composer Managed upstream is available for Early Access participants. Features for WordPress Composer Managed are in active development. Pantheon's development team is rolling out new functionality often while this product is in Early Access. Visit our community Slack if you don't already have an account) to connect with other Pantheon users also using the upstream (you can sign up for the Pantheon Slack channel here). Please review Pantheon's Software Evaluation Licensing Terms for more information about access to our software.

This section provides information on how to use Bedrock with Integrated Composer on a WordPress site.

WordPress does not natively support Composer, however, Bedrock is a WordPress-specific framework for using Composer on WordPress sites.

Requirements

Create Your Site

There are two ways you can spin up a site using WordPress Composer Managed:

  • Running the following terminus command:

    terminus site:create --org ORG --region REGION -- <site_name> <label> "WordPress (Composer Managed)"
  • Using this site create link.

The site you create will be based on the Pantheon-maintained WordPress Composer Managed upstream. Once this install completes, visit the Dev environment and follow the prompts to complete the CMS installation.

Review the sections below for important information about your site, including an explanation of the directory structure and essential configuration actions.

Use Roots Bedrock

Environment Variables

Bedrock makes use of an .env file to store environment variables. Pantheon takes care of many of these variables in .env.pantheon. You may set your own environment variables in a new .env or environment variables that are local-only in .env.local using the .env.example as a guide. Wrap values that may contain non-alphanumeric characters with quotes, or they may be incorrectly parsed.

WordPress Config

The wp-config.php file is located in the web directory. As with other WordPress sites on Pantheon, much of this is taken care of for you in wp-config-pantheon.php. Application-level configuration takes place in config/application.php while platform-specific updates are made in config/application.pantheon.php. This means that config/application.php can be modified for your WordPress configuration settings without fear of conflicts with the upstream. Any configuration changes should be made to your config/appliction.php not your wp-config.php file directly.

You can learn more about WordPress configuration with Bedrock in the Bedrock Configuration docs.

Understand the WordPress Codebase

Bedrock installs WordPress as a required package so updates can be managed by Composer. As such, the contents of the wp-content directory have been moved outside the WordPress codebase so changes can be made safely to files within those directories without conflicts. Learn more about Bedrock's folder structure here.

  • Themes are installed into web/app/themes/
  • Plugins are installed into web/app/plugins
  • Must-use plugins are installed into web/app/mu-plugins
  • WordPress core is installed into web/wp
  • The WordPress admin dashboard is available at https://example.com/wp/wp-admin/

Using Composer to manage plugins and themes

Packagist is a repository of Composer packages that are available by default to projects managed by Composer. Packagist libraries receive updates from their source GitHub repositories automatically.

WPackagist is a Packagist-like mirror of the WordPress.org plugin and theme repositories and is included with Bedrock out of the box.

You can install packages from Packagist or WPackagist without any additional configuration using composer require.

Require a Package from Packagist

Some WordPress developers push their packages to Packagist in addition to the WordPress plugin and theme repositories. In this way, it may be beneficial to pull those packages directly from Packagist to get the latest code directly from the source.

composer require yoast/wordpress-seo

Packages that are flagged as wordpress-plugin, wordpress-theme or wordpress-muplugin in their composer.json files will be installed automatically in the appropriate web/app/ directory by Composer.

Requiring a package from WPackagist

For all other plugins and themes that are not managed on Packagist, you can use composer require as well, using wpackagist-plugin or wpackagist-theme as the vendor and the plugin or theme slug as the package name.

composer require wpackagist-theme/twentytwentytwo
composer require wpackagist-plugin/advanced-custom-fields

Check first

It's generally a good idea when using either Packagist or WPackagist to check the repository before requireing the package. If you search Packagist for a WordPress plugin or theme and don't see it, you can be sure that if it exists in the WordPress plugin or theme repository, it will be available on WPackagist. Checking WPackagist for the package can be beneficial if you want to check what versions are available.

Updating dependencies

To update all Composer dependencies, run:

composer update

This will update all Composer-managed packages according to the version constraints in your composer.json file. For more information on Composer version constraints, see the Composer documentation.

To update a specific package, run:

composer update vendor/package

Replace vendor/package with the package name you want to update. This will update only the named package to the latest version that matches the version constraints in your composer.json file.

Known Issues

  • There is currently a known issue with WordPress Composer Managed not supporting WordPress Multisite with subdirectories. Alternative implementations of WordPress with Composer may be used for this use case.

Report an Issue

Create an issue in the Github repo for the team to review and address if you discover an issue with the WordPress Composer Managed upstream.

Visit our community Slack (you can sign up for the Pantheon Slack channel here if you don't already have an account).

More Resources