Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.5 KB

README.md

File metadata and controls

40 lines (24 loc) · 1.5 KB

Build Status Scrutinizer Code Quality Code Intelligence Status

Laravel-Fabricator

When you type your class management with a fabricator in your projects, you won't have any problems about their management and replacement. This is yours it will allow you to increase your code quality and automatically create your factory classes. The other benefit of this package is it gives ease of use, as your factory classes are closely linked to annotations. The replaceable version of a factory manufacturer is also included in the package.

Install Package

$ composer require aligurbuz/laravel-fabricator

Laravel service provider: After installing the package via the composer, you must add the following class to the providers section of the config/app.php file as the laravel service provider installer.

Config/app.php


    'providers' => [
	
	/*
         * Package Service Providers...
        */
       Fabricator\LaravelFabricatorServiceProvider::class,

    ]