rauwebieten/php-faker-music

There is no license information available for the latest version (1.0.1) of this package.

1.0.1 2017-12-01 19:51 UTC

This package is auto-updated.

Last update: 2024-04-15 19:42:52 UTC


README

A pop music provider for fzaninotto/faker

Installation

Install with composer.
Add to your composer.json file:

{
  "require": {
    "rauwebieten/php-faker-music": "^1.0"
  }
}

Usage

<?php

$faker = \Faker\Factory::create();
$faker->addProvider(new \RauweBieten\PhpFakerMusic\Classical($faker));
$faker->addProvider(new \RauweBieten\PhpFakerMusic\Reggae($faker));
$faker->addProvider(new \RauweBieten\PhpFakerMusic\HipHop($faker));
$faker->addProvider(new \RauweBieten\PhpFakerMusic\Metal($faker));
$faker->addProvider(new \RauweBieten\PhpFakerMusic\Dance($faker));

echo $faker->musicClassicalArtist() . ' - ' . $faker->musicClassicalAlbum() . PHP_EOL;
echo $faker->musicReggaeArtist() . ' - ' . $faker->musicReggaeAlbum() . PHP_EOL;
echo $faker->musicHipHopArtist() . ' - ' . $faker->musicHipHopAlbum() . PHP_EOL;
echo $faker->musicMetalArtist() . ' - ' . $faker->musicMetalAlbum() . PHP_EOL;
echo $faker->musicDanceArtist() . ' - ' . $faker->musicDanceAlbum() . PHP_EOL;

See the examples folder for more information

Example result

See examples/output/example.md for

  • 100 generated metal artists/albums
  • 100 generated dance artists/albums
  • 100 generated classical artists/albums
  • 100 generated reggae artists/albums
  • 100 generated hiphop artists/albums

Why do you needs this?

To fill a e-commerce database with fake data? See fzaninotto/faker