PHPackages                             yaroslawww/laravel-iprosoftware-api - 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. yaroslawww/laravel-iprosoftware-api

Abandoned → [think.studio/laravel-iprosoftware-api](/?search=think.studio%2Flaravel-iprosoftware-api)Library[API Development](/categories/api)

yaroslawww/laravel-iprosoftware-api
===================================

Laravel wrapper for IproSoftware Api

3.1.0(2y ago)06512MITPHPPHP ^8.1

Since Jul 5Pushed 2y agoCompare

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

READMEChangelogDependencies (8)Versions (16)Used By (2)

Laravel wrapper for IproSoftware Api
====================================

[](#laravel-wrapper-for-iprosoftware-api)

[![Packagist License](https://camo.githubusercontent.com/7d701bfe38104739d577bce38fffbafbe87c2f08b9c07c0953c3b5b72e9d57af/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6970726f736f6674776172652d6170693f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/7d701bfe38104739d577bce38fffbafbe87c2f08b9c07c0953c3b5b72e9d57af/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6970726f736f6674776172652d6170693f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/43409066235eda8c4b0c1a91c5facd1180fd49e565b4d51881a89607e2094a6c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d6970726f736f6674776172652d617069)](https://packagist.org/packages/think.studio/laravel-iprosoftware-api)[![Total Downloads](https://camo.githubusercontent.com/d0330fecddc49a71c8d5702f7acd46f6d7ca08d1ea74cdbebc7019d955161094/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d6970726f736f6674776172652d617069)](https://packagist.org/packages/think.studio/laravel-iprosoftware-api)[![Build Status](https://camo.githubusercontent.com/cadee552dee5dd45c26f17d56aa51f1d6bcd2660be2b3f6e63767d46f4289452/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6970726f736f6674776172652d6170692f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-iprosoftware-api/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/b21ad01c8cf16812ce7f516f1c730aff7141b68a631638df36a0e059ba85efe9/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6970726f736f6674776172652d6170692f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-iprosoftware-api/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/4dba181441df5a820e99508f615e54a12f8fc418e5890f32c356093248246e17/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6970726f736f6674776172652d6170692f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-iprosoftware-api/?branch=main)

**Note**: This package is an wrapper for [laravel-iprosoftware-api](https://github.com/dev-think-one/laravel-iprosoftware-api). All predefined api methods names you can find [here](https://github.com/dev-think-one/laravel-iprosoftware-api/blob/master/src/Traits/HasApiMethods.php)

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

[](#installation)

You can install the package via composer:

```
composer require think.studio/laravel-iprosoftware-api

```

Usage
-----

[](#usage)

Using predefined methods:

```
use LaravelIproSoftwareApi\IproSoftwareFacade as IproSoftware;

/** @var \LaravelIproSoftwareApi\IproApiResponse $response */
$response = IproSoftware::getBookingRulesList();

$bookingRules = $response->json();

```

Add custom methods (you can use any service provider):

```
use LaravelIproSoftwareApi\IproSoftwareFacade

IproSoftwareFacade::mergeMethods([
  'getReport' => ['get', 'property/%s/reports/1'],
  'getTasks' => ['get', 'tasks'],
]);

/** @var \LaravelIproSoftwareApi\IproApiResponse $response */
$response = IproSoftwareFacade::getReport($selectedProperty->getKey());

```

Direct call using GuzzleHttp:

```
use LaravelIproSoftwareApi\IproSoftwareFacade

$propertyId = 22;

/** @var \LaravelIproSoftwareApi\IproApiResponse $response */
$response = IproSoftwareFacade::httpClient()->get("property/$propertyId/reports/1", [
  'query' => [
    'foo' => 'bar',
  ],
]);

```

### .env

[](#env)

```
IPROSOFTWARE_CLIENT_ID="my-client-id"
IPROSOFTWARE_CLIENT_SECRET="my-secret-key"
IPROSOFTWARE_API_HOST="http://myapp.i-pro3.co.uk"

```

### Config Files

[](#config-files)

In order to edit the default configuration for this package you may execute:

```
php artisan vendor:publish --provider="LaravelIproSoftwareApi\ServiceProvider"

```

Since you will typically need to overwrite the assets every time the package is updated, you may use the `--force` flag.

Testing
-------

[](#testing)

```
  composer test

```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/b540bf4d815b42309a4110aad139ab6ec02c3302f426a0f6f1d9acf7b9008319/68747470733a2f2f7468696e6b2e73747564696f2e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity75

Established project with proven stability

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

Recently: every ~58 days

Total

14

Last Release

1079d ago

Major Versions

0.1.0 → 1.0.02019-12-13

1.3.1 → 2.0.02022-04-01

2.3.0 → 3.0.12023-02-27

PHP version history (4 changes)0.1.0PHP ^7.2

1.3.1PHP ^7.4

2.0.0PHP ^8.0

2.3.0PHP ^8.1

### Community

Maintainers

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

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (75 commits)")

---

Tags

phplaraveliprosoftwareipro-software

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-laravel-iprosoftware-api/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-laravel-iprosoftware-api/health.svg)](https://phpackages.com/packages/yaroslawww-laravel-iprosoftware-api)
```

###  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)
