james75 / supervisord-php
Simple PHP XMLRPC Client for http://supervisord.org
dev-master
2012-12-14 15:03 UTC
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2025-03-23 05:17:03 UTC
README
Simple PHP XMLRPC Client for http://supervisord.org
Download
git clone https://github.com/tyd/supervisord-php.git
Basic Usage
require_once 'supervisord-php/lib/Supervisord.php';
$s = new Supervisord('127.0.0.1', 9001, 'username', 'password');
print_r( $s->getAllProcessInfo() );
How to Contribute
Pull Requests
- 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.