PHPackages                             iamxid/iamx-wallet-connect - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. iamxid/iamx-wallet-connect

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

iamxid/iamx-wallet-connect
==========================

This package allows users to use the IAMX wallet to authenticate into a laravel project.

039PHP

Since Mar 22Pushed 2y ago2 watchersCompare

[ Source](https://github.com/IAMXID/iamx-wallet-connect)[ Packagist](https://packagist.org/packages/iamxid/iamx-wallet-connect)[ RSS](/packages/iamxid-iamx-wallet-connect/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

iamx-wallet-connect
===================

[](#iamx-wallet-connect)

IAMX wallet connect is a Laravel package to login to a laravel application using the IAMX identity wallet.

- [IAMX-wallet-connect](#iamx-wallet-connect)
    - [Installation](#Installation)
    - [Configuration](#Configuration)
    - [Usage](#Usage)
    - [Bugs, Suggestions, Contributions and Support](#bugs-and-suggestions)
    - [Copyright and License](#copyright-and-license)

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

[](#installation)

Install the current version of the `iamxid/iamx-wallet-connect` package via composer:

```
    composer require iamxid/iamx-wallet-connect:dev-main
```

Configuration
-------------

[](#configuration)

Publish the migration file:

```
    php artisan vendor:publish --provider="IAMXID\IamxWalletConnect\IamxWalletConnectServiceProvider" --tag="migrations"
```

Run the migration:

```
    php artisan migrate
```

Add the scope to the .env file. Example:

```
IAMX_IDENTITY_SCOPE={"did":"","person":{},"vUID":{},"address":{},"email":{},"mobilephone":{}}

```

Add the redirect URL to the .env file. Example:

```
IAMX_IDENTITY_CONNECT_REDIRECT_URL="/page_to_load_after_login"

```

Usage
-----

[](#usage)

Add the attribute "iamx\_vuid" to the $fillable array in /app/Models/User.php

```
    protected $fillable = [
        'name',
        'email',
        'password',
        'iamx_vuid'
    ];
```

Add the HasDID trait to the user model in /app/Models/User.php

```
use IAMXID\IamxWalletConnect\Traits\HasDID;

class User extends Model
{
    use HasDID;
    ...
}
```

Place the component `` in your blade template to insert the wallet connect button.

Style the connect button and the container in your css file using the classes `btn-identity`and `container-btn-identity`:

```
@tailwind base;
@tailwind components;

.container-btn-identity {
    @apply m-5
}

.btn-identity {
    @apply bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded
}

@tailwind utilities;

```

Examples
--------

[](#examples)

Use the functions in the HasDID trait in your application to access the IAMX wallet attributes:

Fetch single attributes:

```
$user = User::find(1);
$street = $user->getDIDAttribute('address', 'street', $user->id);
$housenr = $user->getDIDAttribute('address', 'housenr', $user->id);
$zip = $user->getDIDAttribute('address', 'zip', $user->id);
```

Fetch all attributes of a category:

```
$user = User::find(1);
$allCategoryValues = $user->getDIDCategoryValues('address', $user->id);
```

Fetch all available attributes:

```
$user = User::find(1);
$allValues = $user->getAllDIDValues($user->id);
```

Bugs and Suggestions
--------------------

[](#bugs-and-suggestions)

Copyright and License
---------------------

[](#copyright-and-license)

[MIT](https://choosealicense.com/licenses/mit/)

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/58e831f4d9b98ca3b61cd1c48a275d991fd67ec09db753777249a36e04383311?d=identicon)[Maetti79](/maintainers/Maetti79)

---

Top Contributors

[![cardano-blockhouse](https://avatars.githubusercontent.com/u/90690011?v=4)](https://github.com/cardano-blockhouse "cardano-blockhouse (11 commits)")

### Embed Badge

![Health badge](/badges/iamxid-iamx-wallet-connect/health.svg)

```
[![Health](https://phpackages.com/badges/iamxid-iamx-wallet-connect/health.svg)](https://phpackages.com/packages/iamxid-iamx-wallet-connect)
```

###  Alternatives

[vitalybaev/laravel5-dkim

Laravel 5/6 package for signing outgoing messages with DKIM.

3163.1k](/packages/vitalybaev-laravel5-dkim)

PHPackages © 2026

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