naegelin/saltapi

This is a PHP client for talking to the restful endpoint of Salt Stack

Installs: 4 185

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 2

Open Issues: 1

pkg:composer/naegelin/saltapi

0.0.1 2014-09-22 00:28 UTC

This package is not auto-updated.

Last update: 2025-12-20 23:00:00 UTC


README

This is a PHP client for talking to the restful endpoint of Salt Stack. Very basic functionality for illustrative purposes.

Usage:

 $salt = new SaltClient('my.saltapi.com','443','username','password');
 $results = $salt->run('*','test.ping');
 $results = $salt->jobs($results->jid);

Easily add to your projects with composer:

	"require": {

		"naegelin/saltapi": "dev-master"
	},