PHP code example of opsone / wp-cli-deploy
1. Go to this page and download the library: Download opsone/wp-cli-deploy library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
opsone / wp-cli-deploy example snippets
$hipchat_message = "http://%%url%%"
. "\njeandoe has successfully %%command%%ed %%what%%";
$command = "if [[ '%%command%%' != 'dump' ]]; then "
. "echo '$hipchat_message' | %%abspath%%/hipchat-cli/hipchat_room_message -t 1245678 -r 123456 -f 'WP-Cli Deploy';"
. "fi;"
. "if [[ '%%command%%' == 'push' ]]; then "
. "curl -Ss http://example.com/clear_cache.php?token=12385328523;"
. "fi;";
define( 'DEV_POST_HOOK', $command );