This package provides a set of factories to build fake data using the JSON:API specification.
- PHP 7.3+
To install through composer, simply put the following in your composer.json
file:
{
"require-dev": {
"vgirol/jsonapi-faker": "dev-master"
}
}
And then run composer install
from the terminal.
Above installation can also be simplified by using the following command:
composer require vgirol/jsonapi-faker
First create a faker generator.
use VGirol\JsonApiFaker\Generator as JsonApiFaker;
$faker = new JsonApiFaker;
Then create a factory.
$factory = $faker->resourceObject();
Next you can fill the factory ...
$factory->setResourceType('test')
->setId('1')
->setAttributes([
'attr1' => 'value1',
'attr2' => 'value2'
])
->setMeta([
'key1' => 'meta1'
])
->addLink('self', 'url');
... or generate a fake.
$factory->fake();
Finally export as an array or as JSON.
$array = $factory->toArray();
$json = $factory->toJson();
All these instructions can be chained.
use VGirol\JsonApiFaker\Generator as JsonApiFaker;
$json = new JsonApiFaker()
->resourceObject()
->fake()
->toJson();
The API documentation is available in XHTML format at the url http://jsonapi-faker.girol.fr/docs/ref/index.html.
Please see CHANGELOG for more information on what has changed recently.
composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email vincent@girol.fr instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.