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

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

cinghie/yii2-aws
================

Yii2 Amazon Web Services (AWS)

0.1.1(7y ago)03911BSD-3-ClausePHP

Since Apr 10Pushed 4y ago2 watchersCompare

[ Source](https://github.com/cinghie/yii2-aws)[ Packagist](https://packagist.org/packages/cinghie/yii2-aws)[ Docs](https://github.com/cinghie/yii2-aws)[ RSS](/packages/cinghie-yii2-aws/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Yii2 AWS
========

[](#yii2-aws)

[![License](https://camo.githubusercontent.com/1609f960ef92085898f1c0beeb011e4d8db044e053c1dca01e312e6d9b980eaf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f63696e676869652f796969322d6177732e737667)](https://camo.githubusercontent.com/1609f960ef92085898f1c0beeb011e4d8db044e053c1dca01e312e6d9b980eaf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f63696e676869652f796969322d6177732e737667)[![Latest Stable Version](https://camo.githubusercontent.com/65cd02c3d70999235e9d79c3bf199e2fe6532de3d0a9a444ba84299bc14e8932/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f63696e676869652f796969322d6177732e737667)](https://camo.githubusercontent.com/65cd02c3d70999235e9d79c3bf199e2fe6532de3d0a9a444ba84299bc14e8932/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f63696e676869652f796969322d6177732e737667)[![Latest Release Date](https://camo.githubusercontent.com/f017dddd74177fd561b20ed81080707cb8fcd7ef35013a9e89f476aecbaebb37/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652d646174652f63696e676869652f796969322d6177732e737667)](https://camo.githubusercontent.com/f017dddd74177fd561b20ed81080707cb8fcd7ef35013a9e89f476aecbaebb37/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652d646174652f63696e676869652f796969322d6177732e737667)[![Latest Commit](https://camo.githubusercontent.com/4f60d24b1a9e07c92c2c4fbd7635cbfe6b6701fea2acbf9e8752b24e78031e10/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f63696e676869652f796969322d6177732e737667)](https://camo.githubusercontent.com/4f60d24b1a9e07c92c2c4fbd7635cbfe6b6701fea2acbf9e8752b24e78031e10/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f63696e676869652f796969322d6177732e737667)[![Total Downloads](https://camo.githubusercontent.com/e15dbce34f4ac6cf1b780bd0f04afee8ef645f5bb31ed226c54c84e478beb0ad/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63696e676869652f796969322d6177732e737667)](https://packagist.org/packages/cinghie/yii2-aws)

Yii2 AWS (Amazon Web Services) implementing Amazon AWS SDK for PHP

Features
--------

[](#features)

- Amazon S3:
    [https://docs.aws.amazon.com/en\_us/sdk-for-php/v3/developer-guide/s3-examples.html](https://docs.aws.amazon.com/en_us/sdk-for-php/v3/developer-guide/s3-examples.html)
- Amazon SES:
    [https://docs.aws.amazon.com/en\_us/sdk-for-php/v3/developer-guide/ses-examples.html](https://docs.aws.amazon.com/en_us/sdk-for-php/v3/developer-guide/ses-examples.html)
- Amazon SNS:
    [https://docs.aws.amazon.com/en\_us/sdk-for-php/v3/developer-guide/sns-examples.html](https://docs.aws.amazon.com/en_us/sdk-for-php/v3/developer-guide/sns-examples.html)
- Amazon SES Deliverability Dashboard:
    [https://docs.aws.amazon.com/en\_us/ses/latest/DeveloperGuide/bouncecomplaintdashboard.html](https://docs.aws.amazon.com/en_us/ses/latest/DeveloperGuide/bouncecomplaintdashboard.html)

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
$ php composer.phar require cinghie/yii2-aws "*"

```

or add

```
"cinghie/yii2-aws": "*"

```

Configuration
-------------

[](#configuration)

Add in your common configuration file:

```
use cinghie\aws\components\AWS;
use cinghie\aws\AWS as AWSModule;

'components' => [

    'aws' => [
    	'class' => AWS::class,
    	'accessKey' => 'AMAZON_ACCESS_KEY',
    	'secretKey' => 'AMAZON_SECRET_KEY',
    	'region' => 'eu-west-1',
    	'version' => 'latest'
    ],

],

'modules' => [

	'aws' => [
		'class' => AWSModule::class,
		'awsRoles' => ['admin'],
	],

],

```

Overrides
---------

[](#overrides)

Override controller example, on modules config

```
'modules' => [

	'aws' => [
		'class' => AWS::class,
		'controllerMap' => [
			's3' => 'app\controllers\S3Controller',
			'ses' => 'app\controllers\SesController',
		]
	]

],

```

Override models example, on modules config

```
'modules' => [

	'aws' => [
		'class' => AWS::class,
		'modelMap' => [
			'S3' => 'app\models\S3',
			'SES' => 'app\models\SES',
		]
	]

],

```

Override view example, on components config

```
'components' => [

	'view' => [
		'theme' => [
			'pathMap' => [
				'@cinghie/aws/views/s3' => '@app/views/aws/s3',
				'@cinghie/aws/views/ses' => '@app/views/aws/ses',
			],
		],
	],

],

```

Filters
-------

[](#filters)

If you have a Yii2 App Advanced (frontend/backend) you can exclude frontend actions

```
use cinghie\articles\filters\FrontendFilter as AwsFrontendFilter;

'modules' => [

	'aws' => [
		'class' => AWS::class,
		'as frontend' => AwsFrontendFilter::class,
	]

],

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

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 ~2 days

Total

2

Last Release

2585d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/cfedb99c8fcbaf668c4f9779d341997b84029673eda224241b11732981cbc8b2?d=identicon)[cinghie](/maintainers/cinghie)

---

Top Contributors

[![cinghie](https://avatars.githubusercontent.com/u/2445152?v=4)](https://github.com/cinghie "cinghie (56 commits)")

### Embed Badge

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

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

###  Alternatives

[napp/xray-laravel

AWS X-Ray for Laravel applications.

61407.3k](/packages/napp-xray-laravel)[helgesverre/extractor

AI-Powered Data Extraction for your Laravel application.

22128.0k](/packages/helgesverre-extractor)

PHPackages © 2026

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