PHPackages                             assurdeal/laravel-orias - 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. assurdeal/laravel-orias

ActiveLibrary

assurdeal/laravel-orias
=======================

Work with the ORIAS web service in Laravel

v0.2.1(1y ago)0946MITPHPPHP ^8.2

Since Oct 20Pushed 1y ago1 watchersCompare

[ Source](https://github.com/assurdeal/laravel-orias)[ Packagist](https://packagist.org/packages/assurdeal/laravel-orias)[ RSS](/packages/assurdeal-laravel-orias/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (6)Versions (5)Used By (0)

Laravel ORIAS webservice integration
====================================

[](#laravel-orias-webservice-integration)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b3a0e466fe176e1a2d9d6d5ee4c9ff097ab9f9208fa4f2ee4974f3fde71142d5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61737375726465616c2f6c61726176656c2d6f726961732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/assurdeal/laravel-orias)[![GitHub Tests Action Status](https://camo.githubusercontent.com/a30d99f0dd976f0d64bd6ab8700ad052e7417812339b04ce9e1c86d0c189c593/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f61737375726465616c2f6c61726176656c2d6f726961732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/assurdeal/laravel-orias/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/168c99d142edcbbab164417b11673598edeba0610ee979516532b2700c81c3e5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f61737375726465616c2f6c61726176656c2d6f726961732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/assurdeal/laravel-orias/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/da69304cc5173de44f49042d2dd85eb3821c9b40176b153cdd7c8029980b04df/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f61737375726465616c2f6c61726176656c2d6f726961732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/assurdeal/laravel-orias)

This package allows you to integrate the ORIAS webservice into your Laravel application. You can use it to validate an ORIAS number, or to retrieve information about a Broker.

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

[](#installation)

You can install the package via composer:

```
composer require assurdeal/laravel-orias
```

Add your ORIAS webservice API key to your `.env` file

```
ORIAS_KEY=your-api-key
```

Usage
-----

[](#usage)

```
use Assurdeal\LaravelOrias\Requests\ShowBrokerRequest;

$response = ShowBrokerRequest::make('123456789')->send();

/** @var \Assurdeal\LaravelOrias\Data\Intermediary $dto */
$dto = $response->dto();
```

Usage as validator
------------------

[](#usage-as-validator)

```
use Assurdeal\LaravelOrias\Rules\RegisteredIntermediary;
use Assurdeal\LaravelOrias\Enums\RegistrationCategory;

Validator::make($data, [
    'orias' => ['required', new RegisteredIntermediary()],
]);

Validator::make($data, [
    'orias' => [
        'required',
        (new RegisteredIntermediary())->withAllOfCategories(
            RegistrationCategory::COA,
            RegistrationCategory::AGA
        )
    ],
]);

Validator::make($data, [
    'orias' => [
        'required',
        (new RegisteredIntermediary())->withAnyOfCategories(
            RegistrationCategory::COA,
            RegistrationCategory::AGA
        )
    ],
]);
```

Translations
------------

[](#translations)

Add the following lines to your `lang/xx.json` files where `xx` represents the locale you want to translate in.

Example for `resources/fr.json`

```
{
  "The :attribute is not of a valid length.": "Le :attribute n'est pas d'une longueur valide.",
  "The :attribute is not a registered intermediary.": "Le :attribute n'est pas un intermédiaire enregistré.",
  "The :attribute was not found in the registry of intermediaries.": "Le :attribute n'a pas été trouvé dans le registre des intermédiaires.",
  "The :attribute is not registered for any of the valid categories.": "Le :attribute n'est pas enregistré pour aucune des catégories valides.",
  "The :attribute is not registered for all of the valid categories.": "Le :attribute n'est pas enregistré pour toutes les catégories valides."
}
```

Testing
-------

[](#testing)

```
composer test
```

Credits
-------

[](#credits)

- [Percy Mamedy](https://github.com/percymamedy)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

Total

4

Last Release

670d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3db0a14dead2c0a8eec8526b1cfa43aabff2e4cde044fefb9d4ddccb0fbc8128?d=identicon)[percymamedy](/maintainers/percymamedy)

---

Top Contributors

[![percymamedy](https://avatars.githubusercontent.com/u/11259669?v=4)](https://github.com/percymamedy "percymamedy (6 commits)")

---

Tags

laravelweb servicesoapbrokerORIAS

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/assurdeal-laravel-orias/health.svg)

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

###  Alternatives

[codedredd/laravel-soap

A SoapClient wrapper integration for Laravel

221516.6k3](/packages/codedredd-laravel-soap)[sourcetoad/soapy

A Soap Client built for Laravel.

1294.4k2](/packages/sourcetoad-soapy)

PHPackages © 2026

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