Skip to content

robgwin/SyliusImportExportPlugin

 
 

Repository files navigation

This repo is deprecated

InGem's import/export plugin is now maintained here:

https://gitlab.com/challengersports/ingem/shop/plugin-import-export-data

Migration

How to migrate an existing install of this plugin to the new plugin:

  1. In your shop's composer.json, remove this repository:
            "type": "vcs",
            "url": "https://github.com/robgwin/SyliusImportExportPlugin",
            "no-api": true

...and add the new repository:

            "name": "ingem/sylius-plugin-import-export-data",
            "type": "git",
            "url": "ssh://[email protected]/challengersports/ingem/shop/plugin-import-export-data"

...and remove this from the require block:

"friendsofsylius/sylius-import-export-plugin": "dev-master"

  1. Remove the old plugin code:

rm -r vendor/friendsofsylius/sylius-import-export-plugin

  1. Either run composer update or, to avoid a complete update of everything, edit composer.lock and remove the old plugin from packages:
        {
            "name": "friendsofsylius/sylius-import-export-plugin",
            ...
        },

...and remove this from the stability-flags block if it exists:

friendsofsylius/sylius-import-export-plugin

  1. Add the new plugin:

composer require ingem/sylius-plugin-import-export-data:dev-master

About

Sylius plugin to import / export data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 87.4%
  • Gherkin 11.1%
  • Other 1.5%