Installation
Installing with Composer
This is the recommended route for most use-cases.
bash
composer require --save sitecrafting/coniferTo put Conifer in the wp-content/plugins directory automatically, we recommend composer-custom-directory-installer:
json
{
"require": {
"sitecrafting/conifer": "^1.0.0"
},
"require-dev": {
"mnsami/composer-custom-directory-installer": "^1.1"
}
}Installing from an official release
- Go to https://github.com/sitecrafting/conifer/releases
- Download a zip or tar
- Place the unarchived directory inside
wp-content/plugins/
From source
bash
git clone https://github.com/sitecrafting/conifer /path/to/wp-content/plugins/conifer
cd /path/to/wp-content/plugins/conifer
composer installNote: If you are installing in production, you can safely specify the --no-dev argument to composer. If you use this process, Conifer assumes you have set up your system requirements manually. Running composer install --no-dev only creates the Conifer library autoloader, and nothing else.