SAAS-1063: REST API for podcasts
Update composer.json with rss reader library
This commit is contained in:
parent
9a2e9d1b3b
commit
d95b5a9034
|
@ -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));
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue