An open API service indexing awesome lists of open source software.

https://github.com/storyteq/storyteq-api-php

Storyteq API client for PHP
https://github.com/storyteq/storyteq-api-php

api api-wrapper composer laravel library package stand-alone storyteq wrapper

Last synced: 6 months ago
JSON representation

Storyteq API client for PHP

Awesome Lists containing this project

README

          

# Storyteq API PHP Client
A (incomplete) client for the Storyteq API.
## Installation

```
composer require storyteq/storyteq-api-php
```

## Usage
```php
use Storyteq\Client;

$storyteq = new Client('v4', 'your-api-token');

var_dump($storyteq->readFeedData(1));
```