Total Pageviews

Thursday 16 April 2015

以COMPOSER方式安装WP的插件/主题


How do I use it?

  1. Add the repository to your composer.json
  2. Add the desired plugins and themes to your requirements using wpackagist-plugin or wpackagist-theme as the vendor name.
  3. Run $ composer.phar update
  4. Packages are installed to wp-content/plugins/ or wp-content/themes/

Example

{
    "name": "acme/brilliant-wordpress-site",
    "description": "My brilliant WordPress site",
"repositories":[ { "type":"composer", "url":"http://wpackagist.org" } ],
"require": { "aws/aws-sdk-php":"*",
"wpackagist-plugin/akismet":"dev-trunk", "wpackagist-plugin/captcha":">=3.9", "wpackagist-theme/hueman":"*"
}, "autoload": { "psr-0": { "Acme": "src/" } } }
This example composer.json file adds the Wpackagist repository and includes the latest version of Akismet, at least version 3.9 of Captcha, and the latest Hueman theme along with the Amazon Web Services SDK from the main Packagist repository.

FROM  http://wpackagist.org/