Skip to content

Commit

Permalink
composer: Update SimplePie
Browse files Browse the repository at this point in the history
Now with namespaces support
  • Loading branch information
jtojnar committed Apr 21, 2022
1 parent 1e3f0a9 commit 428e06a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"mibe/feedwriter": "^1.0",
"monolog/monolog": "^1.0",
"php-http/guzzle6-adapter": "^1.0",
"simplepie/simplepie": "^1.3",
"simplepie/simplepie": "^1.6",
"smottt/wideimage": "^1.1",
"violet/streaming-json-encoder": "^1.1",
"willwashburn/phpamo": "^1.0"
Expand Down
19 changes: 11 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/helpers/FeedReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace helpers;

use SimplePie;
use SimplePie\SimplePie;

/**
* Helper class for obtaining feeds
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/SimplePieFileGuzzle.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Bridge to make SimplePie fetch resources using Guzzle library
*/
class SimplePieFileGuzzle extends \SimplePie_File {
class SimplePieFileGuzzle extends \SimplePie\File {
/** @var WebClient */
private $webClient;

Expand Down

0 comments on commit 428e06a

Please sign in to comment.