GENERAL
ADDITIONAL
We work on stable, supported and up-to-date versions of packages. We recommend you to do the same.
| Package | Version |
|---|---|
| PHP | 8.2, 8.3 |
| sylius/sylius | 2.0.x |
| MySQL | >= 8.0 |
| NodeJS | >=20.x, 22.x |
composer require bitbag/shipping-export-pluginAdd plugin dependencies to your config/bundles.php file:
# config/bundles.php
return [
...
BitBag\SyliusShippingExportPlugin\BitBagSyliusShippingExportPlugin::class => ['all' => true],
];Import required config in your config/packages/_sylius.yaml file:
# config/packages/_sylius.yaml
imports:
...
- { resource: "@BitBagSyliusShippingExportPlugin/Resources/config/config.yml" }Import routing in your config/routes.yaml file:
# config/routes.yaml
bitbag_shipping_export_plugin:
resource: "@BitBagSyliusShippingExportPlugin/Resources/config/routing.yml"
prefix: /adminFirst, please run legacy-versioned migrations by using command:
bin/console doctrine:migrations:migrateAfter migration, please create a new diff migration and update database:
bin/console doctrine:migrations:diff
bin/console doctrine:migrations:migratebin/console cache:clearNote: If you are running it on production, add the -e prod flag to this command.
For incorrectly displayed translations, execute the command:
bin/console cache:clear