cloudmunch/php-sdk-v1 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cloudmunch/php-sdk-v1

Composer 安装命令:

composer require cloudmunch/php-sdk-v1

包简介

CloudMunch SDK for PHP

README 文档

README

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];
		}
	}

统计信息

  • 总下载量: 712
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: CloudMunch
  • 更新时间: 2015-06-05