PHPackages                             impulzo/rest\_client\_service - 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. impulzo/rest\_client\_service

ActiveLibrary[API Development](/categories/api)

impulzo/rest\_client\_service
=============================

Cliente de Servicios REST Para Laravel

v2.0.0(2y ago)0305MITHTML

Since May 22Pushed 2y ago1 watchersCompare

[ Source](https://github.com/kevdany17/rest-client-service)[ Packagist](https://packagist.org/packages/impulzo/rest_client_service)[ RSS](/packages/impulzo-rest-client-service/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (1)Dependencies (1)Versions (3)Used By (0)

REST CLIENT SERVICE
===================

[](#rest-client-service)

Servicio de Cliente Rest para Laravel

- In the new version remplace **RestClientFacade** for **RestClient**.
- Versión 2.0 - 22 May 2023 deployed in master.

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

[](#installation)

On Laravel And Lumen

edit composer.json, add line in require:

```
"impulzo/rest_client_service": "dev-master",

```

or execute

```
  composer require impulzo/rest_client_service

```

Setting
-------

[](#setting)

**Laravel**

Add config/app.php

```
  \Impulzo\RestClientService\RestClientServiceProvider::class

```

**Lumen**

Add bootstrap/app.php

```
  $app->register(\Impulzo\RestClientService\RestClientServiceProvider::class);

```

Use
---

[](#use)

**import**

```
  use Impulzo\RestClientService\Libraries\RestClient;

```

and

```
  //Inyect Dependency
  public function methodName(RestClient $service){
    ....
  }

  //or

  //Create Class
  public function methodName(){
    $service = new RestClient();
  }

```

**GET**headers is optional, default null

```
  $service->get($url, $headers);

```

**POST**

- headers is optional,headers is default null
- $data becomes default json\_encode
- if you send headers json\_encode is not applied

```
  $service->post($url, $data , $header);

```

**PUT and DELETE**The same rules apply of method POST

```
  $service->put($url, $data , $headers);

  //or

  $service->delete($url, $data , $headers);

```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

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

Unknown

Total

1

Last Release

1091d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/14813315?v=4)[Kevin Hernández](/maintainers/kevdany17)[@kevdany17](https://github.com/kevdany17)

---

Top Contributors

[![kevdany17](https://avatars.githubusercontent.com/u/14813315?v=4)](https://github.com/kevdany17 "kevdany17 (20 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/impulzo-rest-client-service/health.svg)

```
[![Health](https://phpackages.com/badges/impulzo-rest-client-service/health.svg)](https://phpackages.com/packages/impulzo-rest-client-service)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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