FakerPHP Stripe Provider
发布日期:作者: Paul Redmond
Faker Stripe 是 FakerPHP 的一个提供程序,用于为 Stripe API 资源生成虚假但结构上正确的 ID。 Stripe 有很多不同的资源类型,但该包拥有 50 多种不同的模拟方法
$faker->stripeCorePaymentIntentId();// pi_KiAjc3WFzvswIhq8IkCLXNBW $faker->stripeConnectAccountId();// acct_xBXg7yyrSyQVbsjM $faker->stripeFinancialConnectionAccountId();// fca_z3JzQ1OCkYved5uWOqh3b387
该包可以轻松地与 PestPHP、PHPUnit 和 Eloquent: Factories 集成
// Pest examplebeforeEach(function () { $this->fake = fake(); $this->fake->addProvider(new Stripe($this->fake));}); it('shows an example', function () { $this->fake->stripeConnectAccountId() // acct_xBXg7yyrSyQVbsjM}); // Laravel factory exampleuse WithFaker; public function definition(): array{ $this->faker->addProvider(new Stripe($this->faker)); $this->faker->stripeConnectAccountId(); // acct_xBXg7yyrSyQVbsjM}
你可以在 GitHub 上了解更多关于这个包的信息,获得完整的安装说明,并查看 源代码。