koriym/json-schema-faker

Generates fake JSON with JSON schema

0.2.1 2021-01-20 05:09 UTC

This package is auto-updated.

Last update: 2024-03-02 01:53:03 UTC


README

Continuous Integration Coding Standards

Generates fake JSON with JSON schema.

  • $ref supported
  • CLI command available

forked from leko/json-schema-faker (deprecated)

Getting started

composer require koriym/json-schema-faker

Usage

$schema = json_decode(file_get_contents(__DIR__ . '/schema.json'));
$fake = (new Faker)->generate($schema);

or

// pass SplFileInfo to support local $ref schema file
$fake = (new Faker)->generate(new SplFileInfo(__DIR__ . '/schema.json'));

Command

// convert all json schema jsons in the directory
./vendor/bin/fakejsons {$soruceDir} {$distDir}