PHPackages                             uam/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. [File &amp; Storage](/categories/file-storage)
4. /
5. uam/aws-bundle

ActiveSymfony-bundle[File &amp; Storage](/categories/file-storage)

uam/aws-bundle
==============

Symfony bundle to provide a wrapper service around AWS S3

0.5.1(8y ago)212.0kMITPHP

Since Mar 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/opichon/UAMAwsBundle)[ Packagist](https://packagist.org/packages/uam/aws-bundle)[ Docs](http://gitweb.united-asian.com)[ RSS](/packages/uam-aws-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (20)Used By (0)

UAMAwsBundle
============

[](#uamawsbundle)

The UAMAwsBundle exposes AWS clients as services for use in your Symfony 2 app.

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

[](#installation)

Add the package to your project's `composer.json`:

```
"require": {
	"uam/aws-bundle": "dev-master",
	…
}

```

Register this bundle in your app's kernel:

```
# app/AppKernel.php

public function registerBundles()
{
	bundles = (
		// …
		new UAM\Bundle\AwsBundle\UAMAwsBundle(),
	);

	return bundles();
}

```

Configuration
=============

[](#configuration)

The UAMAwsBundle can be configured in 2 ways: either by providing a path to a AWS configuration file or by setting the configuration parameters in your app's configuration.

### Direct configuration

[](#direct-configuration)

Define the following settings in your app's configuration:

```
# app/config/config.php
uam_aws:
	config:
		key: 	YOUR AWS ACCESS KEY
		secret: YOUR AWS SECRET KEY
		region: DEFAULT REGION

```

### Via AWS configuration file

[](#via-aws-configuration-file)

You can also simply have your app's configuration file point to a AWS configuration file in a location of your choice. This configuration file must be in the format required by the AWS SDK's `Aws::factory()` method.

```
# app/config/config.php
uam_aws:
	config_path: /path/to/aws/config/file

```

Usage
=====

[](#usage)

Currently this bundle defines 2 services that provide clients for the AWS S3 and SQS services.

You can obtain this service from a container in the standard way, e.g. in a Controller:

```
# MyBundle/Controller/MyController.php

public function someAction()
{
	$s3 = $this->container->get('uam_aws.s3');

	$sqs = $this->container->get('uam_aws.sqs');

	// ...
}

```

The `uam_aws.s3` service is an instance of `Aws\S3\S3Client`. See the AWS SDK documentation for usage of the S3Client.

The `uam_aws.sqs` service is an instance of `Aws\Sqs\SqsClient`. See the AWS SDK documentation for usage of the SQsClient.

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

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

Recently: every ~340 days

Total

19

Last Release

3170d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/61710b3e2bdf8cc378cb14f7e9c3d4fa753738373565270820a7be21c89f6d69?d=identicon)[opichon](/maintainers/opichon)

---

Top Contributors

[![opichon](https://avatars.githubusercontent.com/u/203745?v=4)](https://github.com/opichon "opichon (45 commits)")

---

Tags

symfonybundles3awscloud

### Embed Badge

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

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

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.5k](/packages/aws-aws-sdk-php)[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.7k285.7M1.0k](/packages/league-flysystem-aws-s3-v3)[ellaisys/aws-cognito

Laravel Authentication using AWS Cognito (Web and API)

123256.9k1](/packages/ellaisys-aws-cognito)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[fedemotta/yii2-aws-sdk

This extension provides the AWS SDK integration for the Yii2 framework

15448.9k2](/packages/fedemotta-yii2-aws-sdk)[kolay/xlsx-stream

Streaming XLSX reader and writer for PHP and Laravel. Constant memory regardless of file size, direct S3 multipart streaming, optional born-indexed random access.

437.9k](/packages/kolay-xlsx-stream)

PHPackages © 2026

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