SAAS-1063: REST API for podcasts

Update composer.json with rss reader library
This commit is contained in:
drigato 2015-09-18 09:52:24 -04:00
parent 9a2e9d1b3b
commit d95b5a9034
2 changed files with 5 additions and 1 deletions

View File

@ -92,6 +92,9 @@ class Podcast extends BasePodcast
}
$rss = Application_Service_PodcastService::getPodcastFeed($podcast->getDbUrl());
if (!$rss) {
throw new PodcastNotFoundException();
}
$podcastArray = array();
array_push($podcastArray, $podcast->toArray(BasePeer::TYPE_FIELDNAME));

View File

@ -4,6 +4,7 @@
"aws/aws-sdk-php": "2.7.9",
"raven/raven": "0.12.0",
"ise/php-soundcloud": "3.0.1",
"massivescale/celery-php": "2.0.*@dev"
"massivescale/celery-php": "2.0.*@dev",
"dg/rss-php": "1.2"
}
}