Getting started
Requirements
Installation
composer require strata/data:^0.9Access data from a REST API
use Strata\Data\Http\Rest;
$api = new Rest('https://httpbin.org/');
$api->enableCache();$response = $api->get('anything', ['my-name' => 'Thomas Anderson']);
$data = $api->decode($response);Access data from a GraphQL API
Build API requests with queries
Run multiple API requests via the Data Manager
More information
Last updated
Was this helpful?
