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

ActiveLibrary

chella/aws-services
===================

amazon service tnq

v0.0.1(4y ago)2217MITPHP

Since Oct 19Pushed 11mo ago1 watchersCompare

[ Source](https://github.com/AmChella/aws-client)[ Packagist](https://packagist.org/packages/chella/aws-services)[ RSS](/packages/chella-aws-services/feed)WikiDiscussions main Synced 1w ago

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

aws-service
===========

[](#aws-service)

[![Latest Stable Version](https://camo.githubusercontent.com/fa30e4fbd7f354cccde00720ddd335825cd7ae3084a6b80f45bccff17f269167/68747470733a2f2f706f7365722e707567782e6f72672f6368656c6c612f6177732d73657276696365732f762f737461626c65)](https://packagist.org/packages/chella/aws-services)[![Total Downloads](https://camo.githubusercontent.com/9330a605f72684dbfd02847a06e3635b331349469495f57a9b138dcbb113a0a8/68747470733a2f2f706f7365722e707567782e6f72672f6368656c6c612f6177732d73657276696365732f646f776e6c6f616473)](https://packagist.org/packages/chella/aws-services)[![Latest Unstable Version](https://camo.githubusercontent.com/6faa10381675fab6e5a6cfa9dd7914dd8338d5993ddf79534be86c118424f42f/68747470733a2f2f706f7365722e707567782e6f72672f6368656c6c612f6177732d73657276696365732f762f756e737461626c65)](https://packagist.org/packages/chella/aws-services)[![License](https://camo.githubusercontent.com/e62d0008a323829e16d1825976eb806ea82b4f492681e363d0a72a75ffc81f08/68747470733a2f2f706f7365722e707567782e6f72672f6368656c6c612f6177732d73657276696365732f6c6963656e7365)](https://packagist.org/packages/chella/aws-services)

Application with Slim Framework

#### Installation

[](#installation)

Use [Composer](https://getcomposer.org/)

#### Do Composer Require as below

[](#do-composer-require-as-below)

```
composer require chella/aws-services

```

#### Setup S3

[](#setup-s3)

```

try {
    $s3 = App::get("fileSystemS3", [
        "key"=>"###",
        "secret" => "###",
        "bucket" => "###",
        "region" => "###"
    ]);
}
catch (Exception $e) {
    echo $e->getMessage() . "\n";
}

```

#### Setup Minio

[](#setup-minio)

```

try {
    $minio = App::get("minioFileSystem", [
        'version' => 'latest',
        'region'  => 'us-east-1',
        'endpoint' => 'http://localhost:9000',
        'use_path_style_endpoint' => true,
        'credentials' => [
            'key' => '###',
            'secret' => '###',
        ],
        'bucket' => '###',
    ]);

    ## for writing content over minio server
    ## 1st arg is filename
    ## 2nd arg is content
    $minio->write('sample.txt', 'hello minio test');

    ## for read content over minio server
    ## 1st arg is filename
    echo $minio->read('sample.txt');

    ## for delete content over minio server
    ## 1st arg is filename
    echo $minio->delete('sample.txt');
}
catch (Exception $e) {
    echo $e->getMessage() . "\n";
}

```

### Minio docker documentation

[](#minio-docker-documentation)

### docker run command

[](#docker-run-command)

docker run -e MINIO\_ROOT\_USER=admin -e MINIO\_ROOT\_PASSWORD=chella#321 -p 9000:9000 -p 9001:9001 --name cloudS3local minio/minio server /data --console-address ":9001"

#### Here you go

[](#here-you-go)

Happy coding.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.7% 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

Unknown

Total

1

Last Release

1672d ago

### Community

Maintainers

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

---

Top Contributors

[![AmChella](https://avatars.githubusercontent.com/u/20120295?v=4)](https://github.com/AmChella "AmChella (11 commits)")[![google-labs-jules[bot]](https://avatars.githubusercontent.com/in/842251?v=4)](https://github.com/google-labs-jules[bot] "google-labs-jules[bot] (1 commits)")

### Embed Badge

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

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

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[humanmade/s3-uploads

WordPress plugin to store uploads on S3

2.1k2.4M9](/packages/humanmade-s3-uploads)[bref/laravel-bridge

An advanced Laravel integration for Bref, including Octane support.

3384.1M11](/packages/bref-laravel-bridge)[magento/magento2-functional-testing-framework

Magento2 Functional Testing Framework

15511.5M30](/packages/magento-magento2-functional-testing-framework)[laravel-notification-channels/aws-sns

Amazon Simple Notification Service (AWS SNS) notification channel for Laravel.

541.1M2](/packages/laravel-notification-channels-aws-sns)

PHPackages © 2026

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