• Reading time ~ 1 min
  • 26.05.2023

Faker Stripe is a provider for FakerPHP that generates fake but structurally correct IDs for Stripe API resources. Stripe has quite a few different resource types, but this package has well over 50+ different faker methods:

$faker->stripeCorePaymentIntentId();
// pi_KiAjc3WFzvswIhq8IkCLXNBW
$faker->stripeConnectAccountId();
// acct_xBXg7yyrSyQVbsjM
$faker->stripeFinancialConnectionAccountId();
// fca_z3JzQ1OCkYved5uWOqh3b387

This package easily integrates with PestPHP, PHPUnit, and Eloquent: Factories:

// Pest example
beforeEach(function () {
    $this->fake = fake();
    $this->fake->addProvider(new Stripe($this->fake));
});
it('shows an example', function () {
    $this->fake->stripeConnectAccountId() // acct_xBXg7yyrSyQVbsjM
});

// Laravel factory example
use WithFaker;

public function definition(): array
{
    $this->faker->addProvider(new Stripe($this->faker));

    $this->faker->stripeConnectAccountId(); // acct_xBXg7yyrSyQVbsjM
}

You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

ABOUT

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

About author CrazyBoy49z
WORK EXPERIENCE
Contact
Ukraine, Lutsk
+380979856297