PHPackages                             pieceofcake2/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. pieceofcake2/aws

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

pieceofcake2/aws
================

v1.0.0(7mo ago)0288↓50%MITPHPPHP ^8.1

Since Oct 5Pushed 7mo agoCompare

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

READMEChangelogDependencies (8)Versions (2)Used By (0)

CakePHP2 AWS Plugin
===================

[](#cakephp2-aws-plugin)

[![GitHub License](https://camo.githubusercontent.com/1336e51b38affb5f8a7ba3a3f749e4d50b9f987600a4e6d574d3c60f3ad3d10d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f70696563656f6663616b65322f6177733f6c6162656c3d4c6963656e7365)](LICENSE)[![Packagist Version](https://camo.githubusercontent.com/866cccecb05c182e6c51e29f373fd64e59f56ad2612b8e288ffd84a8ebda4c0e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f70696563656f6663616b65322f6177733f6c6162656c3d5061636b6167697374)](https://packagist.org/packages/pieceofcake2/aws)[![PHP](https://camo.githubusercontent.com/3b04c27ca4b4fc0900867c7383fce1096d39ff22b04ca492b103c3290438b80d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f6177732f7068703f6c6f676f3d706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d504850266c6162656c436f6c6f723d25323337373742423426636f6c6f723d253233464646464646)](https://camo.githubusercontent.com/3b04c27ca4b4fc0900867c7383fce1096d39ff22b04ca492b103c3290438b80d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f6177732f7068703f6c6f676f3d706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d504850266c6162656c436f6c6f723d25323337373742423426636f6c6f723d253233464646464646)[![CakePHP](https://camo.githubusercontent.com/627f7f4b3f09a92c5bc9fedadfe0e573a996c762197c50c61c4cc52eb21f9970/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f6177732f70696563656f6663616b65322f63616b657068703f6c6f676f3d63616b65706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d43616b65504850266c6162656c436f6c6f723d25323344333343343326636f6c6f723d253233464646464646)](https://camo.githubusercontent.com/627f7f4b3f09a92c5bc9fedadfe0e573a996c762197c50c61c4cc52eb21f9970/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f70696563656f6663616b65322f6177732f70696563656f6663616b65322f63616b657068703f6c6f676f3d63616b65706870266c6f676f436f6c6f723d253233464646464646266c6162656c3d43616b65504850266c6162656c436f6c6f723d25323344333343343326636f6c6f723d253233464646464646)[![Tests](https://camo.githubusercontent.com/3da99b6495494e5a0cbb8c3ae0f959f7bf31dc0206963139e44250dbedfe2d40/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f70696563656f6663616b65322f6177732f74657374732e796d6c3f6c6162656c3d5465737473)](https://github.com/pieceofcake2/aws/actions/workflows/tests.yml)[![Codecov](https://camo.githubusercontent.com/5ee073bc252a45219b99db6ca5744d1bc5c484c21050edacdabefa81ebe5bf4a/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f67682f70696563656f6663616b65322f6177733f6c6162656c3d436f766572616765)](https://codecov.io/gh/pieceofcake2/aws)

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

[](#installation)

```
composer require pieceofcake2/aws

```

Config
------

[](#config)

`Config/core.php`

```
    Configure::write('Session', [
        'defaults' => 'php',
        'handler' => [
            'engine' => 'Aws.DynamoDbSession',
            'table_name' => 'DYNAMODB_TABLE_NAME'
        ],
        'timeout' => 1440,
        'ini' => [
            'session.cookie_lifetime' => 0,
            'session.gc_maxlifetime' => 2580000,
            'session.gc_probability' => 1,
            'session.gc_divisor' => 100,
        ],
    ]);
```

```
/*
 * Aws
 */
    Configure::write('Aws', [
        'region' => 'ap-northeast-1',
        'version' => 'latest',
    ]);
```

`Config/email.php`

```
class EmailConfig
{
    /**
     * Default email profile values.
     *
     * @var array
     */
    public $default = [
        'transport' => 'Aws.AmazonSesApi',
        'from' => 'example@example.com',
        'charset' => 'utf-8',
        'headerCharset' => 'utf-8',
    ];
}
```

### S3 StreamWrapper

[](#s3-streamwrapper)

```
$client = new Aws\S3\S3Client(Configure::read('Aws'));
$client->registerStreamWrapperV2();
```

or

```
CakePlugin::load('Aws', [
    'bootstrap' => true,
]);
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance63

Regular maintenance activity

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

225d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/578548?v=4)[TSURU](/maintainers/ttsuru)[@ttsuru](https://github.com/ttsuru)

---

Top Contributors

[![ttsuru](https://avatars.githubusercontent.com/u/578548?v=4)](https://github.com/ttsuru "ttsuru (3 commits)")

---

Tags

awscakephpcakephp2

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/pieceofcake2-aws/health.svg)

```
[![Health](https://phpackages.com/badges/pieceofcake2-aws/health.svg)](https://phpackages.com/packages/pieceofcake2-aws)
```

###  Alternatives

[aws/aws-sdk-php-symfony

A Symfony bundle for v3 of the AWS SDK for PHP

36517.7M22](/packages/aws-aws-sdk-php-symfony)[dumpk/elastcoder

AWS Elastic Transcoder Service Integration

2819.7k](/packages/dumpk-elastcoder)[pluginscart/dynamodb-php

Access AWS DynamoDB through simpler interface in PHP.

1114.0k](/packages/pluginscart-dynamodb-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
