hatchetaustralia/fakerphp-loremflickr-kittens

Alternative image provider for fakerphp using loremflickr.com

v1.0 2022-04-28 08:19 UTC

This package is auto-updated.

Last update: 2024-04-28 13:16:56 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Introduction

Alternative image provider for fakerphp using loremflickr.com

This package has been forked from smknstd/fakerphp-picsum-images

Installation

You can install the package via composer in dev dependency section:

composer require --dev hatchetaustralia/fakerphp-loremflickr-kittens

Usage

$faker = \Faker\Factory::create();
$faker->addProvider(new \Hatchet\FakerLoremFlickrKittens\FakerLoremFlickrKittensProvider($faker));

// return a string that contains a url like 'https://loremflickr.com/800/600/kitten'
$faker->imageUrl($width = 800, $height = 600); 

// download a properly sized image from LoremFlickr into a file with a file path like '/tmp/13b73edae8443990be1aa8f1a483bc27.jpg'
$filePath= $faker->image($dir = '/tmp', $width = 640, $height = 480);

Testing

composer test

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.