fond-of-spryker / data-fixer-contentful
n/a
1.0.1
2020-01-02 08:03 UTC
Requires
- php: >=7.1
- fond-of-spryker/contentful: ^4.6-RC2
- fond-of-spryker/contentful-page-search: ^1.7-RC1
- fond-of-spryker/contentful-storage: ^1.7-RC1
- fond-of-spryker/data-fixer: ^1.0.0
- spryker/store: ~1.9.0
Requires (Dev)
- codeception/codeception: ^2.3
- mikey179/vfsstream: ^1.6
- php-coveralls/php-coveralls: ^2.0
- phpro/grumphp: ^0.14
- phpunit/phpunit: 7.1.0
- sebastian/phpcpd: ^4.0
- spryker/code-sniffer: ^0.11
This package is auto-updated.
Last update: 2024-10-06 18:34:40 UTC
README
Installation
composer require fond-of-spryker/data-fixer-contentful
Register ContentfulDataFixerPlugin and ContentfulPageSearchDataFixerPlugin in DataFixerDependencyProvider
/**
* @param \Spryker\Zed\Kernel\Container $container
*
* @return array
*/
public function getDataFixer(Container $container): array
{
return [
new ContentfulDataFixerPlugin(),
new ContentfulPageSearchDataFixerPlugin(),
];
}