ajaz/random-quotes-generator-php

This library will generate random quotes

1.0 2020-11-06 10:48 UTC

This package is auto-updated.

Last update: 2024-10-08 01:04:31 UTC


README

A simple library that generates random quotes

Installation

The recommended way to install this library Composer:

composer require ajaz/random-quotes-generator-php

Usage example

<?php
  require_once './vendor/autoload.php';
  
  $quote = new \RandomQuotes\RandomQuotes();

  print_r($quote->generate());

  echo "\n";
?>