josh-taylor / wordpress
Composer project for getting started with wordpress
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.3.0
- fancyguy/webroot-installer: 1.0.0
- wordpress: 4.1.0
This package is auto-updated.
Last update: 2019-02-20 19:28:27 UTC
README
A skeleton for creating WordPress applications
Installation
- Download Composer or update
composer self-update
. - 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.