carsguide / apiwrapper
Service api wrapper
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 24 376
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 12
Forks: 0
Open Issues: 2
Requires
- ext-json: *
- carsguide/auth-manager: ^9.0
- guzzlehttp/guzzle: ^7.2
- dev-master
- v9.0.1
- v9.0.0
- v8.0.0
- v5.0.1
- v5.0.0
- v4.0.0
- v3.1.0
- v3.0.0
- v2.1
- v2.0.0
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-feature-laravel-10
- dev-feature/bump_auth_manager_requirement
- dev-feature/authmanager-dependency
- dev-feature-lumen-9
- dev-ev-9d9
- dev-feature-lumen-8
- dev-feature-lumen-7
- dev-dev-feature-lumen-7
- dev-feature/api-version
- dev-hotfix/allow-timeout-change
- dev-feature/update-docs
- dev-remove-logs
- dev-feature/multipart
- dev-feature/query-params
This package is auto-updated.
Last update: 2024-06-13 06:11:45 UTC
README
Api wrapper for micro services with PHP 8+ support
Installation
Via composer
$ composer require carsguide/apiwrapper
Configuration settings
Connections are added through a connections config file. To create a connection, add the config.connections file. Each item in the array points to another array containing the host and version of the api to be used.
return [
'connection_name' => [
'host' => 'example.com',
'version' => 'v1',
'audience' => 'Api Audience'
],
];
Usage
Create request
$response = $this->api->setApi('vader') ->setRequestType('POST') ->setResource('/resource') ->setBody('body') ->setHeaders([ 'content-type' => 'application/json', ]) ->setBearerToken($access_token) ->makeRequest(); $body = $this->api->decodeBody();
Request via Get method
$response = $this->api->setApi($api) ->setBearerToken($access_token) ->get($endpoint); $body = json_decode($response->getBody());
Request via helpers
$response = api_wrapper($api)->get($endpoint); $body = json_decode($response->getBody());