thutayarmoe/tweets

Get Tweets from Twitter Api

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/thutayarmoe/tweets

dev-main 2022-03-25 10:46 UTC

This package is auto-updated.

Last update: 2025-10-25 19:14:50 UTC


README

Installation

composer require thutayarmoe/tweets

How to use

<?php

use ThutaYarMoe\Tweets\TweetService;

Route::get('/', function (TweetService $service) {
    $users = [
        [
            'id'=> 'id',
            'token'=> 'token'
        ],
    ];

    $tweets = $service->get_tweets($users);
    return $tweets;
});