Download the PHP package trendwerk/faker without Composer
On this page you can find all versions of the php package trendwerk/faker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download trendwerk/faker
More information about trendwerk/faker
Files in trendwerk/faker
Package faker
Short Description Fake data with WP-CLI.
License GPL-3.0+
Homepage https://github.com/trendwerk/faker
Informations about the package faker
Faker
Fake post data with wp-cli. Made for WordPress.
Relies on nelmio/alice and fzaninotto/Faker.
Extended with user capabilities by 5queezer/faker.
Install
Requires wp-cli >= 2.0.
Usage
Options
Parameter | Default | Required | Description |
---|---|---|---|
<file> |
null |
Yes | Location to an Alice YAML file |
Delete data
Deletes all fake data.
Support
The YAML file supports:
Fields | Description |
---|---|
WP_Post |
All properties from wp_insert_post |
WP_User |
All properties from wp_insert_user |
meta |
Post meta |
terms |
Terms for taxonomies, see Terms |
acf |
Advanced Custom Fields fields, see ACF |
YAML / Faker
Your YAML file(s) could look like any the examples below.
For more understanding of the internals:
- The YAML file is interpreted by nelmio/alice;
- Any of the functions from fzaninotto/Faker are available;
- Additionaly, the
<terms>
function is provided by this library.
Basic
Generates 100 posts with a title and content.
Post Type
Generates 100 posts from the post type testimonials
with a title.
Meta
Generates 100 testimonials with a title and a custom field called name
and one called address
.
Terms
Generates 100 posts with a title, content, 1 random category and 7 random tags.
Using <terms>
is not required. You could also provide an array of integers yourself or use randomElements.
Options
Parameter | Default | Required |
---|---|---|
taxonomy |
null |
Yes |
amount |
1 |
No |
ACF
Generates 100 posts with a title, content, and two filled ACF fields: name
and address
.
Duplicate field names
In ACF, it is possible to have multiple fields with the same name. This could cause formatting conflicts when faking data with this library. If you have two fields with the same name, using the unique field key is recommended:
Users
Generates 10 users with the role of an author.
Attachments
Currently the only type of supported attachments are images.
Images
Generates 3 image attachments. Images are provided by Faker, which in turn are provided by LoremPixel.
Post + (Featured) Image + User
You can now supply all three files to wp faker fake
:
Make sure you load the file that contains the referenced objects first.
All versions of faker with dependencies
fzaninotto/faker Version ^1.8
nelmio/alice Version ^2.2
wp-cli/wp-cli Version ^2.0