Skip to content

Alternative image provider for fakerphp using picsum.photos

License

Notifications You must be signed in to change notification settings

AdminUI/fakerphp-picsum-images

 
 

Repository files navigation

Fakerphp Picsum Images

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

Introduction

Alternative image provider for fakerphp using picsum.photos

This package has been forked from mmo/faker-images for fzaninotto/faker (deprecated ~ Oct 2020).

Ressources

Installation

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

composer require --dev adminui/fakerphp-picsum-images

Usage

$faker = \Faker\Factory::create();
$faker->addProvider(new \AdminUI\FakerPicsumImages\FakerPicsumImagesProvider($faker));

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

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

Also, there are some more options :

Credits

License

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

About

Alternative image provider for fakerphp using picsum.photos

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%