liorchamla / faker-prices
Provides typical and credible prices for Faker (fzaninotto/faker or fakerphp/faker) library
Installs: 24 407
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 0
Forks: 0
Open Issues: 0
Requires (Dev)
- fakerphp/faker: ^1.13
- pestphp/pest: ^0.3.19
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2025-03-29 00:58:08 UTC
README
Providing typical and credible prices for fzaninotto/faker !
Contents
Installation
composer require liorchamla/faker-prices
Basic Usage
You just have to add the Prices provider to Faker as any other provider :
<?php // Adding the provider to Faker $faker = \Faker\Factory::create(); $faker->addProvider(new Liior\Faker\Prices($faker)); // Using the provider : echo $faker->price(); // prints 49.99
Details
You can use several parameters :
// Function signature : $faker->price($min = 1000, $max = 20000, $psychologicalPrice = true, $decimals = true) // You can cancel the $psychologicalPrice (which gives you credible prices like 29.49 or 119.99 instead of random 23.49 or 102.49) $faker->price(100, 200, false); // 113.49 $faker->price(100, 200, true); // 109.49 // You can cancel the $decimals also (decimals can be X.29, X.49 or X.99) $faker->price(100, 200, true, false); // 109 $faker->price(100, 200, true, true); // 109.49