Symfony's Bundle for Prooph Fixtures.
Provides an easy integration of the library inside symfony by auto configuring the fixtures and providing a console command to load all your fixtures.
composer require --dev elythyr/prooph-fixtures-bundleSince its a practice project, I don't really care about BC breaks. I will only try to not break minor versions, meaning that:
- Updating from
1.0.0to1.0.9should not break anything - Updating from
1.0.0to1.1.0might break a lot of stuff
By default the PdoCleaningProjectionStrategy will be used.
If you don't use prooph/pdo-event-store, then you will
have to provide your own cleaning strategy and defined it as an alias to
prooph_fixtures.cleaning_projection_strategy:
services:
prooph_fixtures.cleaning_projection_strategy:
alias: App\Infrastructure\Cleaner\CustomProjectionCleaningStrategyThere is nothing to configure!
Just make sure that your fixtures are defined as services and implements
Prooph\Fixtures\Fixture\Fixture so they will be autoconfigured by the Bundle.
If you do not use autoconfiguration, then you must add the tag to all of your fixtures:
# config/services.yaml
services:
# On a per class basis
App\DataFixtures\MyAllNewFixtures:
tags: ['prooph_fixtures.fixtures']
# For an entire directory
App\DataFixtures\:
resource: '../src/DataFixtures'
tags: ['prooph_fixtures.fixtures']Simply go to your terminal and type:
php bin/console event-store:fixtures:load- Adds CI with Travis
- Adds tests coverage
- Make a first release
- Publish to packagist
- (Wondering) Adds events before/after: cleaning, loading all fixtures, loagin each fixture