Skip to content

Wrapper module for the Amazon AWS PHP SDK

Notifications You must be signed in to change notification settings

timhj/kohana-aws

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kohana AWS

Kohana wrapper module for the Amazon AWS PHP SDK.

  1. Installation
  2. Usage

Installation

Install the module

git submodule add [email protected]:dexamped/kohana-aws.git modules/kohana-aws
git submodule update --init --recursive

Load dependencies

We have to install vendor's dependencies by running composer install

composer install --working-dir=modules/kohana-aws/vendor/aws-sdk-php/

Configuration

Edit application/bootstrap.php and add the module:

Kohana::modules(array(
    ...
    'aws' => 'modules/kohana-aws',
    ...
));

Copy the modules/kohana-aws/config/aws.php to APPPATH/config/aws.php and setup your config.

Usage

<?php

class Controller_Amazon extends Controller {

	public function action_index()
	{
		// List some S3 buckets
		$s3 = Amazon::instance()->get('s3');

		// Execute an S3 method
		$result = $s3->listBuckets();

		// Do something with it here
	}
}
?>

Full AWS SDK Usage

http://docs.aws.amazon.com/aws-sdk-php/latest/

About

Wrapper module for the Amazon AWS PHP SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%