https://github.com/josh-taylor/wordpress
Composer project for getting started with wordpress
https://github.com/josh-taylor/wordpress
Last synced: 3 months ago
JSON representation
Composer project for getting started with wordpress
- Host: GitHub
- URL: https://github.com/josh-taylor/wordpress
- Owner: josh-taylor
- Created: 2014-05-28T19:55:03.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-07T11:18:12.000Z (over 10 years ago)
- Last Synced: 2025-01-01T21:46:04.535Z (5 months ago)
- Language: PHP
- Size: 176 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordpress Skeleton
A skeleton for creating WordPress applications
## Installation
1. Download [Composer](http://getcomposer.org/doc/00-intro.md) 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](http://roots.io/using-composer-with-wordpress/) on using composer with WordPress.