Download the PHP package dnaber/wp-provisioner without Composer

On this page you can find all versions of the php package dnaber/wp-provisioner. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-provisioner

WP Provisioner

API to instantiate and manage your WordPress installation structure. Work in progress

Installation

What & why

Assuming you planning your next web project based on WordPress. The concept of this project requires 15 sites, managed by one WordPress multisite installation. Each site has its own language and a different set of settings and activated plugins and themes. You might want to set up at least a testing server and a production system. Further you have 3 colleagues working with you on this project.

Thus, you set up your local development system, create the 15 sites and make all the settings to the sites. Now you have three options to deploy these state of your system to your fellows or to the testing/production systems:

How it works

WP Provisioner is a standalone PHP commandline script that executes a set of tasks defined in a separate PHP file. Right now it provides two commands to do this.

provision

This command executes the <VERSION> defined in <PROVISION_FILE>. By default, the provision file is the provision.php in your current working directory.

Here's an example provision file that defines version 1.0.0 and installs a multisite, sets up two sites and activates two plugins:

task

The task file must return a callable that will be just executed with the parameters WpCliCommandProvider and ConsoleOutput. Example:

Goal

The idea of this tool is to automate the process of configuring WordPress as complete as possible to integrate it into already automated deployment processes. However, it is in a early alpha state. Some features are not implemented jet and the API might change slightly.

API

About the $graceful parameter: Every create() method has a boolean parameter called $graceful (mostly the last one) which make the method act like create-if-not-exists, which is always the default behavior. If set ot FALSE, the method will throw exceptions, if for example a site is created that already exists.

Wp\Core

Check if WordPress is installed.

Installs WordPress.

Converts a single-site to a multisite. Modifies your wp-config.php (See issue #1)

Installs a multisite from scratch. Modifies your wp-config.php (See issue #1)

Wp\Plugin

Activates a plugin.

Deactivates a plugin.

Checks, if a plugin is «installed». That means, if the plugin files are available for activation.

Checks, if a plugin is activated. Set $options[ 'network' ] to TRUE to check for network-wide activation.

Run uninstall routines for a plugin. This tries to deactivate the plugin before (unless you specify $options[ 'deactivate' ] = FALSE). I suggest to manually deactivate the plugin depending on the plugin activation status. If you want to also delete the plugin files, pass $options[ 'delete' ] = TRUE to the method.

Wp\Site

Checks if a site URL already exists.

Gets the site ID from the site URL.

Creates a new site by the complete URL. This works independent of whether it's a sub-directory or sub-domain install but sub-domain install is highly recommended. You can however omit the URL and create a site by slug, of course.

Parameter:

Wp\User

Get the user ID by email or login.

Checks whether a user exists by a given email or login.

Creates a new user.

Parameter:


All versions of wp-provisioner with dependencies

PHP Build Version
Package Version
Requires symfony/console Version ~2.7
symfony/process Version ~2.1
inpsyde/wp-cli-site-url Version ~1.0
wp-cli/wp-cli Version ~0.23
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package dnaber/wp-provisioner contains the following files

Loading the files please wait ....