james75 / supervisord-php
Simple PHP XMLRPC Client for http://supervisord.org
Installs: 83
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 5
pkg:composer/james75/supervisord-php
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2025-10-19 08:28:21 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.