PHPackages                             laravelgeekphp/laravel-rekognition - 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. [Image &amp; Media](/categories/media)
4. /
5. laravelgeekphp/laravel-rekognition

ActiveLibrary[Image &amp; Media](/categories/media)

laravelgeekphp/laravel-rekognition
==================================

A simple package to enable image alt tag label detection with AWS Rekognition

0.0.7(3y ago)043[4 PRs](https://github.com/laravelgeekphp/laravel-rekognition/pulls)MITPHPPHP ^8.1

Since Sep 25Pushed 2y agoCompare

[ Source](https://github.com/laravelgeekphp/laravel-rekognition)[ Packagist](https://packagist.org/packages/laravelgeekphp/laravel-rekognition)[ Docs](https://github.com/laravelgeekphp/laravel-rekognition)[ RSS](/packages/laravelgeekphp-laravel-rekognition/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (14)Versions (13)Used By (0)

A simple package to enable image alt tag label detection with AWS Rekognition
=============================================================================

[](#a-simple-package-to-enable-image-alt-tag-label-detection-with-aws-rekognition)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d045331649f0cb7321246aedf75310664fbfc14b33e8fdace170f89dd7ed2818/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c6765656b7068702f6c61726176656c2d72656b6f676e6974696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravelgeekphp/laravel-rekognition)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c3e3ac5b59ad842c7b5082b11ea6e9ff72c0eca1ce3af562d3b297408f4f12d8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c61726176656c6765656b7068702f6c61726176656c2d72656b6f676e6974696f6e2f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/laravelgeekphp/laravel-rekognition/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/1b54c35c37bbbbca69d72e69787cd1f1f442bb8cc3d02bfca6620a8f25ba7857/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c61726176656c6765656b7068702f6c61726176656c2d72656b6f676e6974696f6e2f466978253230504850253230636f64652532307374796c652532306973737565733f6c6162656c3d636f64652532307374796c65)](https://github.com/laravelgeekphp/laravel-rekognition/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/54f006ef31ef27c91d5ee6d49d2228be5e003371278704542adbcb9bf81912ea/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c6765656b7068702f6c61726176656c2d72656b6f676e6974696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravelgeekphp/laravel-rekognition)

This is a simple open-source Laravel Package. It's only purpose is to provide a Facade for getting image labels using AWS Rekognition. Example usage is below, currently only file paths are supported. You pass the path of a file and under the hood the contents of said file is retrieved using Storage facade. The result is passed to Rekognition using HTTP client and image labels are returned.

Support us
----------

[](#support-us)

You can support us by reading our [blog](https://laravelgeek.com)

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

[](#installation)

You can install the package via composer:

```
composer require laravelgeekphp/laravel-rekognition
```

You can publish the config file with:

```
php artisan vendor:publish --tag="rekognition-config"
```

This is the contents of the published config file:

```
return [
    'key'    => env('REKOGNITION_KEY'),
    'secret' => env('REKOGNITION_SECRET'),
    'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
];
```

Usage
-----

[](#usage)

```
use \LaravelGeek\LaravelRekognition\Facades\Rekognition;
use Illuminate\Support\Facades\Storage;

$imageLabels = Rekognition::getFromFilePath(Storage::path($mediaPath));
// do something with your labels
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

This is currently the first version ever published, there is no changelog yet.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Taylor Perkins](https://github.com/jtperkins)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

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

7

Last Release

1361d ago

### Community

Maintainers

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

---

Top Contributors

[![jtperkins](https://avatars.githubusercontent.com/u/35849785?v=4)](https://github.com/jtperkins "jtperkins (50 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravellaravelgeekphplaravel-rekognition

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/laravelgeekphp-laravel-rekognition/health.svg)

```
[![Health](https://phpackages.com/badges/laravelgeekphp-laravel-rekognition/health.svg)](https://phpackages.com/packages/laravelgeekphp-laravel-rekognition)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M46](/packages/spatie-laravel-pdf)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M96](/packages/dedoc-scramble)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M186](/packages/laravel-ai)[spatie/laravel-passkeys

Use passkeys in your Laravel app

471890.7k36](/packages/spatie-laravel-passkeys)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

44855.7k](/packages/harris21-laravel-fuse)

PHPackages © 2026

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