PHPackages                             chatagency/laravel-signed-requests - 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. chatagency/laravel-signed-requests

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

chatagency/laravel-signed-requests
==================================

A package to (hopefully) make custom signed requests easier.

1.1.0(3y ago)024MITPHPPHP ^7.3|^8.0|^8.1

Since Jun 10Pushed 3y ago2 watchersCompare

[ Source](https://github.com/Chat-Agency/laravel-signed-requests)[ Packagist](https://packagist.org/packages/chatagency/laravel-signed-requests)[ RSS](/packages/chatagency-laravel-signed-requests/feed)WikiDiscussions main Synced 1mo ago

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

Laravel Signed Requests
=======================

[](#laravel-signed-requests)

A Laravel package to help make signed requests between two laravel apps easier.

---

Requirements
------------

[](#requirements)

You need to have openssl installed. We use hash\_hmac() function to create the signature from the payloads and validate the submitted signature. Review the potentially available algorithms you can use [here](https://www.php.net/manual/en/function.hash-hmac-algos.php).

The package includes: A config file:

> Allows you to define request types by name and give each type of request a unique signature secret string to use when validating signed request payloads.

A working middleware validator:

> This middleware works for the 'request' type as a default. You can copy this middleware after publishing, and use it as the baseline to create your own signed request validating middleware.

To start, after installing with composer, run:

```
artisan vendor:publish --provider=ChatAgency\LaravelSignedRequests\LaravelSignedRequestsServiceProvider --tag=laravel-signed-requests

```

This will give you the config file `config/signed-requests.php` as well as the middleware, that will be copied into your app's middleware folder.

As a test, you can use this curl call after installation, with all the default configuration.

The package registers a middleware that is aliased to: `signed-requests`. Create a controller and assign this middleware to a post route that uses this controller.

You can then post a simple test payload to this route:

```
curl --request POST \
  --url //{YOUR_LOCAL_ENV_SITE_URL_MAYBE?}/api/test \
  --header 'Content-Type: application/json' \
  --header 'X-BaseSignature: 2fde638dd705cc78c2cfe315f395b91ce3e09b2c9637f200cae65fc3041f4e4f' \
  --data '{"test":1}'

```

You will get an unauthorized http code if the signature is not passing the middleware's validation.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

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

Every ~116 days

Total

2

Last Release

1316d ago

PHP version history (2 changes)1.0.0PHP ^7.3|^8.0

1.1.0PHP ^7.3|^8.0|^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/54616cc768a37857a3133c80ebab7b78b97289cbfbfb15175ffc0c19468e304f?d=identicon)[victorchat](/maintainers/victorchat)

---

Top Contributors

[![morales2k](https://avatars.githubusercontent.com/u/1074855?v=4)](https://github.com/morales2k "morales2k (11 commits)")[![Chatagency](https://avatars.githubusercontent.com/u/75493588?v=4)](https://github.com/Chatagency "Chatagency (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/chatagency-laravel-signed-requests/health.svg)

```
[![Health](https://phpackages.com/badges/chatagency-laravel-signed-requests/health.svg)](https://phpackages.com/packages/chatagency-laravel-signed-requests)
```

###  Alternatives

[wireui/wireui

TallStack components

1.8k1.3M16](/packages/wireui-wireui)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

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