Git Product home page Git Product logo

cloudmunch-php-sdk-v1's Introduction

CloudMunch-php-SDK-V1

CloudMunch SDK for PHP provides helper classes for CloudMunch plugin development.

###Download SDK We recommend using Composer as package manager. All you need to install the sdk is to have the following entry in your composer.json file.

{
    "require": {
        "cloudmunch/php-sdk-v1":"dev-master"
    }
}

###Usage Here is a sample plugin code

<?php
require __DIR__ . '/vendor/autoload.php';
use CloudMunch\AppAbstract;
class SampleApp extends AppAbstract{
	
	public function process($processparameters) {
	    //To read the input to the plugin
		$inputparameters = $processparameters['appInput'];
		$inputvalue = $inputparameters-> input1;
		//To get the credentials to any integration read the integration specific details
		//from the array $integrationdetails
		$integrationdetails = $processparameters['integrationdetails'];
		$username=$integrationdetails[username];
		$password=$integrationdetails[password];
		}
	}
		
		//LifeCycle methods of a plugin
	$sampleapp = new SampleApp();
    $sampleapp->initialize();
    $processInput=$sampleapp->getProcessInput();
    $sampleapp->process($processInput);
    $sampleapp->performAppcompletion();

To write a cloudmunch plugin for Amazon Web Service,all you need to do is create a project and composer.json should have the following,

{
    "require": {
        "cloudmunch/php-sdk-v1":"dev-master",
        "aws/aws-sdk-php": "2.*"
    }
}

The plugin can get the Amazon Web Service credentials as follows

	public function process($processparameters) {
	    //To read the input to the plugin
		$inputparameters = $processparameters['appInput'];
		$region = $inputparameters-> region;
		//Reading the credentials from SDK
		
		$integrationdetails = $processparameters['integrationdetails'];
		$accessKey=$integrationdetails[accessKey];
		$secretKey=$integrationdetails[secretKey];
		}
	}

cloudmunch-php-sdk-v1's People

Contributors

cloudmunch1 avatar coolguy1990 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.