PHPackages                             homedoctor-es/laravel-holded - 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. [API Development](/categories/api)
4. /
5. homedoctor-es/laravel-holded

ActiveLibrary[API Development](/categories/api)

homedoctor-es/laravel-holded
============================

Laravel integration of the \[Holded PHP SDK\](https://github.com/homedoctor-es/holded-php-sdk).

1.0.3(4y ago)03.1k↓40%BSD-3-ClausePHPPHP &gt;=7.0.0

Since Nov 18Pushed 4y ago1 watchersCompare

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

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

Holded SDK integration for Laravel
==================================

[](#holded-sdk-integration-for-laravel)

Laravel integration for the Holded SDK.

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

With Composer installed, you can then install the extension using the following commands:

```
$ php composer.phar require homedoctor-es/laravel-holded
```

or add

```
...
    "require": {
        "homedoctor-es/laravel-holded": "*"
    }
```

to the `require` section of your `composer.json` file.

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

[](#configuration)

1. Register the ServiceProvider in your config/app.php service provider list.

config/app.php

```
return [
    //other stuff
    'providers' => [
        //other stuff
        \HomedoctorEs\Laravel\Holded\HoldedServiceProvider::class,
    ];
];
```

2. If you want, you can add the following facade to the $aliases section.

config/app.php

```
return [
    //other stuff
    'aliases' => [
        //other stuff
        'Holded' => \HomedoctorEs\Laravel\Holded\Facades\Holded::class,
    ];
];
```

3. Publish the Holded provider

```
php artisan vendor:publish --provider="HomedoctorEs\Laravel\Holded\HoldedServiceProvider"

```

4. Set the reference, api\_key and base\_url in the config/holded.php file.

config/holded.php

```
return [
    'api_key' => env('HOLDED_API_KEY'),
    'base_url' => env('HOLDED_BASE_URL', 'https://api.holded.com/api/'),
];
```

5. Or use .env file

```
HOLDED_API_KEY=
HOLDED_BASE_URL=https://api.holded.com/api/

```

Usage
-----

[](#usage)

You can use the facade alias Holded to execute services of the Holded sdk. The authentication params will be automatically injected.

```
$contacts = \HomedoctorEs\Laravel\Holded\Facades\Holded::contact();
```

Or use Laravel Service Container to get The Holded Instance.

```
app(\HomedoctorEs\Laravel\Holded\Holded::class)->contact();
```

Once you have done this steps, you can use all Holded SDK endpoints as are described in the sdk package documentation.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

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

Total

4

Last Release

1586d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13337359?v=4)[Homedoctor](/maintainers/Homedoctor)[@HomeDoctor](https://github.com/HomeDoctor)

---

Top Contributors

[![jsolam](https://avatars.githubusercontent.com/u/34037044?v=4)](https://github.com/jsolam "jsolam (1 commits)")

---

Tags

phplaravelholdedhomedoctor-es

### Embed Badge

![Health badge](/badges/homedoctor-es-laravel-holded/health.svg)

```
[![Health](https://phpackages.com/badges/homedoctor-es-laravel-holded/health.svg)](https://phpackages.com/packages/homedoctor-es-laravel-holded)
```

###  Alternatives

[resend/resend-laravel

Resend for Laravel

1191.4M6](/packages/resend-resend-laravel)[joisarjignesh/bigbluebutton

BigBlueButton Server API Library for Laravel

162145.5k1](/packages/joisarjignesh-bigbluebutton)[dariusiii/tmdb-laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.

1821.1k](/packages/dariusiii-tmdb-laravel)[madeitbelgium/wordpress-php-sdk

WordPress Laravel PHP SDK

4422.9k1](/packages/madeitbelgium-wordpress-php-sdk)[dystcz/lunar-api

Dystore API layer for Lunar e-commerce package

411.1k3](/packages/dystcz-lunar-api)[gufy/whmcs

WHMCS API for Laravel 5

201.7k](/packages/gufy-whmcs)

PHPackages © 2026

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