From 06334bc6c100a874135972fd7dce1fcd05a912a5 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 8 Mar 2016 10:04:50 +0100 Subject: [PATCH] Remove require for getid3 from Nfo class, it is handled by composer autoload now --- .scrutinizer.yml | 8 ++------ Changelog | 1 + newznab/Nfo.php | 1 - 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 80dd0018d..11c2cef1f 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -73,9 +73,5 @@ coding_style: filter: excluded_paths: - - libs/smarty/* - - libs/Net_NNTP/* - - libs/rarinfo/* - - libs/PHPMailer/* - - libs/getid3/* - - libs/forkdaemon-php/* \ No newline at end of file + - libs/PEAR/Net_NNTP/* + - libs/zeebinz/rarinfo/* diff --git a/Changelog b/Changelog index c111917cb..bea872a14 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2016-03-08 DariusIII + * Fix: Remove require for getid3 from Nfo class, it is handled by composer autoload now * Upd: Update Readme.md with composer info. * Add: Add project composer.lock file to git, remove Git folder from libs. * Chg: Remove dependencies handled by composer diff --git a/newznab/Nfo.php b/newznab/Nfo.php index e44fdfa41..4122d141b 100644 --- a/newznab/Nfo.php +++ b/newznab/Nfo.php @@ -4,7 +4,6 @@ use newznab\db\Settings; use \newznab\processing\PostProcess; use newznab\utility\Utility; -require_once NN_LIBS . 'getid3/getid3/getid3.php'; require_once NN_LIBS . 'rarinfo/par2info.php'; require_once NN_LIBS . 'rarinfo/sfvinfo.php';