Skip to content

1.1.0

Latest
Compare
Choose a tag to compare
@WyriHaximus WyriHaximus released this 07 Jul 22:59
· 41 commits to master since this release
1.1.0
db86cb4
  • Added support for authentication. Pass an options array with a username (and password) into the client to authenticate with supervisord:
$options = [
    Options::USERNAME => 'username',
    Options::PASSWORD => 'password',
];
 
$client = Client::create('localhost:12345', $options);