jongotlin / product-feed-adapter
Adapter for product feeds
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/jongotlin/product-feed-adapter
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-09-21 00:05:32 UTC
README
Use this adapter with any product feed from Adrecord, TradeDoubler, Zanox, Adtraction or Adsettings.
$feed = file_get_contents('http://feed.adrecord.com/foo.json?id=bar');
$productFeedAdapter = new ProductFeedAdapter($feed);
$network = $productFeedAdapter->getNetwork();
foreach ($network->getProducts(0, 10) as $product) {
echo $product->getTrackingUrl();
}