PHPackages                             dexamped/kohana-aws - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. dexamped/kohana-aws

ActiveKohana-module[Utility &amp; Helpers](/categories/utility)

dexamped/kohana-aws
===================

Kohana wrapper for the aws-php-sdk.

14.0k4[1 PRs](https://github.com/dexamped/kohana-aws/pulls)PHP

Since May 22Pushed 9y ago2 watchersCompare

[ Source](https://github.com/dexamped/kohana-aws)[ Packagist](https://packagist.org/packages/dexamped/kohana-aws)[ RSS](/packages/dexamped-kohana-aws/feed)WikiDiscussions 3.3/master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Kohana AWS
==========

[](#kohana-aws)

Kohana wrapper module for the Amazon AWS PHP SDK.

1. [Installation](#installation)
2. [Usage](#usage)

Installation
------------

[](#installation)

#### Install the module

[](#install-the-module)

```
git submodule add git@github.com:dexamped/kohana-aws.git modules/kohana-aws
git submodule update --init --recursive

```

#### Load dependencies

[](#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

[](#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
-----

[](#usage)

```
