├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Source └── Bhaktaraz │ └── RSSGenerator │ ├── Channel.php │ ├── ChannelInterface.php │ ├── FacebookProductItem.php │ ├── Feed.php │ ├── FeedInterface.php │ ├── Item.php │ ├── ItemInterface.php │ └── SimpleXMLElement.php ├── Tests ├── Bootstrap.php ├── README.md ├── composer.json └── phpunit.xml.dist ├── composer.json └── example.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/README.md -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/Channel.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/ChannelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/ChannelInterface.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/FacebookProductItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/FacebookProductItem.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/Feed.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/FeedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/FeedInterface.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/Item.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/ItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/ItemInterface.php -------------------------------------------------------------------------------- /Source/Bhaktaraz/RSSGenerator/SimpleXMLElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Source/Bhaktaraz/RSSGenerator/SimpleXMLElement.php -------------------------------------------------------------------------------- /Tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Tests/Bootstrap.php -------------------------------------------------------------------------------- /Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Tests/README.md -------------------------------------------------------------------------------- /Tests/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Tests/composer.json -------------------------------------------------------------------------------- /Tests/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/Tests/phpunit.xml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaktaraz/php-rss-generator/HEAD/example.php --------------------------------------------------------------------------------