Download the PHP package teamneusta/pimcore-fixture-bundle without Composer
On this page you can find all versions of the php package teamneusta/pimcore-fixture-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download teamneusta/pimcore-fixture-bundle
More information about teamneusta/pimcore-fixture-bundle
Files in teamneusta/pimcore-fixture-bundle
Package pimcore-fixture-bundle
Short Description Provide basic functionality to enable installing fixtures in Pimcore
License GPL-3.0-or-later
Informations about the package pimcore-fixture-bundle
Pimcore Fixture Bundle
Provides a way to manage and execute the loading of data fixtures in Pimcore.
It can be useful for testing purposes or for seeding a database with initial data.
Installation
-
Require the bundle
-
Enable the bundle
Add the Bundle to your
config/bundles.php
: -
Register your Fixtures Folder for Service autoconfiguration
Depending on where you want to create your Fixtures, or if they should only be accessible during test execution.
Upgrading From an Earlier Version
Fixtures are now considered actual services and are loaded through Dependency Injection (DI).
To align with this approach,
you’ll need to update your Fixture classes by moving service dependencies from the create
method to the constructor.
If your Fixture relies on other Fixtures, implement the HasDependencies
interface.
Here are the key changes:
-
Fixture Interface Update
The old fixture interfaceNeusta\Pimcore\FixtureBundle\Fixture
has been replaced withNeusta\Pimcore\FixtureBundle\Fixture\Fixture
. You can also extend fromNeusta\Pimcore\FixtureBundle\Fixture\AbstractFixture
to implement your Fixtures. -
Fixtures as Services
Fixtures must be made available in the Dependency Injection container to be discovered. To do this, tag them withneusta_pimcore_fixture.fixture
, or use autoconfiguration for automatic tagging. -
Change of the
create
Method
The signature of thecreate
method has been modified. It no longer takes any arguments, meaning all dependencies must be specified viaHasDependencies
. - Specifying Inter-Fixture Dependencies
If your Fixture depends on others, use theHasDependencies
interface to specify these dependencies. Additional guidance is available in the section "Referencing Fixtures and Depending on Other Fixtures".
Make sure to update your Fixture classes according to these changes to ensure proper functionality and compatibility with this Bundle.
Usage
Writing Fixtures
Data fixtures are PHP service classes where you create objects and persist them to the database.
Imagine that you want to add some Product
objects to your database.
To do this, create a fixture class and start adding products:
Referencing Fixtures and Depending on Other Fixtures
Suppose you want to link a Product
fixture to a Group
fixture.
To do this, you need to create a Group
fixture first and keep a reference to it.
Later you can use this reference when creating the Product
fixture.
This process requires the Group
fixture to exist before the Product
fixture.
You can achieve this ordering by implementing the HasDependencies
interface.
Loading Fixtures
In Tests
To load fixtures in Tests, we offer the SelectiveFixtureLoader
.
To streamline your test setup, we recommend creating a base class with a method to load fixtures via the SelectiveFixtureLoader
.
Here’s an example demonstrating how to implement this.
Use the base class as follows:
As Initial Data in Your Project
To load fixtures in your local environment or as part of a deployment, two commands are provided:
neusta:pimcore-fixture:load
(Loads a defined fixture class.)neusta:pimcore-fixtures:load
(Loads all defined fixture classes.)
Beware that loading a large number of objects may lead to high memory consumption.
Should you encounter memory issues when running the commands in dev
environments you may want to try setting the environment to prod
.
Disabling the debug mode also seems beneficial in terms of memory consumption.
For example, provide these options when using the symfony console:
Accessing Services From the Fixtures
As the Fixtures are just normal PHP services, you can use all DI features like constructor, setter, or property injection as usual.
Extension and Customization Through Events
The Bundle provides the following events to facilitate extensions and customization:
-
BeforeLoadFixtures
This event is dispatched before any fixture is executed. It contains all the fixtures that are scheduled for execution, accessible via$event->fixtures
. You can alter the list of fixtures to be loaded by modifying it$event->fixtures = ...
. -
BeforeExecuteFixture
This event is dispatched for each fixture just before it is executed. Using this event, you can prevent the execution of a specific fixture by setting$event->preventExecution = true
. -
AfterExecuteFixture
This event is dispatched for each fixture after it has been executed. AfterLoadFixtures
This event is dispatched after all relevant fixtures have been executed. It carries the fixtures that have been successfully loaded, which can be accessed through$event->loadedFixtures
.
Contribution
Feel free to open issues for any bug, feature request, or other ideas.
Please remember to create an issue before creating large pull requests.
Local Development
To develop on a local machine, the vendor dependencies are required.
We use composer scripts for our main quality tools. They can be executed via the bin/composer
file as well.