kolyya / fixtures-helper-bundle
Symfony bundle with helpers for fixtures
Installs: 313
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.1|^8.0
- doctrine/doctrine-fixtures-bundle: ^3.1
- symfony/framework-bundle: ^4.0|^5.0|^6.0
- symfony/orm-pack: ^1.0|^2.0
This package is not auto-updated.
Last update: 2025-04-01 04:02:18 UTC
README
Symfony bundle with helpers for fixtures
Load Command
bin/console kolyya:fixtures:load
Will completely clear the database. And load data from fixtures.
Run the following commands:
doctrine:schema:drop --full-database --force
doctrine:schema:update --force
doctrine:fixtures:load --append
Options
-
--force
- Run the command without confirmation -
--config[=CONFIG]
- The name of the config to run commands
To use your config, add it to the configuration.
kolyya_fixtures_helper: # ... load: my_config: drop: { "--em": 'my_em' } update: { "--em": 'my_em' } load: { "--em": 'my_em' }
Upload File
-
Create a directory, for example
<kernel_project_dir>/assets/fixtures/product
-
Put files to upload there
-
Inherit DataFixtures class from
Kolyya\FixturesHelperBundle\DataFixtures\BaseUploadFileFixtures
-
Add
getAssetPath
method to the DataFixtures class. It should return the relative path to the directory.// ... public function getAssetPath(): string { return '/assets/fixtures/product'; } // ...
-
Get file
// ... $imageFile = $this->getUploadedFile('image.jpg'); $product->setImageFile($imageFile); // ...
Development
At the root of the symfony project, create a directory Kolyya
.
Clone this repository to this directory:
git clone git@github.com:kolyya/fixtures-helper-bundle.git
Add to file composer.json
:
{ //... "autoload": { "psr-4": { //... "Kolyya\\FixturesHelperBundle\\": "Kolyya\\fixtures-helper-bundle" } }, }
And execute the command:
composer dump-autoload