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
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.