PHP code example of indiana-university / puppet-forge-api-php
1. Go to this page and download the library: Download indiana-university/puppet-forge-api-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
indiana-university / puppet-forge-api-php example snippets
use Edu\Iu\Uits\Webtech\ForgeApi\ForgeApi;
$api = new ForgeApi('YOUR API KEY HERE');
/**
* User operations
*/
// Listing users
$api->user()->list([
// See official API documentation for parameters
'limit' => 20,
]);
// Fetching a user
$api->user('puppetlabs')->fetch();
/**
* Module operations
*/
// Fetch a module
$api->module('puppetlabs-apache')->fetch();
// Delete a module
$api->module('puppetlabs-apache')->delete('Broken code');
// Deprecate a module
$api->module('puppetlabs-apache')->deprecate(
'No longer maintained',
'puppet-nginx'
);
// List modules
$api->module()->list(['limit' => 20]);
/**
* Release operations
*/
// List releases
$api->release()->list(['limit' => 20]);
// Create a release
$api->release('puppetlabs-apache')->create('base64 encoded string');
// Fetch a release
$api->release('puppetlabs-apache-4.0.0')->fetch();
// Delete a release
$api->release('puppetlabs-apache-4.0.0')->delete('bugs');