josh-taylor/wordpress

This package is abandoned and no longer maintained. No replacement package was suggested.

Composer project for getting started with wordpress

4.1 2015-01-07 11:16 UTC

This package is auto-updated.

Last update: 2019-02-20 19:28:27 UTC


README

A skeleton for creating WordPress applications

Installation

  1. Download Composer or update composer self-update.
  2. Run php composer.phar create-project josh-taylor/wordpress [dir]

Configuration

You will need to copy the wp-config.php file from the wp directory that was created to the root of your project.

Plugins

Plugins can be installed using wpackagist and then adding to the composer.json file.

E.g:

...
"require": {
  "wpackagist-plugin/woocommerce": "2.1.9"
}
...

Credits

Thanks to Roots for creating this awesome blog post on using composer with WordPress.