Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 843 Bytes

File metadata and controls

28 lines (20 loc) · 843 Bytes

Installation

1. Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

composer require --dev liip/test-fixtures-bundle:^3.0.0

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

2. Enable the Bundle only in the test environment

Update the relevant line in the config/bundles.php file to enable this bundle only for the test environment:

 return [
-    Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['dev' => true, 'test' => true],
+    Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['test' => true],
 ];

Configuration »