PHPackages                             fakerino/laravel-fakerino - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. fakerino/laravel-fakerino

ActiveSymfony-bundle[Testing &amp; Quality](/categories/testing)

fakerino/laravel-fakerino
=========================

Fake data generator Laravel package

0.0.2(10y ago)410.7k1MITPHPPHP &gt;=5.3.0

Since May 26Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Fakerino/laravel-fakerino)[ Packagist](https://packagist.org/packages/fakerino/laravel-fakerino)[ Docs](http://github.com/niklongstone/laravel-fakerino)[ RSS](/packages/fakerino-laravel-fakerino/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

\#Fakerino Laravel Package

[![Latest Stable Version](https://camo.githubusercontent.com/05ae4fad940808bb35500cf0978a337637d002e386777fb8593ce0b17315e30f/68747470733a2f2f706f7365722e707567782e6f72672f66616b6572696e6f2f6c61726176656c2d66616b6572696e6f2f762f737461626c652e737667)](https://packagist.org/packages/fakerino/laravel-fakerino)[![Travis Ci](https://camo.githubusercontent.com/5106cab361fd552b4ebdabd70f4be7830127b7815d2cd1bc21ad1cd6857c30c7/68747470733a2f2f7472617669732d63692e6f72672f6e696b6c6f6e6773746f6e652f6c61726176656c2d66616b6572696e6f2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/niklongstone/laravel-fakerino)[![License](https://camo.githubusercontent.com/4e589fa23a7b1143b71445dccf0aeaae8d9ad8ee761f687df34d95644849910a/68747470733a2f2f706f7365722e707567782e6f72672f66616b6572696e6f2f6c61726176656c2d66616b6572696e6f2f6c6963656e73652e737667)](https://packagist.org/packages/fakerino/laravel-fakerino)

The Fakerino Laravel provides integration of [Fakerino](https://github.com/Fakerino/Fakerino) into the Laravel framework.

More information in the [official documentation](http://www.fakerino.io).

Installation
------------

[](#installation)

Add the following dependencies to your projects composer.json file:

```
    "require": {
        "fakerino/laravel-fakerino": "0.0.*",
    }
```

### Install the ODS data sample in two ways:

[](#install-the-ods-data-sample-in-two-ways)

- Add a script to your composer.json:

```
  "scripts": {
        "post-install-cmd": "vendor/fakerino/fakerino/build/ods vendor/fakerino/fakerino/data",
        "post-update-cmd": "vendor/fakerino/fakerino/build/ods vendor/fakerino/fakerino/data"
    }
```

In this way the data will be always updated automatically via composer.

- Run maually the command (after the fakerino composer installation):
    `$ vendor/fakerino/fakerino/build/ods vendor/fakerino/fakerino/data`

### Initializing the package

[](#initializing-the-package)

To initialize the bundle, you'll need to add it in your `config/app.php`.

```
	'providers' => [
        'Fakerino\Package\FakerinoProvider',
```

### Usage in controller

[](#usage-in-controller)

```
