PHPackages                             kcompanytech/coventus-gateway - 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. kcompanytech/coventus-gateway

ActiveLibrary[API Development](/categories/api)

kcompanytech/coventus-gateway
=============================

Gateway for coventus api

v1.0.1(1y ago)06[4 PRs](https://github.com/kcompanytech/coventus-gateway/pulls)MITPHPPHP ^8.2CI passing

Since Jun 11Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/kcompanytech/coventus-gateway)[ Packagist](https://packagist.org/packages/kcompanytech/coventus-gateway)[ Docs](https://github.com/kcompanytech/coventus-gateway)[ GitHub Sponsors](https://github.com/kcompany)[ RSS](/packages/kcompanytech-coventus-gateway/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (13)Versions (7)Used By (0)

Api gatway for coventus api
===========================

[](#api-gatway-for-coventus-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/9c9aa563ef5b6882f22741cc571ed679c4a10dda7a8790856d114b0152199521/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b636f6d70616e79746563682f636f76656e7475732d676174657761792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kcompanytech/coventus-gateway)[![GitHub Tests Action Status](https://camo.githubusercontent.com/53f451248ee7c7255e45ad70c1b9a96a439d97b52b2bbe67e029d457fe53d2a2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6b636f6d70616e79746563682f636f76656e7475732d676174657761792f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/kcompanytech/coventus-gateway/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/6e3a34476f2c73c712b945ed8594ce85dfc3ca1872934468e4559745092975c7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6b636f6d70616e79746563682f636f76656e7475732d676174657761792f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/kcompanytech/coventus-gateway/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/017d19cb51a34802b324ce4e12df882a8b450ca890526b711cb4f68ce49df111/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b636f6d70616e79746563682f636f76656e7475732d676174657761792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kcompanytech/coventus-gateway)

Api Coventus gateway for Laravel

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/7f4f170c9fbd844a9d7d156c0161889e4e40c47b7c7d6643aebb7d3c3566230d/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f636f76656e7475732d676174657761792e6a70673f743d31)](https://spatie.be/github-ad-click/coventus-gateway)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

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

[](#installation)

You can install the package via composer:

```
composer require kcompanytech/coventus-gateway
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="coventus-gateway-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="coventus-gateway-config"
```

This is the contents of the published config file:

```
return [
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="coventus-gateway-views"
```

Usage
-----

[](#usage)

```
class ExampleController extends Controller
{
    protected $clientService;

    public function __construct(ClientService $clientService)
    {
        $this->clientService = $clientService;
    }

    public function showBookings()
    {
        $from = '2024-06-01'; // Example timestamp
        $to = '2024-06-07';   // Example timestamp
        $resource = ['19071','18294']; // Example resource array

        $bookings = $this->clientService->getBookingService()->getBookings($from, $to, $resource);

        return response()->json($bookings);
    }

    public function showCategories()
    {
        $categories = $this->clientService->getCategoryService()->getCategories();

        return response()->json($categories);
    }
}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Andreas Kaae](https://github.com/kcompanytech)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance65

Regular maintenance activity

Popularity4

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 63.6% 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 ~0 days

Total

2

Last Release

700d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/20679ee6f16d41ce023402d1b892013f3a56beec9ad23ddfb79be243fbb16be4?d=identicon)[Ifnir](/maintainers/Ifnir)

---

Top Contributors

[![Ifnir](https://avatars.githubusercontent.com/u/13046122?v=4)](https://github.com/Ifnir "Ifnir (21 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")

---

Tags

laravelkcompanycoventus-gatewaycoventus

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/kcompanytech-coventus-gateway/health.svg)

```
[![Health](https://phpackages.com/badges/kcompanytech-coventus-gateway/health.svg)](https://phpackages.com/packages/kcompanytech-coventus-gateway)
```

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.0k7.8M57](/packages/dedoc-scramble)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)[stechstudio/laravel-hubspot

A Laravel SDK for the HubSpot CRM Api

2971.0k](/packages/stechstudio-laravel-hubspot)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)

PHPackages © 2026

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