digitalzenworks / consumer-provider
A package providing an interface to allow a provider object to feed a consumer object.
Fund package maintenance!
jamesjohnmcguire
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-16 11:16:33 UTC
README
This is a useful package for copying data to and from 2 disparate data stores. It provides the connecting code, allowing the clients of this package to focus on the functionality of the consumer and provider parts. Some examples are copying data from one type of database to another database type, scraping web data into another data source.
Installation:
composer require digitalzenworks/consumer-provider
Usage:
php vendor\bin\dzwcp-process Some\Namespace\ProviderClass Some\Namespace\ConsumerClass
Example:
There is an example in the Example directory.