Simple PHP XMLRPC Client for http://supervisord.org
git clone https://github.com/tyd/supervisord-php.git
require_once 'supervisord-php/lib/Supervisord.php';
$s = new Supervisord('127.0.0.1', 9001, 'username', 'password');
print_r( $s->getAllProcessInfo() );
- Fork the repository
- Create a new branch for each feature or improvement
- Send a pull request from each feature branch to the develop branch
It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch. This allows me to review and pull in new features or improvements individually.