PHPackages                             aestrada2796/mrconnect - 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. aestrada2796/mrconnect

ActiveLibrary[API Development](/categories/api)

aestrada2796/mrconnect
======================

Integration with the Reseller MX API system

0.0.3(3y ago)127MITPHPPHP ^8.0

Since Oct 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/aestrada2796/MrConnect)[ Packagist](https://packagist.org/packages/aestrada2796/mrconnect)[ Docs](https://github.com/aestrada2796/mrconnect)[ RSS](/packages/aestrada2796-mrconnect/feed)WikiDiscussions master Synced today

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

MultiRumbo Connect
==================

[](#multirumbo-connect)

[![Deployed with FTP Deploy Action](https://camo.githubusercontent.com/f0ef98337e468e47cf9f79be34a210bd79c7ed9223e33dfd92a0b57fb461c207/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56657273696f6e2d312e302e312d627269676874677265656e3f7374796c653d666c6174)](https://mrconect.tecsodevs.com)[![Deployed with FTP Deploy Action](https://camo.githubusercontent.com/b5e7d8aaf89fdc2f9ec1692e5983b62adc8621ae7c01827f9c9f940653257b44/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e2a2d627269676874677265656e3f7374796c653d666c6174266c6f676f3d706870)](https://www.php.net)[![Deployed with FTP Deploy Action](https://camo.githubusercontent.com/00ba811bd57c51ec96d8b6b9dcb0765d9e3fda812905f8947eafd1900ae455e5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d7631302e2a2d627269676874677265656e3f7374796c653d666c6174266c6f676f3d6c61726176656c)](https://laravel.com)[![Deployed with FTP Deploy Action](https://camo.githubusercontent.com/02cc36c39ec810d05241a8db8426d3b95da34ec5ca0e014c481a52157b2479fd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4772617068514c2d2d627269676874677265656e3f7374796c653d666c6174266c6f676f3d4772617068514c)](https://graphql.org)

Instalación
-----------

[](#instalación)

### Vendor

[](#vendor)

```
composer require aestrada2796/mrconnect
```

### Servers

[](#servers)

EntornoServidorTest### Importante

[](#importante)

- Debe agregar a su archivo .env las siguiente variables:

```
API_USER='user@test.com'
API_PASS='user@test.com'
API_ROUTE=

El `API_ROUTE` es solo requerido si esta en entorno de Test
```

### Endpoints

[](#endpoints)

- login
- topup
- topup-card
- parcel-service
- clapzi
- tracking

### Uso

[](#uso)

- La function del login no es necesario usarla pues el resto de las funciones verifican el token antes ejecutar la función.

```
Query::make("login")->login();
```

- En `make` ponemos el endpoint que se va a consultar Ej: `Query::make("topup")`
- Tenemos dos funciones para la consulta a los endpoint de GraphQL

1. Si tenemos un dominio avanzado de esta tecnología simplemente en la función `->query` le pasamos la consulta, se pueden agregar tanta consultas como sean necesarias.

```
Query::make("")
    ->query('users(id: "5677f026-b5c6-474b-a927-6e90afd12d16"){ id,name }')
    ->send();
```

2. Este es más sencillo donde pasamos a la función `->function` los paramentros necesarios, se pueden agregar tanta funciones como sean necesarias

ParámetroSignificadoRequeridonameNombre de la query a consultarSifieldsCampos a devolver por la consultaSifiltersFiltros de la consultaNo```
Query::make("")
    ->function(
        'users',
        'id,name,roles{name}',
        'id: "15e2c1c9-ba99-468e-a008-547d0dc634c8"'
    )
    ->send();
```

- Se pueden usar tambien variables, pasándolas tipo arreglo a la function `->variables` con formato `['key'=>'value'']`y la utilizamos en la consulta agregando a la función `->name` dos parámetros: el primero es el nombre y el segundo son las variables a usar, en formato `['$key'=>'value!'']` donde `$key` es el nombre de la variable ya declarada iniciada con `$` y `value` es el tipo de dato de la variable terminado en `!`. Dentro de la consulta se usa `$key`

```
Query::make("")
            ->name('prueba', ['$id' => "String!"])
            ->variables(["id" => "15e2c1c9-ba99-468e-a008-547d0dc634c8"])
            ->function(
                'users',
                'id,name,roles{name}',
                'id: $id'
            )
            ->send();
```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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

Total

3

Last Release

1160d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7dfd1bd40423702ae37b23a2d57727b0f08a193d0664c8507db47b3b66763569?d=identicon)[aestrada2796](/maintainers/aestrada2796)

---

Top Contributors

[![aestrada2796](https://avatars.githubusercontent.com/u/51519261?v=4)](https://github.com/aestrada2796 "aestrada2796 (59 commits)")

---

Tags

integration-apimultirumbomultirumbo-corpIntegration APIReseller MX

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/aestrada2796-mrconnect/health.svg)

```
[![Health](https://phpackages.com/badges/aestrada2796-mrconnect/health.svg)](https://phpackages.com/packages/aestrada2796-mrconnect)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M986](/packages/statamic-cms)[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

3.0k37.6M134](/packages/darkaonline-l5-swagger)[knuckleswtf/scribe

Generate API documentation for humans from your Laravel codebase.✍

2.3k14.2M63](/packages/knuckleswtf-scribe)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135224.7k7](/packages/statamic-rad-pack-runway)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3416.7k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

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