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

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

ushios/aws-bundle
=================

Symfony AwsBundle

0.0.3(12y ago)1195MITPHPPHP &gt;=5.3.2

Since Oct 14Pushed 12y ago1 watchersCompare

[ Source](https://github.com/ushios/aws-bundle)[ Packagist](https://packagist.org/packages/ushios/aws-bundle)[ Docs](http://github.com/ushios/aws-bundle)[ RSS](/packages/ushios-aws-bundle/feed)WikiDiscussions master Synced 3d ago

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

aws-bundle
==========

[](#aws-bundle)

Create aws client using 'config.yml'.

---

Installation
============

[](#installation)

### composer.json

[](#composerjson)

```
# composer.json

"require": {
    "ushios/aws-bundle": "0.0.*",
    …
}

```

and run `composer update` command.

### AppKernel.php

[](#appkernelphp)

```
# app/AppKernel.php

public function registerBundles()
{
    bundles = array(
        // ...
        new Ushios\Bundle\AwsBundle\UshiosAwsBundle(),
    );

    retrun bundles();
}

```

Confguration
============

[](#confguration)

config.yml

```
# app/config/config.php

ushios_aws:
    client:
        default:
            key: ${your_aws_key}
            secret: ${your_aws_secret_key}
            region: ap-northeast-1
        named:
            class: Your\Aws\Client # default: Aws\Common\Aws
            key: ${your_named_aws_key}
            secret: ${your_named_aws_secret_key}
            region: eu-west-1

```

Usage
=====

[](#usage)

Get client from service.
------------------------

[](#get-client-from-service)

Using default settings aws client.

```
# Bundle/Controller/Controller.php

public function fooAction()
{
    $aws = $this->container->get('ushios_aws_client');
    // or
    $aws = $this->container->get('ushios_aws_client.default');
}

```

Using named settings.

```
# Bundle/Controller/Controller.php

public function fooAction()
{
    $aws = $this->container->get('ushios_aws_client.named');
    get_class($aws); // Your\Aws\Client
}

```

Client
------

[](#client)

@see [aws/aws-sdk-php web siite](https://github.com/aws/aws-sdk-php/)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

Total

3

Last Release

4579d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/98f9f4d912f6c6054547a64bad248749f16fa3a1af7604ec34c2b52294bb589b?d=identicon)[ushios](/maintainers/ushios)

---

Top Contributors

[![ushios](https://avatars.githubusercontent.com/u/679666?v=4)](https://github.com/ushios "ushios (16 commits)")

---

Tags

awsamazon web services

### Embed Badge

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

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

###  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)
