julianowte / random-quote
A simple packege to get quote api.
v0.0.3
2024-10-28 17:12 UTC
Requires
- guzzlehttp/guzzle: ^7.9
Requires (Dev)
- pestphp/pest: ^3.5
README
EXAMPLE OF CODE
Random phrase generator code from famous American authors. Based on the http://api.quotable.io API.
Install with Composer
composer require julianowte/random-quote
in your code
require('vendor/autoload.php');
use Julianowte\RandomQuotes\RandomQuote;
$quoteClass = new RandomQuote();
//return json with random quote
echo $quoteClass->from('Jane Austen');