thutayarmoe/puretweets

Get Tweets from Twitter Api

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/thutayarmoe/puretweets

dev-main 2022-03-28 08:41 UTC

This package is auto-updated.

Last update: 2025-10-28 16:45:23 UTC


README

Installation

composer require thutayarmoe/puretweets

How to use

<?php

include_once "vendor/autoload.php";

use ThutaYarMoe\PureTweets\Tweets;

$users = [
    [
        'id'=>'user id',
        'token'=>'token'
    ],
];
$data = new Tweets();
$tweets = $data->get_tweets($users);

echo "<pre>";print_r($tweets);"</pre>";