Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scaffoldeducation/request-service-php
PHP library using Guzzle base to send request to any services. Good to use in microservice architecture
https://github.com/scaffoldeducation/request-service-php
Last synced: 2 days ago
JSON representation
PHP library using Guzzle base to send request to any services. Good to use in microservice architecture
- Host: GitHub
- URL: https://github.com/scaffoldeducation/request-service-php
- Owner: scaffoldeducation
- License: gpl-3.0
- Created: 2020-08-11T13:28:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T13:35:04.000Z (over 4 years ago)
- Last Synced: 2024-04-20T06:22:58.259Z (7 months ago)
- Language: PHP
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP Request Service
[![Latest Version](https://img.shields.io/github/v/release/kiwfy/request-service-php.svg?style=flat-square)](https://github.com/kiwfy/request-service-php/releases)
[![codecov](https://codecov.io/gh/kiwfy/request-service-php/branch/master/graph/badge.svg)](https://codecov.io/gh/kiwfy/request-service-php)
[![Build Status](https://img.shields.io/github/workflow/status/kiwfy/request-service-php/CI?label=ci%20build&style=flat-square)](https://github.com/kiwfy/request-service-php/actions?query=workflow%3ACI)
[![Total Downloads](https://img.shields.io/packagist/dt/kiwfy/request-service-php.svg?style=flat-square)](https://packagist.org/packages/kiwfy/request-service-php)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)PHP library using Guzzle base to send request to any services. Good to use in microservice architecture.
### Installation
Requires [PHP](https://php.net) 7.1.
The recommended way to install is through [Composer](https://getcomposer.org/).
```sh
composer require kiwfy/request-service-php
```### Sample
it's a good idea to look in the sample folder to understand how it works.
First verify if all dependencies is installed (if need anyelse)
```sh
composer install --no-dev --prefer-dist
```and run
```sh
php sample/RequestSample.php
php sample/RequestImageSample.php
```### Development
Want to contribute? Great!
The project using a simple code.
Make a change in your file and be careful with your updates!
**Any new code will only be accepted with all viladations.**To ensure that the entire project is fine:
First install all the dev dependences
```sh
composer install --dev --prefer-dist
```Second run all validations
```sh
composer check
```**Kiwfy - Open your code, open your mind!**