diff --git a/common.php b/common.php index 993fc342a..004a38494 100644 --- a/common.php +++ b/common.php @@ -17,18 +17,11 @@ header('X-Frame-Options: SAMEORIGIN'); // Get initial config require(BB_ROOT . 'library/config.php'); - -// Load Zend Framework -use Zend\Loader\StandardAutoloader; -require(BB_ROOT . 'library/Zend/Loader/StandardAutoloader.php'); -$loader = new StandardAutoloader(array('autoregister_zf' => true)); -$loader->register(); - -// ZF global use -use Zend\Json; +require(TP_DIR . 'Autoloader.php'); +TorrentPier_Autoloader::getInstance()->setupAutoloader(TP_DIR); $server_protocol = ($bb_cfg['cookie_secure']) ? 'https://' : 'http://'; -$server_port = (in_array($bb_cfg['server_port'], array(80, 443))) ? '' : ':' . $bb_cfg['server_port']; +$server_port = (in_array($bb_cfg['server_port'], [80, 443])) ? '' : ':' . $bb_cfg['server_port']; define('FORUM_PATH', $bb_cfg['script_path']); define('FULL_URL', $server_protocol . $bb_cfg['server_name'] . $server_port . $bb_cfg['script_path']); unset($server_protocol, $server_port); @@ -68,24 +61,30 @@ define('BOT_UID', -746); require(CORE_DIR . 'dbs.php'); $DBS = new DBS($bb_cfg); +/** + * @param string $db_alias + * + * @return sql_db() + */ function DB ($db_alias = 'db1') { global $DBS; return $DBS->get_db_obj($db_alias); } -/** - * Cache - */ -// Main cache class +// cache require(INC_DIR . 'cache/common.php'); -// Main datastore class require(INC_DIR . 'datastore/common.php'); // Core CACHE class require(CORE_DIR . 'caches.php'); $CACHES = new CACHES($bb_cfg); +/** + * @param $cache_name + * + * @return cache_common + */ function CACHE ($cache_name) { global $CACHES; @@ -119,11 +118,11 @@ switch ($bb_cfg['datastore_type']) break; case 'sqlite': - $default_cfg = array( + $default_cfg = [ 'db_file_path' => $bb_cfg['cache']['db_dir'] .'datastore.sqlite.db', 'pconnect' => true, 'con_required' => true, - ); + ]; $datastore = new datastore_sqlite($default_cfg, $bb_cfg['cache']['prefix']); break; @@ -250,7 +249,7 @@ function verify_id ($id, $length) function clean_filename ($fname) { - static $s = array('\\', '/', ':', '*', '?', '"', '<', '>', '|', ' '); + static $s = ['\\', '/', ':', '*', '?', '"', '<', '>', '|', ' ']; return str_replace($s, '_', str_compact($fname)); } @@ -452,24 +451,36 @@ function log_request ($file = '', $prepend_str = false, $add_post = true) { global $user; - $file = ($file) ? $file : 'req/'. date('m-d'); - $str = array(); + $file = ($file) ? $file : 'req/' . date('m-d'); + $str = []; $str[] = date('m-d H:i:s'); - if ($prepend_str !== false) $str[] = $prepend_str; - if (!empty($user->data)) $str[] = $user->id ."\t". html_entity_decode($user->name); + if ($prepend_str !== false) + { + $str[] = $prepend_str; + } + if (!empty($user->data)) + { + $str[] = $user->id . "\t" . html_entity_decode($user->name); + } $str[] = sprintf('%-15s', $_SERVER['REMOTE_ADDR']); - if (isset($_SERVER['REQUEST_URI'])) { + if (isset($_SERVER['REQUEST_URI'])) + { $str[] = $_SERVER['REQUEST_URI']; } - if (isset($_SERVER['HTTP_USER_AGENT'])) { + if (isset($_SERVER['HTTP_USER_AGENT'])) + { $str[] = $_SERVER['HTTP_USER_AGENT']; } - if (isset($_SERVER['HTTP_REFERER'])) { + if (isset($_SERVER['HTTP_REFERER'])) + { $str[] = $_SERVER['HTTP_REFERER']; } - if (!empty($_POST) && $add_post) $str[] = "post: ". str_compact(urldecode(http_build_query($_POST))); + if (!empty($_POST) && $add_post) + { + $str[] = "post: " . str_compact(urldecode(http_build_query($_POST))); + } $str = join("\t", $str) . "\n"; bb_log($str, $file); } @@ -486,11 +497,11 @@ else if (defined('IN_TRACKER')) function dummy_exit ($interval = 1800) { - $output = bencode(array( + $output = bencode([ 'interval' => (int) $interval, 'min interval' => (int) $interval, 'peers' => (string) DUMMY_PEER, - )); + ]); die($output); } diff --git a/library/TorrentPier/Autoloader.php b/library/TorrentPier/Autoloader.php new file mode 100755 index 000000000..0702d1422 --- /dev/null +++ b/library/TorrentPier/Autoloader.php @@ -0,0 +1,164 @@ +_setup) + { + return; + } + + $this->_rootDir = $rootDir; + $this->_setupAutoloader(); + + $this->_setup = true; + } + + /** + * Internal method that actually applies the autoloader. See {@link setupAutoloader()} + * for external usage. + */ + protected function _setupAutoloader() + { + if (@ini_get('open_basedir')) + { + // many servers don't seem to set include_path correctly with open_basedir, so don't use it + set_include_path($this->_rootDir . PATH_SEPARATOR . '.'); + } + else + { + set_include_path($this->_rootDir . PATH_SEPARATOR . '.' . PATH_SEPARATOR . get_include_path()); + } + + spl_autoload_register([$this, 'autoload']); + } + + /** + * Autoload the specified class. + * + * @param $class + * + * @return bool + * @throws \Exception + */ + public function autoload($class) + { + if (class_exists($class, false) || interface_exists($class, false)) + { + return true; + } + + if ($class == 'utf8_entity_decoder') + { + return true; + } + + if (substr($class, 0, 5) == 'XFCP_') + { + throw new Exception('Cannot load class using XFCP. Load the class using the correct loader first.'); + } + + $filename = $this->autoloaderClassToFile($class); + if (!$filename) + { + return false; + } + + if (file_exists($filename)) + { + include($filename); + return (class_exists($class, false) || interface_exists($class, false)); + } + + return false; + } + + /** + * Resolves a class name to an autoload path. + * + * @param string Name of class to autoload + * + * @return string|false False if the class contains invalid characters. + */ + public function autoloaderClassToFile($class) + { + if (preg_match('#[^a-zA-Z0-9_\\\\]#', $class)) + { + return false; + } + + return $this->_rootDir . '/' . str_replace(['_', '\\'], '/', $class) . '.php'; + } + + /** + * Gets the autoloader's root directory. + * + * @return string + */ + public function getRootDir() + { + return $this->_rootDir; + } + + /** + * Gets the autoloader instance. + * + * @return TorrentPier_Autoloader + */ + public static final function getInstance() + { + if (!self::$_instance) + { + self::$_instance = new self(); + } + + return self::$_instance; + } + + /** + * Manually sets the autoloader instance. Use this to inject a modified version. + * + * @param TorrentPier_Autoloader|null + */ + public static function setInstance(TorrentPier_Autoloader $loader = null) + { + self::$_instance = $loader; + } +} \ No newline at end of file diff --git a/library/includes/sessions.php b/library/TorrentPier/Sessions.php similarity index 62% rename from library/includes/sessions.php rename to library/TorrentPier/Sessions.php index c10905b69..4e2af1f81 100644 --- a/library/includes/sessions.php +++ b/library/TorrentPier/Sessions.php @@ -1,24 +1,21 @@ false, // requires user to be logged in 'req_session_admin' => false, // requires active admin session (for moderation or admin actions) - ); + ]; /** - * PHP-JS exchangeable options (JSON'ized as {USER_OPTIONS_JS} in TPL) - */ - var $opt_js = array( + * PHP-JS exchangeable options (JSON'ized as {USER_OPTIONS_JS} in TPL) + * + * @type array + */ + public $opt_js = [ 'only_new' => 0, // show ony new posts or topics 'h_av' => 0, // hide avatar 'h_rnk_i' => 0, // hide rank images @@ -31,54 +28,68 @@ class user_common 'hl_tr' => 1, // show cursor in tracker.php 'i_aft_l' => 0, // show images only after full loading 'h_tsp' => 0, // show released title {...} - ); + ]; /** * Defaults options for guests + * + * @type array */ - var $opt_js_guest = array( - 'h_av' => 1, // hide avatar - 'h_rnk_i' => 1, // hide rank images - 'h_smile' => 1, // hide smilies - 'h_sig' => 1, // hide signatures - ); + public $opt_js_guest = [ + 'h_av' => 1, // hide avatar + 'h_rnk_i' => 1, // hide rank images + 'h_smile' => 1, // hide smilies + 'h_sig' => 1, // hide signatures + ]; /** - * Sessiondata - */ - var $sessiondata = array( + * Sessiondata + * + * @type array + */ + public $sessiondata = [ 'uk' => null, 'uid' => null, 'sid' => '', - ); + ]; /** - * Old $userdata - */ - var $data = array(); + * Old $userdata + * + * @type array + */ + public $data = []; /** - * Shortcuts - */ - var $id = null; + * Shortcuts + * + * @type + */ + public $id; + public $active; + public $name; + public $lastvisit; + public $regdate; + public $level; + public $opt; - /** - * Constructor - */ - function user_common () + + function __construct () { $this->get_sessiondata(); } /** - * Start session (restore existent session or create new) - */ - function session_start ($cfg = array()) + * @param array $cfg + * + * @return array|bool + */ + public function session_start ($cfg = []) { global $bb_cfg; $update_sessions_table = false; - $this->cfg = array_merge($this->cfg, $cfg); + $this->cfg = array_merge($this->cfg, $cfg); $session_id = $this->sessiondata['sid']; @@ -89,8 +100,8 @@ class user_common $SQL['SELECT'][] = "u.*, s.*"; - $SQL['FROM'][] = BB_SESSIONS ." s"; - $SQL['INNER JOIN'][] = BB_USERS ." u ON(u.user_id = s.session_user_id)"; + $SQL['FROM'][] = BB_SESSIONS . " s"; + $SQL['INNER JOIN'][] = BB_USERS . " u ON(u.user_id = s.session_user_id)"; if ($session_id) { @@ -98,16 +109,16 @@ class user_common if ($bb_cfg['torhelp_enabled']) { - $SQL['SELECT'][] = "th.topic_id_csv AS torhelp"; - $SQL['LEFT JOIN'][] = BB_BT_TORHELP ." th ON(u.user_id = th.user_id)"; + $SQL['SELECT'][] = "th.topic_id_csv AS torhelp"; + $SQL['LEFT JOIN'][] = BB_BT_TORHELP . " th ON(u.user_id = th.user_id)"; } $userdata_cache_id = $session_id; } else { - $SQL['WHERE'][] = "s.session_ip = '". USER_IP ."'"; - $SQL['WHERE'][] = "s.session_user_id = ". GUEST_UID; + $SQL['WHERE'][] = "s.session_ip = '" . USER_IP . "'"; + $SQL['WHERE'][] = "s.session_user_id = " . GUEST_UID; $userdata_cache_id = USER_IP; } @@ -119,7 +130,7 @@ class user_common if ($this->data && (TIMENOW - $this->data['session_time']) > $bb_cfg['session_update_intrv']) { $this->data['session_time'] = TIMENOW; - $update_sessions_table = true; + $update_sessions_table = true; } cache_set_userdata($this->data); @@ -147,8 +158,8 @@ class user_common if ($update_sessions_table) { DB()->query(" - UPDATE ". BB_SESSIONS ." SET - session_time = ". TIMENOW ." + UPDATE " . BB_SESSIONS . " SET + session_time = " . TIMENOW . " WHERE session_id = '$session_id' LIMIT 1 "); @@ -157,14 +168,14 @@ class user_common } else { - $this->data = array(); + $this->data = []; } } // If we reach here then no (valid) session exists. So we'll create a new one, // using the cookie user_id if available to pull basic user prefs. if (!$this->data) { - $login = false; + $login = false; $user_id = ($bb_cfg['allow_autologin'] && $this->sessiondata['uk'] && $this->sessiondata['uid']) ? $this->sessiondata['uid'] : GUEST_UID; if ($userdata = get_userdata(intval($user_id), false, true)) @@ -185,13 +196,13 @@ class user_common $this->session_create($userdata, true); } - define('IS_GUEST', (!$this->data['session_logged_in'])); - define('IS_ADMIN', (!IS_GUEST && $this->data['user_level'] == ADMIN)); - define('IS_MOD', (!IS_GUEST && $this->data['user_level'] == MOD)); + define('IS_GUEST', (!$this->data['session_logged_in'])); + define('IS_ADMIN', (!IS_GUEST && $this->data['user_level'] == ADMIN)); + define('IS_MOD', (!IS_GUEST && $this->data['user_level'] == MOD)); define('IS_GROUP_MEMBER', (!IS_GUEST && $this->data['user_level'] == GROUP_MEMBER)); - define('IS_USER', (!IS_GUEST && $this->data['user_level'] == USER)); - define('IS_SUPER_ADMIN', (IS_ADMIN && isset($bb_cfg['super_admins'][$this->data['user_id']]))); - define('IS_AM', (IS_ADMIN || IS_MOD)); + define('IS_USER', (!IS_GUEST && $this->data['user_level'] == USER)); + define('IS_SUPER_ADMIN', (IS_ADMIN && isset($bb_cfg['super_admins'][$this->data['user_id']]))); + define('IS_AM', (IS_ADMIN || IS_MOD)); $this->set_shortcuts(); @@ -207,18 +218,21 @@ class user_common } /** - * Create new session for the given user - */ - function session_create ($userdata, $auto_created = false) + * @param $userdata + * @param bool $auto_created + * + * @return array + */ + public function session_create ($userdata, $auto_created = false) { global $bb_cfg; $this->data = $userdata; $session_id = $this->sessiondata['sid']; - $login = (int) ($this->data['user_id'] != GUEST_UID); - $is_user = ($this->data['user_level'] != ADMIN); - $user_id = (int) $this->data['user_id']; + $login = (int) ($this->data['user_id'] != GUEST_UID); + $is_user = ($this->data['user_level'] != ADMIN); + $user_id = (int) $this->data['user_id']; $mod_admin_session = ($this->data['user_level'] == ADMIN || $this->data['user_level'] == MOD); // Initial ban check against user_id or IP address @@ -226,10 +240,10 @@ class user_common { preg_match('#(..)(..)(..)(..)#', USER_IP, $ip); - $where_sql = "ban_ip IN('". USER_IP ."', '$ip[1]$ip[2]$ip[3]ff', '$ip[1]$ip[2]ffff', '$ip[1]ffffff')"; + $where_sql = "ban_ip IN('" . USER_IP . "', '$ip[1]$ip[2]$ip[3]ff', '$ip[1]$ip[2]ffff', '$ip[1]ffffff')"; $where_sql .= ($login) ? " OR ban_userid = $user_id" : ''; - $sql = "SELECT ban_id FROM ". BB_BANLIST ." WHERE $where_sql LIMIT 1"; + $sql = "SELECT ban_id FROM " . BB_BANLIST . " WHERE $where_sql LIMIT 1"; if (DB()->fetch_row($sql)) { @@ -238,11 +252,11 @@ class user_common } // Create new session - for ($i=0, $max_try=5; $i <= $max_try; $i++) + for ($i = 0, $max_try = 5; $i <= $max_try; $i++) { $session_id = make_rand_str(SID_LENGTH); - $args = DB()->build_array('INSERT', array( + $args = DB()->build_array('INSERT', [ 'session_id' => (string) $session_id, 'session_user_id' => (int) $user_id, 'session_start' => (int) TIMENOW, @@ -250,8 +264,8 @@ class user_common 'session_ip' => (string) USER_IP, 'session_logged_in' => (int) $login, 'session_admin' => (int) $mod_admin_session, - )); - $sql = "INSERT INTO ". BB_SESSIONS . $args; + ]); + $sql = "INSERT INTO " . BB_SESSIONS . $args; if (@DB()->query($sql)) { @@ -274,17 +288,17 @@ class user_common } else if ($session_time < (TIMENOW - $bb_cfg['last_visit_update_intrv'])) { - $last_visit = max($session_time, (TIMENOW - 86400*$bb_cfg['max_last_visit_days'])); + $last_visit = max($session_time, (TIMENOW - 86400 * $bb_cfg['max_last_visit_days'])); } if ($last_visit != $this->data['user_lastvisit']) { DB()->query(" - UPDATE ". BB_USERS ." SET - user_session_time = ". TIMENOW .", + UPDATE " . BB_USERS . " SET + user_session_time = " . TIMENOW . ", user_lastvisit = $last_visit, - user_last_ip = '". USER_IP ."', - user_reg_ip = IF(user_reg_ip = '', '". USER_IP ."', user_reg_ip) + user_last_ip = '" . USER_IP . "', + user_reg_ip = IF(user_reg_ip = '', '" . USER_IP . "', user_reg_ip) WHERE user_id = $user_id LIMIT 1 "); @@ -305,13 +319,13 @@ class user_common $this->sessiondata['uid'] = $user_id; $this->sessiondata['sid'] = $session_id; } - $this->data['session_id'] = $session_id; - $this->data['session_ip'] = USER_IP; - $this->data['session_user_id'] = $user_id; + $this->data['session_id'] = $session_id; + $this->data['session_ip'] = USER_IP; + $this->data['session_user_id'] = $user_id; $this->data['session_logged_in'] = $login; - $this->data['session_start'] = TIMENOW; - $this->data['session_time'] = TIMENOW; - $this->data['session_admin'] = $mod_admin_session; + $this->data['session_start'] = TIMENOW; + $this->data['session_time'] = TIMENOW; + $this->data['session_admin'] = $mod_admin_session; $this->set_session_cookies($user_id); @@ -326,12 +340,13 @@ class user_common } /** - * Initialize sessiondata stored in cookies - */ - function session_end ($update_lastvisit = false, $set_cookie = true) + * @param bool $update_lastvisit + * @param bool $set_cookie + */ + public function session_end ($update_lastvisit = false, $set_cookie = true) { DB()->query(" - DELETE FROM ". BB_SESSIONS ." + DELETE FROM " . BB_SESSIONS . " WHERE session_id = '{$this->data['session_id']}' "); @@ -340,11 +355,11 @@ class user_common if ($update_lastvisit) { DB()->query(" - UPDATE ". BB_USERS ." SET - user_session_time = ". TIMENOW .", - user_lastvisit = ". TIMENOW .", - user_last_ip = '". USER_IP ."', - user_reg_ip = IF(user_reg_ip = '', '". USER_IP ."', user_reg_ip) + UPDATE " . BB_USERS . " SET + user_session_time = " . TIMENOW . ", + user_lastvisit = " . TIMENOW . ", + user_last_ip = '" . USER_IP . "', + user_reg_ip = IF(user_reg_ip = '', '" . USER_IP . "', user_reg_ip) WHERE user_id = {$this->data['user_id']} LIMIT 1 "); @@ -355,7 +370,7 @@ class user_common $this->create_autologin_id($this->data, false); DB()->query(" - DELETE FROM ". BB_SESSIONS ." + DELETE FROM " . BB_SESSIONS . " WHERE session_user_id = '{$this->data['user_id']}' "); } @@ -368,9 +383,12 @@ class user_common } /** - * Login - */ - function login ($args, $mod_admin_login = false) + * @param $args + * @param bool $mod_admin_login + * + * @return array + */ + public function login ($args, $mod_admin_login = false) { $username = !empty($args['login_username']) ? clean_username($args['login_username']) : ''; $password = !empty($args['login_password']) ? $args['login_password'] : ''; @@ -382,11 +400,11 @@ class user_common $sql = " SELECT * - FROM ". BB_USERS ." + FROM " . BB_USERS . " WHERE username = '$username_sql' AND user_password = '$password_sql' AND user_active = 1 - AND user_id != ". GUEST_UID ." + AND user_id != " . GUEST_UID . " LIMIT 1 "; @@ -401,10 +419,10 @@ class user_common if ($mod_admin_login) { DB()->query(" - UPDATE ". BB_SESSIONS ." SET - session_admin = ". $this->data['user_level'] ." - WHERE session_user_id = ". $this->data['user_id'] ." - AND session_id = '". $this->data['session_id'] ."' + UPDATE " . BB_SESSIONS . " SET + session_admin = " . $this->data['user_level'] . " + WHERE session_user_id = " . $this->data['user_id'] . " + AND session_id = '" . $this->data['session_id'] . "' "); $this->data['session_admin'] = $this->data['user_level']; cache_update_userdata($this->data); @@ -415,9 +433,9 @@ class user_common { // Removing guest sessions from this IP DB()->query(" - DELETE FROM ". BB_SESSIONS ." - WHERE session_ip = '". USER_IP ."' - AND session_user_id = ". GUEST_UID ." + DELETE FROM " . BB_SESSIONS . " + WHERE session_ip = '" . USER_IP . "' + AND session_user_id = " . GUEST_UID . " "); return $new_session_userdata; @@ -429,15 +447,12 @@ class user_common } } - return array(); + return []; } - /** - * Initialize sessiondata stored in cookies - */ - function get_sessiondata () + public function get_sessiondata () { - $sd_resv = !empty($_COOKIE[COOKIE_DATA]) ? @unserialize($_COOKIE[COOKIE_DATA]) : array(); + $sd_resv = !empty($_COOKIE[COOKIE_DATA]) ? @unserialize($_COOKIE[COOKIE_DATA]) : []; // autologin_id if (!empty($sd_resv['uk']) && verify_id($sd_resv['uk'], LOGIN_KEY_LENGTH)) @@ -457,22 +472,22 @@ class user_common } /** - * Store sessiondata in cookies - */ - function set_session_cookies ($user_id) + * @param $user_id + */ + public function set_session_cookies ($user_id) { global $bb_cfg; if ($user_id == GUEST_UID) { - $delete_cookies = array( + $delete_cookies = [ COOKIE_DATA, COOKIE_DBG, 'torhelp', 'explain', 'sql_log', 'sql_log_full', - ); + ]; foreach ($delete_cookies as $cookie) { @@ -499,9 +514,13 @@ class user_common } /** - * Verify autologin_id - */ - function verify_autologin_id ($userdata, $expire_check = false, $create_new = true) + * @param $userdata + * @param bool $expire_check + * @param bool $create_new + * + * @return bool|string + */ + public function verify_autologin_id ($userdata, $expire_check = false, $create_new = true) { global $bb_cfg; @@ -515,7 +534,7 @@ class user_common } else if ($autologin_id && $userdata['user_session_time'] && $bb_cfg['max_autologin_time']) { - if (TIMENOW - $userdata['user_session_time'] > $bb_cfg['max_autologin_time']*86400) + if (TIMENOW - $userdata['user_session_time'] > $bb_cfg['max_autologin_time'] * 86400) { return $this->create_autologin_id($userdata, $create_new); } @@ -526,56 +545,58 @@ class user_common } /** - * Create autologin_id - */ - function create_autologin_id ($userdata, $create_new = true) + * @param $userdata + * @param bool $create_new + * + * @return string + */ + public function create_autologin_id ($userdata, $create_new = true) { $autologin_id = ($create_new) ? make_rand_str(LOGIN_KEY_LENGTH) : ''; DB()->query(" - UPDATE ". BB_USERS ." SET + UPDATE " . BB_USERS . " SET autologin_id = '$autologin_id' - WHERE user_id = ". (int) $userdata['user_id'] ." + WHERE user_id = " . (int) $userdata['user_id'] . " LIMIT 1 "); return $autologin_id; } - /** - * Set shortcuts - */ - function set_shortcuts () - { - $this->id =& $this->data['user_id']; - $this->active =& $this->data['user_active']; - $this->name =& $this->data['username']; - $this->lastvisit =& $this->data['user_lastvisit']; - $this->regdate =& $this->data['user_regdate']; - $this->level =& $this->data['user_level']; - $this->opt =& $this->data['user_opt']; - $this->ip = CLIENT_IP; + public function set_shortcuts () + { + $this->id =& $this->data['user_id']; + $this->active =& $this->data['user_active']; + $this->name =& $this->data['username']; + $this->lastvisit =& $this->data['user_lastvisit']; + $this->regdate =& $this->data['user_regdate']; + $this->level =& $this->data['user_level']; + $this->opt =& $this->data['user_opt']; + + $this->ip = CLIENT_IP; } - /** - * Initialise user settings - */ - function init_userprefs () + + public function init_userprefs () { global $bb_cfg, $theme, $lang, $DeltaTime; - if (defined('LANG_DIR')) return; // prevent multiple calling + if (defined('LANG_DIR')) + { + return; + } // prevent multiple calling - define('DEFAULT_LANG_DIR', LANG_ROOT_DIR . $bb_cfg['default_lang'] .'/'); - define('ENGLISH_LANG_DIR', LANG_ROOT_DIR .'en/'); + define('DEFAULT_LANG_DIR', LANG_ROOT_DIR . $bb_cfg['default_lang'] . '/'); + define('ENGLISH_LANG_DIR', LANG_ROOT_DIR . 'en/'); if ($this->data['user_id'] != GUEST_UID) { if ($this->data['user_lang'] && $this->data['user_lang'] != $bb_cfg['default_lang']) { $bb_cfg['default_lang'] = basename($this->data['user_lang']); - define('LANG_DIR', LANG_ROOT_DIR . $bb_cfg['default_lang'] .'/'); + define('LANG_DIR', LANG_ROOT_DIR . $bb_cfg['default_lang'] . '/'); } if (isset($this->data['user_timezone'])) @@ -584,15 +605,18 @@ class user_common } } - $this->data['user_lang'] = $bb_cfg['default_lang']; - $this->data['user_timezone'] = $bb_cfg['board_timezone']; + $this->data['user_lang'] = $bb_cfg['default_lang']; + $this->data['user_timezone'] = $bb_cfg['board_timezone']; - if (!defined('LANG_DIR')) define('LANG_DIR', DEFAULT_LANG_DIR); + if (!defined('LANG_DIR')) + { + define('LANG_DIR', DEFAULT_LANG_DIR); + } - require(LANG_DIR .'main.php'); + require(LANG_DIR . 'main.php'); setlocale(LC_ALL, $bb_cfg['lang'][$this->data['user_lang']]['locale']); - $theme = setup_style(); + $theme = setup_style(); $DeltaTime = new Date_Delta(); // Handle marking posts read @@ -605,16 +629,16 @@ class user_common } /** - * Mark read - */ - function mark_read ($type) + * @param $type + */ + public function mark_read ($type) { if ($type === 'all_forums') { // Update session time DB()->query(" - UPDATE ". BB_SESSIONS ." SET - session_time = ". TIMENOW ." + UPDATE " . BB_SESSIONS . " SET + session_time = " . TIMENOW . " WHERE session_id = '{$this->data['session_id']}' LIMIT 1 "); @@ -624,22 +648,19 @@ class user_common $this->data['user_lastvisit'] = TIMENOW; // Update lastvisit - db_update_userdata($this->data, array( + db_update_userdata($this->data, [ 'user_session_time' => $this->data['session_time'], 'user_lastvisit' => $this->data['user_lastvisit'], - )); + ]); // Delete cookies bb_setcookie(COOKIE_TOPIC, ''); bb_setcookie(COOKIE_FORUM, ''); - bb_setcookie(COOKIE_MARK, ''); + bb_setcookie(COOKIE_MARK, ''); } } - /** - * Load misc options - */ - function load_opt_js () + public function load_opt_js () { if (IS_GUEST) { @@ -657,13 +678,18 @@ class user_common } /** - * Get not auth forums - */ - function get_not_auth_forums ($auth_type) + * @param $auth_type + * + * @return string + */ + public function get_not_auth_forums ($auth_type) { global $datastore; - if (IS_ADMIN) return ''; + if (IS_ADMIN) + { + return ''; + } if (!$forums = $datastore->get('cat_forums')) { @@ -686,7 +712,7 @@ class user_common } } - $auth_field_match = array( + $auth_field_match = [ AUTH_VIEW => 'auth_view', AUTH_READ => 'auth_read', AUTH_POST => 'auth_post', @@ -699,11 +725,11 @@ class user_common AUTH_POLLCREATE => 'auth_pollcreate', AUTH_ATTACH => 'auth_attachments', AUTH_DOWNLOAD => 'auth_download', - ); + ]; - $not_auth_forums = array(); - $auth_field = $auth_field_match[$auth_type]; - $is_auth_ary = auth($auth_type, AUTH_LIST_ALL, $this->data); + $not_auth_forums = []; + $auth_field = $auth_field_match[$auth_type]; + $is_auth_ary = auth($auth_type, AUTH_LIST_ALL, $this->data); foreach ($is_auth_ary as $forum_id => $is_auth) { @@ -717,11 +743,14 @@ class user_common } /** - * Get excluded forums - */ - function get_excluded_forums ($auth_type, $return_as = 'csv') + * @param $auth_type + * @param string $return_as + * + * @return array|string + */ + public function get_excluded_forums ($auth_type, $return_as = 'csv') { - $excluded = array(); + $excluded = []; if ($not_auth = $this->get_not_auth_forums($auth_type)) { @@ -742,91 +771,22 @@ class user_common { foreach ($forums['forum'] as $key => $row) { - if ($row['allow_porno_topic']) $excluded[] = $row['forum_id']; + if ($row['allow_porno_topic']) + { + $excluded[] = $row['forum_id']; + } } } } switch ($return_as) { - case 'csv': return join(',', $excluded); - case 'array': return $excluded; - case 'flip': return array_flip(explode(',', $excluded)); + case 'csv': + return join(',', $excluded); + case 'array': + return $excluded; + case 'flip': + return array_flip(explode(',', $excluded)); } } } - -// -// userdata cache -// -function ignore_cached_userdata () -{ - return (defined('IN_PM')) ? true : false; -} - -function cache_get_userdata ($id) -{ - if (ignore_cached_userdata()) return false; - - return CACHE('session_cache')->get($id); -} - -function cache_set_userdata ($userdata, $force = false) -{ - global $bb_cfg; - - if (!$userdata || (ignore_cached_userdata() && !$force)) return false; - - $id = ($userdata['user_id'] == GUEST_UID) ? $userdata['session_ip'] : $userdata['session_id']; - return CACHE('session_cache')->set($id, $userdata, $bb_cfg['session_update_intrv']); -} - -function cache_rm_userdata ($userdata) -{ - if (!$userdata) return false; - - $id = ($userdata['user_id'] == GUEST_UID) ? $userdata['session_ip'] : $userdata['session_id']; - return CACHE('session_cache')->rm($id); -} - -// $user_id - array(id1,id2,..) or (string) id -function cache_rm_user_sessions ($user_id) -{ - $user_id = get_id_csv($user_id); - - $rowset = DB()->fetch_rowset(" - SELECT session_id FROM ". BB_SESSIONS ." WHERE session_user_id IN($user_id) - "); - - foreach ($rowset as $row) - { - CACHE('session_cache')->rm($row['session_id']); - } -} - -function cache_update_userdata ($userdata) -{ - return cache_set_userdata($userdata, true); -} - -function db_update_userdata ($userdata, $sql_ary, $data_already_escaped = true) -{ - if (!$userdata) return false; - - $sql_args = DB()->build_array('UPDATE', $sql_ary, $data_already_escaped); - DB()->query("UPDATE ". BB_USERS ." SET $sql_args WHERE user_id = {$userdata['user_id']}"); - - if (DB()->affected_rows()) - { - cache_rm_userdata($userdata); - } -} - -// $user_id - array(id1,id2,..) or (string) id -function delete_user_sessions ($user_id) -{ - cache_rm_user_sessions($user_id); - - $user_id = get_id_csv($user_id); - DB()->query("DELETE FROM ". BB_SESSIONS ." WHERE session_user_id IN($user_id)"); -} \ No newline at end of file diff --git a/library/includes/template.php b/library/TorrentPier/Template.php similarity index 97% rename from library/includes/template.php rename to library/TorrentPier/Template.php index d02cf0b6f..4bf76c649 100644 --- a/library/includes/template.php +++ b/library/TorrentPier/Template.php @@ -1,28 +1,5 @@ execute() scope!) - * "#" - constant, {#CON} is eq to CON - * - */ - -if (!defined('BB_ROOT')) die(basename(__FILE__)); - -// Template system constants -define('XS_TPL_PREFIX', 'tpl_'); -define('XS_USE_ISSET', '1'); -define('XS_TAG_NONE', 0); -define('XS_TAG_BEGIN', 2); -define('XS_TAG_END', 3); -define('XS_TAG_INCLUDE', 4); -define('XS_TAG_IF', 5); -define('XS_TAG_ELSE', 6); -define('XS_TAG_ELSEIF', 7); -define('XS_TAG_ENDIF', 8); -define('XS_TAG_BEGINELSE', 11); class Template { @@ -89,7 +66,7 @@ class Template /** * Constructor. Installs XS mod on first run or updates it and sets the root dir. */ - function Template($root = '.') + function __construct ($root = '.') { global $bb_cfg, $lang; @@ -963,7 +940,7 @@ class Template * Compiles the given string of code, and returns the result in a string. * If "do_not_echo" is true, the returned code will not be directly executable, * but can be used as part of a variable assignment for use in assign_code_from_handle(). - * This function isn't used and kept only for compatibility with original template.php + * This function isn't used and kept only for compatibility with original Template.php */ function compile($code, $do_not_echo = false, $retvar = '') { diff --git a/library/includes/functions_upload.php b/library/TorrentPier/Upload.php similarity index 70% rename from library/includes/functions_upload.php rename to library/TorrentPier/Upload.php index 9c2762217..4eceb6612 100644 --- a/library/includes/functions_upload.php +++ b/library/TorrentPier/Upload.php @@ -1,44 +1,91 @@ 0, 'max_width' => 0, 'max_height' => 0, - 'allowed_ext' => array(), + 'allowed_ext' => [], 'upload_path' => '', - ); - var $file = array( - 'name' => '', - 'type' => '', - 'size' => 0, - 'tmp_name' => '', - 'error' => UPLOAD_ERR_NO_FILE, - ); - var $orig_name = ''; - var $file_path = ''; // Stored file path - var $file_ext = ''; - var $file_ext_id = ''; - var $file_size = ''; - var $ext_ids = array(); // array_flip($bb_cfg['file_id_ext']) - var $errors = array(); - var $img_types = array( + ]; + + /** + * @type array + */ + public $file = [ + 'name' => '', + 'type' => '', + 'size' => 0, + 'tmp_name' => '', + 'error' => UPLOAD_ERR_NO_FILE, + ]; + + /** + * @type string + */ + public $orig_name = ''; + + /** + * @type string + */ + public $file_path = ''; + + /** + * @type string + */ + public $file_ext = ''; + + /** + * @type string + */ + public $file_ext_id = ''; + + /** + * @type string + */ + public $file_size = ''; + + /** + * array_flip($bb_cfg['file_id_ext']) + * + * @type array + */ + public $ext_ids = []; + + /** + * @type array + */ + public $errors = []; + + /** + * @type array + */ + public $img_types = [ 1 => 'gif', 2 => 'jpg', 3 => 'png', 6 => 'bmp', 7 => 'tiff', 8 => 'tiff', - ); + ]; - function init ($cfg = array(), $post_params = array(), $uploaded_only = true) + /** + * @param array $cfg + * @param array $post_params + * @param bool $uploaded_only + * + * @return bool + */ + public function init ($cfg = [], $post_params = [], $uploaded_only = true) { global $bb_cfg, $lang; - $this->cfg = array_merge($this->cfg, $cfg); + $this->cfg = array_merge($this->cfg, $cfg); $this->file = $post_params; // upload errors from $_FILES @@ -47,34 +94,39 @@ class upload_common $msg = $lang['UPLOAD_ERROR_COMMON']; $msg .= ($err_desc =& $lang['UPLOAD_ERRORS'][$this->file['error']]) ? " ($err_desc)" : ''; $this->errors[] = $msg; + return false; } // file_exists if (!file_exists($this->file['tmp_name'])) { $this->errors[] = "Uploaded file not exists: {$this->file['tmp_name']}"; + return false; } // size if (!$this->file_size = filesize($this->file['tmp_name'])) { $this->errors[] = "Uploaded file is empty: {$this->file['tmp_name']}"; + return false; } if ($this->cfg['max_size'] && $this->file_size > $this->cfg['max_size']) { $this->errors[] = sprintf($lang['UPLOAD_ERROR_SIZE'], humn_size($this->cfg['max_size'])); + return false; } // is_uploaded_file if ($uploaded_only && !is_uploaded_file($this->file['tmp_name'])) { $this->errors[] = "Not uploaded file: {$this->file['tmp_name']}"; + return false; } // get ext - $this->ext_ids = array_flip($bb_cfg['file_id_ext']); - $file_name_ary = explode('.', $this->file['name']); + $this->ext_ids = array_flip($bb_cfg['file_id_ext']); + $file_name_ary = explode('.', $this->file['name']); $this->file_ext = strtolower(end($file_name_ary)); // img @@ -88,6 +140,7 @@ class upload_common if (!$width || !$height || !$type || !isset($this->img_types[$type])) { $this->errors[] = $lang['UPLOAD_ERROR_FORMAT']; + return false; } $this->file_ext = $this->img_types[$type]; @@ -96,12 +149,14 @@ class upload_common if (($this->cfg['max_width'] && $width > $this->cfg['max_width']) || ($this->cfg['max_height'] && $height > $this->cfg['max_height'])) { $this->errors[] = sprintf($lang['UPLOAD_ERROR_DIMENSIONS'], $this->cfg['max_width'], $this->cfg['max_height']); + return false; } } else { $this->errors[] = $lang['UPLOAD_ERROR_NOT_IMAGE']; + return false; } } @@ -109,24 +164,33 @@ class upload_common if ($uploaded_only && (!isset($this->ext_ids[$this->file_ext]) || !in_array($this->file_ext, $this->cfg['allowed_ext'], true))) { $this->errors[] = sprintf($lang['UPLOAD_ERROR_NOT_ALLOWED'], htmlCHR($this->file_ext)); + return false; } - $this->file_ext_id = $this->ext_ids[$this->file_ext]; + $this->file_ext_id = @$this->ext_ids[$this->file_ext]; return true; } - function store ($mode = '', $params = array()) + /** + * @param string $mode + * @param array $params + * + * @return bool + */ + public function store ($mode = '', $params = []) { if ($mode == 'avatar') { delete_avatar($params['user_id'], $params['avatar_ext_id']); $file_path = get_avatar_path($params['user_id'], $this->file_ext_id); + return $this->_move($file_path); } else if ($mode == 'attach') { $file_path = get_attach_path($params['topic_id']); + return $this->_move($file_path); } else @@ -135,7 +199,12 @@ class upload_common } } - function _move ($file_path) + /** + * @param $file_path + * + * @return bool + */ + private function _move ($file_path) { $dir = dirname($file_path); if (!file_exists($dir)) @@ -143,6 +212,7 @@ class upload_common if (!bb_mkdir($dir)) { $this->errors[] = "Cannot create dir: $dir"; + return false; } } @@ -151,6 +221,7 @@ class upload_common if (!@copy($this->file['tmp_name'], $file_path)) { $this->errors[] = 'Cannot copy tmp file'; + return false; } @unlink($this->file['tmp_name']); diff --git a/library/Zend/Authentication/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/Authentication/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/Authentication/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/Authentication/Adapter/AbstractAdapter.php diff --git a/library/Zend/Authentication/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/AdapterInterface.php diff --git a/library/Zend/Authentication/Adapter/Callback.php b/library/TorrentPier/Zend/Authentication/Adapter/Callback.php similarity index 100% rename from library/Zend/Authentication/Adapter/Callback.php rename to library/TorrentPier/Zend/Authentication/Adapter/Callback.php diff --git a/library/Zend/Authentication/Adapter/DbTable.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable.php diff --git a/library/Zend/Authentication/Adapter/DbTable/AbstractAdapter.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/AbstractAdapter.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/AbstractAdapter.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/AbstractAdapter.php diff --git a/library/Zend/Authentication/Adapter/DbTable/CallbackCheckAdapter.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/CallbackCheckAdapter.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/CallbackCheckAdapter.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/CallbackCheckAdapter.php diff --git a/library/Zend/Authentication/Adapter/DbTable/CredentialTreatmentAdapter.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/CredentialTreatmentAdapter.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/CredentialTreatmentAdapter.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/CredentialTreatmentAdapter.php diff --git a/library/Zend/Authentication/Adapter/DbTable/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/ExceptionInterface.php diff --git a/library/Zend/Authentication/Adapter/DbTable/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/InvalidArgumentException.php diff --git a/library/Zend/Authentication/Adapter/DbTable/Exception/RuntimeException.php b/library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Authentication/Adapter/DbTable/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Authentication/Adapter/DbTable/Exception/RuntimeException.php diff --git a/library/Zend/Authentication/Adapter/Digest.php b/library/TorrentPier/Zend/Authentication/Adapter/Digest.php similarity index 100% rename from library/Zend/Authentication/Adapter/Digest.php rename to library/TorrentPier/Zend/Authentication/Adapter/Digest.php diff --git a/library/Zend/Authentication/Adapter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/Exception/ExceptionInterface.php diff --git a/library/Zend/Authentication/Adapter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Authentication/Adapter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Authentication/Adapter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Authentication/Adapter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Authentication/Adapter/Exception/RuntimeException.php b/library/TorrentPier/Zend/Authentication/Adapter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Authentication/Adapter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Authentication/Adapter/Exception/RuntimeException.php diff --git a/library/Zend/Authentication/Adapter/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Authentication/Adapter/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Authentication/Adapter/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Authentication/Adapter/Exception/UnexpectedValueException.php diff --git a/library/Zend/Authentication/Adapter/Http.php b/library/TorrentPier/Zend/Authentication/Adapter/Http.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http.php diff --git a/library/Zend/Authentication/Adapter/Http/ApacheResolver.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/ApacheResolver.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/ApacheResolver.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/ApacheResolver.php diff --git a/library/Zend/Authentication/Adapter/Http/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/ExceptionInterface.php diff --git a/library/Zend/Authentication/Adapter/Http/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/InvalidArgumentException.php diff --git a/library/Zend/Authentication/Adapter/Http/Exception/RuntimeException.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/Exception/RuntimeException.php diff --git a/library/Zend/Authentication/Adapter/Http/FileResolver.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/FileResolver.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/FileResolver.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/FileResolver.php diff --git a/library/Zend/Authentication/Adapter/Http/ResolverInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/Http/ResolverInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/Http/ResolverInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/Http/ResolverInterface.php diff --git a/library/Zend/Authentication/Adapter/Ldap.php b/library/TorrentPier/Zend/Authentication/Adapter/Ldap.php similarity index 100% rename from library/Zend/Authentication/Adapter/Ldap.php rename to library/TorrentPier/Zend/Authentication/Adapter/Ldap.php diff --git a/library/Zend/Authentication/Adapter/ValidatableAdapterInterface.php b/library/TorrentPier/Zend/Authentication/Adapter/ValidatableAdapterInterface.php similarity index 100% rename from library/Zend/Authentication/Adapter/ValidatableAdapterInterface.php rename to library/TorrentPier/Zend/Authentication/Adapter/ValidatableAdapterInterface.php diff --git a/library/Zend/Authentication/AuthenticationService.php b/library/TorrentPier/Zend/Authentication/AuthenticationService.php similarity index 100% rename from library/Zend/Authentication/AuthenticationService.php rename to library/TorrentPier/Zend/Authentication/AuthenticationService.php diff --git a/library/Zend/Authentication/AuthenticationServiceInterface.php b/library/TorrentPier/Zend/Authentication/AuthenticationServiceInterface.php similarity index 100% rename from library/Zend/Authentication/AuthenticationServiceInterface.php rename to library/TorrentPier/Zend/Authentication/AuthenticationServiceInterface.php diff --git a/library/Zend/Authentication/CONTRIBUTING.md b/library/TorrentPier/Zend/Authentication/CONTRIBUTING.md similarity index 100% rename from library/Zend/Authentication/CONTRIBUTING.md rename to library/TorrentPier/Zend/Authentication/CONTRIBUTING.md diff --git a/library/Zend/Authentication/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Authentication/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Authentication/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Authentication/Exception/ExceptionInterface.php diff --git a/library/Zend/Authentication/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Authentication/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Authentication/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Authentication/Exception/InvalidArgumentException.php diff --git a/library/Zend/Authentication/Exception/RuntimeException.php b/library/TorrentPier/Zend/Authentication/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Authentication/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Authentication/Exception/RuntimeException.php diff --git a/library/Zend/Authentication/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Authentication/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Authentication/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Authentication/Exception/UnexpectedValueException.php diff --git a/library/Zend/Authentication/README.md b/library/TorrentPier/Zend/Authentication/README.md similarity index 100% rename from library/Zend/Authentication/README.md rename to library/TorrentPier/Zend/Authentication/README.md diff --git a/library/Zend/Authentication/Result.php b/library/TorrentPier/Zend/Authentication/Result.php similarity index 100% rename from library/Zend/Authentication/Result.php rename to library/TorrentPier/Zend/Authentication/Result.php diff --git a/library/Zend/Authentication/Storage/Chain.php b/library/TorrentPier/Zend/Authentication/Storage/Chain.php similarity index 100% rename from library/Zend/Authentication/Storage/Chain.php rename to library/TorrentPier/Zend/Authentication/Storage/Chain.php diff --git a/library/Zend/Authentication/Storage/NonPersistent.php b/library/TorrentPier/Zend/Authentication/Storage/NonPersistent.php similarity index 100% rename from library/Zend/Authentication/Storage/NonPersistent.php rename to library/TorrentPier/Zend/Authentication/Storage/NonPersistent.php diff --git a/library/Zend/Authentication/Storage/Session.php b/library/TorrentPier/Zend/Authentication/Storage/Session.php similarity index 100% rename from library/Zend/Authentication/Storage/Session.php rename to library/TorrentPier/Zend/Authentication/Storage/Session.php diff --git a/library/Zend/Authentication/Storage/StorageInterface.php b/library/TorrentPier/Zend/Authentication/Storage/StorageInterface.php similarity index 100% rename from library/Zend/Authentication/Storage/StorageInterface.php rename to library/TorrentPier/Zend/Authentication/Storage/StorageInterface.php diff --git a/library/Zend/Authentication/Validator/Authentication.php b/library/TorrentPier/Zend/Authentication/Validator/Authentication.php similarity index 100% rename from library/Zend/Authentication/Validator/Authentication.php rename to library/TorrentPier/Zend/Authentication/Validator/Authentication.php diff --git a/library/Zend/Authentication/composer.json b/library/TorrentPier/Zend/Authentication/composer.json similarity index 100% rename from library/Zend/Authentication/composer.json rename to library/TorrentPier/Zend/Authentication/composer.json diff --git a/library/Zend/Barcode/Barcode.php b/library/TorrentPier/Zend/Barcode/Barcode.php similarity index 100% rename from library/Zend/Barcode/Barcode.php rename to library/TorrentPier/Zend/Barcode/Barcode.php diff --git a/library/Zend/Barcode/CONTRIBUTING.md b/library/TorrentPier/Zend/Barcode/CONTRIBUTING.md similarity index 100% rename from library/Zend/Barcode/CONTRIBUTING.md rename to library/TorrentPier/Zend/Barcode/CONTRIBUTING.md diff --git a/library/Zend/Barcode/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Barcode/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Barcode/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Barcode/Exception/ExceptionInterface.php diff --git a/library/Zend/Barcode/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Barcode/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Barcode/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Barcode/Exception/InvalidArgumentException.php diff --git a/library/Zend/Barcode/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Barcode/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Barcode/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Barcode/Exception/OutOfRangeException.php diff --git a/library/Zend/Barcode/Exception/RendererCreationException.php b/library/TorrentPier/Zend/Barcode/Exception/RendererCreationException.php similarity index 100% rename from library/Zend/Barcode/Exception/RendererCreationException.php rename to library/TorrentPier/Zend/Barcode/Exception/RendererCreationException.php diff --git a/library/Zend/Barcode/Exception/RuntimeException.php b/library/TorrentPier/Zend/Barcode/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Barcode/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Barcode/Exception/RuntimeException.php diff --git a/library/Zend/Barcode/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Barcode/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Barcode/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Barcode/Exception/UnexpectedValueException.php diff --git a/library/Zend/Barcode/Object/AbstractObject.php b/library/TorrentPier/Zend/Barcode/Object/AbstractObject.php similarity index 100% rename from library/Zend/Barcode/Object/AbstractObject.php rename to library/TorrentPier/Zend/Barcode/Object/AbstractObject.php diff --git a/library/Zend/Barcode/Object/Codabar.php b/library/TorrentPier/Zend/Barcode/Object/Codabar.php similarity index 100% rename from library/Zend/Barcode/Object/Codabar.php rename to library/TorrentPier/Zend/Barcode/Object/Codabar.php diff --git a/library/Zend/Barcode/Object/Code128.php b/library/TorrentPier/Zend/Barcode/Object/Code128.php similarity index 100% rename from library/Zend/Barcode/Object/Code128.php rename to library/TorrentPier/Zend/Barcode/Object/Code128.php diff --git a/library/Zend/Barcode/Object/Code25.php b/library/TorrentPier/Zend/Barcode/Object/Code25.php similarity index 100% rename from library/Zend/Barcode/Object/Code25.php rename to library/TorrentPier/Zend/Barcode/Object/Code25.php diff --git a/library/Zend/Barcode/Object/Code25interleaved.php b/library/TorrentPier/Zend/Barcode/Object/Code25interleaved.php similarity index 100% rename from library/Zend/Barcode/Object/Code25interleaved.php rename to library/TorrentPier/Zend/Barcode/Object/Code25interleaved.php diff --git a/library/Zend/Barcode/Object/Code39.php b/library/TorrentPier/Zend/Barcode/Object/Code39.php similarity index 100% rename from library/Zend/Barcode/Object/Code39.php rename to library/TorrentPier/Zend/Barcode/Object/Code39.php diff --git a/library/Zend/Barcode/Object/Ean13.php b/library/TorrentPier/Zend/Barcode/Object/Ean13.php similarity index 100% rename from library/Zend/Barcode/Object/Ean13.php rename to library/TorrentPier/Zend/Barcode/Object/Ean13.php diff --git a/library/Zend/Barcode/Object/Ean2.php b/library/TorrentPier/Zend/Barcode/Object/Ean2.php similarity index 100% rename from library/Zend/Barcode/Object/Ean2.php rename to library/TorrentPier/Zend/Barcode/Object/Ean2.php diff --git a/library/Zend/Barcode/Object/Ean5.php b/library/TorrentPier/Zend/Barcode/Object/Ean5.php similarity index 100% rename from library/Zend/Barcode/Object/Ean5.php rename to library/TorrentPier/Zend/Barcode/Object/Ean5.php diff --git a/library/Zend/Barcode/Object/Ean8.php b/library/TorrentPier/Zend/Barcode/Object/Ean8.php similarity index 100% rename from library/Zend/Barcode/Object/Ean8.php rename to library/TorrentPier/Zend/Barcode/Object/Ean8.php diff --git a/library/Zend/Barcode/Object/Error.php b/library/TorrentPier/Zend/Barcode/Object/Error.php similarity index 100% rename from library/Zend/Barcode/Object/Error.php rename to library/TorrentPier/Zend/Barcode/Object/Error.php diff --git a/library/Zend/Barcode/Object/Exception/BarcodeValidationException.php b/library/TorrentPier/Zend/Barcode/Object/Exception/BarcodeValidationException.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/BarcodeValidationException.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/BarcodeValidationException.php diff --git a/library/Zend/Barcode/Object/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Barcode/Object/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/ExceptionInterface.php diff --git a/library/Zend/Barcode/Object/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Barcode/Object/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Barcode/Object/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Barcode/Object/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/InvalidArgumentException.php diff --git a/library/Zend/Barcode/Object/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Barcode/Object/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/OutOfRangeException.php diff --git a/library/Zend/Barcode/Object/Exception/RuntimeException.php b/library/TorrentPier/Zend/Barcode/Object/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Barcode/Object/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Barcode/Object/Exception/RuntimeException.php diff --git a/library/Zend/Barcode/Object/Identcode.php b/library/TorrentPier/Zend/Barcode/Object/Identcode.php similarity index 100% rename from library/Zend/Barcode/Object/Identcode.php rename to library/TorrentPier/Zend/Barcode/Object/Identcode.php diff --git a/library/Zend/Barcode/Object/Itf14.php b/library/TorrentPier/Zend/Barcode/Object/Itf14.php similarity index 100% rename from library/Zend/Barcode/Object/Itf14.php rename to library/TorrentPier/Zend/Barcode/Object/Itf14.php diff --git a/library/Zend/Barcode/Object/Leitcode.php b/library/TorrentPier/Zend/Barcode/Object/Leitcode.php similarity index 100% rename from library/Zend/Barcode/Object/Leitcode.php rename to library/TorrentPier/Zend/Barcode/Object/Leitcode.php diff --git a/library/Zend/Barcode/Object/ObjectInterface.php b/library/TorrentPier/Zend/Barcode/Object/ObjectInterface.php similarity index 100% rename from library/Zend/Barcode/Object/ObjectInterface.php rename to library/TorrentPier/Zend/Barcode/Object/ObjectInterface.php diff --git a/library/Zend/Barcode/Object/Planet.php b/library/TorrentPier/Zend/Barcode/Object/Planet.php similarity index 100% rename from library/Zend/Barcode/Object/Planet.php rename to library/TorrentPier/Zend/Barcode/Object/Planet.php diff --git a/library/Zend/Barcode/Object/Postnet.php b/library/TorrentPier/Zend/Barcode/Object/Postnet.php similarity index 100% rename from library/Zend/Barcode/Object/Postnet.php rename to library/TorrentPier/Zend/Barcode/Object/Postnet.php diff --git a/library/Zend/Barcode/Object/Royalmail.php b/library/TorrentPier/Zend/Barcode/Object/Royalmail.php similarity index 100% rename from library/Zend/Barcode/Object/Royalmail.php rename to library/TorrentPier/Zend/Barcode/Object/Royalmail.php diff --git a/library/Zend/Barcode/Object/Upca.php b/library/TorrentPier/Zend/Barcode/Object/Upca.php similarity index 100% rename from library/Zend/Barcode/Object/Upca.php rename to library/TorrentPier/Zend/Barcode/Object/Upca.php diff --git a/library/Zend/Barcode/Object/Upce.php b/library/TorrentPier/Zend/Barcode/Object/Upce.php similarity index 100% rename from library/Zend/Barcode/Object/Upce.php rename to library/TorrentPier/Zend/Barcode/Object/Upce.php diff --git a/library/Zend/Barcode/ObjectPluginManager.php b/library/TorrentPier/Zend/Barcode/ObjectPluginManager.php similarity index 100% rename from library/Zend/Barcode/ObjectPluginManager.php rename to library/TorrentPier/Zend/Barcode/ObjectPluginManager.php diff --git a/library/Zend/Barcode/README.md b/library/TorrentPier/Zend/Barcode/README.md similarity index 100% rename from library/Zend/Barcode/README.md rename to library/TorrentPier/Zend/Barcode/README.md diff --git a/library/Zend/Barcode/Renderer/AbstractRenderer.php b/library/TorrentPier/Zend/Barcode/Renderer/AbstractRenderer.php similarity index 100% rename from library/Zend/Barcode/Renderer/AbstractRenderer.php rename to library/TorrentPier/Zend/Barcode/Renderer/AbstractRenderer.php diff --git a/library/Zend/Barcode/Renderer/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Barcode/Renderer/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Barcode/Renderer/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Barcode/Renderer/Exception/ExceptionInterface.php diff --git a/library/Zend/Barcode/Renderer/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Barcode/Renderer/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Barcode/Renderer/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Barcode/Renderer/Exception/InvalidArgumentException.php diff --git a/library/Zend/Barcode/Renderer/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Barcode/Renderer/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Barcode/Renderer/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Barcode/Renderer/Exception/OutOfRangeException.php diff --git a/library/Zend/Barcode/Renderer/Exception/RuntimeException.php b/library/TorrentPier/Zend/Barcode/Renderer/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Barcode/Renderer/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Barcode/Renderer/Exception/RuntimeException.php diff --git a/library/Zend/Barcode/Renderer/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Barcode/Renderer/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Barcode/Renderer/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Barcode/Renderer/Exception/UnexpectedValueException.php diff --git a/library/Zend/Barcode/Renderer/Image.php b/library/TorrentPier/Zend/Barcode/Renderer/Image.php similarity index 100% rename from library/Zend/Barcode/Renderer/Image.php rename to library/TorrentPier/Zend/Barcode/Renderer/Image.php diff --git a/library/Zend/Barcode/Renderer/Pdf.php b/library/TorrentPier/Zend/Barcode/Renderer/Pdf.php similarity index 100% rename from library/Zend/Barcode/Renderer/Pdf.php rename to library/TorrentPier/Zend/Barcode/Renderer/Pdf.php diff --git a/library/Zend/Barcode/Renderer/RendererInterface.php b/library/TorrentPier/Zend/Barcode/Renderer/RendererInterface.php similarity index 100% rename from library/Zend/Barcode/Renderer/RendererInterface.php rename to library/TorrentPier/Zend/Barcode/Renderer/RendererInterface.php diff --git a/library/Zend/Barcode/Renderer/Svg.php b/library/TorrentPier/Zend/Barcode/Renderer/Svg.php similarity index 100% rename from library/Zend/Barcode/Renderer/Svg.php rename to library/TorrentPier/Zend/Barcode/Renderer/Svg.php diff --git a/library/Zend/Barcode/RendererPluginManager.php b/library/TorrentPier/Zend/Barcode/RendererPluginManager.php similarity index 100% rename from library/Zend/Barcode/RendererPluginManager.php rename to library/TorrentPier/Zend/Barcode/RendererPluginManager.php diff --git a/library/Zend/Barcode/composer.json b/library/TorrentPier/Zend/Barcode/composer.json similarity index 100% rename from library/Zend/Barcode/composer.json rename to library/TorrentPier/Zend/Barcode/composer.json diff --git a/library/Zend/Cache/CONTRIBUTING.md b/library/TorrentPier/Zend/Cache/CONTRIBUTING.md similarity index 100% rename from library/Zend/Cache/CONTRIBUTING.md rename to library/TorrentPier/Zend/Cache/CONTRIBUTING.md diff --git a/library/Zend/Cache/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Cache/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Cache/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Cache/Exception/BadMethodCallException.php diff --git a/library/Zend/Cache/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Cache/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Cache/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Cache/Exception/ExceptionInterface.php diff --git a/library/Zend/Cache/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Cache/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Cache/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Cache/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Cache/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Cache/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Cache/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Cache/Exception/InvalidArgumentException.php diff --git a/library/Zend/Cache/Exception/LogicException.php b/library/TorrentPier/Zend/Cache/Exception/LogicException.php similarity index 100% rename from library/Zend/Cache/Exception/LogicException.php rename to library/TorrentPier/Zend/Cache/Exception/LogicException.php diff --git a/library/Zend/Cache/Exception/MissingDependencyException.php b/library/TorrentPier/Zend/Cache/Exception/MissingDependencyException.php similarity index 100% rename from library/Zend/Cache/Exception/MissingDependencyException.php rename to library/TorrentPier/Zend/Cache/Exception/MissingDependencyException.php diff --git a/library/Zend/Cache/Exception/MissingKeyException.php b/library/TorrentPier/Zend/Cache/Exception/MissingKeyException.php similarity index 100% rename from library/Zend/Cache/Exception/MissingKeyException.php rename to library/TorrentPier/Zend/Cache/Exception/MissingKeyException.php diff --git a/library/Zend/Cache/Exception/OutOfSpaceException.php b/library/TorrentPier/Zend/Cache/Exception/OutOfSpaceException.php similarity index 100% rename from library/Zend/Cache/Exception/OutOfSpaceException.php rename to library/TorrentPier/Zend/Cache/Exception/OutOfSpaceException.php diff --git a/library/Zend/Cache/Exception/RuntimeException.php b/library/TorrentPier/Zend/Cache/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Cache/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Cache/Exception/RuntimeException.php diff --git a/library/Zend/Cache/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Cache/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Cache/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Cache/Exception/UnexpectedValueException.php diff --git a/library/Zend/Cache/Exception/UnsupportedMethodCallException.php b/library/TorrentPier/Zend/Cache/Exception/UnsupportedMethodCallException.php similarity index 100% rename from library/Zend/Cache/Exception/UnsupportedMethodCallException.php rename to library/TorrentPier/Zend/Cache/Exception/UnsupportedMethodCallException.php diff --git a/library/Zend/Cache/Pattern/AbstractPattern.php b/library/TorrentPier/Zend/Cache/Pattern/AbstractPattern.php similarity index 100% rename from library/Zend/Cache/Pattern/AbstractPattern.php rename to library/TorrentPier/Zend/Cache/Pattern/AbstractPattern.php diff --git a/library/Zend/Cache/Pattern/CallbackCache.php b/library/TorrentPier/Zend/Cache/Pattern/CallbackCache.php similarity index 100% rename from library/Zend/Cache/Pattern/CallbackCache.php rename to library/TorrentPier/Zend/Cache/Pattern/CallbackCache.php diff --git a/library/Zend/Cache/Pattern/CaptureCache.php b/library/TorrentPier/Zend/Cache/Pattern/CaptureCache.php similarity index 100% rename from library/Zend/Cache/Pattern/CaptureCache.php rename to library/TorrentPier/Zend/Cache/Pattern/CaptureCache.php diff --git a/library/Zend/Cache/Pattern/ClassCache.php b/library/TorrentPier/Zend/Cache/Pattern/ClassCache.php similarity index 100% rename from library/Zend/Cache/Pattern/ClassCache.php rename to library/TorrentPier/Zend/Cache/Pattern/ClassCache.php diff --git a/library/Zend/Cache/Pattern/ObjectCache.php b/library/TorrentPier/Zend/Cache/Pattern/ObjectCache.php similarity index 100% rename from library/Zend/Cache/Pattern/ObjectCache.php rename to library/TorrentPier/Zend/Cache/Pattern/ObjectCache.php diff --git a/library/Zend/Cache/Pattern/OutputCache.php b/library/TorrentPier/Zend/Cache/Pattern/OutputCache.php similarity index 100% rename from library/Zend/Cache/Pattern/OutputCache.php rename to library/TorrentPier/Zend/Cache/Pattern/OutputCache.php diff --git a/library/Zend/Cache/Pattern/PatternInterface.php b/library/TorrentPier/Zend/Cache/Pattern/PatternInterface.php similarity index 100% rename from library/Zend/Cache/Pattern/PatternInterface.php rename to library/TorrentPier/Zend/Cache/Pattern/PatternInterface.php diff --git a/library/Zend/Cache/Pattern/PatternOptions.php b/library/TorrentPier/Zend/Cache/Pattern/PatternOptions.php similarity index 100% rename from library/Zend/Cache/Pattern/PatternOptions.php rename to library/TorrentPier/Zend/Cache/Pattern/PatternOptions.php diff --git a/library/Zend/Cache/PatternFactory.php b/library/TorrentPier/Zend/Cache/PatternFactory.php similarity index 100% rename from library/Zend/Cache/PatternFactory.php rename to library/TorrentPier/Zend/Cache/PatternFactory.php diff --git a/library/Zend/Cache/PatternPluginManager.php b/library/TorrentPier/Zend/Cache/PatternPluginManager.php similarity index 100% rename from library/Zend/Cache/PatternPluginManager.php rename to library/TorrentPier/Zend/Cache/PatternPluginManager.php diff --git a/library/Zend/Cache/README.md b/library/TorrentPier/Zend/Cache/README.md similarity index 100% rename from library/Zend/Cache/README.md rename to library/TorrentPier/Zend/Cache/README.md diff --git a/library/Zend/Cache/Service/StorageCacheAbstractServiceFactory.php b/library/TorrentPier/Zend/Cache/Service/StorageCacheAbstractServiceFactory.php similarity index 100% rename from library/Zend/Cache/Service/StorageCacheAbstractServiceFactory.php rename to library/TorrentPier/Zend/Cache/Service/StorageCacheAbstractServiceFactory.php diff --git a/library/Zend/Cache/Service/StorageCacheFactory.php b/library/TorrentPier/Zend/Cache/Service/StorageCacheFactory.php similarity index 100% rename from library/Zend/Cache/Service/StorageCacheFactory.php rename to library/TorrentPier/Zend/Cache/Service/StorageCacheFactory.php diff --git a/library/Zend/Cache/Storage/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/AbstractAdapter.php diff --git a/library/Zend/Cache/Storage/Adapter/AbstractZendServer.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/AbstractZendServer.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/AbstractZendServer.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/AbstractZendServer.php diff --git a/library/Zend/Cache/Storage/Adapter/AdapterOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/AdapterOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/AdapterOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/AdapterOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/Apc.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Apc.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Apc.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Apc.php diff --git a/library/Zend/Cache/Storage/Adapter/ApcIterator.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/ApcIterator.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/ApcIterator.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/ApcIterator.php diff --git a/library/Zend/Cache/Storage/Adapter/ApcOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/ApcOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/ApcOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/ApcOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/BlackHole.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/BlackHole.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/BlackHole.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/BlackHole.php diff --git a/library/Zend/Cache/Storage/Adapter/Dba.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Dba.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Dba.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Dba.php diff --git a/library/Zend/Cache/Storage/Adapter/DbaIterator.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/DbaIterator.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/DbaIterator.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/DbaIterator.php diff --git a/library/Zend/Cache/Storage/Adapter/DbaOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/DbaOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/DbaOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/DbaOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/Filesystem.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Filesystem.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Filesystem.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Filesystem.php diff --git a/library/Zend/Cache/Storage/Adapter/FilesystemIterator.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/FilesystemIterator.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/FilesystemIterator.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/FilesystemIterator.php diff --git a/library/Zend/Cache/Storage/Adapter/FilesystemOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/FilesystemOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/FilesystemOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/FilesystemOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/KeyListIterator.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/KeyListIterator.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/KeyListIterator.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/KeyListIterator.php diff --git a/library/Zend/Cache/Storage/Adapter/Memcache.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Memcache.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Memcache.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Memcache.php diff --git a/library/Zend/Cache/Storage/Adapter/MemcacheOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MemcacheOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MemcacheOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MemcacheOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/MemcacheResourceManager.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MemcacheResourceManager.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MemcacheResourceManager.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MemcacheResourceManager.php diff --git a/library/Zend/Cache/Storage/Adapter/Memcached.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Memcached.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Memcached.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Memcached.php diff --git a/library/Zend/Cache/Storage/Adapter/MemcachedOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MemcachedOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MemcachedOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MemcachedOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/MemcachedResourceManager.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MemcachedResourceManager.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MemcachedResourceManager.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MemcachedResourceManager.php diff --git a/library/Zend/Cache/Storage/Adapter/Memory.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Memory.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Memory.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Memory.php diff --git a/library/Zend/Cache/Storage/Adapter/MemoryOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MemoryOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MemoryOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MemoryOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/MongoDb.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDb.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MongoDb.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDb.php diff --git a/library/Zend/Cache/Storage/Adapter/MongoDbOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDbOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MongoDbOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDbOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/MongoDbResourceManager.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDbResourceManager.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/MongoDbResourceManager.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/MongoDbResourceManager.php diff --git a/library/Zend/Cache/Storage/Adapter/Redis.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Redis.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Redis.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Redis.php diff --git a/library/Zend/Cache/Storage/Adapter/RedisOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/RedisOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/RedisOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/RedisOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/RedisResourceManager.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/RedisResourceManager.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/RedisResourceManager.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/RedisResourceManager.php diff --git a/library/Zend/Cache/Storage/Adapter/Session.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/Session.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/Session.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/Session.php diff --git a/library/Zend/Cache/Storage/Adapter/SessionOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/SessionOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/SessionOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/SessionOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/WinCache.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/WinCache.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/WinCache.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/WinCache.php diff --git a/library/Zend/Cache/Storage/Adapter/WinCacheOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/WinCacheOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/WinCacheOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/WinCacheOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/XCache.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/XCache.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/XCache.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/XCache.php diff --git a/library/Zend/Cache/Storage/Adapter/XCacheOptions.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/XCacheOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/XCacheOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/XCacheOptions.php diff --git a/library/Zend/Cache/Storage/Adapter/ZendServerDisk.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/ZendServerDisk.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/ZendServerDisk.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/ZendServerDisk.php diff --git a/library/Zend/Cache/Storage/Adapter/ZendServerShm.php b/library/TorrentPier/Zend/Cache/Storage/Adapter/ZendServerShm.php similarity index 100% rename from library/Zend/Cache/Storage/Adapter/ZendServerShm.php rename to library/TorrentPier/Zend/Cache/Storage/Adapter/ZendServerShm.php diff --git a/library/Zend/Cache/Storage/AdapterPluginManager.php b/library/TorrentPier/Zend/Cache/Storage/AdapterPluginManager.php similarity index 100% rename from library/Zend/Cache/Storage/AdapterPluginManager.php rename to library/TorrentPier/Zend/Cache/Storage/AdapterPluginManager.php diff --git a/library/Zend/Cache/Storage/AvailableSpaceCapableInterface.php b/library/TorrentPier/Zend/Cache/Storage/AvailableSpaceCapableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/AvailableSpaceCapableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/AvailableSpaceCapableInterface.php diff --git a/library/Zend/Cache/Storage/Capabilities.php b/library/TorrentPier/Zend/Cache/Storage/Capabilities.php similarity index 100% rename from library/Zend/Cache/Storage/Capabilities.php rename to library/TorrentPier/Zend/Cache/Storage/Capabilities.php diff --git a/library/Zend/Cache/Storage/ClearByNamespaceInterface.php b/library/TorrentPier/Zend/Cache/Storage/ClearByNamespaceInterface.php similarity index 100% rename from library/Zend/Cache/Storage/ClearByNamespaceInterface.php rename to library/TorrentPier/Zend/Cache/Storage/ClearByNamespaceInterface.php diff --git a/library/Zend/Cache/Storage/ClearByPrefixInterface.php b/library/TorrentPier/Zend/Cache/Storage/ClearByPrefixInterface.php similarity index 100% rename from library/Zend/Cache/Storage/ClearByPrefixInterface.php rename to library/TorrentPier/Zend/Cache/Storage/ClearByPrefixInterface.php diff --git a/library/Zend/Cache/Storage/ClearExpiredInterface.php b/library/TorrentPier/Zend/Cache/Storage/ClearExpiredInterface.php similarity index 100% rename from library/Zend/Cache/Storage/ClearExpiredInterface.php rename to library/TorrentPier/Zend/Cache/Storage/ClearExpiredInterface.php diff --git a/library/Zend/Cache/Storage/Event.php b/library/TorrentPier/Zend/Cache/Storage/Event.php similarity index 100% rename from library/Zend/Cache/Storage/Event.php rename to library/TorrentPier/Zend/Cache/Storage/Event.php diff --git a/library/Zend/Cache/Storage/ExceptionEvent.php b/library/TorrentPier/Zend/Cache/Storage/ExceptionEvent.php similarity index 100% rename from library/Zend/Cache/Storage/ExceptionEvent.php rename to library/TorrentPier/Zend/Cache/Storage/ExceptionEvent.php diff --git a/library/Zend/Cache/Storage/FlushableInterface.php b/library/TorrentPier/Zend/Cache/Storage/FlushableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/FlushableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/FlushableInterface.php diff --git a/library/Zend/Cache/Storage/IterableInterface.php b/library/TorrentPier/Zend/Cache/Storage/IterableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/IterableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/IterableInterface.php diff --git a/library/Zend/Cache/Storage/IteratorInterface.php b/library/TorrentPier/Zend/Cache/Storage/IteratorInterface.php similarity index 100% rename from library/Zend/Cache/Storage/IteratorInterface.php rename to library/TorrentPier/Zend/Cache/Storage/IteratorInterface.php diff --git a/library/Zend/Cache/Storage/OptimizableInterface.php b/library/TorrentPier/Zend/Cache/Storage/OptimizableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/OptimizableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/OptimizableInterface.php diff --git a/library/Zend/Cache/Storage/Plugin/AbstractPlugin.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/AbstractPlugin.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/AbstractPlugin.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/AbstractPlugin.php diff --git a/library/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/ClearExpiredByFactor.php diff --git a/library/Zend/Cache/Storage/Plugin/ExceptionHandler.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/ExceptionHandler.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/ExceptionHandler.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/ExceptionHandler.php diff --git a/library/Zend/Cache/Storage/Plugin/IgnoreUserAbort.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/IgnoreUserAbort.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/IgnoreUserAbort.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/IgnoreUserAbort.php diff --git a/library/Zend/Cache/Storage/Plugin/OptimizeByFactor.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/OptimizeByFactor.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/OptimizeByFactor.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/OptimizeByFactor.php diff --git a/library/Zend/Cache/Storage/Plugin/PluginInterface.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/PluginInterface.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/PluginInterface.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/PluginInterface.php diff --git a/library/Zend/Cache/Storage/Plugin/PluginOptions.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/PluginOptions.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/PluginOptions.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/PluginOptions.php diff --git a/library/Zend/Cache/Storage/Plugin/Serializer.php b/library/TorrentPier/Zend/Cache/Storage/Plugin/Serializer.php similarity index 100% rename from library/Zend/Cache/Storage/Plugin/Serializer.php rename to library/TorrentPier/Zend/Cache/Storage/Plugin/Serializer.php diff --git a/library/Zend/Cache/Storage/PluginManager.php b/library/TorrentPier/Zend/Cache/Storage/PluginManager.php similarity index 100% rename from library/Zend/Cache/Storage/PluginManager.php rename to library/TorrentPier/Zend/Cache/Storage/PluginManager.php diff --git a/library/Zend/Cache/Storage/PostEvent.php b/library/TorrentPier/Zend/Cache/Storage/PostEvent.php similarity index 100% rename from library/Zend/Cache/Storage/PostEvent.php rename to library/TorrentPier/Zend/Cache/Storage/PostEvent.php diff --git a/library/Zend/Cache/Storage/StorageInterface.php b/library/TorrentPier/Zend/Cache/Storage/StorageInterface.php similarity index 100% rename from library/Zend/Cache/Storage/StorageInterface.php rename to library/TorrentPier/Zend/Cache/Storage/StorageInterface.php diff --git a/library/Zend/Cache/Storage/TaggableInterface.php b/library/TorrentPier/Zend/Cache/Storage/TaggableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/TaggableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/TaggableInterface.php diff --git a/library/Zend/Cache/Storage/TotalSpaceCapableInterface.php b/library/TorrentPier/Zend/Cache/Storage/TotalSpaceCapableInterface.php similarity index 100% rename from library/Zend/Cache/Storage/TotalSpaceCapableInterface.php rename to library/TorrentPier/Zend/Cache/Storage/TotalSpaceCapableInterface.php diff --git a/library/Zend/Cache/StorageFactory.php b/library/TorrentPier/Zend/Cache/StorageFactory.php similarity index 100% rename from library/Zend/Cache/StorageFactory.php rename to library/TorrentPier/Zend/Cache/StorageFactory.php diff --git a/library/Zend/Cache/composer.json b/library/TorrentPier/Zend/Cache/composer.json similarity index 100% rename from library/Zend/Cache/composer.json rename to library/TorrentPier/Zend/Cache/composer.json diff --git a/library/Zend/Captcha/AbstractAdapter.php b/library/TorrentPier/Zend/Captcha/AbstractAdapter.php similarity index 100% rename from library/Zend/Captcha/AbstractAdapter.php rename to library/TorrentPier/Zend/Captcha/AbstractAdapter.php diff --git a/library/Zend/Captcha/AbstractWord.php b/library/TorrentPier/Zend/Captcha/AbstractWord.php similarity index 100% rename from library/Zend/Captcha/AbstractWord.php rename to library/TorrentPier/Zend/Captcha/AbstractWord.php diff --git a/library/Zend/Captcha/AdapterInterface.php b/library/TorrentPier/Zend/Captcha/AdapterInterface.php similarity index 100% rename from library/Zend/Captcha/AdapterInterface.php rename to library/TorrentPier/Zend/Captcha/AdapterInterface.php diff --git a/library/Zend/Captcha/CONTRIBUTING.md b/library/TorrentPier/Zend/Captcha/CONTRIBUTING.md similarity index 100% rename from library/Zend/Captcha/CONTRIBUTING.md rename to library/TorrentPier/Zend/Captcha/CONTRIBUTING.md diff --git a/library/Zend/Captcha/Dumb.php b/library/TorrentPier/Zend/Captcha/Dumb.php similarity index 100% rename from library/Zend/Captcha/Dumb.php rename to library/TorrentPier/Zend/Captcha/Dumb.php diff --git a/library/Zend/Captcha/Exception/DomainException.php b/library/TorrentPier/Zend/Captcha/Exception/DomainException.php similarity index 100% rename from library/Zend/Captcha/Exception/DomainException.php rename to library/TorrentPier/Zend/Captcha/Exception/DomainException.php diff --git a/library/Zend/Captcha/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Captcha/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Captcha/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Captcha/Exception/ExceptionInterface.php diff --git a/library/Zend/Captcha/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Captcha/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Captcha/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Captcha/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Captcha/Exception/ImageNotLoadableException.php b/library/TorrentPier/Zend/Captcha/Exception/ImageNotLoadableException.php similarity index 100% rename from library/Zend/Captcha/Exception/ImageNotLoadableException.php rename to library/TorrentPier/Zend/Captcha/Exception/ImageNotLoadableException.php diff --git a/library/Zend/Captcha/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Captcha/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Captcha/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Captcha/Exception/InvalidArgumentException.php diff --git a/library/Zend/Captcha/Exception/NoFontProvidedException.php b/library/TorrentPier/Zend/Captcha/Exception/NoFontProvidedException.php similarity index 100% rename from library/Zend/Captcha/Exception/NoFontProvidedException.php rename to library/TorrentPier/Zend/Captcha/Exception/NoFontProvidedException.php diff --git a/library/Zend/Captcha/Exception/RuntimeException.php b/library/TorrentPier/Zend/Captcha/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Captcha/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Captcha/Exception/RuntimeException.php diff --git a/library/Zend/Captcha/Factory.php b/library/TorrentPier/Zend/Captcha/Factory.php similarity index 100% rename from library/Zend/Captcha/Factory.php rename to library/TorrentPier/Zend/Captcha/Factory.php diff --git a/library/Zend/Captcha/Figlet.php b/library/TorrentPier/Zend/Captcha/Figlet.php similarity index 100% rename from library/Zend/Captcha/Figlet.php rename to library/TorrentPier/Zend/Captcha/Figlet.php diff --git a/library/Zend/Captcha/Image.php b/library/TorrentPier/Zend/Captcha/Image.php similarity index 100% rename from library/Zend/Captcha/Image.php rename to library/TorrentPier/Zend/Captcha/Image.php diff --git a/library/Zend/Captcha/README.md b/library/TorrentPier/Zend/Captcha/README.md similarity index 100% rename from library/Zend/Captcha/README.md rename to library/TorrentPier/Zend/Captcha/README.md diff --git a/library/Zend/Captcha/ReCaptcha.php b/library/TorrentPier/Zend/Captcha/ReCaptcha.php similarity index 100% rename from library/Zend/Captcha/ReCaptcha.php rename to library/TorrentPier/Zend/Captcha/ReCaptcha.php diff --git a/library/Zend/Captcha/composer.json b/library/TorrentPier/Zend/Captcha/composer.json similarity index 100% rename from library/Zend/Captcha/composer.json rename to library/TorrentPier/Zend/Captcha/composer.json diff --git a/library/Zend/Code/Annotation/AnnotationCollection.php b/library/TorrentPier/Zend/Code/Annotation/AnnotationCollection.php similarity index 100% rename from library/Zend/Code/Annotation/AnnotationCollection.php rename to library/TorrentPier/Zend/Code/Annotation/AnnotationCollection.php diff --git a/library/Zend/Code/Annotation/AnnotationInterface.php b/library/TorrentPier/Zend/Code/Annotation/AnnotationInterface.php similarity index 100% rename from library/Zend/Code/Annotation/AnnotationInterface.php rename to library/TorrentPier/Zend/Code/Annotation/AnnotationInterface.php diff --git a/library/Zend/Code/Annotation/AnnotationManager.php b/library/TorrentPier/Zend/Code/Annotation/AnnotationManager.php similarity index 100% rename from library/Zend/Code/Annotation/AnnotationManager.php rename to library/TorrentPier/Zend/Code/Annotation/AnnotationManager.php diff --git a/library/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php b/library/TorrentPier/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php similarity index 100% rename from library/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php rename to library/TorrentPier/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php diff --git a/library/Zend/Code/Annotation/Parser/GenericAnnotationParser.php b/library/TorrentPier/Zend/Code/Annotation/Parser/GenericAnnotationParser.php similarity index 100% rename from library/Zend/Code/Annotation/Parser/GenericAnnotationParser.php rename to library/TorrentPier/Zend/Code/Annotation/Parser/GenericAnnotationParser.php diff --git a/library/Zend/Code/Annotation/Parser/ParserInterface.php b/library/TorrentPier/Zend/Code/Annotation/Parser/ParserInterface.php similarity index 100% rename from library/Zend/Code/Annotation/Parser/ParserInterface.php rename to library/TorrentPier/Zend/Code/Annotation/Parser/ParserInterface.php diff --git a/library/Zend/Code/CONTRIBUTING.md b/library/TorrentPier/Zend/Code/CONTRIBUTING.md similarity index 100% rename from library/Zend/Code/CONTRIBUTING.md rename to library/TorrentPier/Zend/Code/CONTRIBUTING.md diff --git a/library/Zend/Code/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Code/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Code/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Code/Exception/BadMethodCallException.php diff --git a/library/Zend/Code/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Code/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Code/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Code/Exception/ExceptionInterface.php diff --git a/library/Zend/Code/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Code/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Code/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Code/Exception/InvalidArgumentException.php diff --git a/library/Zend/Code/Exception/RuntimeException.php b/library/TorrentPier/Zend/Code/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Code/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Code/Exception/RuntimeException.php diff --git a/library/Zend/Code/Generator/AbstractGenerator.php b/library/TorrentPier/Zend/Code/Generator/AbstractGenerator.php similarity index 100% rename from library/Zend/Code/Generator/AbstractGenerator.php rename to library/TorrentPier/Zend/Code/Generator/AbstractGenerator.php diff --git a/library/Zend/Code/Generator/AbstractMemberGenerator.php b/library/TorrentPier/Zend/Code/Generator/AbstractMemberGenerator.php similarity index 100% rename from library/Zend/Code/Generator/AbstractMemberGenerator.php rename to library/TorrentPier/Zend/Code/Generator/AbstractMemberGenerator.php diff --git a/library/Zend/Code/Generator/BodyGenerator.php b/library/TorrentPier/Zend/Code/Generator/BodyGenerator.php similarity index 100% rename from library/Zend/Code/Generator/BodyGenerator.php rename to library/TorrentPier/Zend/Code/Generator/BodyGenerator.php diff --git a/library/Zend/Code/Generator/ClassGenerator.php b/library/TorrentPier/Zend/Code/Generator/ClassGenerator.php similarity index 100% rename from library/Zend/Code/Generator/ClassGenerator.php rename to library/TorrentPier/Zend/Code/Generator/ClassGenerator.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/AbstractTypeableTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/AbstractTypeableTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/AbstractTypeableTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/AbstractTypeableTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/AuthorTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/AuthorTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/AuthorTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/AuthorTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/GenericTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/GenericTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/GenericTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/GenericTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/LicenseTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/MethodTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/MethodTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/MethodTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/MethodTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/ParamTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ParamTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/ParamTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ParamTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/PropertyTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/PropertyTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/PropertyTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/PropertyTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ReturnTag.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/TagInterface.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/TagInterface.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/TagInterface.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/TagInterface.php diff --git a/library/Zend/Code/Generator/DocBlock/Tag/ThrowsTag.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ThrowsTag.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/Tag/ThrowsTag.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/Tag/ThrowsTag.php diff --git a/library/Zend/Code/Generator/DocBlock/TagManager.php b/library/TorrentPier/Zend/Code/Generator/DocBlock/TagManager.php similarity index 100% rename from library/Zend/Code/Generator/DocBlock/TagManager.php rename to library/TorrentPier/Zend/Code/Generator/DocBlock/TagManager.php diff --git a/library/Zend/Code/Generator/DocBlockGenerator.php b/library/TorrentPier/Zend/Code/Generator/DocBlockGenerator.php similarity index 100% rename from library/Zend/Code/Generator/DocBlockGenerator.php rename to library/TorrentPier/Zend/Code/Generator/DocBlockGenerator.php diff --git a/library/Zend/Code/Generator/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Code/Generator/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Code/Generator/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Code/Generator/Exception/ExceptionInterface.php diff --git a/library/Zend/Code/Generator/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Code/Generator/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Code/Generator/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Code/Generator/Exception/InvalidArgumentException.php diff --git a/library/Zend/Code/Generator/Exception/RuntimeException.php b/library/TorrentPier/Zend/Code/Generator/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Code/Generator/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Code/Generator/Exception/RuntimeException.php diff --git a/library/Zend/Code/Generator/FileGenerator.php b/library/TorrentPier/Zend/Code/Generator/FileGenerator.php similarity index 100% rename from library/Zend/Code/Generator/FileGenerator.php rename to library/TorrentPier/Zend/Code/Generator/FileGenerator.php diff --git a/library/Zend/Code/Generator/FileGeneratorRegistry.php b/library/TorrentPier/Zend/Code/Generator/FileGeneratorRegistry.php similarity index 100% rename from library/Zend/Code/Generator/FileGeneratorRegistry.php rename to library/TorrentPier/Zend/Code/Generator/FileGeneratorRegistry.php diff --git a/library/Zend/Code/Generator/GeneratorInterface.php b/library/TorrentPier/Zend/Code/Generator/GeneratorInterface.php similarity index 100% rename from library/Zend/Code/Generator/GeneratorInterface.php rename to library/TorrentPier/Zend/Code/Generator/GeneratorInterface.php diff --git a/library/Zend/Code/Generator/MethodGenerator.php b/library/TorrentPier/Zend/Code/Generator/MethodGenerator.php similarity index 100% rename from library/Zend/Code/Generator/MethodGenerator.php rename to library/TorrentPier/Zend/Code/Generator/MethodGenerator.php diff --git a/library/Zend/Code/Generator/ParameterGenerator.php b/library/TorrentPier/Zend/Code/Generator/ParameterGenerator.php similarity index 100% rename from library/Zend/Code/Generator/ParameterGenerator.php rename to library/TorrentPier/Zend/Code/Generator/ParameterGenerator.php diff --git a/library/Zend/Code/Generator/PropertyGenerator.php b/library/TorrentPier/Zend/Code/Generator/PropertyGenerator.php similarity index 100% rename from library/Zend/Code/Generator/PropertyGenerator.php rename to library/TorrentPier/Zend/Code/Generator/PropertyGenerator.php diff --git a/library/Zend/Code/Generator/PropertyValueGenerator.php b/library/TorrentPier/Zend/Code/Generator/PropertyValueGenerator.php similarity index 100% rename from library/Zend/Code/Generator/PropertyValueGenerator.php rename to library/TorrentPier/Zend/Code/Generator/PropertyValueGenerator.php diff --git a/library/Zend/Code/Generator/TraitGenerator.php b/library/TorrentPier/Zend/Code/Generator/TraitGenerator.php similarity index 100% rename from library/Zend/Code/Generator/TraitGenerator.php rename to library/TorrentPier/Zend/Code/Generator/TraitGenerator.php diff --git a/library/Zend/Code/Generator/TraitUsageGenerator.php b/library/TorrentPier/Zend/Code/Generator/TraitUsageGenerator.php similarity index 100% rename from library/Zend/Code/Generator/TraitUsageGenerator.php rename to library/TorrentPier/Zend/Code/Generator/TraitUsageGenerator.php diff --git a/library/Zend/Code/Generator/TraitUsageInterface.php b/library/TorrentPier/Zend/Code/Generator/TraitUsageInterface.php similarity index 100% rename from library/Zend/Code/Generator/TraitUsageInterface.php rename to library/TorrentPier/Zend/Code/Generator/TraitUsageInterface.php diff --git a/library/Zend/Code/Generator/ValueGenerator.php b/library/TorrentPier/Zend/Code/Generator/ValueGenerator.php similarity index 100% rename from library/Zend/Code/Generator/ValueGenerator.php rename to library/TorrentPier/Zend/Code/Generator/ValueGenerator.php diff --git a/library/Zend/Code/Generic/Prototype/PrototypeClassFactory.php b/library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeClassFactory.php similarity index 100% rename from library/Zend/Code/Generic/Prototype/PrototypeClassFactory.php rename to library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeClassFactory.php diff --git a/library/Zend/Code/Generic/Prototype/PrototypeGenericInterface.php b/library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeGenericInterface.php similarity index 100% rename from library/Zend/Code/Generic/Prototype/PrototypeGenericInterface.php rename to library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeGenericInterface.php diff --git a/library/Zend/Code/Generic/Prototype/PrototypeInterface.php b/library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeInterface.php similarity index 100% rename from library/Zend/Code/Generic/Prototype/PrototypeInterface.php rename to library/TorrentPier/Zend/Code/Generic/Prototype/PrototypeInterface.php diff --git a/library/Zend/Code/NameInformation.php b/library/TorrentPier/Zend/Code/NameInformation.php similarity index 100% rename from library/Zend/Code/NameInformation.php rename to library/TorrentPier/Zend/Code/NameInformation.php diff --git a/library/Zend/Code/README.md b/library/TorrentPier/Zend/Code/README.md similarity index 100% rename from library/Zend/Code/README.md rename to library/TorrentPier/Zend/Code/README.md diff --git a/library/Zend/Code/Reflection/ClassReflection.php b/library/TorrentPier/Zend/Code/Reflection/ClassReflection.php similarity index 100% rename from library/Zend/Code/Reflection/ClassReflection.php rename to library/TorrentPier/Zend/Code/Reflection/ClassReflection.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/AuthorTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/AuthorTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/AuthorTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/AuthorTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/GenericTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/GenericTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/GenericTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/GenericTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/LicenseTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/LicenseTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/LicenseTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/LicenseTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/MethodTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/MethodTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/MethodTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/MethodTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/ParamTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ParamTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/ParamTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ParamTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/PhpDocTypedTagInterface.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/PropertyTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/PropertyTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/PropertyTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/PropertyTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/ReturnTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ReturnTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/ReturnTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ReturnTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/TagInterface.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/TagInterface.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/TagInterface.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/TagInterface.php diff --git a/library/Zend/Code/Reflection/DocBlock/Tag/ThrowsTag.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ThrowsTag.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/Tag/ThrowsTag.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/Tag/ThrowsTag.php diff --git a/library/Zend/Code/Reflection/DocBlock/TagManager.php b/library/TorrentPier/Zend/Code/Reflection/DocBlock/TagManager.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlock/TagManager.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlock/TagManager.php diff --git a/library/Zend/Code/Reflection/DocBlockReflection.php b/library/TorrentPier/Zend/Code/Reflection/DocBlockReflection.php similarity index 100% rename from library/Zend/Code/Reflection/DocBlockReflection.php rename to library/TorrentPier/Zend/Code/Reflection/DocBlockReflection.php diff --git a/library/Zend/Code/Reflection/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Code/Reflection/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Code/Reflection/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Code/Reflection/Exception/BadMethodCallException.php diff --git a/library/Zend/Code/Reflection/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Code/Reflection/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Code/Reflection/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Code/Reflection/Exception/ExceptionInterface.php diff --git a/library/Zend/Code/Reflection/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Code/Reflection/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Code/Reflection/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Code/Reflection/Exception/InvalidArgumentException.php diff --git a/library/Zend/Code/Reflection/Exception/RuntimeException.php b/library/TorrentPier/Zend/Code/Reflection/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Code/Reflection/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Code/Reflection/Exception/RuntimeException.php diff --git a/library/Zend/Code/Reflection/FileReflection.php b/library/TorrentPier/Zend/Code/Reflection/FileReflection.php similarity index 100% rename from library/Zend/Code/Reflection/FileReflection.php rename to library/TorrentPier/Zend/Code/Reflection/FileReflection.php diff --git a/library/Zend/Code/Reflection/FunctionReflection.php b/library/TorrentPier/Zend/Code/Reflection/FunctionReflection.php similarity index 100% rename from library/Zend/Code/Reflection/FunctionReflection.php rename to library/TorrentPier/Zend/Code/Reflection/FunctionReflection.php diff --git a/library/Zend/Code/Reflection/MethodReflection.php b/library/TorrentPier/Zend/Code/Reflection/MethodReflection.php similarity index 100% rename from library/Zend/Code/Reflection/MethodReflection.php rename to library/TorrentPier/Zend/Code/Reflection/MethodReflection.php diff --git a/library/Zend/Code/Reflection/ParameterReflection.php b/library/TorrentPier/Zend/Code/Reflection/ParameterReflection.php similarity index 100% rename from library/Zend/Code/Reflection/ParameterReflection.php rename to library/TorrentPier/Zend/Code/Reflection/ParameterReflection.php diff --git a/library/Zend/Code/Reflection/PropertyReflection.php b/library/TorrentPier/Zend/Code/Reflection/PropertyReflection.php similarity index 100% rename from library/Zend/Code/Reflection/PropertyReflection.php rename to library/TorrentPier/Zend/Code/Reflection/PropertyReflection.php diff --git a/library/Zend/Code/Reflection/ReflectionInterface.php b/library/TorrentPier/Zend/Code/Reflection/ReflectionInterface.php similarity index 100% rename from library/Zend/Code/Reflection/ReflectionInterface.php rename to library/TorrentPier/Zend/Code/Reflection/ReflectionInterface.php diff --git a/library/Zend/Code/Scanner/AggregateDirectoryScanner.php b/library/TorrentPier/Zend/Code/Scanner/AggregateDirectoryScanner.php similarity index 100% rename from library/Zend/Code/Scanner/AggregateDirectoryScanner.php rename to library/TorrentPier/Zend/Code/Scanner/AggregateDirectoryScanner.php diff --git a/library/Zend/Code/Scanner/AnnotationScanner.php b/library/TorrentPier/Zend/Code/Scanner/AnnotationScanner.php similarity index 100% rename from library/Zend/Code/Scanner/AnnotationScanner.php rename to library/TorrentPier/Zend/Code/Scanner/AnnotationScanner.php diff --git a/library/Zend/Code/Scanner/CachingFileScanner.php b/library/TorrentPier/Zend/Code/Scanner/CachingFileScanner.php similarity index 100% rename from library/Zend/Code/Scanner/CachingFileScanner.php rename to library/TorrentPier/Zend/Code/Scanner/CachingFileScanner.php diff --git a/library/Zend/Code/Scanner/ClassScanner.php b/library/TorrentPier/Zend/Code/Scanner/ClassScanner.php similarity index 100% rename from library/Zend/Code/Scanner/ClassScanner.php rename to library/TorrentPier/Zend/Code/Scanner/ClassScanner.php diff --git a/library/Zend/Code/Scanner/ConstantScanner.php b/library/TorrentPier/Zend/Code/Scanner/ConstantScanner.php similarity index 100% rename from library/Zend/Code/Scanner/ConstantScanner.php rename to library/TorrentPier/Zend/Code/Scanner/ConstantScanner.php diff --git a/library/Zend/Code/Scanner/DerivedClassScanner.php b/library/TorrentPier/Zend/Code/Scanner/DerivedClassScanner.php similarity index 100% rename from library/Zend/Code/Scanner/DerivedClassScanner.php rename to library/TorrentPier/Zend/Code/Scanner/DerivedClassScanner.php diff --git a/library/Zend/Code/Scanner/DirectoryScanner.php b/library/TorrentPier/Zend/Code/Scanner/DirectoryScanner.php similarity index 100% rename from library/Zend/Code/Scanner/DirectoryScanner.php rename to library/TorrentPier/Zend/Code/Scanner/DirectoryScanner.php diff --git a/library/Zend/Code/Scanner/DocBlockScanner.php b/library/TorrentPier/Zend/Code/Scanner/DocBlockScanner.php similarity index 100% rename from library/Zend/Code/Scanner/DocBlockScanner.php rename to library/TorrentPier/Zend/Code/Scanner/DocBlockScanner.php diff --git a/library/Zend/Code/Scanner/FileScanner.php b/library/TorrentPier/Zend/Code/Scanner/FileScanner.php similarity index 100% rename from library/Zend/Code/Scanner/FileScanner.php rename to library/TorrentPier/Zend/Code/Scanner/FileScanner.php diff --git a/library/Zend/Code/Scanner/FunctionScanner.php b/library/TorrentPier/Zend/Code/Scanner/FunctionScanner.php similarity index 100% rename from library/Zend/Code/Scanner/FunctionScanner.php rename to library/TorrentPier/Zend/Code/Scanner/FunctionScanner.php diff --git a/library/Zend/Code/Scanner/MethodScanner.php b/library/TorrentPier/Zend/Code/Scanner/MethodScanner.php similarity index 100% rename from library/Zend/Code/Scanner/MethodScanner.php rename to library/TorrentPier/Zend/Code/Scanner/MethodScanner.php diff --git a/library/Zend/Code/Scanner/ParameterScanner.php b/library/TorrentPier/Zend/Code/Scanner/ParameterScanner.php similarity index 100% rename from library/Zend/Code/Scanner/ParameterScanner.php rename to library/TorrentPier/Zend/Code/Scanner/ParameterScanner.php diff --git a/library/Zend/Code/Scanner/PropertyScanner.php b/library/TorrentPier/Zend/Code/Scanner/PropertyScanner.php similarity index 100% rename from library/Zend/Code/Scanner/PropertyScanner.php rename to library/TorrentPier/Zend/Code/Scanner/PropertyScanner.php diff --git a/library/Zend/Code/Scanner/ScannerInterface.php b/library/TorrentPier/Zend/Code/Scanner/ScannerInterface.php similarity index 100% rename from library/Zend/Code/Scanner/ScannerInterface.php rename to library/TorrentPier/Zend/Code/Scanner/ScannerInterface.php diff --git a/library/Zend/Code/Scanner/TokenArrayScanner.php b/library/TorrentPier/Zend/Code/Scanner/TokenArrayScanner.php similarity index 100% rename from library/Zend/Code/Scanner/TokenArrayScanner.php rename to library/TorrentPier/Zend/Code/Scanner/TokenArrayScanner.php diff --git a/library/Zend/Code/Scanner/Util.php b/library/TorrentPier/Zend/Code/Scanner/Util.php similarity index 100% rename from library/Zend/Code/Scanner/Util.php rename to library/TorrentPier/Zend/Code/Scanner/Util.php diff --git a/library/Zend/Code/Scanner/ValueScanner.php b/library/TorrentPier/Zend/Code/Scanner/ValueScanner.php similarity index 100% rename from library/Zend/Code/Scanner/ValueScanner.php rename to library/TorrentPier/Zend/Code/Scanner/ValueScanner.php diff --git a/library/Zend/Code/composer.json b/library/TorrentPier/Zend/Code/composer.json similarity index 100% rename from library/Zend/Code/composer.json rename to library/TorrentPier/Zend/Code/composer.json diff --git a/library/Zend/Config/AbstractConfigFactory.php b/library/TorrentPier/Zend/Config/AbstractConfigFactory.php similarity index 100% rename from library/Zend/Config/AbstractConfigFactory.php rename to library/TorrentPier/Zend/Config/AbstractConfigFactory.php diff --git a/library/Zend/Config/CONTRIBUTING.md b/library/TorrentPier/Zend/Config/CONTRIBUTING.md similarity index 100% rename from library/Zend/Config/CONTRIBUTING.md rename to library/TorrentPier/Zend/Config/CONTRIBUTING.md diff --git a/library/Zend/Config/Config.php b/library/TorrentPier/Zend/Config/Config.php similarity index 100% rename from library/Zend/Config/Config.php rename to library/TorrentPier/Zend/Config/Config.php diff --git a/library/Zend/Config/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Config/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Config/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Config/Exception/ExceptionInterface.php diff --git a/library/Zend/Config/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Config/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Config/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Config/Exception/InvalidArgumentException.php diff --git a/library/Zend/Config/Exception/RuntimeException.php b/library/TorrentPier/Zend/Config/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Config/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Config/Exception/RuntimeException.php diff --git a/library/Zend/Config/Factory.php b/library/TorrentPier/Zend/Config/Factory.php similarity index 100% rename from library/Zend/Config/Factory.php rename to library/TorrentPier/Zend/Config/Factory.php diff --git a/library/Zend/Config/Processor/Constant.php b/library/TorrentPier/Zend/Config/Processor/Constant.php similarity index 100% rename from library/Zend/Config/Processor/Constant.php rename to library/TorrentPier/Zend/Config/Processor/Constant.php diff --git a/library/Zend/Config/Processor/Filter.php b/library/TorrentPier/Zend/Config/Processor/Filter.php similarity index 100% rename from library/Zend/Config/Processor/Filter.php rename to library/TorrentPier/Zend/Config/Processor/Filter.php diff --git a/library/Zend/Config/Processor/ProcessorInterface.php b/library/TorrentPier/Zend/Config/Processor/ProcessorInterface.php similarity index 100% rename from library/Zend/Config/Processor/ProcessorInterface.php rename to library/TorrentPier/Zend/Config/Processor/ProcessorInterface.php diff --git a/library/Zend/Config/Processor/Queue.php b/library/TorrentPier/Zend/Config/Processor/Queue.php similarity index 100% rename from library/Zend/Config/Processor/Queue.php rename to library/TorrentPier/Zend/Config/Processor/Queue.php diff --git a/library/Zend/Config/Processor/Token.php b/library/TorrentPier/Zend/Config/Processor/Token.php similarity index 100% rename from library/Zend/Config/Processor/Token.php rename to library/TorrentPier/Zend/Config/Processor/Token.php diff --git a/library/Zend/Config/Processor/Translator.php b/library/TorrentPier/Zend/Config/Processor/Translator.php similarity index 100% rename from library/Zend/Config/Processor/Translator.php rename to library/TorrentPier/Zend/Config/Processor/Translator.php diff --git a/library/Zend/Config/README.md b/library/TorrentPier/Zend/Config/README.md similarity index 100% rename from library/Zend/Config/README.md rename to library/TorrentPier/Zend/Config/README.md diff --git a/library/Zend/Config/Reader/Ini.php b/library/TorrentPier/Zend/Config/Reader/Ini.php similarity index 100% rename from library/Zend/Config/Reader/Ini.php rename to library/TorrentPier/Zend/Config/Reader/Ini.php diff --git a/library/Zend/Config/Reader/JavaProperties.php b/library/TorrentPier/Zend/Config/Reader/JavaProperties.php similarity index 100% rename from library/Zend/Config/Reader/JavaProperties.php rename to library/TorrentPier/Zend/Config/Reader/JavaProperties.php diff --git a/library/Zend/Config/Reader/Json.php b/library/TorrentPier/Zend/Config/Reader/Json.php similarity index 100% rename from library/Zend/Config/Reader/Json.php rename to library/TorrentPier/Zend/Config/Reader/Json.php diff --git a/library/Zend/Config/Reader/ReaderInterface.php b/library/TorrentPier/Zend/Config/Reader/ReaderInterface.php similarity index 100% rename from library/Zend/Config/Reader/ReaderInterface.php rename to library/TorrentPier/Zend/Config/Reader/ReaderInterface.php diff --git a/library/Zend/Config/Reader/Xml.php b/library/TorrentPier/Zend/Config/Reader/Xml.php similarity index 100% rename from library/Zend/Config/Reader/Xml.php rename to library/TorrentPier/Zend/Config/Reader/Xml.php diff --git a/library/Zend/Config/Reader/Yaml.php b/library/TorrentPier/Zend/Config/Reader/Yaml.php similarity index 100% rename from library/Zend/Config/Reader/Yaml.php rename to library/TorrentPier/Zend/Config/Reader/Yaml.php diff --git a/library/Zend/Config/ReaderPluginManager.php b/library/TorrentPier/Zend/Config/ReaderPluginManager.php similarity index 100% rename from library/Zend/Config/ReaderPluginManager.php rename to library/TorrentPier/Zend/Config/ReaderPluginManager.php diff --git a/library/Zend/Config/Writer/AbstractWriter.php b/library/TorrentPier/Zend/Config/Writer/AbstractWriter.php similarity index 100% rename from library/Zend/Config/Writer/AbstractWriter.php rename to library/TorrentPier/Zend/Config/Writer/AbstractWriter.php diff --git a/library/Zend/Config/Writer/Ini.php b/library/TorrentPier/Zend/Config/Writer/Ini.php similarity index 100% rename from library/Zend/Config/Writer/Ini.php rename to library/TorrentPier/Zend/Config/Writer/Ini.php diff --git a/library/Zend/Config/Writer/Json.php b/library/TorrentPier/Zend/Config/Writer/Json.php similarity index 100% rename from library/Zend/Config/Writer/Json.php rename to library/TorrentPier/Zend/Config/Writer/Json.php diff --git a/library/Zend/Config/Writer/PhpArray.php b/library/TorrentPier/Zend/Config/Writer/PhpArray.php similarity index 100% rename from library/Zend/Config/Writer/PhpArray.php rename to library/TorrentPier/Zend/Config/Writer/PhpArray.php diff --git a/library/Zend/Config/Writer/WriterInterface.php b/library/TorrentPier/Zend/Config/Writer/WriterInterface.php similarity index 100% rename from library/Zend/Config/Writer/WriterInterface.php rename to library/TorrentPier/Zend/Config/Writer/WriterInterface.php diff --git a/library/Zend/Config/Writer/Xml.php b/library/TorrentPier/Zend/Config/Writer/Xml.php similarity index 100% rename from library/Zend/Config/Writer/Xml.php rename to library/TorrentPier/Zend/Config/Writer/Xml.php diff --git a/library/Zend/Config/Writer/Yaml.php b/library/TorrentPier/Zend/Config/Writer/Yaml.php similarity index 100% rename from library/Zend/Config/Writer/Yaml.php rename to library/TorrentPier/Zend/Config/Writer/Yaml.php diff --git a/library/Zend/Config/WriterPluginManager.php b/library/TorrentPier/Zend/Config/WriterPluginManager.php similarity index 100% rename from library/Zend/Config/WriterPluginManager.php rename to library/TorrentPier/Zend/Config/WriterPluginManager.php diff --git a/library/Zend/Config/composer.json b/library/TorrentPier/Zend/Config/composer.json similarity index 100% rename from library/Zend/Config/composer.json rename to library/TorrentPier/Zend/Config/composer.json diff --git a/library/Zend/Console/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/Console/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/Console/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/Console/Adapter/AbstractAdapter.php diff --git a/library/Zend/Console/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Console/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Console/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Console/Adapter/AdapterInterface.php diff --git a/library/Zend/Console/Adapter/Posix.php b/library/TorrentPier/Zend/Console/Adapter/Posix.php similarity index 100% rename from library/Zend/Console/Adapter/Posix.php rename to library/TorrentPier/Zend/Console/Adapter/Posix.php diff --git a/library/Zend/Console/Adapter/Virtual.php b/library/TorrentPier/Zend/Console/Adapter/Virtual.php similarity index 100% rename from library/Zend/Console/Adapter/Virtual.php rename to library/TorrentPier/Zend/Console/Adapter/Virtual.php diff --git a/library/Zend/Console/Adapter/Windows.php b/library/TorrentPier/Zend/Console/Adapter/Windows.php similarity index 100% rename from library/Zend/Console/Adapter/Windows.php rename to library/TorrentPier/Zend/Console/Adapter/Windows.php diff --git a/library/Zend/Console/Adapter/WindowsAnsicon.php b/library/TorrentPier/Zend/Console/Adapter/WindowsAnsicon.php similarity index 100% rename from library/Zend/Console/Adapter/WindowsAnsicon.php rename to library/TorrentPier/Zend/Console/Adapter/WindowsAnsicon.php diff --git a/library/Zend/Console/CONTRIBUTING.md b/library/TorrentPier/Zend/Console/CONTRIBUTING.md similarity index 100% rename from library/Zend/Console/CONTRIBUTING.md rename to library/TorrentPier/Zend/Console/CONTRIBUTING.md diff --git a/library/Zend/Console/Charset/Ascii.php b/library/TorrentPier/Zend/Console/Charset/Ascii.php similarity index 100% rename from library/Zend/Console/Charset/Ascii.php rename to library/TorrentPier/Zend/Console/Charset/Ascii.php diff --git a/library/Zend/Console/Charset/AsciiExtended.php b/library/TorrentPier/Zend/Console/Charset/AsciiExtended.php similarity index 100% rename from library/Zend/Console/Charset/AsciiExtended.php rename to library/TorrentPier/Zend/Console/Charset/AsciiExtended.php diff --git a/library/Zend/Console/Charset/CharsetInterface.php b/library/TorrentPier/Zend/Console/Charset/CharsetInterface.php similarity index 100% rename from library/Zend/Console/Charset/CharsetInterface.php rename to library/TorrentPier/Zend/Console/Charset/CharsetInterface.php diff --git a/library/Zend/Console/Charset/DECSG.php b/library/TorrentPier/Zend/Console/Charset/DECSG.php similarity index 100% rename from library/Zend/Console/Charset/DECSG.php rename to library/TorrentPier/Zend/Console/Charset/DECSG.php diff --git a/library/Zend/Console/Charset/Utf8.php b/library/TorrentPier/Zend/Console/Charset/Utf8.php similarity index 100% rename from library/Zend/Console/Charset/Utf8.php rename to library/TorrentPier/Zend/Console/Charset/Utf8.php diff --git a/library/Zend/Console/Charset/Utf8Heavy.php b/library/TorrentPier/Zend/Console/Charset/Utf8Heavy.php similarity index 100% rename from library/Zend/Console/Charset/Utf8Heavy.php rename to library/TorrentPier/Zend/Console/Charset/Utf8Heavy.php diff --git a/library/Zend/Console/Color/Xterm256.php b/library/TorrentPier/Zend/Console/Color/Xterm256.php similarity index 100% rename from library/Zend/Console/Color/Xterm256.php rename to library/TorrentPier/Zend/Console/Color/Xterm256.php diff --git a/library/Zend/Console/ColorInterface.php b/library/TorrentPier/Zend/Console/ColorInterface.php similarity index 100% rename from library/Zend/Console/ColorInterface.php rename to library/TorrentPier/Zend/Console/ColorInterface.php diff --git a/library/Zend/Console/Console.php b/library/TorrentPier/Zend/Console/Console.php similarity index 100% rename from library/Zend/Console/Console.php rename to library/TorrentPier/Zend/Console/Console.php diff --git a/library/Zend/Console/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Console/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Console/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Console/Exception/BadMethodCallException.php diff --git a/library/Zend/Console/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Console/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Console/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Console/Exception/ExceptionInterface.php diff --git a/library/Zend/Console/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Console/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Console/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Console/Exception/InvalidArgumentException.php diff --git a/library/Zend/Console/Exception/RuntimeException.php b/library/TorrentPier/Zend/Console/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Console/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Console/Exception/RuntimeException.php diff --git a/library/Zend/Console/Getopt.php b/library/TorrentPier/Zend/Console/Getopt.php similarity index 100% rename from library/Zend/Console/Getopt.php rename to library/TorrentPier/Zend/Console/Getopt.php diff --git a/library/Zend/Console/Prompt/AbstractPrompt.php b/library/TorrentPier/Zend/Console/Prompt/AbstractPrompt.php similarity index 100% rename from library/Zend/Console/Prompt/AbstractPrompt.php rename to library/TorrentPier/Zend/Console/Prompt/AbstractPrompt.php diff --git a/library/Zend/Console/Prompt/Char.php b/library/TorrentPier/Zend/Console/Prompt/Char.php similarity index 100% rename from library/Zend/Console/Prompt/Char.php rename to library/TorrentPier/Zend/Console/Prompt/Char.php diff --git a/library/Zend/Console/Prompt/Checkbox.php b/library/TorrentPier/Zend/Console/Prompt/Checkbox.php similarity index 100% rename from library/Zend/Console/Prompt/Checkbox.php rename to library/TorrentPier/Zend/Console/Prompt/Checkbox.php diff --git a/library/Zend/Console/Prompt/Confirm.php b/library/TorrentPier/Zend/Console/Prompt/Confirm.php similarity index 100% rename from library/Zend/Console/Prompt/Confirm.php rename to library/TorrentPier/Zend/Console/Prompt/Confirm.php diff --git a/library/Zend/Console/Prompt/Line.php b/library/TorrentPier/Zend/Console/Prompt/Line.php similarity index 100% rename from library/Zend/Console/Prompt/Line.php rename to library/TorrentPier/Zend/Console/Prompt/Line.php diff --git a/library/Zend/Console/Prompt/Number.php b/library/TorrentPier/Zend/Console/Prompt/Number.php similarity index 100% rename from library/Zend/Console/Prompt/Number.php rename to library/TorrentPier/Zend/Console/Prompt/Number.php diff --git a/library/Zend/Console/Prompt/Password.php b/library/TorrentPier/Zend/Console/Prompt/Password.php similarity index 100% rename from library/Zend/Console/Prompt/Password.php rename to library/TorrentPier/Zend/Console/Prompt/Password.php diff --git a/library/Zend/Console/Prompt/PromptInterface.php b/library/TorrentPier/Zend/Console/Prompt/PromptInterface.php similarity index 100% rename from library/Zend/Console/Prompt/PromptInterface.php rename to library/TorrentPier/Zend/Console/Prompt/PromptInterface.php diff --git a/library/Zend/Console/Prompt/Select.php b/library/TorrentPier/Zend/Console/Prompt/Select.php similarity index 100% rename from library/Zend/Console/Prompt/Select.php rename to library/TorrentPier/Zend/Console/Prompt/Select.php diff --git a/library/Zend/Console/README.md b/library/TorrentPier/Zend/Console/README.md similarity index 100% rename from library/Zend/Console/README.md rename to library/TorrentPier/Zend/Console/README.md diff --git a/library/Zend/Console/Request.php b/library/TorrentPier/Zend/Console/Request.php similarity index 100% rename from library/Zend/Console/Request.php rename to library/TorrentPier/Zend/Console/Request.php diff --git a/library/Zend/Console/Response.php b/library/TorrentPier/Zend/Console/Response.php similarity index 100% rename from library/Zend/Console/Response.php rename to library/TorrentPier/Zend/Console/Response.php diff --git a/library/Zend/Console/RouteMatcher/DefaultRouteMatcher.php b/library/TorrentPier/Zend/Console/RouteMatcher/DefaultRouteMatcher.php similarity index 100% rename from library/Zend/Console/RouteMatcher/DefaultRouteMatcher.php rename to library/TorrentPier/Zend/Console/RouteMatcher/DefaultRouteMatcher.php diff --git a/library/Zend/Console/RouteMatcher/RouteMatcherInterface.php b/library/TorrentPier/Zend/Console/RouteMatcher/RouteMatcherInterface.php similarity index 100% rename from library/Zend/Console/RouteMatcher/RouteMatcherInterface.php rename to library/TorrentPier/Zend/Console/RouteMatcher/RouteMatcherInterface.php diff --git a/library/Zend/Console/composer.json b/library/TorrentPier/Zend/Console/composer.json similarity index 100% rename from library/Zend/Console/composer.json rename to library/TorrentPier/Zend/Console/composer.json diff --git a/library/Zend/Crypt/BlockCipher.php b/library/TorrentPier/Zend/Crypt/BlockCipher.php similarity index 100% rename from library/Zend/Crypt/BlockCipher.php rename to library/TorrentPier/Zend/Crypt/BlockCipher.php diff --git a/library/Zend/Crypt/CONTRIBUTING.md b/library/TorrentPier/Zend/Crypt/CONTRIBUTING.md similarity index 100% rename from library/Zend/Crypt/CONTRIBUTING.md rename to library/TorrentPier/Zend/Crypt/CONTRIBUTING.md diff --git a/library/Zend/Crypt/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Crypt/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Crypt/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Crypt/Exception/ExceptionInterface.php diff --git a/library/Zend/Crypt/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Crypt/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Crypt/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Crypt/Exception/InvalidArgumentException.php diff --git a/library/Zend/Crypt/Exception/RuntimeException.php b/library/TorrentPier/Zend/Crypt/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Crypt/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Crypt/Exception/RuntimeException.php diff --git a/library/Zend/Crypt/FileCipher.php b/library/TorrentPier/Zend/Crypt/FileCipher.php similarity index 100% rename from library/Zend/Crypt/FileCipher.php rename to library/TorrentPier/Zend/Crypt/FileCipher.php diff --git a/library/Zend/Crypt/Hash.php b/library/TorrentPier/Zend/Crypt/Hash.php similarity index 100% rename from library/Zend/Crypt/Hash.php rename to library/TorrentPier/Zend/Crypt/Hash.php diff --git a/library/Zend/Crypt/Hmac.php b/library/TorrentPier/Zend/Crypt/Hmac.php similarity index 100% rename from library/Zend/Crypt/Hmac.php rename to library/TorrentPier/Zend/Crypt/Hmac.php diff --git a/library/Zend/Crypt/Key/Derivation/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/ExceptionInterface.php diff --git a/library/Zend/Crypt/Key/Derivation/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/InvalidArgumentException.php diff --git a/library/Zend/Crypt/Key/Derivation/Exception/RuntimeException.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/Exception/RuntimeException.php diff --git a/library/Zend/Crypt/Key/Derivation/Pbkdf2.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/Pbkdf2.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/Pbkdf2.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/Pbkdf2.php diff --git a/library/Zend/Crypt/Key/Derivation/SaltedS2k.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/SaltedS2k.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/SaltedS2k.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/SaltedS2k.php diff --git a/library/Zend/Crypt/Key/Derivation/Scrypt.php b/library/TorrentPier/Zend/Crypt/Key/Derivation/Scrypt.php similarity index 100% rename from library/Zend/Crypt/Key/Derivation/Scrypt.php rename to library/TorrentPier/Zend/Crypt/Key/Derivation/Scrypt.php diff --git a/library/Zend/Crypt/Password/Apache.php b/library/TorrentPier/Zend/Crypt/Password/Apache.php similarity index 100% rename from library/Zend/Crypt/Password/Apache.php rename to library/TorrentPier/Zend/Crypt/Password/Apache.php diff --git a/library/Zend/Crypt/Password/Bcrypt.php b/library/TorrentPier/Zend/Crypt/Password/Bcrypt.php similarity index 100% rename from library/Zend/Crypt/Password/Bcrypt.php rename to library/TorrentPier/Zend/Crypt/Password/Bcrypt.php diff --git a/library/Zend/Crypt/Password/BcryptSha.php b/library/TorrentPier/Zend/Crypt/Password/BcryptSha.php similarity index 100% rename from library/Zend/Crypt/Password/BcryptSha.php rename to library/TorrentPier/Zend/Crypt/Password/BcryptSha.php diff --git a/library/Zend/Crypt/Password/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Crypt/Password/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Crypt/Password/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Crypt/Password/Exception/ExceptionInterface.php diff --git a/library/Zend/Crypt/Password/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Crypt/Password/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Crypt/Password/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Crypt/Password/Exception/InvalidArgumentException.php diff --git a/library/Zend/Crypt/Password/Exception/RuntimeException.php b/library/TorrentPier/Zend/Crypt/Password/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Crypt/Password/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Crypt/Password/Exception/RuntimeException.php diff --git a/library/Zend/Crypt/Password/PasswordInterface.php b/library/TorrentPier/Zend/Crypt/Password/PasswordInterface.php similarity index 100% rename from library/Zend/Crypt/Password/PasswordInterface.php rename to library/TorrentPier/Zend/Crypt/Password/PasswordInterface.php diff --git a/library/Zend/Crypt/PublicKey/DiffieHellman.php b/library/TorrentPier/Zend/Crypt/PublicKey/DiffieHellman.php similarity index 100% rename from library/Zend/Crypt/PublicKey/DiffieHellman.php rename to library/TorrentPier/Zend/Crypt/PublicKey/DiffieHellman.php diff --git a/library/Zend/Crypt/PublicKey/Rsa.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/AbstractKey.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/AbstractKey.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/AbstractKey.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/AbstractKey.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/ExceptionInterface.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/InvalidArgumentException.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/Exception/RuntimeException.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/Exception/RuntimeException.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/PrivateKey.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/PrivateKey.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/PrivateKey.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/PrivateKey.php diff --git a/library/Zend/Crypt/PublicKey/Rsa/PublicKey.php b/library/TorrentPier/Zend/Crypt/PublicKey/Rsa/PublicKey.php similarity index 100% rename from library/Zend/Crypt/PublicKey/Rsa/PublicKey.php rename to library/TorrentPier/Zend/Crypt/PublicKey/Rsa/PublicKey.php diff --git a/library/Zend/Crypt/PublicKey/RsaOptions.php b/library/TorrentPier/Zend/Crypt/PublicKey/RsaOptions.php similarity index 100% rename from library/Zend/Crypt/PublicKey/RsaOptions.php rename to library/TorrentPier/Zend/Crypt/PublicKey/RsaOptions.php diff --git a/library/Zend/Crypt/README.md b/library/TorrentPier/Zend/Crypt/README.md similarity index 100% rename from library/Zend/Crypt/README.md rename to library/TorrentPier/Zend/Crypt/README.md diff --git a/library/Zend/Crypt/Symmetric/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Crypt/Symmetric/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Exception/ExceptionInterface.php diff --git a/library/Zend/Crypt/Symmetric/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Crypt/Symmetric/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Exception/InvalidArgumentException.php diff --git a/library/Zend/Crypt/Symmetric/Exception/RuntimeException.php b/library/TorrentPier/Zend/Crypt/Symmetric/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Exception/RuntimeException.php diff --git a/library/Zend/Crypt/Symmetric/Mcrypt.php b/library/TorrentPier/Zend/Crypt/Symmetric/Mcrypt.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Mcrypt.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Mcrypt.php diff --git a/library/Zend/Crypt/Symmetric/Padding/NoPadding.php b/library/TorrentPier/Zend/Crypt/Symmetric/Padding/NoPadding.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Padding/NoPadding.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Padding/NoPadding.php diff --git a/library/Zend/Crypt/Symmetric/Padding/PaddingInterface.php b/library/TorrentPier/Zend/Crypt/Symmetric/Padding/PaddingInterface.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Padding/PaddingInterface.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Padding/PaddingInterface.php diff --git a/library/Zend/Crypt/Symmetric/Padding/Pkcs7.php b/library/TorrentPier/Zend/Crypt/Symmetric/Padding/Pkcs7.php similarity index 100% rename from library/Zend/Crypt/Symmetric/Padding/Pkcs7.php rename to library/TorrentPier/Zend/Crypt/Symmetric/Padding/Pkcs7.php diff --git a/library/Zend/Crypt/Symmetric/PaddingPluginManager.php b/library/TorrentPier/Zend/Crypt/Symmetric/PaddingPluginManager.php similarity index 100% rename from library/Zend/Crypt/Symmetric/PaddingPluginManager.php rename to library/TorrentPier/Zend/Crypt/Symmetric/PaddingPluginManager.php diff --git a/library/Zend/Crypt/Symmetric/SymmetricInterface.php b/library/TorrentPier/Zend/Crypt/Symmetric/SymmetricInterface.php similarity index 100% rename from library/Zend/Crypt/Symmetric/SymmetricInterface.php rename to library/TorrentPier/Zend/Crypt/Symmetric/SymmetricInterface.php diff --git a/library/Zend/Crypt/SymmetricPluginManager.php b/library/TorrentPier/Zend/Crypt/SymmetricPluginManager.php similarity index 100% rename from library/Zend/Crypt/SymmetricPluginManager.php rename to library/TorrentPier/Zend/Crypt/SymmetricPluginManager.php diff --git a/library/Zend/Crypt/Utils.php b/library/TorrentPier/Zend/Crypt/Utils.php similarity index 100% rename from library/Zend/Crypt/Utils.php rename to library/TorrentPier/Zend/Crypt/Utils.php diff --git a/library/Zend/Crypt/composer.json b/library/TorrentPier/Zend/Crypt/composer.json similarity index 100% rename from library/Zend/Crypt/composer.json rename to library/TorrentPier/Zend/Crypt/composer.json diff --git a/library/Zend/Db/Adapter/Adapter.php b/library/TorrentPier/Zend/Db/Adapter/Adapter.php similarity index 100% rename from library/Zend/Db/Adapter/Adapter.php rename to library/TorrentPier/Zend/Db/Adapter/Adapter.php diff --git a/library/Zend/Db/Adapter/AdapterAbstractServiceFactory.php b/library/TorrentPier/Zend/Db/Adapter/AdapterAbstractServiceFactory.php similarity index 100% rename from library/Zend/Db/Adapter/AdapterAbstractServiceFactory.php rename to library/TorrentPier/Zend/Db/Adapter/AdapterAbstractServiceFactory.php diff --git a/library/Zend/Db/Adapter/AdapterAwareInterface.php b/library/TorrentPier/Zend/Db/Adapter/AdapterAwareInterface.php similarity index 100% rename from library/Zend/Db/Adapter/AdapterAwareInterface.php rename to library/TorrentPier/Zend/Db/Adapter/AdapterAwareInterface.php diff --git a/library/Zend/Db/Adapter/AdapterAwareTrait.php b/library/TorrentPier/Zend/Db/Adapter/AdapterAwareTrait.php similarity index 100% rename from library/Zend/Db/Adapter/AdapterAwareTrait.php rename to library/TorrentPier/Zend/Db/Adapter/AdapterAwareTrait.php diff --git a/library/Zend/Db/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Db/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Db/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Db/Adapter/AdapterInterface.php diff --git a/library/Zend/Db/Adapter/AdapterServiceFactory.php b/library/TorrentPier/Zend/Db/Adapter/AdapterServiceFactory.php similarity index 100% rename from library/Zend/Db/Adapter/AdapterServiceFactory.php rename to library/TorrentPier/Zend/Db/Adapter/AdapterServiceFactory.php diff --git a/library/Zend/Db/Adapter/Driver/AbstractConnection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/AbstractConnection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/AbstractConnection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/AbstractConnection.php diff --git a/library/Zend/Db/Adapter/Driver/ConnectionInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/ConnectionInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/ConnectionInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/ConnectionInterface.php diff --git a/library/Zend/Db/Adapter/Driver/DriverInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/DriverInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/DriverInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/DriverInterface.php diff --git a/library/Zend/Db/Adapter/Driver/Feature/AbstractFeature.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Feature/AbstractFeature.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Feature/AbstractFeature.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Feature/AbstractFeature.php diff --git a/library/Zend/Db/Adapter/Driver/Feature/DriverFeatureInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Feature/DriverFeatureInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Feature/DriverFeatureInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Feature/DriverFeatureInterface.php diff --git a/library/Zend/Db/Adapter/Driver/IbmDb2/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/IbmDb2/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/IbmDb2/IbmDb2.php b/library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/IbmDb2.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/IbmDb2/IbmDb2.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/IbmDb2.php diff --git a/library/Zend/Db/Adapter/Driver/IbmDb2/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/IbmDb2/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Result.php diff --git a/library/Zend/Db/Adapter/Driver/IbmDb2/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/IbmDb2/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/IbmDb2/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/Mysqli/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Mysqli/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/Mysqli/Mysqli.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Mysqli.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Mysqli/Mysqli.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Mysqli.php diff --git a/library/Zend/Db/Adapter/Driver/Mysqli/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Mysqli/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Result.php diff --git a/library/Zend/Db/Adapter/Driver/Mysqli/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Mysqli/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Mysqli/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/Oci8/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Oci8/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/Oci8/Oci8.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Oci8.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Oci8/Oci8.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Oci8.php diff --git a/library/Zend/Db/Adapter/Driver/Oci8/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Oci8/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Result.php diff --git a/library/Zend/Db/Adapter/Driver/Oci8/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Oci8/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Oci8/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Feature/OracleRowCounter.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Feature/OracleRowCounter.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Feature/OracleRowCounter.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Feature/OracleRowCounter.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Pdo.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Pdo.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Pdo.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Pdo.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Result.php diff --git a/library/Zend/Db/Adapter/Driver/Pdo/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pdo/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pdo/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/Pgsql/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pgsql/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/Pgsql/Pgsql.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Pgsql.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pgsql/Pgsql.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Pgsql.php diff --git a/library/Zend/Db/Adapter/Driver/Pgsql/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pgsql/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Result.php diff --git a/library/Zend/Db/Adapter/Driver/Pgsql/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Pgsql/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Pgsql/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/ResultInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/ResultInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/ResultInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/ResultInterface.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Connection.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Connection.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Connection.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Connection.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ErrorException.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ErrorException.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ErrorException.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ErrorException.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Result.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Result.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Result.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Result.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Sqlsrv.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Sqlsrv.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Sqlsrv.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Sqlsrv.php diff --git a/library/Zend/Db/Adapter/Driver/Sqlsrv/Statement.php b/library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Statement.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/Sqlsrv/Statement.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/Sqlsrv/Statement.php diff --git a/library/Zend/Db/Adapter/Driver/StatementInterface.php b/library/TorrentPier/Zend/Db/Adapter/Driver/StatementInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Driver/StatementInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Driver/StatementInterface.php diff --git a/library/Zend/Db/Adapter/Exception/ErrorException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/ErrorException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/ErrorException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/ErrorException.php diff --git a/library/Zend/Db/Adapter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/Adapter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/Adapter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/Adapter/Exception/InvalidConnectionParametersException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/InvalidConnectionParametersException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/InvalidConnectionParametersException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/InvalidConnectionParametersException.php diff --git a/library/Zend/Db/Adapter/Exception/InvalidQueryException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/InvalidQueryException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/InvalidQueryException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/InvalidQueryException.php diff --git a/library/Zend/Db/Adapter/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/RuntimeException.php diff --git a/library/Zend/Db/Adapter/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Db/Adapter/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Db/Adapter/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Db/Adapter/Exception/UnexpectedValueException.php diff --git a/library/Zend/Db/Adapter/ParameterContainer.php b/library/TorrentPier/Zend/Db/Adapter/ParameterContainer.php similarity index 100% rename from library/Zend/Db/Adapter/ParameterContainer.php rename to library/TorrentPier/Zend/Db/Adapter/ParameterContainer.php diff --git a/library/Zend/Db/Adapter/Platform/AbstractPlatform.php b/library/TorrentPier/Zend/Db/Adapter/Platform/AbstractPlatform.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/AbstractPlatform.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/AbstractPlatform.php diff --git a/library/Zend/Db/Adapter/Platform/IbmDb2.php b/library/TorrentPier/Zend/Db/Adapter/Platform/IbmDb2.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/IbmDb2.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/IbmDb2.php diff --git a/library/Zend/Db/Adapter/Platform/Mysql.php b/library/TorrentPier/Zend/Db/Adapter/Platform/Mysql.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/Mysql.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/Mysql.php diff --git a/library/Zend/Db/Adapter/Platform/Oracle.php b/library/TorrentPier/Zend/Db/Adapter/Platform/Oracle.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/Oracle.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/Oracle.php diff --git a/library/Zend/Db/Adapter/Platform/PlatformInterface.php b/library/TorrentPier/Zend/Db/Adapter/Platform/PlatformInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/PlatformInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/PlatformInterface.php diff --git a/library/Zend/Db/Adapter/Platform/Postgresql.php b/library/TorrentPier/Zend/Db/Adapter/Platform/Postgresql.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/Postgresql.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/Postgresql.php diff --git a/library/Zend/Db/Adapter/Platform/Sql92.php b/library/TorrentPier/Zend/Db/Adapter/Platform/Sql92.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/Sql92.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/Sql92.php diff --git a/library/Zend/Db/Adapter/Platform/SqlServer.php b/library/TorrentPier/Zend/Db/Adapter/Platform/SqlServer.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/SqlServer.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/SqlServer.php diff --git a/library/Zend/Db/Adapter/Platform/Sqlite.php b/library/TorrentPier/Zend/Db/Adapter/Platform/Sqlite.php similarity index 100% rename from library/Zend/Db/Adapter/Platform/Sqlite.php rename to library/TorrentPier/Zend/Db/Adapter/Platform/Sqlite.php diff --git a/library/Zend/Db/Adapter/Profiler/Profiler.php b/library/TorrentPier/Zend/Db/Adapter/Profiler/Profiler.php similarity index 100% rename from library/Zend/Db/Adapter/Profiler/Profiler.php rename to library/TorrentPier/Zend/Db/Adapter/Profiler/Profiler.php diff --git a/library/Zend/Db/Adapter/Profiler/ProfilerAwareInterface.php b/library/TorrentPier/Zend/Db/Adapter/Profiler/ProfilerAwareInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Profiler/ProfilerAwareInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Profiler/ProfilerAwareInterface.php diff --git a/library/Zend/Db/Adapter/Profiler/ProfilerInterface.php b/library/TorrentPier/Zend/Db/Adapter/Profiler/ProfilerInterface.php similarity index 100% rename from library/Zend/Db/Adapter/Profiler/ProfilerInterface.php rename to library/TorrentPier/Zend/Db/Adapter/Profiler/ProfilerInterface.php diff --git a/library/Zend/Db/Adapter/StatementContainer.php b/library/TorrentPier/Zend/Db/Adapter/StatementContainer.php similarity index 100% rename from library/Zend/Db/Adapter/StatementContainer.php rename to library/TorrentPier/Zend/Db/Adapter/StatementContainer.php diff --git a/library/Zend/Db/Adapter/StatementContainerInterface.php b/library/TorrentPier/Zend/Db/Adapter/StatementContainerInterface.php similarity index 100% rename from library/Zend/Db/Adapter/StatementContainerInterface.php rename to library/TorrentPier/Zend/Db/Adapter/StatementContainerInterface.php diff --git a/library/Zend/Db/CONTRIBUTING.md b/library/TorrentPier/Zend/Db/CONTRIBUTING.md similarity index 100% rename from library/Zend/Db/CONTRIBUTING.md rename to library/TorrentPier/Zend/Db/CONTRIBUTING.md diff --git a/library/Zend/Db/Exception/ErrorException.php b/library/TorrentPier/Zend/Db/Exception/ErrorException.php similarity index 100% rename from library/Zend/Db/Exception/ErrorException.php rename to library/TorrentPier/Zend/Db/Exception/ErrorException.php diff --git a/library/Zend/Db/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/Exception/RuntimeException.php diff --git a/library/Zend/Db/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Db/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Db/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Db/Exception/UnexpectedValueException.php diff --git a/library/Zend/Db/Metadata/Metadata.php b/library/TorrentPier/Zend/Db/Metadata/Metadata.php similarity index 100% rename from library/Zend/Db/Metadata/Metadata.php rename to library/TorrentPier/Zend/Db/Metadata/Metadata.php diff --git a/library/Zend/Db/Metadata/MetadataInterface.php b/library/TorrentPier/Zend/Db/Metadata/MetadataInterface.php similarity index 100% rename from library/Zend/Db/Metadata/MetadataInterface.php rename to library/TorrentPier/Zend/Db/Metadata/MetadataInterface.php diff --git a/library/Zend/Db/Metadata/Object/AbstractTableObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/AbstractTableObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/AbstractTableObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/AbstractTableObject.php diff --git a/library/Zend/Db/Metadata/Object/ColumnObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/ColumnObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/ColumnObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/ColumnObject.php diff --git a/library/Zend/Db/Metadata/Object/ConstraintKeyObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/ConstraintKeyObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/ConstraintKeyObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/ConstraintKeyObject.php diff --git a/library/Zend/Db/Metadata/Object/ConstraintObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/ConstraintObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/ConstraintObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/ConstraintObject.php diff --git a/library/Zend/Db/Metadata/Object/TableObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/TableObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/TableObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/TableObject.php diff --git a/library/Zend/Db/Metadata/Object/TriggerObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/TriggerObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/TriggerObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/TriggerObject.php diff --git a/library/Zend/Db/Metadata/Object/ViewObject.php b/library/TorrentPier/Zend/Db/Metadata/Object/ViewObject.php similarity index 100% rename from library/Zend/Db/Metadata/Object/ViewObject.php rename to library/TorrentPier/Zend/Db/Metadata/Object/ViewObject.php diff --git a/library/Zend/Db/Metadata/Source/AbstractSource.php b/library/TorrentPier/Zend/Db/Metadata/Source/AbstractSource.php similarity index 100% rename from library/Zend/Db/Metadata/Source/AbstractSource.php rename to library/TorrentPier/Zend/Db/Metadata/Source/AbstractSource.php diff --git a/library/Zend/Db/Metadata/Source/MysqlMetadata.php b/library/TorrentPier/Zend/Db/Metadata/Source/MysqlMetadata.php similarity index 100% rename from library/Zend/Db/Metadata/Source/MysqlMetadata.php rename to library/TorrentPier/Zend/Db/Metadata/Source/MysqlMetadata.php diff --git a/library/Zend/Db/Metadata/Source/OracleMetadata.php b/library/TorrentPier/Zend/Db/Metadata/Source/OracleMetadata.php similarity index 100% rename from library/Zend/Db/Metadata/Source/OracleMetadata.php rename to library/TorrentPier/Zend/Db/Metadata/Source/OracleMetadata.php diff --git a/library/Zend/Db/Metadata/Source/PostgresqlMetadata.php b/library/TorrentPier/Zend/Db/Metadata/Source/PostgresqlMetadata.php similarity index 100% rename from library/Zend/Db/Metadata/Source/PostgresqlMetadata.php rename to library/TorrentPier/Zend/Db/Metadata/Source/PostgresqlMetadata.php diff --git a/library/Zend/Db/Metadata/Source/SqlServerMetadata.php b/library/TorrentPier/Zend/Db/Metadata/Source/SqlServerMetadata.php similarity index 100% rename from library/Zend/Db/Metadata/Source/SqlServerMetadata.php rename to library/TorrentPier/Zend/Db/Metadata/Source/SqlServerMetadata.php diff --git a/library/Zend/Db/Metadata/Source/SqliteMetadata.php b/library/TorrentPier/Zend/Db/Metadata/Source/SqliteMetadata.php similarity index 100% rename from library/Zend/Db/Metadata/Source/SqliteMetadata.php rename to library/TorrentPier/Zend/Db/Metadata/Source/SqliteMetadata.php diff --git a/library/Zend/Db/README.md b/library/TorrentPier/Zend/Db/README.md similarity index 100% rename from library/Zend/Db/README.md rename to library/TorrentPier/Zend/Db/README.md diff --git a/library/Zend/Db/ResultSet/AbstractResultSet.php b/library/TorrentPier/Zend/Db/ResultSet/AbstractResultSet.php similarity index 100% rename from library/Zend/Db/ResultSet/AbstractResultSet.php rename to library/TorrentPier/Zend/Db/ResultSet/AbstractResultSet.php diff --git a/library/Zend/Db/ResultSet/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/ResultSet/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/ResultSet/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/ResultSet/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/ResultSet/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/ResultSet/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/ResultSet/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/ResultSet/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/ResultSet/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/ResultSet/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/ResultSet/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/ResultSet/Exception/RuntimeException.php diff --git a/library/Zend/Db/ResultSet/HydratingResultSet.php b/library/TorrentPier/Zend/Db/ResultSet/HydratingResultSet.php similarity index 100% rename from library/Zend/Db/ResultSet/HydratingResultSet.php rename to library/TorrentPier/Zend/Db/ResultSet/HydratingResultSet.php diff --git a/library/Zend/Db/ResultSet/ResultSet.php b/library/TorrentPier/Zend/Db/ResultSet/ResultSet.php similarity index 100% rename from library/Zend/Db/ResultSet/ResultSet.php rename to library/TorrentPier/Zend/Db/ResultSet/ResultSet.php diff --git a/library/Zend/Db/ResultSet/ResultSetInterface.php b/library/TorrentPier/Zend/Db/ResultSet/ResultSetInterface.php similarity index 100% rename from library/Zend/Db/ResultSet/ResultSetInterface.php rename to library/TorrentPier/Zend/Db/ResultSet/ResultSetInterface.php diff --git a/library/Zend/Db/RowGateway/AbstractRowGateway.php b/library/TorrentPier/Zend/Db/RowGateway/AbstractRowGateway.php similarity index 100% rename from library/Zend/Db/RowGateway/AbstractRowGateway.php rename to library/TorrentPier/Zend/Db/RowGateway/AbstractRowGateway.php diff --git a/library/Zend/Db/RowGateway/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/RowGateway/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/RowGateway/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/RowGateway/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/RowGateway/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/RowGateway/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/RowGateway/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/RowGateway/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/RowGateway/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/RowGateway/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/RowGateway/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/RowGateway/Exception/RuntimeException.php diff --git a/library/Zend/Db/RowGateway/Feature/AbstractFeature.php b/library/TorrentPier/Zend/Db/RowGateway/Feature/AbstractFeature.php similarity index 100% rename from library/Zend/Db/RowGateway/Feature/AbstractFeature.php rename to library/TorrentPier/Zend/Db/RowGateway/Feature/AbstractFeature.php diff --git a/library/Zend/Db/RowGateway/Feature/FeatureSet.php b/library/TorrentPier/Zend/Db/RowGateway/Feature/FeatureSet.php similarity index 100% rename from library/Zend/Db/RowGateway/Feature/FeatureSet.php rename to library/TorrentPier/Zend/Db/RowGateway/Feature/FeatureSet.php diff --git a/library/Zend/Db/RowGateway/RowGateway.php b/library/TorrentPier/Zend/Db/RowGateway/RowGateway.php similarity index 100% rename from library/Zend/Db/RowGateway/RowGateway.php rename to library/TorrentPier/Zend/Db/RowGateway/RowGateway.php diff --git a/library/Zend/Db/RowGateway/RowGatewayInterface.php b/library/TorrentPier/Zend/Db/RowGateway/RowGatewayInterface.php similarity index 100% rename from library/Zend/Db/RowGateway/RowGatewayInterface.php rename to library/TorrentPier/Zend/Db/RowGateway/RowGatewayInterface.php diff --git a/library/Zend/Db/Sql/AbstractExpression.php b/library/TorrentPier/Zend/Db/Sql/AbstractExpression.php similarity index 100% rename from library/Zend/Db/Sql/AbstractExpression.php rename to library/TorrentPier/Zend/Db/Sql/AbstractExpression.php diff --git a/library/Zend/Db/Sql/AbstractPreparableSql.php b/library/TorrentPier/Zend/Db/Sql/AbstractPreparableSql.php similarity index 100% rename from library/Zend/Db/Sql/AbstractPreparableSql.php rename to library/TorrentPier/Zend/Db/Sql/AbstractPreparableSql.php diff --git a/library/Zend/Db/Sql/AbstractSql.php b/library/TorrentPier/Zend/Db/Sql/AbstractSql.php similarity index 100% rename from library/Zend/Db/Sql/AbstractSql.php rename to library/TorrentPier/Zend/Db/Sql/AbstractSql.php diff --git a/library/Zend/Db/Sql/Combine.php b/library/TorrentPier/Zend/Db/Sql/Combine.php similarity index 100% rename from library/Zend/Db/Sql/Combine.php rename to library/TorrentPier/Zend/Db/Sql/Combine.php diff --git a/library/Zend/Db/Sql/Ddl/AlterTable.php b/library/TorrentPier/Zend/Db/Sql/Ddl/AlterTable.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/AlterTable.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/AlterTable.php diff --git a/library/Zend/Db/Sql/Ddl/Column/AbstractLengthColumn.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractLengthColumn.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/AbstractLengthColumn.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractLengthColumn.php diff --git a/library/Zend/Db/Sql/Ddl/Column/AbstractPrecisionColumn.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractPrecisionColumn.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/AbstractPrecisionColumn.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractPrecisionColumn.php diff --git a/library/Zend/Db/Sql/Ddl/Column/AbstractTimestampColumn.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractTimestampColumn.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/AbstractTimestampColumn.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/AbstractTimestampColumn.php diff --git a/library/Zend/Db/Sql/Ddl/Column/BigInteger.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/BigInteger.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/BigInteger.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/BigInteger.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Binary.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Binary.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Binary.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Binary.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Blob.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Blob.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Blob.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Blob.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Boolean.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Boolean.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Boolean.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Boolean.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Char.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Char.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Char.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Char.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Column.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Column.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Column.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Column.php diff --git a/library/Zend/Db/Sql/Ddl/Column/ColumnInterface.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/ColumnInterface.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/ColumnInterface.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/ColumnInterface.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Date.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Date.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Date.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Date.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Datetime.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Datetime.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Datetime.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Datetime.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Decimal.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Decimal.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Decimal.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Decimal.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Float.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Float.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Float.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Float.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Floating.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Floating.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Floating.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Floating.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Integer.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Integer.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Integer.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Integer.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Text.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Text.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Text.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Text.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Time.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Time.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Time.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Time.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Timestamp.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Timestamp.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Timestamp.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Timestamp.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Varbinary.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Varbinary.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Varbinary.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Varbinary.php diff --git a/library/Zend/Db/Sql/Ddl/Column/Varchar.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Column/Varchar.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Column/Varchar.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Column/Varchar.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/AbstractConstraint.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/AbstractConstraint.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/AbstractConstraint.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/AbstractConstraint.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/Check.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/Check.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/Check.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/Check.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/ConstraintInterface.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/ConstraintInterface.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/ConstraintInterface.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/ConstraintInterface.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/ForeignKey.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/ForeignKey.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/ForeignKey.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/ForeignKey.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/PrimaryKey.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/PrimaryKey.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/PrimaryKey.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/PrimaryKey.php diff --git a/library/Zend/Db/Sql/Ddl/Constraint/UniqueKey.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/UniqueKey.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Constraint/UniqueKey.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Constraint/UniqueKey.php diff --git a/library/Zend/Db/Sql/Ddl/CreateTable.php b/library/TorrentPier/Zend/Db/Sql/Ddl/CreateTable.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/CreateTable.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/CreateTable.php diff --git a/library/Zend/Db/Sql/Ddl/DropTable.php b/library/TorrentPier/Zend/Db/Sql/Ddl/DropTable.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/DropTable.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/DropTable.php diff --git a/library/Zend/Db/Sql/Ddl/Index/AbstractIndex.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Index/AbstractIndex.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Index/AbstractIndex.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Index/AbstractIndex.php diff --git a/library/Zend/Db/Sql/Ddl/Index/Index.php b/library/TorrentPier/Zend/Db/Sql/Ddl/Index/Index.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/Index/Index.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/Index/Index.php diff --git a/library/Zend/Db/Sql/Ddl/SqlInterface.php b/library/TorrentPier/Zend/Db/Sql/Ddl/SqlInterface.php similarity index 100% rename from library/Zend/Db/Sql/Ddl/SqlInterface.php rename to library/TorrentPier/Zend/Db/Sql/Ddl/SqlInterface.php diff --git a/library/Zend/Db/Sql/Delete.php b/library/TorrentPier/Zend/Db/Sql/Delete.php similarity index 100% rename from library/Zend/Db/Sql/Delete.php rename to library/TorrentPier/Zend/Db/Sql/Delete.php diff --git a/library/Zend/Db/Sql/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/Sql/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/Sql/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/Sql/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/Sql/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/Sql/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/Sql/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/Sql/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/Sql/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/Sql/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/Sql/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/Sql/Exception/RuntimeException.php diff --git a/library/Zend/Db/Sql/Expression.php b/library/TorrentPier/Zend/Db/Sql/Expression.php similarity index 100% rename from library/Zend/Db/Sql/Expression.php rename to library/TorrentPier/Zend/Db/Sql/Expression.php diff --git a/library/Zend/Db/Sql/ExpressionInterface.php b/library/TorrentPier/Zend/Db/Sql/ExpressionInterface.php similarity index 100% rename from library/Zend/Db/Sql/ExpressionInterface.php rename to library/TorrentPier/Zend/Db/Sql/ExpressionInterface.php diff --git a/library/Zend/Db/Sql/Having.php b/library/TorrentPier/Zend/Db/Sql/Having.php similarity index 100% rename from library/Zend/Db/Sql/Having.php rename to library/TorrentPier/Zend/Db/Sql/Having.php diff --git a/library/Zend/Db/Sql/Insert.php b/library/TorrentPier/Zend/Db/Sql/Insert.php similarity index 100% rename from library/Zend/Db/Sql/Insert.php rename to library/TorrentPier/Zend/Db/Sql/Insert.php diff --git a/library/Zend/Db/Sql/Literal.php b/library/TorrentPier/Zend/Db/Sql/Literal.php similarity index 100% rename from library/Zend/Db/Sql/Literal.php rename to library/TorrentPier/Zend/Db/Sql/Literal.php diff --git a/library/Zend/Db/Sql/Platform/AbstractPlatform.php b/library/TorrentPier/Zend/Db/Sql/Platform/AbstractPlatform.php similarity index 100% rename from library/Zend/Db/Sql/Platform/AbstractPlatform.php rename to library/TorrentPier/Zend/Db/Sql/Platform/AbstractPlatform.php diff --git a/library/Zend/Db/Sql/Platform/IbmDb2/IbmDb2.php b/library/TorrentPier/Zend/Db/Sql/Platform/IbmDb2/IbmDb2.php similarity index 100% rename from library/Zend/Db/Sql/Platform/IbmDb2/IbmDb2.php rename to library/TorrentPier/Zend/Db/Sql/Platform/IbmDb2/IbmDb2.php diff --git a/library/Zend/Db/Sql/Platform/IbmDb2/SelectDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/IbmDb2/SelectDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/IbmDb2/SelectDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/IbmDb2/SelectDecorator.php diff --git a/library/Zend/Db/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php diff --git a/library/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php diff --git a/library/Zend/Db/Sql/Platform/Mysql/Mysql.php b/library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Mysql.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Mysql/Mysql.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Mysql/Mysql.php diff --git a/library/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php diff --git a/library/Zend/Db/Sql/Platform/Oracle/Oracle.php b/library/TorrentPier/Zend/Db/Sql/Platform/Oracle/Oracle.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Oracle/Oracle.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Oracle/Oracle.php diff --git a/library/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Oracle/SelectDecorator.php diff --git a/library/Zend/Db/Sql/Platform/Platform.php b/library/TorrentPier/Zend/Db/Sql/Platform/Platform.php similarity index 100% rename from library/Zend/Db/Sql/Platform/Platform.php rename to library/TorrentPier/Zend/Db/Sql/Platform/Platform.php diff --git a/library/Zend/Db/Sql/Platform/PlatformDecoratorInterface.php b/library/TorrentPier/Zend/Db/Sql/Platform/PlatformDecoratorInterface.php similarity index 100% rename from library/Zend/Db/Sql/Platform/PlatformDecoratorInterface.php rename to library/TorrentPier/Zend/Db/Sql/Platform/PlatformDecoratorInterface.php diff --git a/library/Zend/Db/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php diff --git a/library/Zend/Db/Sql/Platform/SqlServer/SelectDecorator.php b/library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/SelectDecorator.php similarity index 100% rename from library/Zend/Db/Sql/Platform/SqlServer/SelectDecorator.php rename to library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/SelectDecorator.php diff --git a/library/Zend/Db/Sql/Platform/SqlServer/SqlServer.php b/library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/SqlServer.php similarity index 100% rename from library/Zend/Db/Sql/Platform/SqlServer/SqlServer.php rename to library/TorrentPier/Zend/Db/Sql/Platform/SqlServer/SqlServer.php diff --git a/library/Zend/Db/Sql/Predicate/Between.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Between.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Between.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Between.php diff --git a/library/Zend/Db/Sql/Predicate/Expression.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Expression.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Expression.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Expression.php diff --git a/library/Zend/Db/Sql/Predicate/In.php b/library/TorrentPier/Zend/Db/Sql/Predicate/In.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/In.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/In.php diff --git a/library/Zend/Db/Sql/Predicate/IsNotNull.php b/library/TorrentPier/Zend/Db/Sql/Predicate/IsNotNull.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/IsNotNull.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/IsNotNull.php diff --git a/library/Zend/Db/Sql/Predicate/IsNull.php b/library/TorrentPier/Zend/Db/Sql/Predicate/IsNull.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/IsNull.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/IsNull.php diff --git a/library/Zend/Db/Sql/Predicate/Like.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Like.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Like.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Like.php diff --git a/library/Zend/Db/Sql/Predicate/Literal.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Literal.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Literal.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Literal.php diff --git a/library/Zend/Db/Sql/Predicate/NotIn.php b/library/TorrentPier/Zend/Db/Sql/Predicate/NotIn.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/NotIn.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/NotIn.php diff --git a/library/Zend/Db/Sql/Predicate/NotLike.php b/library/TorrentPier/Zend/Db/Sql/Predicate/NotLike.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/NotLike.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/NotLike.php diff --git a/library/Zend/Db/Sql/Predicate/Operator.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Operator.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Operator.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Operator.php diff --git a/library/Zend/Db/Sql/Predicate/Predicate.php b/library/TorrentPier/Zend/Db/Sql/Predicate/Predicate.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/Predicate.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/Predicate.php diff --git a/library/Zend/Db/Sql/Predicate/PredicateInterface.php b/library/TorrentPier/Zend/Db/Sql/Predicate/PredicateInterface.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/PredicateInterface.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/PredicateInterface.php diff --git a/library/Zend/Db/Sql/Predicate/PredicateSet.php b/library/TorrentPier/Zend/Db/Sql/Predicate/PredicateSet.php similarity index 100% rename from library/Zend/Db/Sql/Predicate/PredicateSet.php rename to library/TorrentPier/Zend/Db/Sql/Predicate/PredicateSet.php diff --git a/library/Zend/Db/Sql/PreparableSqlInterface.php b/library/TorrentPier/Zend/Db/Sql/PreparableSqlInterface.php similarity index 100% rename from library/Zend/Db/Sql/PreparableSqlInterface.php rename to library/TorrentPier/Zend/Db/Sql/PreparableSqlInterface.php diff --git a/library/Zend/Db/Sql/Select.php b/library/TorrentPier/Zend/Db/Sql/Select.php similarity index 100% rename from library/Zend/Db/Sql/Select.php rename to library/TorrentPier/Zend/Db/Sql/Select.php diff --git a/library/Zend/Db/Sql/Sql.php b/library/TorrentPier/Zend/Db/Sql/Sql.php similarity index 100% rename from library/Zend/Db/Sql/Sql.php rename to library/TorrentPier/Zend/Db/Sql/Sql.php diff --git a/library/Zend/Db/Sql/SqlInterface.php b/library/TorrentPier/Zend/Db/Sql/SqlInterface.php similarity index 100% rename from library/Zend/Db/Sql/SqlInterface.php rename to library/TorrentPier/Zend/Db/Sql/SqlInterface.php diff --git a/library/Zend/Db/Sql/TableIdentifier.php b/library/TorrentPier/Zend/Db/Sql/TableIdentifier.php similarity index 100% rename from library/Zend/Db/Sql/TableIdentifier.php rename to library/TorrentPier/Zend/Db/Sql/TableIdentifier.php diff --git a/library/Zend/Db/Sql/Update.php b/library/TorrentPier/Zend/Db/Sql/Update.php similarity index 100% rename from library/Zend/Db/Sql/Update.php rename to library/TorrentPier/Zend/Db/Sql/Update.php diff --git a/library/Zend/Db/Sql/Where.php b/library/TorrentPier/Zend/Db/Sql/Where.php similarity index 100% rename from library/Zend/Db/Sql/Where.php rename to library/TorrentPier/Zend/Db/Sql/Where.php diff --git a/library/Zend/Db/TableGateway/AbstractTableGateway.php b/library/TorrentPier/Zend/Db/TableGateway/AbstractTableGateway.php similarity index 100% rename from library/Zend/Db/TableGateway/AbstractTableGateway.php rename to library/TorrentPier/Zend/Db/TableGateway/AbstractTableGateway.php diff --git a/library/Zend/Db/TableGateway/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Db/TableGateway/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Db/TableGateway/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Db/TableGateway/Exception/ExceptionInterface.php diff --git a/library/Zend/Db/TableGateway/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Db/TableGateway/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Db/TableGateway/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Db/TableGateway/Exception/InvalidArgumentException.php diff --git a/library/Zend/Db/TableGateway/Exception/RuntimeException.php b/library/TorrentPier/Zend/Db/TableGateway/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Db/TableGateway/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Db/TableGateway/Exception/RuntimeException.php diff --git a/library/Zend/Db/TableGateway/Feature/AbstractFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/AbstractFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/AbstractFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/AbstractFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/EventFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/EventFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/EventFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/EventFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/EventFeature/TableGatewayEvent.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/EventFeature/TableGatewayEvent.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/EventFeature/TableGatewayEvent.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/EventFeature/TableGatewayEvent.php diff --git a/library/Zend/Db/TableGateway/Feature/FeatureSet.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/FeatureSet.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/FeatureSet.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/FeatureSet.php diff --git a/library/Zend/Db/TableGateway/Feature/GlobalAdapterFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/GlobalAdapterFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/GlobalAdapterFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/GlobalAdapterFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/MasterSlaveFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/MasterSlaveFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/MasterSlaveFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/MasterSlaveFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/MetadataFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/MetadataFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/MetadataFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/MetadataFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/RowGatewayFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/RowGatewayFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/RowGatewayFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/RowGatewayFeature.php diff --git a/library/Zend/Db/TableGateway/Feature/SequenceFeature.php b/library/TorrentPier/Zend/Db/TableGateway/Feature/SequenceFeature.php similarity index 100% rename from library/Zend/Db/TableGateway/Feature/SequenceFeature.php rename to library/TorrentPier/Zend/Db/TableGateway/Feature/SequenceFeature.php diff --git a/library/Zend/Db/TableGateway/TableGateway.php b/library/TorrentPier/Zend/Db/TableGateway/TableGateway.php similarity index 100% rename from library/Zend/Db/TableGateway/TableGateway.php rename to library/TorrentPier/Zend/Db/TableGateway/TableGateway.php diff --git a/library/Zend/Db/TableGateway/TableGatewayInterface.php b/library/TorrentPier/Zend/Db/TableGateway/TableGatewayInterface.php similarity index 100% rename from library/Zend/Db/TableGateway/TableGatewayInterface.php rename to library/TorrentPier/Zend/Db/TableGateway/TableGatewayInterface.php diff --git a/library/Zend/Db/composer.json b/library/TorrentPier/Zend/Db/composer.json similarity index 100% rename from library/Zend/Db/composer.json rename to library/TorrentPier/Zend/Db/composer.json diff --git a/library/Zend/Debug/CONTRIBUTING.md b/library/TorrentPier/Zend/Debug/CONTRIBUTING.md similarity index 100% rename from library/Zend/Debug/CONTRIBUTING.md rename to library/TorrentPier/Zend/Debug/CONTRIBUTING.md diff --git a/library/Zend/Debug/Debug.php b/library/TorrentPier/Zend/Debug/Debug.php similarity index 100% rename from library/Zend/Debug/Debug.php rename to library/TorrentPier/Zend/Debug/Debug.php diff --git a/library/Zend/Debug/README.md b/library/TorrentPier/Zend/Debug/README.md similarity index 100% rename from library/Zend/Debug/README.md rename to library/TorrentPier/Zend/Debug/README.md diff --git a/library/Zend/Debug/composer.json b/library/TorrentPier/Zend/Debug/composer.json similarity index 100% rename from library/Zend/Debug/composer.json rename to library/TorrentPier/Zend/Debug/composer.json diff --git a/library/Zend/Di/CONTRIBUTING.md b/library/TorrentPier/Zend/Di/CONTRIBUTING.md similarity index 100% rename from library/Zend/Di/CONTRIBUTING.md rename to library/TorrentPier/Zend/Di/CONTRIBUTING.md diff --git a/library/Zend/Di/Config.php b/library/TorrentPier/Zend/Di/Config.php similarity index 100% rename from library/Zend/Di/Config.php rename to library/TorrentPier/Zend/Di/Config.php diff --git a/library/Zend/Di/Definition/Annotation/Inject.php b/library/TorrentPier/Zend/Di/Definition/Annotation/Inject.php similarity index 100% rename from library/Zend/Di/Definition/Annotation/Inject.php rename to library/TorrentPier/Zend/Di/Definition/Annotation/Inject.php diff --git a/library/Zend/Di/Definition/Annotation/Instantiator.php b/library/TorrentPier/Zend/Di/Definition/Annotation/Instantiator.php similarity index 100% rename from library/Zend/Di/Definition/Annotation/Instantiator.php rename to library/TorrentPier/Zend/Di/Definition/Annotation/Instantiator.php diff --git a/library/Zend/Di/Definition/ArrayDefinition.php b/library/TorrentPier/Zend/Di/Definition/ArrayDefinition.php similarity index 100% rename from library/Zend/Di/Definition/ArrayDefinition.php rename to library/TorrentPier/Zend/Di/Definition/ArrayDefinition.php diff --git a/library/Zend/Di/Definition/Builder/InjectionMethod.php b/library/TorrentPier/Zend/Di/Definition/Builder/InjectionMethod.php similarity index 100% rename from library/Zend/Di/Definition/Builder/InjectionMethod.php rename to library/TorrentPier/Zend/Di/Definition/Builder/InjectionMethod.php diff --git a/library/Zend/Di/Definition/Builder/PhpClass.php b/library/TorrentPier/Zend/Di/Definition/Builder/PhpClass.php similarity index 100% rename from library/Zend/Di/Definition/Builder/PhpClass.php rename to library/TorrentPier/Zend/Di/Definition/Builder/PhpClass.php diff --git a/library/Zend/Di/Definition/BuilderDefinition.php b/library/TorrentPier/Zend/Di/Definition/BuilderDefinition.php similarity index 100% rename from library/Zend/Di/Definition/BuilderDefinition.php rename to library/TorrentPier/Zend/Di/Definition/BuilderDefinition.php diff --git a/library/Zend/Di/Definition/ClassDefinition.php b/library/TorrentPier/Zend/Di/Definition/ClassDefinition.php similarity index 100% rename from library/Zend/Di/Definition/ClassDefinition.php rename to library/TorrentPier/Zend/Di/Definition/ClassDefinition.php diff --git a/library/Zend/Di/Definition/CompilerDefinition.php b/library/TorrentPier/Zend/Di/Definition/CompilerDefinition.php similarity index 100% rename from library/Zend/Di/Definition/CompilerDefinition.php rename to library/TorrentPier/Zend/Di/Definition/CompilerDefinition.php diff --git a/library/Zend/Di/Definition/DefinitionInterface.php b/library/TorrentPier/Zend/Di/Definition/DefinitionInterface.php similarity index 100% rename from library/Zend/Di/Definition/DefinitionInterface.php rename to library/TorrentPier/Zend/Di/Definition/DefinitionInterface.php diff --git a/library/Zend/Di/Definition/IntrospectionStrategy.php b/library/TorrentPier/Zend/Di/Definition/IntrospectionStrategy.php similarity index 100% rename from library/Zend/Di/Definition/IntrospectionStrategy.php rename to library/TorrentPier/Zend/Di/Definition/IntrospectionStrategy.php diff --git a/library/Zend/Di/Definition/PartialMarker.php b/library/TorrentPier/Zend/Di/Definition/PartialMarker.php similarity index 100% rename from library/Zend/Di/Definition/PartialMarker.php rename to library/TorrentPier/Zend/Di/Definition/PartialMarker.php diff --git a/library/Zend/Di/Definition/RuntimeDefinition.php b/library/TorrentPier/Zend/Di/Definition/RuntimeDefinition.php similarity index 100% rename from library/Zend/Di/Definition/RuntimeDefinition.php rename to library/TorrentPier/Zend/Di/Definition/RuntimeDefinition.php diff --git a/library/Zend/Di/DefinitionList.php b/library/TorrentPier/Zend/Di/DefinitionList.php similarity index 100% rename from library/Zend/Di/DefinitionList.php rename to library/TorrentPier/Zend/Di/DefinitionList.php diff --git a/library/Zend/Di/DependencyInjectionInterface.php b/library/TorrentPier/Zend/Di/DependencyInjectionInterface.php similarity index 100% rename from library/Zend/Di/DependencyInjectionInterface.php rename to library/TorrentPier/Zend/Di/DependencyInjectionInterface.php diff --git a/library/Zend/Di/Di.php b/library/TorrentPier/Zend/Di/Di.php similarity index 100% rename from library/Zend/Di/Di.php rename to library/TorrentPier/Zend/Di/Di.php diff --git a/library/Zend/Di/Display/Console.php b/library/TorrentPier/Zend/Di/Display/Console.php similarity index 100% rename from library/Zend/Di/Display/Console.php rename to library/TorrentPier/Zend/Di/Display/Console.php diff --git a/library/Zend/Di/Exception/CircularDependencyException.php b/library/TorrentPier/Zend/Di/Exception/CircularDependencyException.php similarity index 100% rename from library/Zend/Di/Exception/CircularDependencyException.php rename to library/TorrentPier/Zend/Di/Exception/CircularDependencyException.php diff --git a/library/Zend/Di/Exception/ClassNotFoundException.php b/library/TorrentPier/Zend/Di/Exception/ClassNotFoundException.php similarity index 100% rename from library/Zend/Di/Exception/ClassNotFoundException.php rename to library/TorrentPier/Zend/Di/Exception/ClassNotFoundException.php diff --git a/library/Zend/Di/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Di/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Di/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Di/Exception/ExceptionInterface.php diff --git a/library/Zend/Di/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Di/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Di/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Di/Exception/InvalidArgumentException.php diff --git a/library/Zend/Di/Exception/InvalidCallbackException.php b/library/TorrentPier/Zend/Di/Exception/InvalidCallbackException.php similarity index 100% rename from library/Zend/Di/Exception/InvalidCallbackException.php rename to library/TorrentPier/Zend/Di/Exception/InvalidCallbackException.php diff --git a/library/Zend/Di/Exception/InvalidParamNameException.php b/library/TorrentPier/Zend/Di/Exception/InvalidParamNameException.php similarity index 100% rename from library/Zend/Di/Exception/InvalidParamNameException.php rename to library/TorrentPier/Zend/Di/Exception/InvalidParamNameException.php diff --git a/library/Zend/Di/Exception/InvalidPositionException.php b/library/TorrentPier/Zend/Di/Exception/InvalidPositionException.php similarity index 100% rename from library/Zend/Di/Exception/InvalidPositionException.php rename to library/TorrentPier/Zend/Di/Exception/InvalidPositionException.php diff --git a/library/Zend/Di/Exception/MissingPropertyException.php b/library/TorrentPier/Zend/Di/Exception/MissingPropertyException.php similarity index 100% rename from library/Zend/Di/Exception/MissingPropertyException.php rename to library/TorrentPier/Zend/Di/Exception/MissingPropertyException.php diff --git a/library/Zend/Di/Exception/RuntimeException.php b/library/TorrentPier/Zend/Di/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Di/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Di/Exception/RuntimeException.php diff --git a/library/Zend/Di/Exception/UndefinedReferenceException.php b/library/TorrentPier/Zend/Di/Exception/UndefinedReferenceException.php similarity index 100% rename from library/Zend/Di/Exception/UndefinedReferenceException.php rename to library/TorrentPier/Zend/Di/Exception/UndefinedReferenceException.php diff --git a/library/Zend/Di/InstanceManager.php b/library/TorrentPier/Zend/Di/InstanceManager.php similarity index 100% rename from library/Zend/Di/InstanceManager.php rename to library/TorrentPier/Zend/Di/InstanceManager.php diff --git a/library/Zend/Di/LocatorInterface.php b/library/TorrentPier/Zend/Di/LocatorInterface.php similarity index 100% rename from library/Zend/Di/LocatorInterface.php rename to library/TorrentPier/Zend/Di/LocatorInterface.php diff --git a/library/Zend/Di/README.md b/library/TorrentPier/Zend/Di/README.md similarity index 100% rename from library/Zend/Di/README.md rename to library/TorrentPier/Zend/Di/README.md diff --git a/library/Zend/Di/ServiceLocator.php b/library/TorrentPier/Zend/Di/ServiceLocator.php similarity index 100% rename from library/Zend/Di/ServiceLocator.php rename to library/TorrentPier/Zend/Di/ServiceLocator.php diff --git a/library/Zend/Di/ServiceLocator/DependencyInjectorProxy.php b/library/TorrentPier/Zend/Di/ServiceLocator/DependencyInjectorProxy.php similarity index 100% rename from library/Zend/Di/ServiceLocator/DependencyInjectorProxy.php rename to library/TorrentPier/Zend/Di/ServiceLocator/DependencyInjectorProxy.php diff --git a/library/Zend/Di/ServiceLocator/Generator.php b/library/TorrentPier/Zend/Di/ServiceLocator/Generator.php similarity index 100% rename from library/Zend/Di/ServiceLocator/Generator.php rename to library/TorrentPier/Zend/Di/ServiceLocator/Generator.php diff --git a/library/Zend/Di/ServiceLocator/GeneratorInstance.php b/library/TorrentPier/Zend/Di/ServiceLocator/GeneratorInstance.php similarity index 100% rename from library/Zend/Di/ServiceLocator/GeneratorInstance.php rename to library/TorrentPier/Zend/Di/ServiceLocator/GeneratorInstance.php diff --git a/library/Zend/Di/ServiceLocatorInterface.php b/library/TorrentPier/Zend/Di/ServiceLocatorInterface.php similarity index 100% rename from library/Zend/Di/ServiceLocatorInterface.php rename to library/TorrentPier/Zend/Di/ServiceLocatorInterface.php diff --git a/library/Zend/Di/TODO b/library/TorrentPier/Zend/Di/TODO similarity index 100% rename from library/Zend/Di/TODO rename to library/TorrentPier/Zend/Di/TODO diff --git a/library/Zend/Di/composer.json b/library/TorrentPier/Zend/Di/composer.json similarity index 100% rename from library/Zend/Di/composer.json rename to library/TorrentPier/Zend/Di/composer.json diff --git a/library/Zend/Dom/CONTRIBUTING.md b/library/TorrentPier/Zend/Dom/CONTRIBUTING.md similarity index 100% rename from library/Zend/Dom/CONTRIBUTING.md rename to library/TorrentPier/Zend/Dom/CONTRIBUTING.md diff --git a/library/Zend/Dom/Css2Xpath.php b/library/TorrentPier/Zend/Dom/Css2Xpath.php similarity index 100% rename from library/Zend/Dom/Css2Xpath.php rename to library/TorrentPier/Zend/Dom/Css2Xpath.php diff --git a/library/Zend/Dom/DOMXPath.php b/library/TorrentPier/Zend/Dom/DOMXPath.php similarity index 100% rename from library/Zend/Dom/DOMXPath.php rename to library/TorrentPier/Zend/Dom/DOMXPath.php diff --git a/library/Zend/Dom/Document.php b/library/TorrentPier/Zend/Dom/Document.php similarity index 100% rename from library/Zend/Dom/Document.php rename to library/TorrentPier/Zend/Dom/Document.php diff --git a/library/Zend/Dom/Document/NodeList.php b/library/TorrentPier/Zend/Dom/Document/NodeList.php similarity index 100% rename from library/Zend/Dom/Document/NodeList.php rename to library/TorrentPier/Zend/Dom/Document/NodeList.php diff --git a/library/Zend/Dom/Document/Query.php b/library/TorrentPier/Zend/Dom/Document/Query.php similarity index 100% rename from library/Zend/Dom/Document/Query.php rename to library/TorrentPier/Zend/Dom/Document/Query.php diff --git a/library/Zend/Dom/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Dom/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Dom/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Dom/Exception/BadMethodCallException.php diff --git a/library/Zend/Dom/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Dom/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Dom/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Dom/Exception/ExceptionInterface.php diff --git a/library/Zend/Dom/Exception/RuntimeException.php b/library/TorrentPier/Zend/Dom/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Dom/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Dom/Exception/RuntimeException.php diff --git a/library/Zend/Dom/NodeList.php b/library/TorrentPier/Zend/Dom/NodeList.php similarity index 100% rename from library/Zend/Dom/NodeList.php rename to library/TorrentPier/Zend/Dom/NodeList.php diff --git a/library/Zend/Dom/Query.php b/library/TorrentPier/Zend/Dom/Query.php similarity index 100% rename from library/Zend/Dom/Query.php rename to library/TorrentPier/Zend/Dom/Query.php diff --git a/library/Zend/Dom/README.md b/library/TorrentPier/Zend/Dom/README.md similarity index 100% rename from library/Zend/Dom/README.md rename to library/TorrentPier/Zend/Dom/README.md diff --git a/library/Zend/Dom/composer.json b/library/TorrentPier/Zend/Dom/composer.json similarity index 100% rename from library/Zend/Dom/composer.json rename to library/TorrentPier/Zend/Dom/composer.json diff --git a/library/Zend/Escaper/CONTRIBUTING.md b/library/TorrentPier/Zend/Escaper/CONTRIBUTING.md similarity index 100% rename from library/Zend/Escaper/CONTRIBUTING.md rename to library/TorrentPier/Zend/Escaper/CONTRIBUTING.md diff --git a/library/Zend/Escaper/Escaper.php b/library/TorrentPier/Zend/Escaper/Escaper.php similarity index 100% rename from library/Zend/Escaper/Escaper.php rename to library/TorrentPier/Zend/Escaper/Escaper.php diff --git a/library/Zend/Escaper/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Escaper/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Escaper/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Escaper/Exception/ExceptionInterface.php diff --git a/library/Zend/Escaper/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Escaper/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Escaper/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Escaper/Exception/InvalidArgumentException.php diff --git a/library/Zend/Escaper/Exception/RuntimeException.php b/library/TorrentPier/Zend/Escaper/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Escaper/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Escaper/Exception/RuntimeException.php diff --git a/library/Zend/Escaper/README.md b/library/TorrentPier/Zend/Escaper/README.md similarity index 100% rename from library/Zend/Escaper/README.md rename to library/TorrentPier/Zend/Escaper/README.md diff --git a/library/Zend/Escaper/composer.json b/library/TorrentPier/Zend/Escaper/composer.json similarity index 100% rename from library/Zend/Escaper/composer.json rename to library/TorrentPier/Zend/Escaper/composer.json diff --git a/library/Zend/EventManager/AbstractListenerAggregate.php b/library/TorrentPier/Zend/EventManager/AbstractListenerAggregate.php similarity index 100% rename from library/Zend/EventManager/AbstractListenerAggregate.php rename to library/TorrentPier/Zend/EventManager/AbstractListenerAggregate.php diff --git a/library/Zend/EventManager/CONTRIBUTING.md b/library/TorrentPier/Zend/EventManager/CONTRIBUTING.md similarity index 100% rename from library/Zend/EventManager/CONTRIBUTING.md rename to library/TorrentPier/Zend/EventManager/CONTRIBUTING.md diff --git a/library/Zend/EventManager/Event.php b/library/TorrentPier/Zend/EventManager/Event.php similarity index 100% rename from library/Zend/EventManager/Event.php rename to library/TorrentPier/Zend/EventManager/Event.php diff --git a/library/Zend/EventManager/EventInterface.php b/library/TorrentPier/Zend/EventManager/EventInterface.php similarity index 100% rename from library/Zend/EventManager/EventInterface.php rename to library/TorrentPier/Zend/EventManager/EventInterface.php diff --git a/library/Zend/EventManager/EventManager.php b/library/TorrentPier/Zend/EventManager/EventManager.php similarity index 100% rename from library/Zend/EventManager/EventManager.php rename to library/TorrentPier/Zend/EventManager/EventManager.php diff --git a/library/Zend/EventManager/EventManagerAwareInterface.php b/library/TorrentPier/Zend/EventManager/EventManagerAwareInterface.php similarity index 100% rename from library/Zend/EventManager/EventManagerAwareInterface.php rename to library/TorrentPier/Zend/EventManager/EventManagerAwareInterface.php diff --git a/library/Zend/EventManager/EventManagerAwareTrait.php b/library/TorrentPier/Zend/EventManager/EventManagerAwareTrait.php similarity index 100% rename from library/Zend/EventManager/EventManagerAwareTrait.php rename to library/TorrentPier/Zend/EventManager/EventManagerAwareTrait.php diff --git a/library/Zend/EventManager/EventManagerInterface.php b/library/TorrentPier/Zend/EventManager/EventManagerInterface.php similarity index 100% rename from library/Zend/EventManager/EventManagerInterface.php rename to library/TorrentPier/Zend/EventManager/EventManagerInterface.php diff --git a/library/Zend/EventManager/EventsCapableInterface.php b/library/TorrentPier/Zend/EventManager/EventsCapableInterface.php similarity index 100% rename from library/Zend/EventManager/EventsCapableInterface.php rename to library/TorrentPier/Zend/EventManager/EventsCapableInterface.php diff --git a/library/Zend/EventManager/Exception/DomainException.php b/library/TorrentPier/Zend/EventManager/Exception/DomainException.php similarity index 100% rename from library/Zend/EventManager/Exception/DomainException.php rename to library/TorrentPier/Zend/EventManager/Exception/DomainException.php diff --git a/library/Zend/EventManager/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/EventManager/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/EventManager/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/EventManager/Exception/ExceptionInterface.php diff --git a/library/Zend/EventManager/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/EventManager/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/EventManager/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/EventManager/Exception/InvalidArgumentException.php diff --git a/library/Zend/EventManager/Exception/InvalidCallbackException.php b/library/TorrentPier/Zend/EventManager/Exception/InvalidCallbackException.php similarity index 100% rename from library/Zend/EventManager/Exception/InvalidCallbackException.php rename to library/TorrentPier/Zend/EventManager/Exception/InvalidCallbackException.php diff --git a/library/Zend/EventManager/Filter/FilterInterface.php b/library/TorrentPier/Zend/EventManager/Filter/FilterInterface.php similarity index 100% rename from library/Zend/EventManager/Filter/FilterInterface.php rename to library/TorrentPier/Zend/EventManager/Filter/FilterInterface.php diff --git a/library/Zend/EventManager/Filter/FilterIterator.php b/library/TorrentPier/Zend/EventManager/Filter/FilterIterator.php similarity index 100% rename from library/Zend/EventManager/Filter/FilterIterator.php rename to library/TorrentPier/Zend/EventManager/Filter/FilterIterator.php diff --git a/library/Zend/EventManager/FilterChain.php b/library/TorrentPier/Zend/EventManager/FilterChain.php similarity index 100% rename from library/Zend/EventManager/FilterChain.php rename to library/TorrentPier/Zend/EventManager/FilterChain.php diff --git a/library/Zend/EventManager/GlobalEventManager.php b/library/TorrentPier/Zend/EventManager/GlobalEventManager.php similarity index 100% rename from library/Zend/EventManager/GlobalEventManager.php rename to library/TorrentPier/Zend/EventManager/GlobalEventManager.php diff --git a/library/Zend/EventManager/ListenerAggregateInterface.php b/library/TorrentPier/Zend/EventManager/ListenerAggregateInterface.php similarity index 100% rename from library/Zend/EventManager/ListenerAggregateInterface.php rename to library/TorrentPier/Zend/EventManager/ListenerAggregateInterface.php diff --git a/library/Zend/EventManager/ListenerAggregateTrait.php b/library/TorrentPier/Zend/EventManager/ListenerAggregateTrait.php similarity index 100% rename from library/Zend/EventManager/ListenerAggregateTrait.php rename to library/TorrentPier/Zend/EventManager/ListenerAggregateTrait.php diff --git a/library/Zend/EventManager/ProvidesEvents.php b/library/TorrentPier/Zend/EventManager/ProvidesEvents.php similarity index 100% rename from library/Zend/EventManager/ProvidesEvents.php rename to library/TorrentPier/Zend/EventManager/ProvidesEvents.php diff --git a/library/Zend/EventManager/README.md b/library/TorrentPier/Zend/EventManager/README.md similarity index 100% rename from library/Zend/EventManager/README.md rename to library/TorrentPier/Zend/EventManager/README.md diff --git a/library/Zend/EventManager/ResponseCollection.php b/library/TorrentPier/Zend/EventManager/ResponseCollection.php similarity index 100% rename from library/Zend/EventManager/ResponseCollection.php rename to library/TorrentPier/Zend/EventManager/ResponseCollection.php diff --git a/library/Zend/EventManager/SharedEventAggregateAwareInterface.php b/library/TorrentPier/Zend/EventManager/SharedEventAggregateAwareInterface.php similarity index 100% rename from library/Zend/EventManager/SharedEventAggregateAwareInterface.php rename to library/TorrentPier/Zend/EventManager/SharedEventAggregateAwareInterface.php diff --git a/library/Zend/EventManager/SharedEventManager.php b/library/TorrentPier/Zend/EventManager/SharedEventManager.php similarity index 100% rename from library/Zend/EventManager/SharedEventManager.php rename to library/TorrentPier/Zend/EventManager/SharedEventManager.php diff --git a/library/Zend/EventManager/SharedEventManagerAwareInterface.php b/library/TorrentPier/Zend/EventManager/SharedEventManagerAwareInterface.php similarity index 100% rename from library/Zend/EventManager/SharedEventManagerAwareInterface.php rename to library/TorrentPier/Zend/EventManager/SharedEventManagerAwareInterface.php diff --git a/library/Zend/EventManager/SharedEventManagerInterface.php b/library/TorrentPier/Zend/EventManager/SharedEventManagerInterface.php similarity index 100% rename from library/Zend/EventManager/SharedEventManagerInterface.php rename to library/TorrentPier/Zend/EventManager/SharedEventManagerInterface.php diff --git a/library/Zend/EventManager/SharedListenerAggregateInterface.php b/library/TorrentPier/Zend/EventManager/SharedListenerAggregateInterface.php similarity index 100% rename from library/Zend/EventManager/SharedListenerAggregateInterface.php rename to library/TorrentPier/Zend/EventManager/SharedListenerAggregateInterface.php diff --git a/library/Zend/EventManager/StaticEventManager.php b/library/TorrentPier/Zend/EventManager/StaticEventManager.php similarity index 100% rename from library/Zend/EventManager/StaticEventManager.php rename to library/TorrentPier/Zend/EventManager/StaticEventManager.php diff --git a/library/Zend/EventManager/composer.json b/library/TorrentPier/Zend/EventManager/composer.json similarity index 100% rename from library/Zend/EventManager/composer.json rename to library/TorrentPier/Zend/EventManager/composer.json diff --git a/library/Zend/Feed/CONTRIBUTING.md b/library/TorrentPier/Zend/Feed/CONTRIBUTING.md similarity index 100% rename from library/Zend/Feed/CONTRIBUTING.md rename to library/TorrentPier/Zend/Feed/CONTRIBUTING.md diff --git a/library/Zend/Feed/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Feed/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Feed/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Feed/Exception/BadMethodCallException.php diff --git a/library/Zend/Feed/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Feed/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Feed/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Feed/Exception/ExceptionInterface.php diff --git a/library/Zend/Feed/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Feed/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Feed/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Feed/Exception/InvalidArgumentException.php diff --git a/library/Zend/Feed/Exception/RuntimeException.php b/library/TorrentPier/Zend/Feed/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Feed/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Feed/Exception/RuntimeException.php diff --git a/library/Zend/Feed/PubSubHubbub/AbstractCallback.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/AbstractCallback.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/AbstractCallback.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/AbstractCallback.php diff --git a/library/Zend/Feed/PubSubHubbub/CallbackInterface.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/CallbackInterface.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/CallbackInterface.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/CallbackInterface.php diff --git a/library/Zend/Feed/PubSubHubbub/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/ExceptionInterface.php diff --git a/library/Zend/Feed/PubSubHubbub/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/InvalidArgumentException.php diff --git a/library/Zend/Feed/PubSubHubbub/Exception/RuntimeException.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Exception/RuntimeException.php diff --git a/library/Zend/Feed/PubSubHubbub/HttpResponse.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/HttpResponse.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/HttpResponse.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/HttpResponse.php diff --git a/library/Zend/Feed/PubSubHubbub/Model/AbstractModel.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Model/AbstractModel.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Model/AbstractModel.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Model/AbstractModel.php diff --git a/library/Zend/Feed/PubSubHubbub/Model/Subscription.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Model/Subscription.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Model/Subscription.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Model/Subscription.php diff --git a/library/Zend/Feed/PubSubHubbub/Model/SubscriptionPersistenceInterface.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Model/SubscriptionPersistenceInterface.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Model/SubscriptionPersistenceInterface.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Model/SubscriptionPersistenceInterface.php diff --git a/library/Zend/Feed/PubSubHubbub/PubSubHubbub.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/PubSubHubbub.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/PubSubHubbub.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/PubSubHubbub.php diff --git a/library/Zend/Feed/PubSubHubbub/Publisher.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Publisher.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Publisher.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Publisher.php diff --git a/library/Zend/Feed/PubSubHubbub/Subscriber.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Subscriber.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Subscriber.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Subscriber.php diff --git a/library/Zend/Feed/PubSubHubbub/Subscriber/Callback.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Subscriber/Callback.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Subscriber/Callback.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Subscriber/Callback.php diff --git a/library/Zend/Feed/PubSubHubbub/Version.php b/library/TorrentPier/Zend/Feed/PubSubHubbub/Version.php similarity index 100% rename from library/Zend/Feed/PubSubHubbub/Version.php rename to library/TorrentPier/Zend/Feed/PubSubHubbub/Version.php diff --git a/library/Zend/Feed/README.md b/library/TorrentPier/Zend/Feed/README.md similarity index 100% rename from library/Zend/Feed/README.md rename to library/TorrentPier/Zend/Feed/README.md diff --git a/library/Zend/Feed/Reader/AbstractEntry.php b/library/TorrentPier/Zend/Feed/Reader/AbstractEntry.php similarity index 100% rename from library/Zend/Feed/Reader/AbstractEntry.php rename to library/TorrentPier/Zend/Feed/Reader/AbstractEntry.php diff --git a/library/Zend/Feed/Reader/AbstractFeed.php b/library/TorrentPier/Zend/Feed/Reader/AbstractFeed.php similarity index 100% rename from library/Zend/Feed/Reader/AbstractFeed.php rename to library/TorrentPier/Zend/Feed/Reader/AbstractFeed.php diff --git a/library/Zend/Feed/Reader/Collection.php b/library/TorrentPier/Zend/Feed/Reader/Collection.php similarity index 100% rename from library/Zend/Feed/Reader/Collection.php rename to library/TorrentPier/Zend/Feed/Reader/Collection.php diff --git a/library/Zend/Feed/Reader/Collection/AbstractCollection.php b/library/TorrentPier/Zend/Feed/Reader/Collection/AbstractCollection.php similarity index 100% rename from library/Zend/Feed/Reader/Collection/AbstractCollection.php rename to library/TorrentPier/Zend/Feed/Reader/Collection/AbstractCollection.php diff --git a/library/Zend/Feed/Reader/Collection/Author.php b/library/TorrentPier/Zend/Feed/Reader/Collection/Author.php similarity index 100% rename from library/Zend/Feed/Reader/Collection/Author.php rename to library/TorrentPier/Zend/Feed/Reader/Collection/Author.php diff --git a/library/Zend/Feed/Reader/Collection/Category.php b/library/TorrentPier/Zend/Feed/Reader/Collection/Category.php similarity index 100% rename from library/Zend/Feed/Reader/Collection/Category.php rename to library/TorrentPier/Zend/Feed/Reader/Collection/Category.php diff --git a/library/Zend/Feed/Reader/Collection/Collection.php b/library/TorrentPier/Zend/Feed/Reader/Collection/Collection.php similarity index 100% rename from library/Zend/Feed/Reader/Collection/Collection.php rename to library/TorrentPier/Zend/Feed/Reader/Collection/Collection.php diff --git a/library/Zend/Feed/Reader/Entry/AbstractEntry.php b/library/TorrentPier/Zend/Feed/Reader/Entry/AbstractEntry.php similarity index 100% rename from library/Zend/Feed/Reader/Entry/AbstractEntry.php rename to library/TorrentPier/Zend/Feed/Reader/Entry/AbstractEntry.php diff --git a/library/Zend/Feed/Reader/Entry/Atom.php b/library/TorrentPier/Zend/Feed/Reader/Entry/Atom.php similarity index 100% rename from library/Zend/Feed/Reader/Entry/Atom.php rename to library/TorrentPier/Zend/Feed/Reader/Entry/Atom.php diff --git a/library/Zend/Feed/Reader/Entry/EntryInterface.php b/library/TorrentPier/Zend/Feed/Reader/Entry/EntryInterface.php similarity index 100% rename from library/Zend/Feed/Reader/Entry/EntryInterface.php rename to library/TorrentPier/Zend/Feed/Reader/Entry/EntryInterface.php diff --git a/library/Zend/Feed/Reader/Entry/Rss.php b/library/TorrentPier/Zend/Feed/Reader/Entry/Rss.php similarity index 100% rename from library/Zend/Feed/Reader/Entry/Rss.php rename to library/TorrentPier/Zend/Feed/Reader/Entry/Rss.php diff --git a/library/Zend/Feed/Reader/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Feed/Reader/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Feed/Reader/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Feed/Reader/Exception/BadMethodCallException.php diff --git a/library/Zend/Feed/Reader/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Feed/Reader/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Feed/Reader/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Feed/Reader/Exception/ExceptionInterface.php diff --git a/library/Zend/Feed/Reader/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Feed/Reader/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Feed/Reader/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Feed/Reader/Exception/InvalidArgumentException.php diff --git a/library/Zend/Feed/Reader/Exception/RuntimeException.php b/library/TorrentPier/Zend/Feed/Reader/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Feed/Reader/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Feed/Reader/Exception/RuntimeException.php diff --git a/library/Zend/Feed/Reader/Extension/AbstractEntry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/AbstractEntry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/AbstractEntry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/AbstractEntry.php diff --git a/library/Zend/Feed/Reader/Extension/AbstractFeed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/AbstractFeed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/AbstractFeed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/AbstractFeed.php diff --git a/library/Zend/Feed/Reader/Extension/Atom/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Atom/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Atom/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Atom/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/Atom/Feed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Atom/Feed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Atom/Feed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Atom/Feed.php diff --git a/library/Zend/Feed/Reader/Extension/Content/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Content/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Content/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Content/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php diff --git a/library/Zend/Feed/Reader/Extension/DublinCore/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/DublinCore/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/DublinCore/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/DublinCore/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/DublinCore/Feed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/DublinCore/Feed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/DublinCore/Feed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/DublinCore/Feed.php diff --git a/library/Zend/Feed/Reader/Extension/Podcast/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Podcast/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Podcast/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Podcast/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/Podcast/Feed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Podcast/Feed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Podcast/Feed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Podcast/Feed.php diff --git a/library/Zend/Feed/Reader/Extension/Slash/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Slash/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Slash/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Slash/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/Syndication/Feed.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Syndication/Feed.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Syndication/Feed.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Syndication/Feed.php diff --git a/library/Zend/Feed/Reader/Extension/Thread/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/Thread/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/Thread/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/Thread/Entry.php diff --git a/library/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php b/library/TorrentPier/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php similarity index 100% rename from library/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php rename to library/TorrentPier/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php diff --git a/library/Zend/Feed/Reader/ExtensionManager.php b/library/TorrentPier/Zend/Feed/Reader/ExtensionManager.php similarity index 100% rename from library/Zend/Feed/Reader/ExtensionManager.php rename to library/TorrentPier/Zend/Feed/Reader/ExtensionManager.php diff --git a/library/Zend/Feed/Reader/ExtensionManagerInterface.php b/library/TorrentPier/Zend/Feed/Reader/ExtensionManagerInterface.php similarity index 100% rename from library/Zend/Feed/Reader/ExtensionManagerInterface.php rename to library/TorrentPier/Zend/Feed/Reader/ExtensionManagerInterface.php diff --git a/library/Zend/Feed/Reader/ExtensionPluginManager.php b/library/TorrentPier/Zend/Feed/Reader/ExtensionPluginManager.php similarity index 100% rename from library/Zend/Feed/Reader/ExtensionPluginManager.php rename to library/TorrentPier/Zend/Feed/Reader/ExtensionPluginManager.php diff --git a/library/Zend/Feed/Reader/Feed/AbstractFeed.php b/library/TorrentPier/Zend/Feed/Reader/Feed/AbstractFeed.php similarity index 100% rename from library/Zend/Feed/Reader/Feed/AbstractFeed.php rename to library/TorrentPier/Zend/Feed/Reader/Feed/AbstractFeed.php diff --git a/library/Zend/Feed/Reader/Feed/Atom.php b/library/TorrentPier/Zend/Feed/Reader/Feed/Atom.php similarity index 100% rename from library/Zend/Feed/Reader/Feed/Atom.php rename to library/TorrentPier/Zend/Feed/Reader/Feed/Atom.php diff --git a/library/Zend/Feed/Reader/Feed/Atom/Source.php b/library/TorrentPier/Zend/Feed/Reader/Feed/Atom/Source.php similarity index 100% rename from library/Zend/Feed/Reader/Feed/Atom/Source.php rename to library/TorrentPier/Zend/Feed/Reader/Feed/Atom/Source.php diff --git a/library/Zend/Feed/Reader/Feed/FeedInterface.php b/library/TorrentPier/Zend/Feed/Reader/Feed/FeedInterface.php similarity index 100% rename from library/Zend/Feed/Reader/Feed/FeedInterface.php rename to library/TorrentPier/Zend/Feed/Reader/Feed/FeedInterface.php diff --git a/library/Zend/Feed/Reader/Feed/Rss.php b/library/TorrentPier/Zend/Feed/Reader/Feed/Rss.php similarity index 100% rename from library/Zend/Feed/Reader/Feed/Rss.php rename to library/TorrentPier/Zend/Feed/Reader/Feed/Rss.php diff --git a/library/Zend/Feed/Reader/FeedSet.php b/library/TorrentPier/Zend/Feed/Reader/FeedSet.php similarity index 100% rename from library/Zend/Feed/Reader/FeedSet.php rename to library/TorrentPier/Zend/Feed/Reader/FeedSet.php diff --git a/library/Zend/Feed/Reader/Http/ClientInterface.php b/library/TorrentPier/Zend/Feed/Reader/Http/ClientInterface.php similarity index 100% rename from library/Zend/Feed/Reader/Http/ClientInterface.php rename to library/TorrentPier/Zend/Feed/Reader/Http/ClientInterface.php diff --git a/library/Zend/Feed/Reader/Http/ResponseInterface.php b/library/TorrentPier/Zend/Feed/Reader/Http/ResponseInterface.php similarity index 100% rename from library/Zend/Feed/Reader/Http/ResponseInterface.php rename to library/TorrentPier/Zend/Feed/Reader/Http/ResponseInterface.php diff --git a/library/Zend/Feed/Reader/Reader.php b/library/TorrentPier/Zend/Feed/Reader/Reader.php similarity index 100% rename from library/Zend/Feed/Reader/Reader.php rename to library/TorrentPier/Zend/Feed/Reader/Reader.php diff --git a/library/Zend/Feed/Reader/ReaderImportInterface.php b/library/TorrentPier/Zend/Feed/Reader/ReaderImportInterface.php similarity index 100% rename from library/Zend/Feed/Reader/ReaderImportInterface.php rename to library/TorrentPier/Zend/Feed/Reader/ReaderImportInterface.php diff --git a/library/Zend/Feed/Reader/StandaloneExtensionManager.php b/library/TorrentPier/Zend/Feed/Reader/StandaloneExtensionManager.php similarity index 100% rename from library/Zend/Feed/Reader/StandaloneExtensionManager.php rename to library/TorrentPier/Zend/Feed/Reader/StandaloneExtensionManager.php diff --git a/library/Zend/Feed/Uri.php b/library/TorrentPier/Zend/Feed/Uri.php similarity index 100% rename from library/Zend/Feed/Uri.php rename to library/TorrentPier/Zend/Feed/Uri.php diff --git a/library/Zend/Feed/Writer/AbstractFeed.php b/library/TorrentPier/Zend/Feed/Writer/AbstractFeed.php similarity index 100% rename from library/Zend/Feed/Writer/AbstractFeed.php rename to library/TorrentPier/Zend/Feed/Writer/AbstractFeed.php diff --git a/library/Zend/Feed/Writer/Deleted.php b/library/TorrentPier/Zend/Feed/Writer/Deleted.php similarity index 100% rename from library/Zend/Feed/Writer/Deleted.php rename to library/TorrentPier/Zend/Feed/Writer/Deleted.php diff --git a/library/Zend/Feed/Writer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Entry.php diff --git a/library/Zend/Feed/Writer/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Feed/Writer/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Feed/Writer/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Feed/Writer/Exception/BadMethodCallException.php diff --git a/library/Zend/Feed/Writer/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Feed/Writer/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Feed/Writer/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Feed/Writer/Exception/ExceptionInterface.php diff --git a/library/Zend/Feed/Writer/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Feed/Writer/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Feed/Writer/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Feed/Writer/Exception/InvalidArgumentException.php diff --git a/library/Zend/Feed/Writer/Exception/RuntimeException.php b/library/TorrentPier/Zend/Feed/Writer/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Feed/Writer/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Feed/Writer/Exception/RuntimeException.php diff --git a/library/Zend/Feed/Writer/Extension/AbstractRenderer.php b/library/TorrentPier/Zend/Feed/Writer/Extension/AbstractRenderer.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/AbstractRenderer.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/AbstractRenderer.php diff --git a/library/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php b/library/TorrentPier/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php diff --git a/library/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php b/library/TorrentPier/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php diff --git a/library/Zend/Feed/Writer/Extension/ITunes/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/ITunes/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/ITunes/Feed.php b/library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Feed.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/ITunes/Feed.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Feed.php diff --git a/library/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php b/library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php diff --git a/library/Zend/Feed/Writer/Extension/RendererInterface.php b/library/TorrentPier/Zend/Feed/Writer/Extension/RendererInterface.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/RendererInterface.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/RendererInterface.php diff --git a/library/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php b/library/TorrentPier/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php similarity index 100% rename from library/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php rename to library/TorrentPier/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php diff --git a/library/Zend/Feed/Writer/ExtensionManager.php b/library/TorrentPier/Zend/Feed/Writer/ExtensionManager.php similarity index 100% rename from library/Zend/Feed/Writer/ExtensionManager.php rename to library/TorrentPier/Zend/Feed/Writer/ExtensionManager.php diff --git a/library/Zend/Feed/Writer/ExtensionManagerInterface.php b/library/TorrentPier/Zend/Feed/Writer/ExtensionManagerInterface.php similarity index 100% rename from library/Zend/Feed/Writer/ExtensionManagerInterface.php rename to library/TorrentPier/Zend/Feed/Writer/ExtensionManagerInterface.php diff --git a/library/Zend/Feed/Writer/ExtensionPluginManager.php b/library/TorrentPier/Zend/Feed/Writer/ExtensionPluginManager.php similarity index 100% rename from library/Zend/Feed/Writer/ExtensionPluginManager.php rename to library/TorrentPier/Zend/Feed/Writer/ExtensionPluginManager.php diff --git a/library/Zend/Feed/Writer/Feed.php b/library/TorrentPier/Zend/Feed/Writer/Feed.php similarity index 100% rename from library/Zend/Feed/Writer/Feed.php rename to library/TorrentPier/Zend/Feed/Writer/Feed.php diff --git a/library/Zend/Feed/Writer/FeedFactory.php b/library/TorrentPier/Zend/Feed/Writer/FeedFactory.php similarity index 100% rename from library/Zend/Feed/Writer/FeedFactory.php rename to library/TorrentPier/Zend/Feed/Writer/FeedFactory.php diff --git a/library/Zend/Feed/Writer/Renderer/AbstractRenderer.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/AbstractRenderer.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/AbstractRenderer.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/AbstractRenderer.php diff --git a/library/Zend/Feed/Writer/Renderer/Entry/Atom.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Atom.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Entry/Atom.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Atom.php diff --git a/library/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php diff --git a/library/Zend/Feed/Writer/Renderer/Entry/AtomDeleted.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/AtomDeleted.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Entry/AtomDeleted.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/AtomDeleted.php diff --git a/library/Zend/Feed/Writer/Renderer/Entry/Rss.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Rss.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Entry/Rss.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Entry/Rss.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/AbstractAtom.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/AbstractAtom.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/AbstractAtom.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/AbstractAtom.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/Atom.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/Atom.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/Atom/AbstractAtom.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom/AbstractAtom.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/Atom/AbstractAtom.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom/AbstractAtom.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/AtomSource.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/AtomSource.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/AtomSource.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/AtomSource.php diff --git a/library/Zend/Feed/Writer/Renderer/Feed/Rss.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Rss.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/Feed/Rss.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/Feed/Rss.php diff --git a/library/Zend/Feed/Writer/Renderer/RendererInterface.php b/library/TorrentPier/Zend/Feed/Writer/Renderer/RendererInterface.php similarity index 100% rename from library/Zend/Feed/Writer/Renderer/RendererInterface.php rename to library/TorrentPier/Zend/Feed/Writer/Renderer/RendererInterface.php diff --git a/library/Zend/Feed/Writer/Source.php b/library/TorrentPier/Zend/Feed/Writer/Source.php similarity index 100% rename from library/Zend/Feed/Writer/Source.php rename to library/TorrentPier/Zend/Feed/Writer/Source.php diff --git a/library/Zend/Feed/Writer/Version.php b/library/TorrentPier/Zend/Feed/Writer/Version.php similarity index 100% rename from library/Zend/Feed/Writer/Version.php rename to library/TorrentPier/Zend/Feed/Writer/Version.php diff --git a/library/Zend/Feed/Writer/Writer.php b/library/TorrentPier/Zend/Feed/Writer/Writer.php similarity index 100% rename from library/Zend/Feed/Writer/Writer.php rename to library/TorrentPier/Zend/Feed/Writer/Writer.php diff --git a/library/Zend/Feed/composer.json b/library/TorrentPier/Zend/Feed/composer.json similarity index 100% rename from library/Zend/Feed/composer.json rename to library/TorrentPier/Zend/Feed/composer.json diff --git a/library/Zend/File/CONTRIBUTING.md b/library/TorrentPier/Zend/File/CONTRIBUTING.md similarity index 100% rename from library/Zend/File/CONTRIBUTING.md rename to library/TorrentPier/Zend/File/CONTRIBUTING.md diff --git a/library/Zend/File/ClassFileLocator.php b/library/TorrentPier/Zend/File/ClassFileLocator.php similarity index 100% rename from library/Zend/File/ClassFileLocator.php rename to library/TorrentPier/Zend/File/ClassFileLocator.php diff --git a/library/Zend/File/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/File/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/File/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/File/Exception/BadMethodCallException.php diff --git a/library/Zend/File/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/File/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/File/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/File/Exception/ExceptionInterface.php diff --git a/library/Zend/File/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/File/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/File/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/File/Exception/InvalidArgumentException.php diff --git a/library/Zend/File/Exception/RuntimeException.php b/library/TorrentPier/Zend/File/Exception/RuntimeException.php similarity index 100% rename from library/Zend/File/Exception/RuntimeException.php rename to library/TorrentPier/Zend/File/Exception/RuntimeException.php diff --git a/library/Zend/File/PhpClassFile.php b/library/TorrentPier/Zend/File/PhpClassFile.php similarity index 100% rename from library/Zend/File/PhpClassFile.php rename to library/TorrentPier/Zend/File/PhpClassFile.php diff --git a/library/Zend/File/README.md b/library/TorrentPier/Zend/File/README.md similarity index 100% rename from library/Zend/File/README.md rename to library/TorrentPier/Zend/File/README.md diff --git a/library/Zend/File/Transfer/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/File/Transfer/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/File/Transfer/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/File/Transfer/Adapter/AbstractAdapter.php diff --git a/library/Zend/File/Transfer/Adapter/FilterPluginManager.php b/library/TorrentPier/Zend/File/Transfer/Adapter/FilterPluginManager.php similarity index 100% rename from library/Zend/File/Transfer/Adapter/FilterPluginManager.php rename to library/TorrentPier/Zend/File/Transfer/Adapter/FilterPluginManager.php diff --git a/library/Zend/File/Transfer/Adapter/Http.php b/library/TorrentPier/Zend/File/Transfer/Adapter/Http.php similarity index 100% rename from library/Zend/File/Transfer/Adapter/Http.php rename to library/TorrentPier/Zend/File/Transfer/Adapter/Http.php diff --git a/library/Zend/File/Transfer/Adapter/ValidatorPluginManager.php b/library/TorrentPier/Zend/File/Transfer/Adapter/ValidatorPluginManager.php similarity index 100% rename from library/Zend/File/Transfer/Adapter/ValidatorPluginManager.php rename to library/TorrentPier/Zend/File/Transfer/Adapter/ValidatorPluginManager.php diff --git a/library/Zend/File/Transfer/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/File/Transfer/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/File/Transfer/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/File/Transfer/Exception/BadMethodCallException.php diff --git a/library/Zend/File/Transfer/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/File/Transfer/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/File/Transfer/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/File/Transfer/Exception/ExceptionInterface.php diff --git a/library/Zend/File/Transfer/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/File/Transfer/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/File/Transfer/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/File/Transfer/Exception/InvalidArgumentException.php diff --git a/library/Zend/File/Transfer/Exception/PhpEnvironmentException.php b/library/TorrentPier/Zend/File/Transfer/Exception/PhpEnvironmentException.php similarity index 100% rename from library/Zend/File/Transfer/Exception/PhpEnvironmentException.php rename to library/TorrentPier/Zend/File/Transfer/Exception/PhpEnvironmentException.php diff --git a/library/Zend/File/Transfer/Exception/RuntimeException.php b/library/TorrentPier/Zend/File/Transfer/Exception/RuntimeException.php similarity index 100% rename from library/Zend/File/Transfer/Exception/RuntimeException.php rename to library/TorrentPier/Zend/File/Transfer/Exception/RuntimeException.php diff --git a/library/Zend/File/Transfer/Transfer.php b/library/TorrentPier/Zend/File/Transfer/Transfer.php similarity index 100% rename from library/Zend/File/Transfer/Transfer.php rename to library/TorrentPier/Zend/File/Transfer/Transfer.php diff --git a/library/Zend/File/composer.json b/library/TorrentPier/Zend/File/composer.json similarity index 100% rename from library/Zend/File/composer.json rename to library/TorrentPier/Zend/File/composer.json diff --git a/library/Zend/Filter/AbstractDateDropdown.php b/library/TorrentPier/Zend/Filter/AbstractDateDropdown.php similarity index 100% rename from library/Zend/Filter/AbstractDateDropdown.php rename to library/TorrentPier/Zend/Filter/AbstractDateDropdown.php diff --git a/library/Zend/Filter/AbstractFilter.php b/library/TorrentPier/Zend/Filter/AbstractFilter.php similarity index 100% rename from library/Zend/Filter/AbstractFilter.php rename to library/TorrentPier/Zend/Filter/AbstractFilter.php diff --git a/library/Zend/Filter/AbstractUnicode.php b/library/TorrentPier/Zend/Filter/AbstractUnicode.php similarity index 100% rename from library/Zend/Filter/AbstractUnicode.php rename to library/TorrentPier/Zend/Filter/AbstractUnicode.php diff --git a/library/Zend/Filter/BaseName.php b/library/TorrentPier/Zend/Filter/BaseName.php similarity index 100% rename from library/Zend/Filter/BaseName.php rename to library/TorrentPier/Zend/Filter/BaseName.php diff --git a/library/Zend/Filter/Blacklist.php b/library/TorrentPier/Zend/Filter/Blacklist.php similarity index 100% rename from library/Zend/Filter/Blacklist.php rename to library/TorrentPier/Zend/Filter/Blacklist.php diff --git a/library/Zend/Filter/Boolean.php b/library/TorrentPier/Zend/Filter/Boolean.php similarity index 100% rename from library/Zend/Filter/Boolean.php rename to library/TorrentPier/Zend/Filter/Boolean.php diff --git a/library/Zend/Filter/CONTRIBUTING.md b/library/TorrentPier/Zend/Filter/CONTRIBUTING.md similarity index 100% rename from library/Zend/Filter/CONTRIBUTING.md rename to library/TorrentPier/Zend/Filter/CONTRIBUTING.md diff --git a/library/Zend/Filter/Callback.php b/library/TorrentPier/Zend/Filter/Callback.php similarity index 100% rename from library/Zend/Filter/Callback.php rename to library/TorrentPier/Zend/Filter/Callback.php diff --git a/library/Zend/Filter/Compress.php b/library/TorrentPier/Zend/Filter/Compress.php similarity index 100% rename from library/Zend/Filter/Compress.php rename to library/TorrentPier/Zend/Filter/Compress.php diff --git a/library/Zend/Filter/Compress/AbstractCompressionAlgorithm.php b/library/TorrentPier/Zend/Filter/Compress/AbstractCompressionAlgorithm.php similarity index 100% rename from library/Zend/Filter/Compress/AbstractCompressionAlgorithm.php rename to library/TorrentPier/Zend/Filter/Compress/AbstractCompressionAlgorithm.php diff --git a/library/Zend/Filter/Compress/Bz2.php b/library/TorrentPier/Zend/Filter/Compress/Bz2.php similarity index 100% rename from library/Zend/Filter/Compress/Bz2.php rename to library/TorrentPier/Zend/Filter/Compress/Bz2.php diff --git a/library/Zend/Filter/Compress/CompressionAlgorithmInterface.php b/library/TorrentPier/Zend/Filter/Compress/CompressionAlgorithmInterface.php similarity index 100% rename from library/Zend/Filter/Compress/CompressionAlgorithmInterface.php rename to library/TorrentPier/Zend/Filter/Compress/CompressionAlgorithmInterface.php diff --git a/library/Zend/Filter/Compress/Gz.php b/library/TorrentPier/Zend/Filter/Compress/Gz.php similarity index 100% rename from library/Zend/Filter/Compress/Gz.php rename to library/TorrentPier/Zend/Filter/Compress/Gz.php diff --git a/library/Zend/Filter/Compress/Lzf.php b/library/TorrentPier/Zend/Filter/Compress/Lzf.php similarity index 100% rename from library/Zend/Filter/Compress/Lzf.php rename to library/TorrentPier/Zend/Filter/Compress/Lzf.php diff --git a/library/Zend/Filter/Compress/Rar.php b/library/TorrentPier/Zend/Filter/Compress/Rar.php similarity index 100% rename from library/Zend/Filter/Compress/Rar.php rename to library/TorrentPier/Zend/Filter/Compress/Rar.php diff --git a/library/Zend/Filter/Compress/Snappy.php b/library/TorrentPier/Zend/Filter/Compress/Snappy.php similarity index 100% rename from library/Zend/Filter/Compress/Snappy.php rename to library/TorrentPier/Zend/Filter/Compress/Snappy.php diff --git a/library/Zend/Filter/Compress/Tar.php b/library/TorrentPier/Zend/Filter/Compress/Tar.php similarity index 100% rename from library/Zend/Filter/Compress/Tar.php rename to library/TorrentPier/Zend/Filter/Compress/Tar.php diff --git a/library/Zend/Filter/Compress/Zip.php b/library/TorrentPier/Zend/Filter/Compress/Zip.php similarity index 100% rename from library/Zend/Filter/Compress/Zip.php rename to library/TorrentPier/Zend/Filter/Compress/Zip.php diff --git a/library/Zend/Filter/DataUnitFormatter.php b/library/TorrentPier/Zend/Filter/DataUnitFormatter.php similarity index 100% rename from library/Zend/Filter/DataUnitFormatter.php rename to library/TorrentPier/Zend/Filter/DataUnitFormatter.php diff --git a/library/Zend/Filter/DateSelect.php b/library/TorrentPier/Zend/Filter/DateSelect.php similarity index 100% rename from library/Zend/Filter/DateSelect.php rename to library/TorrentPier/Zend/Filter/DateSelect.php diff --git a/library/Zend/Filter/DateTimeFormatter.php b/library/TorrentPier/Zend/Filter/DateTimeFormatter.php similarity index 100% rename from library/Zend/Filter/DateTimeFormatter.php rename to library/TorrentPier/Zend/Filter/DateTimeFormatter.php diff --git a/library/Zend/Filter/DateTimeSelect.php b/library/TorrentPier/Zend/Filter/DateTimeSelect.php similarity index 100% rename from library/Zend/Filter/DateTimeSelect.php rename to library/TorrentPier/Zend/Filter/DateTimeSelect.php diff --git a/library/Zend/Filter/Decompress.php b/library/TorrentPier/Zend/Filter/Decompress.php similarity index 100% rename from library/Zend/Filter/Decompress.php rename to library/TorrentPier/Zend/Filter/Decompress.php diff --git a/library/Zend/Filter/Decrypt.php b/library/TorrentPier/Zend/Filter/Decrypt.php similarity index 100% rename from library/Zend/Filter/Decrypt.php rename to library/TorrentPier/Zend/Filter/Decrypt.php diff --git a/library/Zend/Filter/Digits.php b/library/TorrentPier/Zend/Filter/Digits.php similarity index 100% rename from library/Zend/Filter/Digits.php rename to library/TorrentPier/Zend/Filter/Digits.php diff --git a/library/Zend/Filter/Dir.php b/library/TorrentPier/Zend/Filter/Dir.php similarity index 100% rename from library/Zend/Filter/Dir.php rename to library/TorrentPier/Zend/Filter/Dir.php diff --git a/library/Zend/Filter/Encrypt.php b/library/TorrentPier/Zend/Filter/Encrypt.php similarity index 100% rename from library/Zend/Filter/Encrypt.php rename to library/TorrentPier/Zend/Filter/Encrypt.php diff --git a/library/Zend/Filter/Encrypt/BlockCipher.php b/library/TorrentPier/Zend/Filter/Encrypt/BlockCipher.php similarity index 100% rename from library/Zend/Filter/Encrypt/BlockCipher.php rename to library/TorrentPier/Zend/Filter/Encrypt/BlockCipher.php diff --git a/library/Zend/Filter/Encrypt/EncryptionAlgorithmInterface.php b/library/TorrentPier/Zend/Filter/Encrypt/EncryptionAlgorithmInterface.php similarity index 100% rename from library/Zend/Filter/Encrypt/EncryptionAlgorithmInterface.php rename to library/TorrentPier/Zend/Filter/Encrypt/EncryptionAlgorithmInterface.php diff --git a/library/Zend/Filter/Encrypt/Openssl.php b/library/TorrentPier/Zend/Filter/Encrypt/Openssl.php similarity index 100% rename from library/Zend/Filter/Encrypt/Openssl.php rename to library/TorrentPier/Zend/Filter/Encrypt/Openssl.php diff --git a/library/Zend/Filter/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Filter/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Filter/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Filter/Exception/BadMethodCallException.php diff --git a/library/Zend/Filter/Exception/DomainException.php b/library/TorrentPier/Zend/Filter/Exception/DomainException.php similarity index 100% rename from library/Zend/Filter/Exception/DomainException.php rename to library/TorrentPier/Zend/Filter/Exception/DomainException.php diff --git a/library/Zend/Filter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Filter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Filter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Filter/Exception/ExceptionInterface.php diff --git a/library/Zend/Filter/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Filter/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Filter/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Filter/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Filter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Filter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Filter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Filter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Filter/Exception/RuntimeException.php b/library/TorrentPier/Zend/Filter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Filter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Filter/Exception/RuntimeException.php diff --git a/library/Zend/Filter/File/Decrypt.php b/library/TorrentPier/Zend/Filter/File/Decrypt.php similarity index 100% rename from library/Zend/Filter/File/Decrypt.php rename to library/TorrentPier/Zend/Filter/File/Decrypt.php diff --git a/library/Zend/Filter/File/Encrypt.php b/library/TorrentPier/Zend/Filter/File/Encrypt.php similarity index 100% rename from library/Zend/Filter/File/Encrypt.php rename to library/TorrentPier/Zend/Filter/File/Encrypt.php diff --git a/library/Zend/Filter/File/LowerCase.php b/library/TorrentPier/Zend/Filter/File/LowerCase.php similarity index 100% rename from library/Zend/Filter/File/LowerCase.php rename to library/TorrentPier/Zend/Filter/File/LowerCase.php diff --git a/library/Zend/Filter/File/Rename.php b/library/TorrentPier/Zend/Filter/File/Rename.php similarity index 100% rename from library/Zend/Filter/File/Rename.php rename to library/TorrentPier/Zend/Filter/File/Rename.php diff --git a/library/Zend/Filter/File/RenameUpload.php b/library/TorrentPier/Zend/Filter/File/RenameUpload.php similarity index 100% rename from library/Zend/Filter/File/RenameUpload.php rename to library/TorrentPier/Zend/Filter/File/RenameUpload.php diff --git a/library/Zend/Filter/File/UpperCase.php b/library/TorrentPier/Zend/Filter/File/UpperCase.php similarity index 100% rename from library/Zend/Filter/File/UpperCase.php rename to library/TorrentPier/Zend/Filter/File/UpperCase.php diff --git a/library/Zend/Filter/FilterChain.php b/library/TorrentPier/Zend/Filter/FilterChain.php similarity index 100% rename from library/Zend/Filter/FilterChain.php rename to library/TorrentPier/Zend/Filter/FilterChain.php diff --git a/library/Zend/Filter/FilterInterface.php b/library/TorrentPier/Zend/Filter/FilterInterface.php similarity index 100% rename from library/Zend/Filter/FilterInterface.php rename to library/TorrentPier/Zend/Filter/FilterInterface.php diff --git a/library/Zend/Filter/FilterPluginManager.php b/library/TorrentPier/Zend/Filter/FilterPluginManager.php similarity index 100% rename from library/Zend/Filter/FilterPluginManager.php rename to library/TorrentPier/Zend/Filter/FilterPluginManager.php diff --git a/library/Zend/Filter/HtmlEntities.php b/library/TorrentPier/Zend/Filter/HtmlEntities.php similarity index 100% rename from library/Zend/Filter/HtmlEntities.php rename to library/TorrentPier/Zend/Filter/HtmlEntities.php diff --git a/library/Zend/Filter/Inflector.php b/library/TorrentPier/Zend/Filter/Inflector.php similarity index 100% rename from library/Zend/Filter/Inflector.php rename to library/TorrentPier/Zend/Filter/Inflector.php diff --git a/library/Zend/Filter/Int.php b/library/TorrentPier/Zend/Filter/Int.php similarity index 100% rename from library/Zend/Filter/Int.php rename to library/TorrentPier/Zend/Filter/Int.php diff --git a/library/Zend/Filter/MonthSelect.php b/library/TorrentPier/Zend/Filter/MonthSelect.php similarity index 100% rename from library/Zend/Filter/MonthSelect.php rename to library/TorrentPier/Zend/Filter/MonthSelect.php diff --git a/library/Zend/Filter/Null.php b/library/TorrentPier/Zend/Filter/Null.php similarity index 100% rename from library/Zend/Filter/Null.php rename to library/TorrentPier/Zend/Filter/Null.php diff --git a/library/Zend/Filter/PregReplace.php b/library/TorrentPier/Zend/Filter/PregReplace.php similarity index 100% rename from library/Zend/Filter/PregReplace.php rename to library/TorrentPier/Zend/Filter/PregReplace.php diff --git a/library/Zend/Filter/README.md b/library/TorrentPier/Zend/Filter/README.md similarity index 100% rename from library/Zend/Filter/README.md rename to library/TorrentPier/Zend/Filter/README.md diff --git a/library/Zend/Filter/RealPath.php b/library/TorrentPier/Zend/Filter/RealPath.php similarity index 100% rename from library/Zend/Filter/RealPath.php rename to library/TorrentPier/Zend/Filter/RealPath.php diff --git a/library/Zend/Filter/StaticFilter.php b/library/TorrentPier/Zend/Filter/StaticFilter.php similarity index 100% rename from library/Zend/Filter/StaticFilter.php rename to library/TorrentPier/Zend/Filter/StaticFilter.php diff --git a/library/Zend/Filter/StringToLower.php b/library/TorrentPier/Zend/Filter/StringToLower.php similarity index 100% rename from library/Zend/Filter/StringToLower.php rename to library/TorrentPier/Zend/Filter/StringToLower.php diff --git a/library/Zend/Filter/StringToUpper.php b/library/TorrentPier/Zend/Filter/StringToUpper.php similarity index 100% rename from library/Zend/Filter/StringToUpper.php rename to library/TorrentPier/Zend/Filter/StringToUpper.php diff --git a/library/Zend/Filter/StringTrim.php b/library/TorrentPier/Zend/Filter/StringTrim.php similarity index 100% rename from library/Zend/Filter/StringTrim.php rename to library/TorrentPier/Zend/Filter/StringTrim.php diff --git a/library/Zend/Filter/StripNewlines.php b/library/TorrentPier/Zend/Filter/StripNewlines.php similarity index 100% rename from library/Zend/Filter/StripNewlines.php rename to library/TorrentPier/Zend/Filter/StripNewlines.php diff --git a/library/Zend/Filter/StripTags.php b/library/TorrentPier/Zend/Filter/StripTags.php similarity index 100% rename from library/Zend/Filter/StripTags.php rename to library/TorrentPier/Zend/Filter/StripTags.php diff --git a/library/Zend/Filter/ToInt.php b/library/TorrentPier/Zend/Filter/ToInt.php similarity index 100% rename from library/Zend/Filter/ToInt.php rename to library/TorrentPier/Zend/Filter/ToInt.php diff --git a/library/Zend/Filter/ToNull.php b/library/TorrentPier/Zend/Filter/ToNull.php similarity index 100% rename from library/Zend/Filter/ToNull.php rename to library/TorrentPier/Zend/Filter/ToNull.php diff --git a/library/Zend/Filter/UpperCaseWords.php b/library/TorrentPier/Zend/Filter/UpperCaseWords.php similarity index 100% rename from library/Zend/Filter/UpperCaseWords.php rename to library/TorrentPier/Zend/Filter/UpperCaseWords.php diff --git a/library/Zend/Filter/UriNormalize.php b/library/TorrentPier/Zend/Filter/UriNormalize.php similarity index 100% rename from library/Zend/Filter/UriNormalize.php rename to library/TorrentPier/Zend/Filter/UriNormalize.php diff --git a/library/Zend/Filter/Whitelist.php b/library/TorrentPier/Zend/Filter/Whitelist.php similarity index 100% rename from library/Zend/Filter/Whitelist.php rename to library/TorrentPier/Zend/Filter/Whitelist.php diff --git a/library/Zend/Filter/Word/AbstractSeparator.php b/library/TorrentPier/Zend/Filter/Word/AbstractSeparator.php similarity index 100% rename from library/Zend/Filter/Word/AbstractSeparator.php rename to library/TorrentPier/Zend/Filter/Word/AbstractSeparator.php diff --git a/library/Zend/Filter/Word/CamelCaseToDash.php b/library/TorrentPier/Zend/Filter/Word/CamelCaseToDash.php similarity index 100% rename from library/Zend/Filter/Word/CamelCaseToDash.php rename to library/TorrentPier/Zend/Filter/Word/CamelCaseToDash.php diff --git a/library/Zend/Filter/Word/CamelCaseToSeparator.php b/library/TorrentPier/Zend/Filter/Word/CamelCaseToSeparator.php similarity index 100% rename from library/Zend/Filter/Word/CamelCaseToSeparator.php rename to library/TorrentPier/Zend/Filter/Word/CamelCaseToSeparator.php diff --git a/library/Zend/Filter/Word/CamelCaseToUnderscore.php b/library/TorrentPier/Zend/Filter/Word/CamelCaseToUnderscore.php similarity index 100% rename from library/Zend/Filter/Word/CamelCaseToUnderscore.php rename to library/TorrentPier/Zend/Filter/Word/CamelCaseToUnderscore.php diff --git a/library/Zend/Filter/Word/DashToCamelCase.php b/library/TorrentPier/Zend/Filter/Word/DashToCamelCase.php similarity index 100% rename from library/Zend/Filter/Word/DashToCamelCase.php rename to library/TorrentPier/Zend/Filter/Word/DashToCamelCase.php diff --git a/library/Zend/Filter/Word/DashToSeparator.php b/library/TorrentPier/Zend/Filter/Word/DashToSeparator.php similarity index 100% rename from library/Zend/Filter/Word/DashToSeparator.php rename to library/TorrentPier/Zend/Filter/Word/DashToSeparator.php diff --git a/library/Zend/Filter/Word/DashToUnderscore.php b/library/TorrentPier/Zend/Filter/Word/DashToUnderscore.php similarity index 100% rename from library/Zend/Filter/Word/DashToUnderscore.php rename to library/TorrentPier/Zend/Filter/Word/DashToUnderscore.php diff --git a/library/Zend/Filter/Word/SeparatorToCamelCase.php b/library/TorrentPier/Zend/Filter/Word/SeparatorToCamelCase.php similarity index 100% rename from library/Zend/Filter/Word/SeparatorToCamelCase.php rename to library/TorrentPier/Zend/Filter/Word/SeparatorToCamelCase.php diff --git a/library/Zend/Filter/Word/SeparatorToDash.php b/library/TorrentPier/Zend/Filter/Word/SeparatorToDash.php similarity index 100% rename from library/Zend/Filter/Word/SeparatorToDash.php rename to library/TorrentPier/Zend/Filter/Word/SeparatorToDash.php diff --git a/library/Zend/Filter/Word/SeparatorToSeparator.php b/library/TorrentPier/Zend/Filter/Word/SeparatorToSeparator.php similarity index 100% rename from library/Zend/Filter/Word/SeparatorToSeparator.php rename to library/TorrentPier/Zend/Filter/Word/SeparatorToSeparator.php diff --git a/library/Zend/Filter/Word/Service/SeparatorToSeparatorFactory.php b/library/TorrentPier/Zend/Filter/Word/Service/SeparatorToSeparatorFactory.php similarity index 100% rename from library/Zend/Filter/Word/Service/SeparatorToSeparatorFactory.php rename to library/TorrentPier/Zend/Filter/Word/Service/SeparatorToSeparatorFactory.php diff --git a/library/Zend/Filter/Word/UnderscoreToCamelCase.php b/library/TorrentPier/Zend/Filter/Word/UnderscoreToCamelCase.php similarity index 100% rename from library/Zend/Filter/Word/UnderscoreToCamelCase.php rename to library/TorrentPier/Zend/Filter/Word/UnderscoreToCamelCase.php diff --git a/library/Zend/Filter/Word/UnderscoreToDash.php b/library/TorrentPier/Zend/Filter/Word/UnderscoreToDash.php similarity index 100% rename from library/Zend/Filter/Word/UnderscoreToDash.php rename to library/TorrentPier/Zend/Filter/Word/UnderscoreToDash.php diff --git a/library/Zend/Filter/Word/UnderscoreToSeparator.php b/library/TorrentPier/Zend/Filter/Word/UnderscoreToSeparator.php similarity index 100% rename from library/Zend/Filter/Word/UnderscoreToSeparator.php rename to library/TorrentPier/Zend/Filter/Word/UnderscoreToSeparator.php diff --git a/library/Zend/Filter/Word/UnderscoreToStudlyCase.php b/library/TorrentPier/Zend/Filter/Word/UnderscoreToStudlyCase.php similarity index 100% rename from library/Zend/Filter/Word/UnderscoreToStudlyCase.php rename to library/TorrentPier/Zend/Filter/Word/UnderscoreToStudlyCase.php diff --git a/library/Zend/Filter/composer.json b/library/TorrentPier/Zend/Filter/composer.json similarity index 100% rename from library/Zend/Filter/composer.json rename to library/TorrentPier/Zend/Filter/composer.json diff --git a/library/Zend/Form/Annotation/AbstractAnnotationsListener.php b/library/TorrentPier/Zend/Form/Annotation/AbstractAnnotationsListener.php similarity index 100% rename from library/Zend/Form/Annotation/AbstractAnnotationsListener.php rename to library/TorrentPier/Zend/Form/Annotation/AbstractAnnotationsListener.php diff --git a/library/Zend/Form/Annotation/AbstractArrayAnnotation.php b/library/TorrentPier/Zend/Form/Annotation/AbstractArrayAnnotation.php similarity index 100% rename from library/Zend/Form/Annotation/AbstractArrayAnnotation.php rename to library/TorrentPier/Zend/Form/Annotation/AbstractArrayAnnotation.php diff --git a/library/Zend/Form/Annotation/AbstractArrayOrStringAnnotation.php b/library/TorrentPier/Zend/Form/Annotation/AbstractArrayOrStringAnnotation.php similarity index 100% rename from library/Zend/Form/Annotation/AbstractArrayOrStringAnnotation.php rename to library/TorrentPier/Zend/Form/Annotation/AbstractArrayOrStringAnnotation.php diff --git a/library/Zend/Form/Annotation/AbstractStringAnnotation.php b/library/TorrentPier/Zend/Form/Annotation/AbstractStringAnnotation.php similarity index 100% rename from library/Zend/Form/Annotation/AbstractStringAnnotation.php rename to library/TorrentPier/Zend/Form/Annotation/AbstractStringAnnotation.php diff --git a/library/Zend/Form/Annotation/AllowEmpty.php b/library/TorrentPier/Zend/Form/Annotation/AllowEmpty.php similarity index 100% rename from library/Zend/Form/Annotation/AllowEmpty.php rename to library/TorrentPier/Zend/Form/Annotation/AllowEmpty.php diff --git a/library/Zend/Form/Annotation/AnnotationBuilder.php b/library/TorrentPier/Zend/Form/Annotation/AnnotationBuilder.php similarity index 100% rename from library/Zend/Form/Annotation/AnnotationBuilder.php rename to library/TorrentPier/Zend/Form/Annotation/AnnotationBuilder.php diff --git a/library/Zend/Form/Annotation/Attributes.php b/library/TorrentPier/Zend/Form/Annotation/Attributes.php similarity index 100% rename from library/Zend/Form/Annotation/Attributes.php rename to library/TorrentPier/Zend/Form/Annotation/Attributes.php diff --git a/library/Zend/Form/Annotation/ComposedObject.php b/library/TorrentPier/Zend/Form/Annotation/ComposedObject.php similarity index 100% rename from library/Zend/Form/Annotation/ComposedObject.php rename to library/TorrentPier/Zend/Form/Annotation/ComposedObject.php diff --git a/library/Zend/Form/Annotation/ContinueIfEmpty.php b/library/TorrentPier/Zend/Form/Annotation/ContinueIfEmpty.php similarity index 100% rename from library/Zend/Form/Annotation/ContinueIfEmpty.php rename to library/TorrentPier/Zend/Form/Annotation/ContinueIfEmpty.php diff --git a/library/Zend/Form/Annotation/ElementAnnotationsListener.php b/library/TorrentPier/Zend/Form/Annotation/ElementAnnotationsListener.php similarity index 100% rename from library/Zend/Form/Annotation/ElementAnnotationsListener.php rename to library/TorrentPier/Zend/Form/Annotation/ElementAnnotationsListener.php diff --git a/library/Zend/Form/Annotation/ErrorMessage.php b/library/TorrentPier/Zend/Form/Annotation/ErrorMessage.php similarity index 100% rename from library/Zend/Form/Annotation/ErrorMessage.php rename to library/TorrentPier/Zend/Form/Annotation/ErrorMessage.php diff --git a/library/Zend/Form/Annotation/Exclude.php b/library/TorrentPier/Zend/Form/Annotation/Exclude.php similarity index 100% rename from library/Zend/Form/Annotation/Exclude.php rename to library/TorrentPier/Zend/Form/Annotation/Exclude.php diff --git a/library/Zend/Form/Annotation/Filter.php b/library/TorrentPier/Zend/Form/Annotation/Filter.php similarity index 100% rename from library/Zend/Form/Annotation/Filter.php rename to library/TorrentPier/Zend/Form/Annotation/Filter.php diff --git a/library/Zend/Form/Annotation/Flags.php b/library/TorrentPier/Zend/Form/Annotation/Flags.php similarity index 100% rename from library/Zend/Form/Annotation/Flags.php rename to library/TorrentPier/Zend/Form/Annotation/Flags.php diff --git a/library/Zend/Form/Annotation/FormAnnotationsListener.php b/library/TorrentPier/Zend/Form/Annotation/FormAnnotationsListener.php similarity index 100% rename from library/Zend/Form/Annotation/FormAnnotationsListener.php rename to library/TorrentPier/Zend/Form/Annotation/FormAnnotationsListener.php diff --git a/library/Zend/Form/Annotation/Hydrator.php b/library/TorrentPier/Zend/Form/Annotation/Hydrator.php similarity index 100% rename from library/Zend/Form/Annotation/Hydrator.php rename to library/TorrentPier/Zend/Form/Annotation/Hydrator.php diff --git a/library/Zend/Form/Annotation/Input.php b/library/TorrentPier/Zend/Form/Annotation/Input.php similarity index 100% rename from library/Zend/Form/Annotation/Input.php rename to library/TorrentPier/Zend/Form/Annotation/Input.php diff --git a/library/Zend/Form/Annotation/InputFilter.php b/library/TorrentPier/Zend/Form/Annotation/InputFilter.php similarity index 100% rename from library/Zend/Form/Annotation/InputFilter.php rename to library/TorrentPier/Zend/Form/Annotation/InputFilter.php diff --git a/library/Zend/Form/Annotation/Instance.php b/library/TorrentPier/Zend/Form/Annotation/Instance.php similarity index 100% rename from library/Zend/Form/Annotation/Instance.php rename to library/TorrentPier/Zend/Form/Annotation/Instance.php diff --git a/library/Zend/Form/Annotation/Name.php b/library/TorrentPier/Zend/Form/Annotation/Name.php similarity index 100% rename from library/Zend/Form/Annotation/Name.php rename to library/TorrentPier/Zend/Form/Annotation/Name.php diff --git a/library/Zend/Form/Annotation/Object.php b/library/TorrentPier/Zend/Form/Annotation/Object.php similarity index 100% rename from library/Zend/Form/Annotation/Object.php rename to library/TorrentPier/Zend/Form/Annotation/Object.php diff --git a/library/Zend/Form/Annotation/Options.php b/library/TorrentPier/Zend/Form/Annotation/Options.php similarity index 100% rename from library/Zend/Form/Annotation/Options.php rename to library/TorrentPier/Zend/Form/Annotation/Options.php diff --git a/library/Zend/Form/Annotation/Required.php b/library/TorrentPier/Zend/Form/Annotation/Required.php similarity index 100% rename from library/Zend/Form/Annotation/Required.php rename to library/TorrentPier/Zend/Form/Annotation/Required.php diff --git a/library/Zend/Form/Annotation/Type.php b/library/TorrentPier/Zend/Form/Annotation/Type.php similarity index 100% rename from library/Zend/Form/Annotation/Type.php rename to library/TorrentPier/Zend/Form/Annotation/Type.php diff --git a/library/Zend/Form/Annotation/ValidationGroup.php b/library/TorrentPier/Zend/Form/Annotation/ValidationGroup.php similarity index 100% rename from library/Zend/Form/Annotation/ValidationGroup.php rename to library/TorrentPier/Zend/Form/Annotation/ValidationGroup.php diff --git a/library/Zend/Form/Annotation/Validator.php b/library/TorrentPier/Zend/Form/Annotation/Validator.php similarity index 100% rename from library/Zend/Form/Annotation/Validator.php rename to library/TorrentPier/Zend/Form/Annotation/Validator.php diff --git a/library/Zend/Form/CONTRIBUTING.md b/library/TorrentPier/Zend/Form/CONTRIBUTING.md similarity index 100% rename from library/Zend/Form/CONTRIBUTING.md rename to library/TorrentPier/Zend/Form/CONTRIBUTING.md diff --git a/library/Zend/Form/Element.php b/library/TorrentPier/Zend/Form/Element.php similarity index 100% rename from library/Zend/Form/Element.php rename to library/TorrentPier/Zend/Form/Element.php diff --git a/library/Zend/Form/Element/Button.php b/library/TorrentPier/Zend/Form/Element/Button.php similarity index 100% rename from library/Zend/Form/Element/Button.php rename to library/TorrentPier/Zend/Form/Element/Button.php diff --git a/library/Zend/Form/Element/Captcha.php b/library/TorrentPier/Zend/Form/Element/Captcha.php similarity index 100% rename from library/Zend/Form/Element/Captcha.php rename to library/TorrentPier/Zend/Form/Element/Captcha.php diff --git a/library/Zend/Form/Element/Checkbox.php b/library/TorrentPier/Zend/Form/Element/Checkbox.php similarity index 100% rename from library/Zend/Form/Element/Checkbox.php rename to library/TorrentPier/Zend/Form/Element/Checkbox.php diff --git a/library/Zend/Form/Element/Collection.php b/library/TorrentPier/Zend/Form/Element/Collection.php similarity index 100% rename from library/Zend/Form/Element/Collection.php rename to library/TorrentPier/Zend/Form/Element/Collection.php diff --git a/library/Zend/Form/Element/Color.php b/library/TorrentPier/Zend/Form/Element/Color.php similarity index 100% rename from library/Zend/Form/Element/Color.php rename to library/TorrentPier/Zend/Form/Element/Color.php diff --git a/library/Zend/Form/Element/Csrf.php b/library/TorrentPier/Zend/Form/Element/Csrf.php similarity index 100% rename from library/Zend/Form/Element/Csrf.php rename to library/TorrentPier/Zend/Form/Element/Csrf.php diff --git a/library/Zend/Form/Element/Date.php b/library/TorrentPier/Zend/Form/Element/Date.php similarity index 100% rename from library/Zend/Form/Element/Date.php rename to library/TorrentPier/Zend/Form/Element/Date.php diff --git a/library/Zend/Form/Element/DateSelect.php b/library/TorrentPier/Zend/Form/Element/DateSelect.php similarity index 100% rename from library/Zend/Form/Element/DateSelect.php rename to library/TorrentPier/Zend/Form/Element/DateSelect.php diff --git a/library/Zend/Form/Element/DateTime.php b/library/TorrentPier/Zend/Form/Element/DateTime.php similarity index 100% rename from library/Zend/Form/Element/DateTime.php rename to library/TorrentPier/Zend/Form/Element/DateTime.php diff --git a/library/Zend/Form/Element/DateTimeLocal.php b/library/TorrentPier/Zend/Form/Element/DateTimeLocal.php similarity index 100% rename from library/Zend/Form/Element/DateTimeLocal.php rename to library/TorrentPier/Zend/Form/Element/DateTimeLocal.php diff --git a/library/Zend/Form/Element/DateTimeSelect.php b/library/TorrentPier/Zend/Form/Element/DateTimeSelect.php similarity index 100% rename from library/Zend/Form/Element/DateTimeSelect.php rename to library/TorrentPier/Zend/Form/Element/DateTimeSelect.php diff --git a/library/Zend/Form/Element/Email.php b/library/TorrentPier/Zend/Form/Element/Email.php similarity index 100% rename from library/Zend/Form/Element/Email.php rename to library/TorrentPier/Zend/Form/Element/Email.php diff --git a/library/Zend/Form/Element/File.php b/library/TorrentPier/Zend/Form/Element/File.php similarity index 100% rename from library/Zend/Form/Element/File.php rename to library/TorrentPier/Zend/Form/Element/File.php diff --git a/library/Zend/Form/Element/Hidden.php b/library/TorrentPier/Zend/Form/Element/Hidden.php similarity index 100% rename from library/Zend/Form/Element/Hidden.php rename to library/TorrentPier/Zend/Form/Element/Hidden.php diff --git a/library/Zend/Form/Element/Image.php b/library/TorrentPier/Zend/Form/Element/Image.php similarity index 100% rename from library/Zend/Form/Element/Image.php rename to library/TorrentPier/Zend/Form/Element/Image.php diff --git a/library/Zend/Form/Element/Month.php b/library/TorrentPier/Zend/Form/Element/Month.php similarity index 100% rename from library/Zend/Form/Element/Month.php rename to library/TorrentPier/Zend/Form/Element/Month.php diff --git a/library/Zend/Form/Element/MonthSelect.php b/library/TorrentPier/Zend/Form/Element/MonthSelect.php similarity index 100% rename from library/Zend/Form/Element/MonthSelect.php rename to library/TorrentPier/Zend/Form/Element/MonthSelect.php diff --git a/library/Zend/Form/Element/MultiCheckbox.php b/library/TorrentPier/Zend/Form/Element/MultiCheckbox.php similarity index 100% rename from library/Zend/Form/Element/MultiCheckbox.php rename to library/TorrentPier/Zend/Form/Element/MultiCheckbox.php diff --git a/library/Zend/Form/Element/Number.php b/library/TorrentPier/Zend/Form/Element/Number.php similarity index 100% rename from library/Zend/Form/Element/Number.php rename to library/TorrentPier/Zend/Form/Element/Number.php diff --git a/library/Zend/Form/Element/Password.php b/library/TorrentPier/Zend/Form/Element/Password.php similarity index 100% rename from library/Zend/Form/Element/Password.php rename to library/TorrentPier/Zend/Form/Element/Password.php diff --git a/library/Zend/Form/Element/Radio.php b/library/TorrentPier/Zend/Form/Element/Radio.php similarity index 100% rename from library/Zend/Form/Element/Radio.php rename to library/TorrentPier/Zend/Form/Element/Radio.php diff --git a/library/Zend/Form/Element/Range.php b/library/TorrentPier/Zend/Form/Element/Range.php similarity index 100% rename from library/Zend/Form/Element/Range.php rename to library/TorrentPier/Zend/Form/Element/Range.php diff --git a/library/Zend/Form/Element/Select.php b/library/TorrentPier/Zend/Form/Element/Select.php similarity index 100% rename from library/Zend/Form/Element/Select.php rename to library/TorrentPier/Zend/Form/Element/Select.php diff --git a/library/Zend/Form/Element/Submit.php b/library/TorrentPier/Zend/Form/Element/Submit.php similarity index 100% rename from library/Zend/Form/Element/Submit.php rename to library/TorrentPier/Zend/Form/Element/Submit.php diff --git a/library/Zend/Form/Element/Text.php b/library/TorrentPier/Zend/Form/Element/Text.php similarity index 100% rename from library/Zend/Form/Element/Text.php rename to library/TorrentPier/Zend/Form/Element/Text.php diff --git a/library/Zend/Form/Element/Textarea.php b/library/TorrentPier/Zend/Form/Element/Textarea.php similarity index 100% rename from library/Zend/Form/Element/Textarea.php rename to library/TorrentPier/Zend/Form/Element/Textarea.php diff --git a/library/Zend/Form/Element/Time.php b/library/TorrentPier/Zend/Form/Element/Time.php similarity index 100% rename from library/Zend/Form/Element/Time.php rename to library/TorrentPier/Zend/Form/Element/Time.php diff --git a/library/Zend/Form/Element/Url.php b/library/TorrentPier/Zend/Form/Element/Url.php similarity index 100% rename from library/Zend/Form/Element/Url.php rename to library/TorrentPier/Zend/Form/Element/Url.php diff --git a/library/Zend/Form/Element/Week.php b/library/TorrentPier/Zend/Form/Element/Week.php similarity index 100% rename from library/Zend/Form/Element/Week.php rename to library/TorrentPier/Zend/Form/Element/Week.php diff --git a/library/Zend/Form/ElementAttributeRemovalInterface.php b/library/TorrentPier/Zend/Form/ElementAttributeRemovalInterface.php similarity index 100% rename from library/Zend/Form/ElementAttributeRemovalInterface.php rename to library/TorrentPier/Zend/Form/ElementAttributeRemovalInterface.php diff --git a/library/Zend/Form/ElementInterface.php b/library/TorrentPier/Zend/Form/ElementInterface.php similarity index 100% rename from library/Zend/Form/ElementInterface.php rename to library/TorrentPier/Zend/Form/ElementInterface.php diff --git a/library/Zend/Form/ElementPrepareAwareInterface.php b/library/TorrentPier/Zend/Form/ElementPrepareAwareInterface.php similarity index 100% rename from library/Zend/Form/ElementPrepareAwareInterface.php rename to library/TorrentPier/Zend/Form/ElementPrepareAwareInterface.php diff --git a/library/Zend/Form/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Form/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Form/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Form/Exception/BadMethodCallException.php diff --git a/library/Zend/Form/Exception/DomainException.php b/library/TorrentPier/Zend/Form/Exception/DomainException.php similarity index 100% rename from library/Zend/Form/Exception/DomainException.php rename to library/TorrentPier/Zend/Form/Exception/DomainException.php diff --git a/library/Zend/Form/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Form/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Form/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Form/Exception/ExceptionInterface.php diff --git a/library/Zend/Form/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Form/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Form/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Form/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Form/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Form/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Form/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Form/Exception/InvalidArgumentException.php diff --git a/library/Zend/Form/Exception/InvalidElementException.php b/library/TorrentPier/Zend/Form/Exception/InvalidElementException.php similarity index 100% rename from library/Zend/Form/Exception/InvalidElementException.php rename to library/TorrentPier/Zend/Form/Exception/InvalidElementException.php diff --git a/library/Zend/Form/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Form/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Form/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Form/Exception/UnexpectedValueException.php diff --git a/library/Zend/Form/Factory.php b/library/TorrentPier/Zend/Form/Factory.php similarity index 100% rename from library/Zend/Form/Factory.php rename to library/TorrentPier/Zend/Form/Factory.php diff --git a/library/Zend/Form/Fieldset.php b/library/TorrentPier/Zend/Form/Fieldset.php similarity index 100% rename from library/Zend/Form/Fieldset.php rename to library/TorrentPier/Zend/Form/Fieldset.php diff --git a/library/Zend/Form/FieldsetInterface.php b/library/TorrentPier/Zend/Form/FieldsetInterface.php similarity index 100% rename from library/Zend/Form/FieldsetInterface.php rename to library/TorrentPier/Zend/Form/FieldsetInterface.php diff --git a/library/Zend/Form/FieldsetPrepareAwareInterface.php b/library/TorrentPier/Zend/Form/FieldsetPrepareAwareInterface.php similarity index 100% rename from library/Zend/Form/FieldsetPrepareAwareInterface.php rename to library/TorrentPier/Zend/Form/FieldsetPrepareAwareInterface.php diff --git a/library/Zend/Form/Form.php b/library/TorrentPier/Zend/Form/Form.php similarity index 100% rename from library/Zend/Form/Form.php rename to library/TorrentPier/Zend/Form/Form.php diff --git a/library/Zend/Form/FormAbstractServiceFactory.php b/library/TorrentPier/Zend/Form/FormAbstractServiceFactory.php similarity index 100% rename from library/Zend/Form/FormAbstractServiceFactory.php rename to library/TorrentPier/Zend/Form/FormAbstractServiceFactory.php diff --git a/library/Zend/Form/FormElementManager.php b/library/TorrentPier/Zend/Form/FormElementManager.php similarity index 100% rename from library/Zend/Form/FormElementManager.php rename to library/TorrentPier/Zend/Form/FormElementManager.php diff --git a/library/Zend/Form/FormFactoryAwareInterface.php b/library/TorrentPier/Zend/Form/FormFactoryAwareInterface.php similarity index 100% rename from library/Zend/Form/FormFactoryAwareInterface.php rename to library/TorrentPier/Zend/Form/FormFactoryAwareInterface.php diff --git a/library/Zend/Form/FormFactoryAwareTrait.php b/library/TorrentPier/Zend/Form/FormFactoryAwareTrait.php similarity index 100% rename from library/Zend/Form/FormFactoryAwareTrait.php rename to library/TorrentPier/Zend/Form/FormFactoryAwareTrait.php diff --git a/library/Zend/Form/FormInterface.php b/library/TorrentPier/Zend/Form/FormInterface.php similarity index 100% rename from library/Zend/Form/FormInterface.php rename to library/TorrentPier/Zend/Form/FormInterface.php diff --git a/library/Zend/Form/InputFilterProviderFieldset.php b/library/TorrentPier/Zend/Form/InputFilterProviderFieldset.php similarity index 100% rename from library/Zend/Form/InputFilterProviderFieldset.php rename to library/TorrentPier/Zend/Form/InputFilterProviderFieldset.php diff --git a/library/Zend/Form/LabelAwareInterface.php b/library/TorrentPier/Zend/Form/LabelAwareInterface.php similarity index 100% rename from library/Zend/Form/LabelAwareInterface.php rename to library/TorrentPier/Zend/Form/LabelAwareInterface.php diff --git a/library/Zend/Form/LabelAwareTrait.php b/library/TorrentPier/Zend/Form/LabelAwareTrait.php similarity index 100% rename from library/Zend/Form/LabelAwareTrait.php rename to library/TorrentPier/Zend/Form/LabelAwareTrait.php diff --git a/library/Zend/Form/README.md b/library/TorrentPier/Zend/Form/README.md similarity index 100% rename from library/Zend/Form/README.md rename to library/TorrentPier/Zend/Form/README.md diff --git a/library/Zend/Form/View/Helper/AbstractHelper.php b/library/TorrentPier/Zend/Form/View/Helper/AbstractHelper.php similarity index 100% rename from library/Zend/Form/View/Helper/AbstractHelper.php rename to library/TorrentPier/Zend/Form/View/Helper/AbstractHelper.php diff --git a/library/Zend/Form/View/Helper/Captcha/AbstractWord.php b/library/TorrentPier/Zend/Form/View/Helper/Captcha/AbstractWord.php similarity index 100% rename from library/Zend/Form/View/Helper/Captcha/AbstractWord.php rename to library/TorrentPier/Zend/Form/View/Helper/Captcha/AbstractWord.php diff --git a/library/Zend/Form/View/Helper/Captcha/Dumb.php b/library/TorrentPier/Zend/Form/View/Helper/Captcha/Dumb.php similarity index 100% rename from library/Zend/Form/View/Helper/Captcha/Dumb.php rename to library/TorrentPier/Zend/Form/View/Helper/Captcha/Dumb.php diff --git a/library/Zend/Form/View/Helper/Captcha/Figlet.php b/library/TorrentPier/Zend/Form/View/Helper/Captcha/Figlet.php similarity index 100% rename from library/Zend/Form/View/Helper/Captcha/Figlet.php rename to library/TorrentPier/Zend/Form/View/Helper/Captcha/Figlet.php diff --git a/library/Zend/Form/View/Helper/Captcha/Image.php b/library/TorrentPier/Zend/Form/View/Helper/Captcha/Image.php similarity index 100% rename from library/Zend/Form/View/Helper/Captcha/Image.php rename to library/TorrentPier/Zend/Form/View/Helper/Captcha/Image.php diff --git a/library/Zend/Form/View/Helper/Captcha/ReCaptcha.php b/library/TorrentPier/Zend/Form/View/Helper/Captcha/ReCaptcha.php similarity index 100% rename from library/Zend/Form/View/Helper/Captcha/ReCaptcha.php rename to library/TorrentPier/Zend/Form/View/Helper/Captcha/ReCaptcha.php diff --git a/library/Zend/Form/View/Helper/File/FormFileApcProgress.php b/library/TorrentPier/Zend/Form/View/Helper/File/FormFileApcProgress.php similarity index 100% rename from library/Zend/Form/View/Helper/File/FormFileApcProgress.php rename to library/TorrentPier/Zend/Form/View/Helper/File/FormFileApcProgress.php diff --git a/library/Zend/Form/View/Helper/File/FormFileSessionProgress.php b/library/TorrentPier/Zend/Form/View/Helper/File/FormFileSessionProgress.php similarity index 100% rename from library/Zend/Form/View/Helper/File/FormFileSessionProgress.php rename to library/TorrentPier/Zend/Form/View/Helper/File/FormFileSessionProgress.php diff --git a/library/Zend/Form/View/Helper/File/FormFileUploadProgress.php b/library/TorrentPier/Zend/Form/View/Helper/File/FormFileUploadProgress.php similarity index 100% rename from library/Zend/Form/View/Helper/File/FormFileUploadProgress.php rename to library/TorrentPier/Zend/Form/View/Helper/File/FormFileUploadProgress.php diff --git a/library/Zend/Form/View/Helper/Form.php b/library/TorrentPier/Zend/Form/View/Helper/Form.php similarity index 100% rename from library/Zend/Form/View/Helper/Form.php rename to library/TorrentPier/Zend/Form/View/Helper/Form.php diff --git a/library/Zend/Form/View/Helper/FormButton.php b/library/TorrentPier/Zend/Form/View/Helper/FormButton.php similarity index 100% rename from library/Zend/Form/View/Helper/FormButton.php rename to library/TorrentPier/Zend/Form/View/Helper/FormButton.php diff --git a/library/Zend/Form/View/Helper/FormCaptcha.php b/library/TorrentPier/Zend/Form/View/Helper/FormCaptcha.php similarity index 100% rename from library/Zend/Form/View/Helper/FormCaptcha.php rename to library/TorrentPier/Zend/Form/View/Helper/FormCaptcha.php diff --git a/library/Zend/Form/View/Helper/FormCheckbox.php b/library/TorrentPier/Zend/Form/View/Helper/FormCheckbox.php similarity index 100% rename from library/Zend/Form/View/Helper/FormCheckbox.php rename to library/TorrentPier/Zend/Form/View/Helper/FormCheckbox.php diff --git a/library/Zend/Form/View/Helper/FormCollection.php b/library/TorrentPier/Zend/Form/View/Helper/FormCollection.php similarity index 100% rename from library/Zend/Form/View/Helper/FormCollection.php rename to library/TorrentPier/Zend/Form/View/Helper/FormCollection.php diff --git a/library/Zend/Form/View/Helper/FormColor.php b/library/TorrentPier/Zend/Form/View/Helper/FormColor.php similarity index 100% rename from library/Zend/Form/View/Helper/FormColor.php rename to library/TorrentPier/Zend/Form/View/Helper/FormColor.php diff --git a/library/Zend/Form/View/Helper/FormDate.php b/library/TorrentPier/Zend/Form/View/Helper/FormDate.php similarity index 100% rename from library/Zend/Form/View/Helper/FormDate.php rename to library/TorrentPier/Zend/Form/View/Helper/FormDate.php diff --git a/library/Zend/Form/View/Helper/FormDateSelect.php b/library/TorrentPier/Zend/Form/View/Helper/FormDateSelect.php similarity index 100% rename from library/Zend/Form/View/Helper/FormDateSelect.php rename to library/TorrentPier/Zend/Form/View/Helper/FormDateSelect.php diff --git a/library/Zend/Form/View/Helper/FormDateTime.php b/library/TorrentPier/Zend/Form/View/Helper/FormDateTime.php similarity index 100% rename from library/Zend/Form/View/Helper/FormDateTime.php rename to library/TorrentPier/Zend/Form/View/Helper/FormDateTime.php diff --git a/library/Zend/Form/View/Helper/FormDateTimeLocal.php b/library/TorrentPier/Zend/Form/View/Helper/FormDateTimeLocal.php similarity index 100% rename from library/Zend/Form/View/Helper/FormDateTimeLocal.php rename to library/TorrentPier/Zend/Form/View/Helper/FormDateTimeLocal.php diff --git a/library/Zend/Form/View/Helper/FormDateTimeSelect.php b/library/TorrentPier/Zend/Form/View/Helper/FormDateTimeSelect.php similarity index 100% rename from library/Zend/Form/View/Helper/FormDateTimeSelect.php rename to library/TorrentPier/Zend/Form/View/Helper/FormDateTimeSelect.php diff --git a/library/Zend/Form/View/Helper/FormElement.php b/library/TorrentPier/Zend/Form/View/Helper/FormElement.php similarity index 100% rename from library/Zend/Form/View/Helper/FormElement.php rename to library/TorrentPier/Zend/Form/View/Helper/FormElement.php diff --git a/library/Zend/Form/View/Helper/FormElementErrors.php b/library/TorrentPier/Zend/Form/View/Helper/FormElementErrors.php similarity index 100% rename from library/Zend/Form/View/Helper/FormElementErrors.php rename to library/TorrentPier/Zend/Form/View/Helper/FormElementErrors.php diff --git a/library/Zend/Form/View/Helper/FormEmail.php b/library/TorrentPier/Zend/Form/View/Helper/FormEmail.php similarity index 100% rename from library/Zend/Form/View/Helper/FormEmail.php rename to library/TorrentPier/Zend/Form/View/Helper/FormEmail.php diff --git a/library/Zend/Form/View/Helper/FormFile.php b/library/TorrentPier/Zend/Form/View/Helper/FormFile.php similarity index 100% rename from library/Zend/Form/View/Helper/FormFile.php rename to library/TorrentPier/Zend/Form/View/Helper/FormFile.php diff --git a/library/Zend/Form/View/Helper/FormHidden.php b/library/TorrentPier/Zend/Form/View/Helper/FormHidden.php similarity index 100% rename from library/Zend/Form/View/Helper/FormHidden.php rename to library/TorrentPier/Zend/Form/View/Helper/FormHidden.php diff --git a/library/Zend/Form/View/Helper/FormImage.php b/library/TorrentPier/Zend/Form/View/Helper/FormImage.php similarity index 100% rename from library/Zend/Form/View/Helper/FormImage.php rename to library/TorrentPier/Zend/Form/View/Helper/FormImage.php diff --git a/library/Zend/Form/View/Helper/FormInput.php b/library/TorrentPier/Zend/Form/View/Helper/FormInput.php similarity index 100% rename from library/Zend/Form/View/Helper/FormInput.php rename to library/TorrentPier/Zend/Form/View/Helper/FormInput.php diff --git a/library/Zend/Form/View/Helper/FormLabel.php b/library/TorrentPier/Zend/Form/View/Helper/FormLabel.php similarity index 100% rename from library/Zend/Form/View/Helper/FormLabel.php rename to library/TorrentPier/Zend/Form/View/Helper/FormLabel.php diff --git a/library/Zend/Form/View/Helper/FormMonth.php b/library/TorrentPier/Zend/Form/View/Helper/FormMonth.php similarity index 100% rename from library/Zend/Form/View/Helper/FormMonth.php rename to library/TorrentPier/Zend/Form/View/Helper/FormMonth.php diff --git a/library/Zend/Form/View/Helper/FormMonthSelect.php b/library/TorrentPier/Zend/Form/View/Helper/FormMonthSelect.php similarity index 100% rename from library/Zend/Form/View/Helper/FormMonthSelect.php rename to library/TorrentPier/Zend/Form/View/Helper/FormMonthSelect.php diff --git a/library/Zend/Form/View/Helper/FormMultiCheckbox.php b/library/TorrentPier/Zend/Form/View/Helper/FormMultiCheckbox.php similarity index 100% rename from library/Zend/Form/View/Helper/FormMultiCheckbox.php rename to library/TorrentPier/Zend/Form/View/Helper/FormMultiCheckbox.php diff --git a/library/Zend/Form/View/Helper/FormNumber.php b/library/TorrentPier/Zend/Form/View/Helper/FormNumber.php similarity index 100% rename from library/Zend/Form/View/Helper/FormNumber.php rename to library/TorrentPier/Zend/Form/View/Helper/FormNumber.php diff --git a/library/Zend/Form/View/Helper/FormPassword.php b/library/TorrentPier/Zend/Form/View/Helper/FormPassword.php similarity index 100% rename from library/Zend/Form/View/Helper/FormPassword.php rename to library/TorrentPier/Zend/Form/View/Helper/FormPassword.php diff --git a/library/Zend/Form/View/Helper/FormRadio.php b/library/TorrentPier/Zend/Form/View/Helper/FormRadio.php similarity index 100% rename from library/Zend/Form/View/Helper/FormRadio.php rename to library/TorrentPier/Zend/Form/View/Helper/FormRadio.php diff --git a/library/Zend/Form/View/Helper/FormRange.php b/library/TorrentPier/Zend/Form/View/Helper/FormRange.php similarity index 100% rename from library/Zend/Form/View/Helper/FormRange.php rename to library/TorrentPier/Zend/Form/View/Helper/FormRange.php diff --git a/library/Zend/Form/View/Helper/FormReset.php b/library/TorrentPier/Zend/Form/View/Helper/FormReset.php similarity index 100% rename from library/Zend/Form/View/Helper/FormReset.php rename to library/TorrentPier/Zend/Form/View/Helper/FormReset.php diff --git a/library/Zend/Form/View/Helper/FormRow.php b/library/TorrentPier/Zend/Form/View/Helper/FormRow.php similarity index 100% rename from library/Zend/Form/View/Helper/FormRow.php rename to library/TorrentPier/Zend/Form/View/Helper/FormRow.php diff --git a/library/Zend/Form/View/Helper/FormSearch.php b/library/TorrentPier/Zend/Form/View/Helper/FormSearch.php similarity index 100% rename from library/Zend/Form/View/Helper/FormSearch.php rename to library/TorrentPier/Zend/Form/View/Helper/FormSearch.php diff --git a/library/Zend/Form/View/Helper/FormSelect.php b/library/TorrentPier/Zend/Form/View/Helper/FormSelect.php similarity index 100% rename from library/Zend/Form/View/Helper/FormSelect.php rename to library/TorrentPier/Zend/Form/View/Helper/FormSelect.php diff --git a/library/Zend/Form/View/Helper/FormSubmit.php b/library/TorrentPier/Zend/Form/View/Helper/FormSubmit.php similarity index 100% rename from library/Zend/Form/View/Helper/FormSubmit.php rename to library/TorrentPier/Zend/Form/View/Helper/FormSubmit.php diff --git a/library/Zend/Form/View/Helper/FormTel.php b/library/TorrentPier/Zend/Form/View/Helper/FormTel.php similarity index 100% rename from library/Zend/Form/View/Helper/FormTel.php rename to library/TorrentPier/Zend/Form/View/Helper/FormTel.php diff --git a/library/Zend/Form/View/Helper/FormText.php b/library/TorrentPier/Zend/Form/View/Helper/FormText.php similarity index 100% rename from library/Zend/Form/View/Helper/FormText.php rename to library/TorrentPier/Zend/Form/View/Helper/FormText.php diff --git a/library/Zend/Form/View/Helper/FormTextarea.php b/library/TorrentPier/Zend/Form/View/Helper/FormTextarea.php similarity index 100% rename from library/Zend/Form/View/Helper/FormTextarea.php rename to library/TorrentPier/Zend/Form/View/Helper/FormTextarea.php diff --git a/library/Zend/Form/View/Helper/FormTime.php b/library/TorrentPier/Zend/Form/View/Helper/FormTime.php similarity index 100% rename from library/Zend/Form/View/Helper/FormTime.php rename to library/TorrentPier/Zend/Form/View/Helper/FormTime.php diff --git a/library/Zend/Form/View/Helper/FormUrl.php b/library/TorrentPier/Zend/Form/View/Helper/FormUrl.php similarity index 100% rename from library/Zend/Form/View/Helper/FormUrl.php rename to library/TorrentPier/Zend/Form/View/Helper/FormUrl.php diff --git a/library/Zend/Form/View/Helper/FormWeek.php b/library/TorrentPier/Zend/Form/View/Helper/FormWeek.php similarity index 100% rename from library/Zend/Form/View/Helper/FormWeek.php rename to library/TorrentPier/Zend/Form/View/Helper/FormWeek.php diff --git a/library/Zend/Form/View/HelperConfig.php b/library/TorrentPier/Zend/Form/View/HelperConfig.php similarity index 100% rename from library/Zend/Form/View/HelperConfig.php rename to library/TorrentPier/Zend/Form/View/HelperConfig.php diff --git a/library/Zend/Form/composer.json b/library/TorrentPier/Zend/Form/composer.json similarity index 100% rename from library/Zend/Form/composer.json rename to library/TorrentPier/Zend/Form/composer.json diff --git a/library/Zend/Http/AbstractMessage.php b/library/TorrentPier/Zend/Http/AbstractMessage.php similarity index 100% rename from library/Zend/Http/AbstractMessage.php rename to library/TorrentPier/Zend/Http/AbstractMessage.php diff --git a/library/Zend/Http/CONTRIBUTING.md b/library/TorrentPier/Zend/Http/CONTRIBUTING.md similarity index 100% rename from library/Zend/Http/CONTRIBUTING.md rename to library/TorrentPier/Zend/Http/CONTRIBUTING.md diff --git a/library/Zend/Http/Client.php b/library/TorrentPier/Zend/Http/Client.php similarity index 100% rename from library/Zend/Http/Client.php rename to library/TorrentPier/Zend/Http/Client.php diff --git a/library/Zend/Http/Client/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Http/Client/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Http/Client/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Http/Client/Adapter/AdapterInterface.php diff --git a/library/Zend/Http/Client/Adapter/Curl.php b/library/TorrentPier/Zend/Http/Client/Adapter/Curl.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Curl.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Curl.php diff --git a/library/Zend/Http/Client/Adapter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/ExceptionInterface.php diff --git a/library/Zend/Http/Client/Adapter/Exception/InitializationException.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/InitializationException.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/InitializationException.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/InitializationException.php diff --git a/library/Zend/Http/Client/Adapter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Http/Client/Adapter/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/OutOfRangeException.php diff --git a/library/Zend/Http/Client/Adapter/Exception/RuntimeException.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/RuntimeException.php diff --git a/library/Zend/Http/Client/Adapter/Exception/TimeoutException.php b/library/TorrentPier/Zend/Http/Client/Adapter/Exception/TimeoutException.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Exception/TimeoutException.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Exception/TimeoutException.php diff --git a/library/Zend/Http/Client/Adapter/Proxy.php b/library/TorrentPier/Zend/Http/Client/Adapter/Proxy.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Proxy.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Proxy.php diff --git a/library/Zend/Http/Client/Adapter/Socket.php b/library/TorrentPier/Zend/Http/Client/Adapter/Socket.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Socket.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Socket.php diff --git a/library/Zend/Http/Client/Adapter/StreamInterface.php b/library/TorrentPier/Zend/Http/Client/Adapter/StreamInterface.php similarity index 100% rename from library/Zend/Http/Client/Adapter/StreamInterface.php rename to library/TorrentPier/Zend/Http/Client/Adapter/StreamInterface.php diff --git a/library/Zend/Http/Client/Adapter/Test.php b/library/TorrentPier/Zend/Http/Client/Adapter/Test.php similarity index 100% rename from library/Zend/Http/Client/Adapter/Test.php rename to library/TorrentPier/Zend/Http/Client/Adapter/Test.php diff --git a/library/Zend/Http/Client/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Http/Client/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Http/Client/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Http/Client/Exception/ExceptionInterface.php diff --git a/library/Zend/Http/Client/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Http/Client/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Http/Client/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Http/Client/Exception/InvalidArgumentException.php diff --git a/library/Zend/Http/Client/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Http/Client/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Http/Client/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Http/Client/Exception/OutOfRangeException.php diff --git a/library/Zend/Http/Client/Exception/RuntimeException.php b/library/TorrentPier/Zend/Http/Client/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Http/Client/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Http/Client/Exception/RuntimeException.php diff --git a/library/Zend/Http/ClientStatic.php b/library/TorrentPier/Zend/Http/ClientStatic.php similarity index 100% rename from library/Zend/Http/ClientStatic.php rename to library/TorrentPier/Zend/Http/ClientStatic.php diff --git a/library/Zend/Http/Cookies.php b/library/TorrentPier/Zend/Http/Cookies.php similarity index 100% rename from library/Zend/Http/Cookies.php rename to library/TorrentPier/Zend/Http/Cookies.php diff --git a/library/Zend/Http/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Http/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Http/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Http/Exception/ExceptionInterface.php diff --git a/library/Zend/Http/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Http/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Http/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Http/Exception/InvalidArgumentException.php diff --git a/library/Zend/Http/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/Http/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/Http/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/Http/Exception/OutOfRangeException.php diff --git a/library/Zend/Http/Exception/RuntimeException.php b/library/TorrentPier/Zend/Http/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Http/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Http/Exception/RuntimeException.php diff --git a/library/Zend/Http/Header/AbstractAccept.php b/library/TorrentPier/Zend/Http/Header/AbstractAccept.php similarity index 100% rename from library/Zend/Http/Header/AbstractAccept.php rename to library/TorrentPier/Zend/Http/Header/AbstractAccept.php diff --git a/library/Zend/Http/Header/AbstractDate.php b/library/TorrentPier/Zend/Http/Header/AbstractDate.php similarity index 100% rename from library/Zend/Http/Header/AbstractDate.php rename to library/TorrentPier/Zend/Http/Header/AbstractDate.php diff --git a/library/Zend/Http/Header/AbstractLocation.php b/library/TorrentPier/Zend/Http/Header/AbstractLocation.php similarity index 100% rename from library/Zend/Http/Header/AbstractLocation.php rename to library/TorrentPier/Zend/Http/Header/AbstractLocation.php diff --git a/library/Zend/Http/Header/Accept.php b/library/TorrentPier/Zend/Http/Header/Accept.php similarity index 100% rename from library/Zend/Http/Header/Accept.php rename to library/TorrentPier/Zend/Http/Header/Accept.php diff --git a/library/Zend/Http/Header/Accept/FieldValuePart/AbstractFieldValuePart.php b/library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/AbstractFieldValuePart.php similarity index 100% rename from library/Zend/Http/Header/Accept/FieldValuePart/AbstractFieldValuePart.php rename to library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/AbstractFieldValuePart.php diff --git a/library/Zend/Http/Header/Accept/FieldValuePart/AcceptFieldValuePart.php b/library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/AcceptFieldValuePart.php similarity index 100% rename from library/Zend/Http/Header/Accept/FieldValuePart/AcceptFieldValuePart.php rename to library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/AcceptFieldValuePart.php diff --git a/library/Zend/Http/Header/Accept/FieldValuePart/CharsetFieldValuePart.php b/library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/CharsetFieldValuePart.php similarity index 100% rename from library/Zend/Http/Header/Accept/FieldValuePart/CharsetFieldValuePart.php rename to library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/CharsetFieldValuePart.php diff --git a/library/Zend/Http/Header/Accept/FieldValuePart/EncodingFieldValuePart.php b/library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/EncodingFieldValuePart.php similarity index 100% rename from library/Zend/Http/Header/Accept/FieldValuePart/EncodingFieldValuePart.php rename to library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/EncodingFieldValuePart.php diff --git a/library/Zend/Http/Header/Accept/FieldValuePart/LanguageFieldValuePart.php b/library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/LanguageFieldValuePart.php similarity index 100% rename from library/Zend/Http/Header/Accept/FieldValuePart/LanguageFieldValuePart.php rename to library/TorrentPier/Zend/Http/Header/Accept/FieldValuePart/LanguageFieldValuePart.php diff --git a/library/Zend/Http/Header/AcceptCharset.php b/library/TorrentPier/Zend/Http/Header/AcceptCharset.php similarity index 100% rename from library/Zend/Http/Header/AcceptCharset.php rename to library/TorrentPier/Zend/Http/Header/AcceptCharset.php diff --git a/library/Zend/Http/Header/AcceptEncoding.php b/library/TorrentPier/Zend/Http/Header/AcceptEncoding.php similarity index 100% rename from library/Zend/Http/Header/AcceptEncoding.php rename to library/TorrentPier/Zend/Http/Header/AcceptEncoding.php diff --git a/library/Zend/Http/Header/AcceptLanguage.php b/library/TorrentPier/Zend/Http/Header/AcceptLanguage.php similarity index 100% rename from library/Zend/Http/Header/AcceptLanguage.php rename to library/TorrentPier/Zend/Http/Header/AcceptLanguage.php diff --git a/library/Zend/Http/Header/AcceptRanges.php b/library/TorrentPier/Zend/Http/Header/AcceptRanges.php similarity index 100% rename from library/Zend/Http/Header/AcceptRanges.php rename to library/TorrentPier/Zend/Http/Header/AcceptRanges.php diff --git a/library/Zend/Http/Header/Age.php b/library/TorrentPier/Zend/Http/Header/Age.php similarity index 100% rename from library/Zend/Http/Header/Age.php rename to library/TorrentPier/Zend/Http/Header/Age.php diff --git a/library/Zend/Http/Header/Allow.php b/library/TorrentPier/Zend/Http/Header/Allow.php similarity index 100% rename from library/Zend/Http/Header/Allow.php rename to library/TorrentPier/Zend/Http/Header/Allow.php diff --git a/library/Zend/Http/Header/AuthenticationInfo.php b/library/TorrentPier/Zend/Http/Header/AuthenticationInfo.php similarity index 100% rename from library/Zend/Http/Header/AuthenticationInfo.php rename to library/TorrentPier/Zend/Http/Header/AuthenticationInfo.php diff --git a/library/Zend/Http/Header/Authorization.php b/library/TorrentPier/Zend/Http/Header/Authorization.php similarity index 100% rename from library/Zend/Http/Header/Authorization.php rename to library/TorrentPier/Zend/Http/Header/Authorization.php diff --git a/library/Zend/Http/Header/CacheControl.php b/library/TorrentPier/Zend/Http/Header/CacheControl.php similarity index 100% rename from library/Zend/Http/Header/CacheControl.php rename to library/TorrentPier/Zend/Http/Header/CacheControl.php diff --git a/library/Zend/Http/Header/Connection.php b/library/TorrentPier/Zend/Http/Header/Connection.php similarity index 100% rename from library/Zend/Http/Header/Connection.php rename to library/TorrentPier/Zend/Http/Header/Connection.php diff --git a/library/Zend/Http/Header/ContentDisposition.php b/library/TorrentPier/Zend/Http/Header/ContentDisposition.php similarity index 100% rename from library/Zend/Http/Header/ContentDisposition.php rename to library/TorrentPier/Zend/Http/Header/ContentDisposition.php diff --git a/library/Zend/Http/Header/ContentEncoding.php b/library/TorrentPier/Zend/Http/Header/ContentEncoding.php similarity index 100% rename from library/Zend/Http/Header/ContentEncoding.php rename to library/TorrentPier/Zend/Http/Header/ContentEncoding.php diff --git a/library/Zend/Http/Header/ContentLanguage.php b/library/TorrentPier/Zend/Http/Header/ContentLanguage.php similarity index 100% rename from library/Zend/Http/Header/ContentLanguage.php rename to library/TorrentPier/Zend/Http/Header/ContentLanguage.php diff --git a/library/Zend/Http/Header/ContentLength.php b/library/TorrentPier/Zend/Http/Header/ContentLength.php similarity index 100% rename from library/Zend/Http/Header/ContentLength.php rename to library/TorrentPier/Zend/Http/Header/ContentLength.php diff --git a/library/Zend/Http/Header/ContentLocation.php b/library/TorrentPier/Zend/Http/Header/ContentLocation.php similarity index 100% rename from library/Zend/Http/Header/ContentLocation.php rename to library/TorrentPier/Zend/Http/Header/ContentLocation.php diff --git a/library/Zend/Http/Header/ContentMD5.php b/library/TorrentPier/Zend/Http/Header/ContentMD5.php similarity index 100% rename from library/Zend/Http/Header/ContentMD5.php rename to library/TorrentPier/Zend/Http/Header/ContentMD5.php diff --git a/library/Zend/Http/Header/ContentRange.php b/library/TorrentPier/Zend/Http/Header/ContentRange.php similarity index 100% rename from library/Zend/Http/Header/ContentRange.php rename to library/TorrentPier/Zend/Http/Header/ContentRange.php diff --git a/library/Zend/Http/Header/ContentSecurityPolicy.php b/library/TorrentPier/Zend/Http/Header/ContentSecurityPolicy.php similarity index 100% rename from library/Zend/Http/Header/ContentSecurityPolicy.php rename to library/TorrentPier/Zend/Http/Header/ContentSecurityPolicy.php diff --git a/library/Zend/Http/Header/ContentTransferEncoding.php b/library/TorrentPier/Zend/Http/Header/ContentTransferEncoding.php similarity index 100% rename from library/Zend/Http/Header/ContentTransferEncoding.php rename to library/TorrentPier/Zend/Http/Header/ContentTransferEncoding.php diff --git a/library/Zend/Http/Header/ContentType.php b/library/TorrentPier/Zend/Http/Header/ContentType.php similarity index 100% rename from library/Zend/Http/Header/ContentType.php rename to library/TorrentPier/Zend/Http/Header/ContentType.php diff --git a/library/Zend/Http/Header/Cookie.php b/library/TorrentPier/Zend/Http/Header/Cookie.php similarity index 100% rename from library/Zend/Http/Header/Cookie.php rename to library/TorrentPier/Zend/Http/Header/Cookie.php diff --git a/library/Zend/Http/Header/Date.php b/library/TorrentPier/Zend/Http/Header/Date.php similarity index 100% rename from library/Zend/Http/Header/Date.php rename to library/TorrentPier/Zend/Http/Header/Date.php diff --git a/library/Zend/Http/Header/Etag.php b/library/TorrentPier/Zend/Http/Header/Etag.php similarity index 100% rename from library/Zend/Http/Header/Etag.php rename to library/TorrentPier/Zend/Http/Header/Etag.php diff --git a/library/Zend/Http/Header/Exception/DomainException.php b/library/TorrentPier/Zend/Http/Header/Exception/DomainException.php similarity index 100% rename from library/Zend/Http/Header/Exception/DomainException.php rename to library/TorrentPier/Zend/Http/Header/Exception/DomainException.php diff --git a/library/Zend/Http/Header/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Http/Header/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Http/Header/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Http/Header/Exception/ExceptionInterface.php diff --git a/library/Zend/Http/Header/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Http/Header/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Http/Header/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Http/Header/Exception/InvalidArgumentException.php diff --git a/library/Zend/Http/Header/Exception/RuntimeException.php b/library/TorrentPier/Zend/Http/Header/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Http/Header/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Http/Header/Exception/RuntimeException.php diff --git a/library/Zend/Http/Header/Expect.php b/library/TorrentPier/Zend/Http/Header/Expect.php similarity index 100% rename from library/Zend/Http/Header/Expect.php rename to library/TorrentPier/Zend/Http/Header/Expect.php diff --git a/library/Zend/Http/Header/Expires.php b/library/TorrentPier/Zend/Http/Header/Expires.php similarity index 100% rename from library/Zend/Http/Header/Expires.php rename to library/TorrentPier/Zend/Http/Header/Expires.php diff --git a/library/Zend/Http/Header/From.php b/library/TorrentPier/Zend/Http/Header/From.php similarity index 100% rename from library/Zend/Http/Header/From.php rename to library/TorrentPier/Zend/Http/Header/From.php diff --git a/library/Zend/Http/Header/GenericHeader.php b/library/TorrentPier/Zend/Http/Header/GenericHeader.php similarity index 100% rename from library/Zend/Http/Header/GenericHeader.php rename to library/TorrentPier/Zend/Http/Header/GenericHeader.php diff --git a/library/Zend/Http/Header/GenericMultiHeader.php b/library/TorrentPier/Zend/Http/Header/GenericMultiHeader.php similarity index 100% rename from library/Zend/Http/Header/GenericMultiHeader.php rename to library/TorrentPier/Zend/Http/Header/GenericMultiHeader.php diff --git a/library/Zend/Http/Header/HeaderInterface.php b/library/TorrentPier/Zend/Http/Header/HeaderInterface.php similarity index 100% rename from library/Zend/Http/Header/HeaderInterface.php rename to library/TorrentPier/Zend/Http/Header/HeaderInterface.php diff --git a/library/Zend/Http/Header/Host.php b/library/TorrentPier/Zend/Http/Header/Host.php similarity index 100% rename from library/Zend/Http/Header/Host.php rename to library/TorrentPier/Zend/Http/Header/Host.php diff --git a/library/Zend/Http/Header/IfMatch.php b/library/TorrentPier/Zend/Http/Header/IfMatch.php similarity index 100% rename from library/Zend/Http/Header/IfMatch.php rename to library/TorrentPier/Zend/Http/Header/IfMatch.php diff --git a/library/Zend/Http/Header/IfModifiedSince.php b/library/TorrentPier/Zend/Http/Header/IfModifiedSince.php similarity index 100% rename from library/Zend/Http/Header/IfModifiedSince.php rename to library/TorrentPier/Zend/Http/Header/IfModifiedSince.php diff --git a/library/Zend/Http/Header/IfNoneMatch.php b/library/TorrentPier/Zend/Http/Header/IfNoneMatch.php similarity index 100% rename from library/Zend/Http/Header/IfNoneMatch.php rename to library/TorrentPier/Zend/Http/Header/IfNoneMatch.php diff --git a/library/Zend/Http/Header/IfRange.php b/library/TorrentPier/Zend/Http/Header/IfRange.php similarity index 100% rename from library/Zend/Http/Header/IfRange.php rename to library/TorrentPier/Zend/Http/Header/IfRange.php diff --git a/library/Zend/Http/Header/IfUnmodifiedSince.php b/library/TorrentPier/Zend/Http/Header/IfUnmodifiedSince.php similarity index 100% rename from library/Zend/Http/Header/IfUnmodifiedSince.php rename to library/TorrentPier/Zend/Http/Header/IfUnmodifiedSince.php diff --git a/library/Zend/Http/Header/KeepAlive.php b/library/TorrentPier/Zend/Http/Header/KeepAlive.php similarity index 100% rename from library/Zend/Http/Header/KeepAlive.php rename to library/TorrentPier/Zend/Http/Header/KeepAlive.php diff --git a/library/Zend/Http/Header/LastModified.php b/library/TorrentPier/Zend/Http/Header/LastModified.php similarity index 100% rename from library/Zend/Http/Header/LastModified.php rename to library/TorrentPier/Zend/Http/Header/LastModified.php diff --git a/library/Zend/Http/Header/Location.php b/library/TorrentPier/Zend/Http/Header/Location.php similarity index 100% rename from library/Zend/Http/Header/Location.php rename to library/TorrentPier/Zend/Http/Header/Location.php diff --git a/library/Zend/Http/Header/MaxForwards.php b/library/TorrentPier/Zend/Http/Header/MaxForwards.php similarity index 100% rename from library/Zend/Http/Header/MaxForwards.php rename to library/TorrentPier/Zend/Http/Header/MaxForwards.php diff --git a/library/Zend/Http/Header/MultipleHeaderInterface.php b/library/TorrentPier/Zend/Http/Header/MultipleHeaderInterface.php similarity index 100% rename from library/Zend/Http/Header/MultipleHeaderInterface.php rename to library/TorrentPier/Zend/Http/Header/MultipleHeaderInterface.php diff --git a/library/Zend/Http/Header/Origin.php b/library/TorrentPier/Zend/Http/Header/Origin.php similarity index 100% rename from library/Zend/Http/Header/Origin.php rename to library/TorrentPier/Zend/Http/Header/Origin.php diff --git a/library/Zend/Http/Header/Pragma.php b/library/TorrentPier/Zend/Http/Header/Pragma.php similarity index 100% rename from library/Zend/Http/Header/Pragma.php rename to library/TorrentPier/Zend/Http/Header/Pragma.php diff --git a/library/Zend/Http/Header/ProxyAuthenticate.php b/library/TorrentPier/Zend/Http/Header/ProxyAuthenticate.php similarity index 100% rename from library/Zend/Http/Header/ProxyAuthenticate.php rename to library/TorrentPier/Zend/Http/Header/ProxyAuthenticate.php diff --git a/library/Zend/Http/Header/ProxyAuthorization.php b/library/TorrentPier/Zend/Http/Header/ProxyAuthorization.php similarity index 100% rename from library/Zend/Http/Header/ProxyAuthorization.php rename to library/TorrentPier/Zend/Http/Header/ProxyAuthorization.php diff --git a/library/Zend/Http/Header/Range.php b/library/TorrentPier/Zend/Http/Header/Range.php similarity index 100% rename from library/Zend/Http/Header/Range.php rename to library/TorrentPier/Zend/Http/Header/Range.php diff --git a/library/Zend/Http/Header/Referer.php b/library/TorrentPier/Zend/Http/Header/Referer.php similarity index 100% rename from library/Zend/Http/Header/Referer.php rename to library/TorrentPier/Zend/Http/Header/Referer.php diff --git a/library/Zend/Http/Header/Refresh.php b/library/TorrentPier/Zend/Http/Header/Refresh.php similarity index 100% rename from library/Zend/Http/Header/Refresh.php rename to library/TorrentPier/Zend/Http/Header/Refresh.php diff --git a/library/Zend/Http/Header/RetryAfter.php b/library/TorrentPier/Zend/Http/Header/RetryAfter.php similarity index 100% rename from library/Zend/Http/Header/RetryAfter.php rename to library/TorrentPier/Zend/Http/Header/RetryAfter.php diff --git a/library/Zend/Http/Header/Server.php b/library/TorrentPier/Zend/Http/Header/Server.php similarity index 100% rename from library/Zend/Http/Header/Server.php rename to library/TorrentPier/Zend/Http/Header/Server.php diff --git a/library/Zend/Http/Header/SetCookie.php b/library/TorrentPier/Zend/Http/Header/SetCookie.php similarity index 100% rename from library/Zend/Http/Header/SetCookie.php rename to library/TorrentPier/Zend/Http/Header/SetCookie.php diff --git a/library/Zend/Http/Header/TE.php b/library/TorrentPier/Zend/Http/Header/TE.php similarity index 100% rename from library/Zend/Http/Header/TE.php rename to library/TorrentPier/Zend/Http/Header/TE.php diff --git a/library/Zend/Http/Header/Trailer.php b/library/TorrentPier/Zend/Http/Header/Trailer.php similarity index 100% rename from library/Zend/Http/Header/Trailer.php rename to library/TorrentPier/Zend/Http/Header/Trailer.php diff --git a/library/Zend/Http/Header/TransferEncoding.php b/library/TorrentPier/Zend/Http/Header/TransferEncoding.php similarity index 100% rename from library/Zend/Http/Header/TransferEncoding.php rename to library/TorrentPier/Zend/Http/Header/TransferEncoding.php diff --git a/library/Zend/Http/Header/Upgrade.php b/library/TorrentPier/Zend/Http/Header/Upgrade.php similarity index 100% rename from library/Zend/Http/Header/Upgrade.php rename to library/TorrentPier/Zend/Http/Header/Upgrade.php diff --git a/library/Zend/Http/Header/UserAgent.php b/library/TorrentPier/Zend/Http/Header/UserAgent.php similarity index 100% rename from library/Zend/Http/Header/UserAgent.php rename to library/TorrentPier/Zend/Http/Header/UserAgent.php diff --git a/library/Zend/Http/Header/Vary.php b/library/TorrentPier/Zend/Http/Header/Vary.php similarity index 100% rename from library/Zend/Http/Header/Vary.php rename to library/TorrentPier/Zend/Http/Header/Vary.php diff --git a/library/Zend/Http/Header/Via.php b/library/TorrentPier/Zend/Http/Header/Via.php similarity index 100% rename from library/Zend/Http/Header/Via.php rename to library/TorrentPier/Zend/Http/Header/Via.php diff --git a/library/Zend/Http/Header/WWWAuthenticate.php b/library/TorrentPier/Zend/Http/Header/WWWAuthenticate.php similarity index 100% rename from library/Zend/Http/Header/WWWAuthenticate.php rename to library/TorrentPier/Zend/Http/Header/WWWAuthenticate.php diff --git a/library/Zend/Http/Header/Warning.php b/library/TorrentPier/Zend/Http/Header/Warning.php similarity index 100% rename from library/Zend/Http/Header/Warning.php rename to library/TorrentPier/Zend/Http/Header/Warning.php diff --git a/library/Zend/Http/HeaderLoader.php b/library/TorrentPier/Zend/Http/HeaderLoader.php similarity index 100% rename from library/Zend/Http/HeaderLoader.php rename to library/TorrentPier/Zend/Http/HeaderLoader.php diff --git a/library/Zend/Http/Headers.php b/library/TorrentPier/Zend/Http/Headers.php similarity index 100% rename from library/Zend/Http/Headers.php rename to library/TorrentPier/Zend/Http/Headers.php diff --git a/library/Zend/Http/PhpEnvironment/RemoteAddress.php b/library/TorrentPier/Zend/Http/PhpEnvironment/RemoteAddress.php similarity index 100% rename from library/Zend/Http/PhpEnvironment/RemoteAddress.php rename to library/TorrentPier/Zend/Http/PhpEnvironment/RemoteAddress.php diff --git a/library/Zend/Http/PhpEnvironment/Request.php b/library/TorrentPier/Zend/Http/PhpEnvironment/Request.php similarity index 100% rename from library/Zend/Http/PhpEnvironment/Request.php rename to library/TorrentPier/Zend/Http/PhpEnvironment/Request.php diff --git a/library/Zend/Http/PhpEnvironment/Response.php b/library/TorrentPier/Zend/Http/PhpEnvironment/Response.php similarity index 100% rename from library/Zend/Http/PhpEnvironment/Response.php rename to library/TorrentPier/Zend/Http/PhpEnvironment/Response.php diff --git a/library/Zend/Http/README.md b/library/TorrentPier/Zend/Http/README.md similarity index 100% rename from library/Zend/Http/README.md rename to library/TorrentPier/Zend/Http/README.md diff --git a/library/Zend/Http/Request.php b/library/TorrentPier/Zend/Http/Request.php similarity index 100% rename from library/Zend/Http/Request.php rename to library/TorrentPier/Zend/Http/Request.php diff --git a/library/Zend/Http/Response.php b/library/TorrentPier/Zend/Http/Response.php similarity index 100% rename from library/Zend/Http/Response.php rename to library/TorrentPier/Zend/Http/Response.php diff --git a/library/Zend/Http/Response/Stream.php b/library/TorrentPier/Zend/Http/Response/Stream.php similarity index 100% rename from library/Zend/Http/Response/Stream.php rename to library/TorrentPier/Zend/Http/Response/Stream.php diff --git a/library/Zend/Http/composer.json b/library/TorrentPier/Zend/Http/composer.json similarity index 100% rename from library/Zend/Http/composer.json rename to library/TorrentPier/Zend/Http/composer.json diff --git a/library/Zend/I18n/CONTRIBUTING.md b/library/TorrentPier/Zend/I18n/CONTRIBUTING.md similarity index 100% rename from library/Zend/I18n/CONTRIBUTING.md rename to library/TorrentPier/Zend/I18n/CONTRIBUTING.md diff --git a/library/Zend/I18n/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/I18n/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/I18n/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/I18n/Exception/ExceptionInterface.php diff --git a/library/Zend/I18n/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/I18n/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/I18n/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/I18n/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/I18n/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/I18n/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/I18n/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/I18n/Exception/InvalidArgumentException.php diff --git a/library/Zend/I18n/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/I18n/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/I18n/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/I18n/Exception/OutOfBoundsException.php diff --git a/library/Zend/I18n/Exception/ParseException.php b/library/TorrentPier/Zend/I18n/Exception/ParseException.php similarity index 100% rename from library/Zend/I18n/Exception/ParseException.php rename to library/TorrentPier/Zend/I18n/Exception/ParseException.php diff --git a/library/Zend/I18n/Exception/RangeException.php b/library/TorrentPier/Zend/I18n/Exception/RangeException.php similarity index 100% rename from library/Zend/I18n/Exception/RangeException.php rename to library/TorrentPier/Zend/I18n/Exception/RangeException.php diff --git a/library/Zend/I18n/Exception/RuntimeException.php b/library/TorrentPier/Zend/I18n/Exception/RuntimeException.php similarity index 100% rename from library/Zend/I18n/Exception/RuntimeException.php rename to library/TorrentPier/Zend/I18n/Exception/RuntimeException.php diff --git a/library/Zend/I18n/Filter/AbstractLocale.php b/library/TorrentPier/Zend/I18n/Filter/AbstractLocale.php similarity index 100% rename from library/Zend/I18n/Filter/AbstractLocale.php rename to library/TorrentPier/Zend/I18n/Filter/AbstractLocale.php diff --git a/library/Zend/I18n/Filter/Alnum.php b/library/TorrentPier/Zend/I18n/Filter/Alnum.php similarity index 100% rename from library/Zend/I18n/Filter/Alnum.php rename to library/TorrentPier/Zend/I18n/Filter/Alnum.php diff --git a/library/Zend/I18n/Filter/Alpha.php b/library/TorrentPier/Zend/I18n/Filter/Alpha.php similarity index 100% rename from library/Zend/I18n/Filter/Alpha.php rename to library/TorrentPier/Zend/I18n/Filter/Alpha.php diff --git a/library/Zend/I18n/Filter/NumberFormat.php b/library/TorrentPier/Zend/I18n/Filter/NumberFormat.php similarity index 100% rename from library/Zend/I18n/Filter/NumberFormat.php rename to library/TorrentPier/Zend/I18n/Filter/NumberFormat.php diff --git a/library/Zend/I18n/Filter/NumberParse.php b/library/TorrentPier/Zend/I18n/Filter/NumberParse.php similarity index 100% rename from library/Zend/I18n/Filter/NumberParse.php rename to library/TorrentPier/Zend/I18n/Filter/NumberParse.php diff --git a/library/Zend/I18n/README.md b/library/TorrentPier/Zend/I18n/README.md similarity index 100% rename from library/Zend/I18n/README.md rename to library/TorrentPier/Zend/I18n/README.md diff --git a/library/Zend/I18n/Translator/Loader/AbstractFileLoader.php b/library/TorrentPier/Zend/I18n/Translator/Loader/AbstractFileLoader.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/AbstractFileLoader.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/AbstractFileLoader.php diff --git a/library/Zend/I18n/Translator/Loader/FileLoaderInterface.php b/library/TorrentPier/Zend/I18n/Translator/Loader/FileLoaderInterface.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/FileLoaderInterface.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/FileLoaderInterface.php diff --git a/library/Zend/I18n/Translator/Loader/Gettext.php b/library/TorrentPier/Zend/I18n/Translator/Loader/Gettext.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/Gettext.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/Gettext.php diff --git a/library/Zend/I18n/Translator/Loader/Ini.php b/library/TorrentPier/Zend/I18n/Translator/Loader/Ini.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/Ini.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/Ini.php diff --git a/library/Zend/I18n/Translator/Loader/PhpArray.php b/library/TorrentPier/Zend/I18n/Translator/Loader/PhpArray.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/PhpArray.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/PhpArray.php diff --git a/library/Zend/I18n/Translator/Loader/PhpMemoryArray.php b/library/TorrentPier/Zend/I18n/Translator/Loader/PhpMemoryArray.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/PhpMemoryArray.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/PhpMemoryArray.php diff --git a/library/Zend/I18n/Translator/Loader/RemoteLoaderInterface.php b/library/TorrentPier/Zend/I18n/Translator/Loader/RemoteLoaderInterface.php similarity index 100% rename from library/Zend/I18n/Translator/Loader/RemoteLoaderInterface.php rename to library/TorrentPier/Zend/I18n/Translator/Loader/RemoteLoaderInterface.php diff --git a/library/Zend/I18n/Translator/LoaderPluginManager.php b/library/TorrentPier/Zend/I18n/Translator/LoaderPluginManager.php similarity index 100% rename from library/Zend/I18n/Translator/LoaderPluginManager.php rename to library/TorrentPier/Zend/I18n/Translator/LoaderPluginManager.php diff --git a/library/Zend/I18n/Translator/Plural/Parser.php b/library/TorrentPier/Zend/I18n/Translator/Plural/Parser.php similarity index 100% rename from library/Zend/I18n/Translator/Plural/Parser.php rename to library/TorrentPier/Zend/I18n/Translator/Plural/Parser.php diff --git a/library/Zend/I18n/Translator/Plural/Rule.php b/library/TorrentPier/Zend/I18n/Translator/Plural/Rule.php similarity index 100% rename from library/Zend/I18n/Translator/Plural/Rule.php rename to library/TorrentPier/Zend/I18n/Translator/Plural/Rule.php diff --git a/library/Zend/I18n/Translator/Plural/Symbol.php b/library/TorrentPier/Zend/I18n/Translator/Plural/Symbol.php similarity index 100% rename from library/Zend/I18n/Translator/Plural/Symbol.php rename to library/TorrentPier/Zend/I18n/Translator/Plural/Symbol.php diff --git a/library/Zend/I18n/Translator/TextDomain.php b/library/TorrentPier/Zend/I18n/Translator/TextDomain.php similarity index 100% rename from library/Zend/I18n/Translator/TextDomain.php rename to library/TorrentPier/Zend/I18n/Translator/TextDomain.php diff --git a/library/Zend/I18n/Translator/Translator.php b/library/TorrentPier/Zend/I18n/Translator/Translator.php similarity index 100% rename from library/Zend/I18n/Translator/Translator.php rename to library/TorrentPier/Zend/I18n/Translator/Translator.php diff --git a/library/Zend/I18n/Translator/TranslatorAwareInterface.php b/library/TorrentPier/Zend/I18n/Translator/TranslatorAwareInterface.php similarity index 100% rename from library/Zend/I18n/Translator/TranslatorAwareInterface.php rename to library/TorrentPier/Zend/I18n/Translator/TranslatorAwareInterface.php diff --git a/library/Zend/I18n/Translator/TranslatorAwareTrait.php b/library/TorrentPier/Zend/I18n/Translator/TranslatorAwareTrait.php similarity index 100% rename from library/Zend/I18n/Translator/TranslatorAwareTrait.php rename to library/TorrentPier/Zend/I18n/Translator/TranslatorAwareTrait.php diff --git a/library/Zend/I18n/Translator/TranslatorInterface.php b/library/TorrentPier/Zend/I18n/Translator/TranslatorInterface.php similarity index 100% rename from library/Zend/I18n/Translator/TranslatorInterface.php rename to library/TorrentPier/Zend/I18n/Translator/TranslatorInterface.php diff --git a/library/Zend/I18n/Translator/TranslatorServiceFactory.php b/library/TorrentPier/Zend/I18n/Translator/TranslatorServiceFactory.php similarity index 100% rename from library/Zend/I18n/Translator/TranslatorServiceFactory.php rename to library/TorrentPier/Zend/I18n/Translator/TranslatorServiceFactory.php diff --git a/library/Zend/I18n/Validator/Alnum.php b/library/TorrentPier/Zend/I18n/Validator/Alnum.php similarity index 100% rename from library/Zend/I18n/Validator/Alnum.php rename to library/TorrentPier/Zend/I18n/Validator/Alnum.php diff --git a/library/Zend/I18n/Validator/Alpha.php b/library/TorrentPier/Zend/I18n/Validator/Alpha.php similarity index 100% rename from library/Zend/I18n/Validator/Alpha.php rename to library/TorrentPier/Zend/I18n/Validator/Alpha.php diff --git a/library/Zend/I18n/Validator/DateTime.php b/library/TorrentPier/Zend/I18n/Validator/DateTime.php similarity index 100% rename from library/Zend/I18n/Validator/DateTime.php rename to library/TorrentPier/Zend/I18n/Validator/DateTime.php diff --git a/library/Zend/I18n/Validator/Float.php b/library/TorrentPier/Zend/I18n/Validator/Float.php similarity index 100% rename from library/Zend/I18n/Validator/Float.php rename to library/TorrentPier/Zend/I18n/Validator/Float.php diff --git a/library/Zend/I18n/Validator/Int.php b/library/TorrentPier/Zend/I18n/Validator/Int.php similarity index 100% rename from library/Zend/I18n/Validator/Int.php rename to library/TorrentPier/Zend/I18n/Validator/Int.php diff --git a/library/Zend/I18n/Validator/IsFloat.php b/library/TorrentPier/Zend/I18n/Validator/IsFloat.php similarity index 100% rename from library/Zend/I18n/Validator/IsFloat.php rename to library/TorrentPier/Zend/I18n/Validator/IsFloat.php diff --git a/library/Zend/I18n/Validator/IsInt.php b/library/TorrentPier/Zend/I18n/Validator/IsInt.php similarity index 100% rename from library/Zend/I18n/Validator/IsInt.php rename to library/TorrentPier/Zend/I18n/Validator/IsInt.php diff --git a/library/Zend/I18n/Validator/PhoneNumber.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AX.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AX.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AX.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AX.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/AZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/AZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/AZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BB.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BB.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BB.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BB.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BJ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BJ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BJ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BJ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BQ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BQ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BQ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BQ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/BZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/BZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/BZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CV.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CV.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CV.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CV.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CX.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CX.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CX.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CX.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/CZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/CZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/CZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DJ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DJ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DJ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DJ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/DZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/DZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/DZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/EC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/EC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/EE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/EE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/EG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/EG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/EH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/EH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/EH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ER.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ER.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ER.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ER.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ES.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ES.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ES.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ES.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ET.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ET.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ET.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ET.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FJ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FJ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FJ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FJ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/FR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/FR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/FR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GB.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GB.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GB.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GB.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GP.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GP.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GP.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GP.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GQ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GQ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GQ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GQ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/GY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/GY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/GY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/HK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/HK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/HN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/HN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/HR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/HR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/HT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/HT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/HU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/HU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/HU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ID.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ID.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ID.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ID.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IQ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IQ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IQ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IQ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/IT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/IT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/IT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/JE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/JE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/JM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/JM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/JO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/JO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/JP.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JP.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/JP.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/JP.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KP.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KP.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KP.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KP.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/KZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/KZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/KZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LB.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LB.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LB.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LB.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LV.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LV.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LV.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LV.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/LY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/LY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/LY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ME.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ME.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ME.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ME.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ML.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ML.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ML.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ML.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MP.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MP.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MP.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MP.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MQ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MQ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MQ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MQ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MV.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MV.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MV.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MV.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MX.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MX.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MX.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MX.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/MZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/MZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/MZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NP.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NP.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NP.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NP.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/NZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/NZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/NZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/OM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/OM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/OM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/OM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/PY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/PY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/PY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/QA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/QA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/QA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/QA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/RE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/RE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/RO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/RO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/RS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/RS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/RU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/RU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/RW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/RW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/RW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SB.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SB.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SB.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SB.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SJ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SJ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SJ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SJ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ST.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ST.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ST.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ST.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SV.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SV.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SV.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SV.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SX.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SX.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SX.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SX.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/SZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/SZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/SZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TD.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TD.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TD.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TD.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TH.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TH.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TH.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TH.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TJ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TJ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TJ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TJ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TL.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TL.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TL.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TL.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TO.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TO.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TO.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TO.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TR.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TR.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TR.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TR.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TV.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TV.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TV.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TV.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TW.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/TZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/TZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/TZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/UA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/UA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/UG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/UG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/US.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/US.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/US.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/US.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/UY.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UY.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/UY.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UY.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/UZ.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UZ.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/UZ.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/UZ.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VC.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VC.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VC.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VC.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VG.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VG.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VG.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VG.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VI.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VI.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VI.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VI.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VN.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VN.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VN.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VN.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/VU.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VU.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/VU.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/VU.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/WF.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/WF.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/WF.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/WF.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/WS.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/WS.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/WS.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/WS.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/XK.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/XK.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/XK.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/XK.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/YE.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/YE.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/YE.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/YE.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/YT.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/YT.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/YT.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/YT.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ZA.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZA.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ZA.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZA.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ZM.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZM.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ZM.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZM.php diff --git a/library/Zend/I18n/Validator/PhoneNumber/ZW.php b/library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZW.php similarity index 100% rename from library/Zend/I18n/Validator/PhoneNumber/ZW.php rename to library/TorrentPier/Zend/I18n/Validator/PhoneNumber/ZW.php diff --git a/library/Zend/I18n/Validator/PostCode.php b/library/TorrentPier/Zend/I18n/Validator/PostCode.php similarity index 100% rename from library/Zend/I18n/Validator/PostCode.php rename to library/TorrentPier/Zend/I18n/Validator/PostCode.php diff --git a/library/Zend/I18n/View/Helper/AbstractTranslatorHelper.php b/library/TorrentPier/Zend/I18n/View/Helper/AbstractTranslatorHelper.php similarity index 100% rename from library/Zend/I18n/View/Helper/AbstractTranslatorHelper.php rename to library/TorrentPier/Zend/I18n/View/Helper/AbstractTranslatorHelper.php diff --git a/library/Zend/I18n/View/Helper/CurrencyFormat.php b/library/TorrentPier/Zend/I18n/View/Helper/CurrencyFormat.php similarity index 100% rename from library/Zend/I18n/View/Helper/CurrencyFormat.php rename to library/TorrentPier/Zend/I18n/View/Helper/CurrencyFormat.php diff --git a/library/Zend/I18n/View/Helper/DateFormat.php b/library/TorrentPier/Zend/I18n/View/Helper/DateFormat.php similarity index 100% rename from library/Zend/I18n/View/Helper/DateFormat.php rename to library/TorrentPier/Zend/I18n/View/Helper/DateFormat.php diff --git a/library/Zend/I18n/View/Helper/NumberFormat.php b/library/TorrentPier/Zend/I18n/View/Helper/NumberFormat.php similarity index 100% rename from library/Zend/I18n/View/Helper/NumberFormat.php rename to library/TorrentPier/Zend/I18n/View/Helper/NumberFormat.php diff --git a/library/Zend/I18n/View/Helper/Plural.php b/library/TorrentPier/Zend/I18n/View/Helper/Plural.php similarity index 100% rename from library/Zend/I18n/View/Helper/Plural.php rename to library/TorrentPier/Zend/I18n/View/Helper/Plural.php diff --git a/library/Zend/I18n/View/Helper/Translate.php b/library/TorrentPier/Zend/I18n/View/Helper/Translate.php similarity index 100% rename from library/Zend/I18n/View/Helper/Translate.php rename to library/TorrentPier/Zend/I18n/View/Helper/Translate.php diff --git a/library/Zend/I18n/View/Helper/TranslatePlural.php b/library/TorrentPier/Zend/I18n/View/Helper/TranslatePlural.php similarity index 100% rename from library/Zend/I18n/View/Helper/TranslatePlural.php rename to library/TorrentPier/Zend/I18n/View/Helper/TranslatePlural.php diff --git a/library/Zend/I18n/View/HelperConfig.php b/library/TorrentPier/Zend/I18n/View/HelperConfig.php similarity index 100% rename from library/Zend/I18n/View/HelperConfig.php rename to library/TorrentPier/Zend/I18n/View/HelperConfig.php diff --git a/library/Zend/I18n/composer.json b/library/TorrentPier/Zend/I18n/composer.json similarity index 100% rename from library/Zend/I18n/composer.json rename to library/TorrentPier/Zend/I18n/composer.json diff --git a/library/Zend/InputFilter/ArrayInput.php b/library/TorrentPier/Zend/InputFilter/ArrayInput.php similarity index 100% rename from library/Zend/InputFilter/ArrayInput.php rename to library/TorrentPier/Zend/InputFilter/ArrayInput.php diff --git a/library/Zend/InputFilter/BaseInputFilter.php b/library/TorrentPier/Zend/InputFilter/BaseInputFilter.php similarity index 100% rename from library/Zend/InputFilter/BaseInputFilter.php rename to library/TorrentPier/Zend/InputFilter/BaseInputFilter.php diff --git a/library/Zend/InputFilter/CONTRIBUTING.md b/library/TorrentPier/Zend/InputFilter/CONTRIBUTING.md similarity index 100% rename from library/Zend/InputFilter/CONTRIBUTING.md rename to library/TorrentPier/Zend/InputFilter/CONTRIBUTING.md diff --git a/library/Zend/InputFilter/CollectionInputFilter.php b/library/TorrentPier/Zend/InputFilter/CollectionInputFilter.php similarity index 100% rename from library/Zend/InputFilter/CollectionInputFilter.php rename to library/TorrentPier/Zend/InputFilter/CollectionInputFilter.php diff --git a/library/Zend/InputFilter/EmptyContextInterface.php b/library/TorrentPier/Zend/InputFilter/EmptyContextInterface.php similarity index 100% rename from library/Zend/InputFilter/EmptyContextInterface.php rename to library/TorrentPier/Zend/InputFilter/EmptyContextInterface.php diff --git a/library/Zend/InputFilter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/InputFilter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/InputFilter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/InputFilter/Exception/ExceptionInterface.php diff --git a/library/Zend/InputFilter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/InputFilter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/InputFilter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/InputFilter/Exception/InvalidArgumentException.php diff --git a/library/Zend/InputFilter/Exception/RuntimeException.php b/library/TorrentPier/Zend/InputFilter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/InputFilter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/InputFilter/Exception/RuntimeException.php diff --git a/library/Zend/InputFilter/Factory.php b/library/TorrentPier/Zend/InputFilter/Factory.php similarity index 100% rename from library/Zend/InputFilter/Factory.php rename to library/TorrentPier/Zend/InputFilter/Factory.php diff --git a/library/Zend/InputFilter/FileInput.php b/library/TorrentPier/Zend/InputFilter/FileInput.php similarity index 100% rename from library/Zend/InputFilter/FileInput.php rename to library/TorrentPier/Zend/InputFilter/FileInput.php diff --git a/library/Zend/InputFilter/Input.php b/library/TorrentPier/Zend/InputFilter/Input.php similarity index 100% rename from library/Zend/InputFilter/Input.php rename to library/TorrentPier/Zend/InputFilter/Input.php diff --git a/library/Zend/InputFilter/InputFilter.php b/library/TorrentPier/Zend/InputFilter/InputFilter.php similarity index 100% rename from library/Zend/InputFilter/InputFilter.php rename to library/TorrentPier/Zend/InputFilter/InputFilter.php diff --git a/library/Zend/InputFilter/InputFilterAbstractServiceFactory.php b/library/TorrentPier/Zend/InputFilter/InputFilterAbstractServiceFactory.php similarity index 100% rename from library/Zend/InputFilter/InputFilterAbstractServiceFactory.php rename to library/TorrentPier/Zend/InputFilter/InputFilterAbstractServiceFactory.php diff --git a/library/Zend/InputFilter/InputFilterAwareInterface.php b/library/TorrentPier/Zend/InputFilter/InputFilterAwareInterface.php similarity index 100% rename from library/Zend/InputFilter/InputFilterAwareInterface.php rename to library/TorrentPier/Zend/InputFilter/InputFilterAwareInterface.php diff --git a/library/Zend/InputFilter/InputFilterAwareTrait.php b/library/TorrentPier/Zend/InputFilter/InputFilterAwareTrait.php similarity index 100% rename from library/Zend/InputFilter/InputFilterAwareTrait.php rename to library/TorrentPier/Zend/InputFilter/InputFilterAwareTrait.php diff --git a/library/Zend/InputFilter/InputFilterInterface.php b/library/TorrentPier/Zend/InputFilter/InputFilterInterface.php similarity index 100% rename from library/Zend/InputFilter/InputFilterInterface.php rename to library/TorrentPier/Zend/InputFilter/InputFilterInterface.php diff --git a/library/Zend/InputFilter/InputFilterPluginManager.php b/library/TorrentPier/Zend/InputFilter/InputFilterPluginManager.php similarity index 100% rename from library/Zend/InputFilter/InputFilterPluginManager.php rename to library/TorrentPier/Zend/InputFilter/InputFilterPluginManager.php diff --git a/library/Zend/InputFilter/InputFilterProviderInterface.php b/library/TorrentPier/Zend/InputFilter/InputFilterProviderInterface.php similarity index 100% rename from library/Zend/InputFilter/InputFilterProviderInterface.php rename to library/TorrentPier/Zend/InputFilter/InputFilterProviderInterface.php diff --git a/library/Zend/InputFilter/InputInterface.php b/library/TorrentPier/Zend/InputFilter/InputInterface.php similarity index 100% rename from library/Zend/InputFilter/InputInterface.php rename to library/TorrentPier/Zend/InputFilter/InputInterface.php diff --git a/library/Zend/InputFilter/InputProviderInterface.php b/library/TorrentPier/Zend/InputFilter/InputProviderInterface.php similarity index 100% rename from library/Zend/InputFilter/InputProviderInterface.php rename to library/TorrentPier/Zend/InputFilter/InputProviderInterface.php diff --git a/library/Zend/InputFilter/README.md b/library/TorrentPier/Zend/InputFilter/README.md similarity index 100% rename from library/Zend/InputFilter/README.md rename to library/TorrentPier/Zend/InputFilter/README.md diff --git a/library/Zend/InputFilter/ReplaceableInputInterface.php b/library/TorrentPier/Zend/InputFilter/ReplaceableInputInterface.php similarity index 100% rename from library/Zend/InputFilter/ReplaceableInputInterface.php rename to library/TorrentPier/Zend/InputFilter/ReplaceableInputInterface.php diff --git a/library/Zend/InputFilter/UnknownInputsCapableInterface.php b/library/TorrentPier/Zend/InputFilter/UnknownInputsCapableInterface.php similarity index 100% rename from library/Zend/InputFilter/UnknownInputsCapableInterface.php rename to library/TorrentPier/Zend/InputFilter/UnknownInputsCapableInterface.php diff --git a/library/Zend/InputFilter/composer.json b/library/TorrentPier/Zend/InputFilter/composer.json similarity index 100% rename from library/Zend/InputFilter/composer.json rename to library/TorrentPier/Zend/InputFilter/composer.json diff --git a/library/Zend/Json/CONTRIBUTING.md b/library/TorrentPier/Zend/Json/CONTRIBUTING.md similarity index 100% rename from library/Zend/Json/CONTRIBUTING.md rename to library/TorrentPier/Zend/Json/CONTRIBUTING.md diff --git a/library/Zend/Json/Decoder.php b/library/TorrentPier/Zend/Json/Decoder.php similarity index 100% rename from library/Zend/Json/Decoder.php rename to library/TorrentPier/Zend/Json/Decoder.php diff --git a/library/Zend/Json/Encoder.php b/library/TorrentPier/Zend/Json/Encoder.php similarity index 100% rename from library/Zend/Json/Encoder.php rename to library/TorrentPier/Zend/Json/Encoder.php diff --git a/library/Zend/Json/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Json/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Json/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Json/Exception/BadMethodCallException.php diff --git a/library/Zend/Json/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Json/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Json/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Json/Exception/ExceptionInterface.php diff --git a/library/Zend/Json/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Json/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Json/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Json/Exception/InvalidArgumentException.php diff --git a/library/Zend/Json/Exception/RecursionException.php b/library/TorrentPier/Zend/Json/Exception/RecursionException.php similarity index 100% rename from library/Zend/Json/Exception/RecursionException.php rename to library/TorrentPier/Zend/Json/Exception/RecursionException.php diff --git a/library/Zend/Json/Exception/RuntimeException.php b/library/TorrentPier/Zend/Json/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Json/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Json/Exception/RuntimeException.php diff --git a/library/Zend/Json/Expr.php b/library/TorrentPier/Zend/Json/Expr.php similarity index 100% rename from library/Zend/Json/Expr.php rename to library/TorrentPier/Zend/Json/Expr.php diff --git a/library/Zend/Json/Json.php b/library/TorrentPier/Zend/Json/Json.php similarity index 100% rename from library/Zend/Json/Json.php rename to library/TorrentPier/Zend/Json/Json.php diff --git a/library/Zend/Json/README.md b/library/TorrentPier/Zend/Json/README.md similarity index 100% rename from library/Zend/Json/README.md rename to library/TorrentPier/Zend/Json/README.md diff --git a/library/Zend/Json/Server/Cache.php b/library/TorrentPier/Zend/Json/Server/Cache.php similarity index 100% rename from library/Zend/Json/Server/Cache.php rename to library/TorrentPier/Zend/Json/Server/Cache.php diff --git a/library/Zend/Json/Server/Client.php b/library/TorrentPier/Zend/Json/Server/Client.php similarity index 100% rename from library/Zend/Json/Server/Client.php rename to library/TorrentPier/Zend/Json/Server/Client.php diff --git a/library/Zend/Json/Server/Error.php b/library/TorrentPier/Zend/Json/Server/Error.php similarity index 100% rename from library/Zend/Json/Server/Error.php rename to library/TorrentPier/Zend/Json/Server/Error.php diff --git a/library/Zend/Json/Server/Exception/ErrorException.php b/library/TorrentPier/Zend/Json/Server/Exception/ErrorException.php similarity index 100% rename from library/Zend/Json/Server/Exception/ErrorException.php rename to library/TorrentPier/Zend/Json/Server/Exception/ErrorException.php diff --git a/library/Zend/Json/Server/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Json/Server/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Json/Server/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Json/Server/Exception/ExceptionInterface.php diff --git a/library/Zend/Json/Server/Exception/HttpException.php b/library/TorrentPier/Zend/Json/Server/Exception/HttpException.php similarity index 100% rename from library/Zend/Json/Server/Exception/HttpException.php rename to library/TorrentPier/Zend/Json/Server/Exception/HttpException.php diff --git a/library/Zend/Json/Server/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Json/Server/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Json/Server/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Json/Server/Exception/InvalidArgumentException.php diff --git a/library/Zend/Json/Server/Exception/RuntimeException.php b/library/TorrentPier/Zend/Json/Server/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Json/Server/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Json/Server/Exception/RuntimeException.php diff --git a/library/Zend/Json/Server/Request.php b/library/TorrentPier/Zend/Json/Server/Request.php similarity index 100% rename from library/Zend/Json/Server/Request.php rename to library/TorrentPier/Zend/Json/Server/Request.php diff --git a/library/Zend/Json/Server/Request/Http.php b/library/TorrentPier/Zend/Json/Server/Request/Http.php similarity index 100% rename from library/Zend/Json/Server/Request/Http.php rename to library/TorrentPier/Zend/Json/Server/Request/Http.php diff --git a/library/Zend/Json/Server/Response.php b/library/TorrentPier/Zend/Json/Server/Response.php similarity index 100% rename from library/Zend/Json/Server/Response.php rename to library/TorrentPier/Zend/Json/Server/Response.php diff --git a/library/Zend/Json/Server/Response/Http.php b/library/TorrentPier/Zend/Json/Server/Response/Http.php similarity index 100% rename from library/Zend/Json/Server/Response/Http.php rename to library/TorrentPier/Zend/Json/Server/Response/Http.php diff --git a/library/Zend/Json/Server/Server.php b/library/TorrentPier/Zend/Json/Server/Server.php similarity index 100% rename from library/Zend/Json/Server/Server.php rename to library/TorrentPier/Zend/Json/Server/Server.php diff --git a/library/Zend/Json/Server/Smd.php b/library/TorrentPier/Zend/Json/Server/Smd.php similarity index 100% rename from library/Zend/Json/Server/Smd.php rename to library/TorrentPier/Zend/Json/Server/Smd.php diff --git a/library/Zend/Json/Server/Smd/Service.php b/library/TorrentPier/Zend/Json/Server/Smd/Service.php similarity index 100% rename from library/Zend/Json/Server/Smd/Service.php rename to library/TorrentPier/Zend/Json/Server/Smd/Service.php diff --git a/library/Zend/Json/composer.json b/library/TorrentPier/Zend/Json/composer.json similarity index 100% rename from library/Zend/Json/composer.json rename to library/TorrentPier/Zend/Json/composer.json diff --git a/library/Zend/Ldap/Attribute.php b/library/TorrentPier/Zend/Ldap/Attribute.php similarity index 100% rename from library/Zend/Ldap/Attribute.php rename to library/TorrentPier/Zend/Ldap/Attribute.php diff --git a/library/Zend/Ldap/CONTRIBUTING.md b/library/TorrentPier/Zend/Ldap/CONTRIBUTING.md similarity index 100% rename from library/Zend/Ldap/CONTRIBUTING.md rename to library/TorrentPier/Zend/Ldap/CONTRIBUTING.md diff --git a/library/Zend/Ldap/Collection.php b/library/TorrentPier/Zend/Ldap/Collection.php similarity index 100% rename from library/Zend/Ldap/Collection.php rename to library/TorrentPier/Zend/Ldap/Collection.php diff --git a/library/Zend/Ldap/Collection/DefaultIterator.php b/library/TorrentPier/Zend/Ldap/Collection/DefaultIterator.php similarity index 100% rename from library/Zend/Ldap/Collection/DefaultIterator.php rename to library/TorrentPier/Zend/Ldap/Collection/DefaultIterator.php diff --git a/library/Zend/Ldap/Converter/Converter.php b/library/TorrentPier/Zend/Ldap/Converter/Converter.php similarity index 100% rename from library/Zend/Ldap/Converter/Converter.php rename to library/TorrentPier/Zend/Ldap/Converter/Converter.php diff --git a/library/Zend/Ldap/Converter/Exception/ConverterException.php b/library/TorrentPier/Zend/Ldap/Converter/Exception/ConverterException.php similarity index 100% rename from library/Zend/Ldap/Converter/Exception/ConverterException.php rename to library/TorrentPier/Zend/Ldap/Converter/Exception/ConverterException.php diff --git a/library/Zend/Ldap/Converter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Ldap/Converter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Ldap/Converter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Ldap/Converter/Exception/ExceptionInterface.php diff --git a/library/Zend/Ldap/Converter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Ldap/Converter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Ldap/Converter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Ldap/Converter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Ldap/Converter/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Ldap/Converter/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Ldap/Converter/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Ldap/Converter/Exception/UnexpectedValueException.php diff --git a/library/Zend/Ldap/Dn.php b/library/TorrentPier/Zend/Ldap/Dn.php similarity index 100% rename from library/Zend/Ldap/Dn.php rename to library/TorrentPier/Zend/Ldap/Dn.php diff --git a/library/Zend/Ldap/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Ldap/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Ldap/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Ldap/Exception/BadMethodCallException.php diff --git a/library/Zend/Ldap/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Ldap/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Ldap/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Ldap/Exception/ExceptionInterface.php diff --git a/library/Zend/Ldap/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Ldap/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Ldap/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Ldap/Exception/InvalidArgumentException.php diff --git a/library/Zend/Ldap/Exception/LdapException.php b/library/TorrentPier/Zend/Ldap/Exception/LdapException.php similarity index 100% rename from library/Zend/Ldap/Exception/LdapException.php rename to library/TorrentPier/Zend/Ldap/Exception/LdapException.php diff --git a/library/Zend/Ldap/Filter.php b/library/TorrentPier/Zend/Ldap/Filter.php similarity index 100% rename from library/Zend/Ldap/Filter.php rename to library/TorrentPier/Zend/Ldap/Filter.php diff --git a/library/Zend/Ldap/Filter/AbstractFilter.php b/library/TorrentPier/Zend/Ldap/Filter/AbstractFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/AbstractFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/AbstractFilter.php diff --git a/library/Zend/Ldap/Filter/AbstractLogicalFilter.php b/library/TorrentPier/Zend/Ldap/Filter/AbstractLogicalFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/AbstractLogicalFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/AbstractLogicalFilter.php diff --git a/library/Zend/Ldap/Filter/AndFilter.php b/library/TorrentPier/Zend/Ldap/Filter/AndFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/AndFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/AndFilter.php diff --git a/library/Zend/Ldap/Filter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Ldap/Filter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Ldap/Filter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Ldap/Filter/Exception/ExceptionInterface.php diff --git a/library/Zend/Ldap/Filter/Exception/FilterException.php b/library/TorrentPier/Zend/Ldap/Filter/Exception/FilterException.php similarity index 100% rename from library/Zend/Ldap/Filter/Exception/FilterException.php rename to library/TorrentPier/Zend/Ldap/Filter/Exception/FilterException.php diff --git a/library/Zend/Ldap/Filter/MaskFilter.php b/library/TorrentPier/Zend/Ldap/Filter/MaskFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/MaskFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/MaskFilter.php diff --git a/library/Zend/Ldap/Filter/NotFilter.php b/library/TorrentPier/Zend/Ldap/Filter/NotFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/NotFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/NotFilter.php diff --git a/library/Zend/Ldap/Filter/OrFilter.php b/library/TorrentPier/Zend/Ldap/Filter/OrFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/OrFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/OrFilter.php diff --git a/library/Zend/Ldap/Filter/StringFilter.php b/library/TorrentPier/Zend/Ldap/Filter/StringFilter.php similarity index 100% rename from library/Zend/Ldap/Filter/StringFilter.php rename to library/TorrentPier/Zend/Ldap/Filter/StringFilter.php diff --git a/library/Zend/Ldap/Ldap.php b/library/TorrentPier/Zend/Ldap/Ldap.php similarity index 100% rename from library/Zend/Ldap/Ldap.php rename to library/TorrentPier/Zend/Ldap/Ldap.php diff --git a/library/Zend/Ldap/Ldif/Encoder.php b/library/TorrentPier/Zend/Ldap/Ldif/Encoder.php similarity index 100% rename from library/Zend/Ldap/Ldif/Encoder.php rename to library/TorrentPier/Zend/Ldap/Ldif/Encoder.php diff --git a/library/Zend/Ldap/Node.php b/library/TorrentPier/Zend/Ldap/Node.php similarity index 100% rename from library/Zend/Ldap/Node.php rename to library/TorrentPier/Zend/Ldap/Node.php diff --git a/library/Zend/Ldap/Node/AbstractNode.php b/library/TorrentPier/Zend/Ldap/Node/AbstractNode.php similarity index 100% rename from library/Zend/Ldap/Node/AbstractNode.php rename to library/TorrentPier/Zend/Ldap/Node/AbstractNode.php diff --git a/library/Zend/Ldap/Node/ChildrenIterator.php b/library/TorrentPier/Zend/Ldap/Node/ChildrenIterator.php similarity index 100% rename from library/Zend/Ldap/Node/ChildrenIterator.php rename to library/TorrentPier/Zend/Ldap/Node/ChildrenIterator.php diff --git a/library/Zend/Ldap/Node/Collection.php b/library/TorrentPier/Zend/Ldap/Node/Collection.php similarity index 100% rename from library/Zend/Ldap/Node/Collection.php rename to library/TorrentPier/Zend/Ldap/Node/Collection.php diff --git a/library/Zend/Ldap/Node/RootDse.php b/library/TorrentPier/Zend/Ldap/Node/RootDse.php similarity index 100% rename from library/Zend/Ldap/Node/RootDse.php rename to library/TorrentPier/Zend/Ldap/Node/RootDse.php diff --git a/library/Zend/Ldap/Node/RootDse/ActiveDirectory.php b/library/TorrentPier/Zend/Ldap/Node/RootDse/ActiveDirectory.php similarity index 100% rename from library/Zend/Ldap/Node/RootDse/ActiveDirectory.php rename to library/TorrentPier/Zend/Ldap/Node/RootDse/ActiveDirectory.php diff --git a/library/Zend/Ldap/Node/RootDse/OpenLdap.php b/library/TorrentPier/Zend/Ldap/Node/RootDse/OpenLdap.php similarity index 100% rename from library/Zend/Ldap/Node/RootDse/OpenLdap.php rename to library/TorrentPier/Zend/Ldap/Node/RootDse/OpenLdap.php diff --git a/library/Zend/Ldap/Node/RootDse/eDirectory.php b/library/TorrentPier/Zend/Ldap/Node/RootDse/eDirectory.php similarity index 100% rename from library/Zend/Ldap/Node/RootDse/eDirectory.php rename to library/TorrentPier/Zend/Ldap/Node/RootDse/eDirectory.php diff --git a/library/Zend/Ldap/Node/Schema.php b/library/TorrentPier/Zend/Ldap/Node/Schema.php similarity index 100% rename from library/Zend/Ldap/Node/Schema.php rename to library/TorrentPier/Zend/Ldap/Node/Schema.php diff --git a/library/Zend/Ldap/Node/Schema/AbstractItem.php b/library/TorrentPier/Zend/Ldap/Node/Schema/AbstractItem.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/AbstractItem.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/AbstractItem.php diff --git a/library/Zend/Ldap/Node/Schema/ActiveDirectory.php b/library/TorrentPier/Zend/Ldap/Node/Schema/ActiveDirectory.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/ActiveDirectory.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/ActiveDirectory.php diff --git a/library/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php b/library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php diff --git a/library/Zend/Ldap/Node/Schema/AttributeType/AttributeTypeInterface.php b/library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/AttributeTypeInterface.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/AttributeType/AttributeTypeInterface.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/AttributeTypeInterface.php diff --git a/library/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php b/library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php diff --git a/library/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php b/library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php diff --git a/library/Zend/Ldap/Node/Schema/ObjectClass/ObjectClassInterface.php b/library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/ObjectClassInterface.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/ObjectClass/ObjectClassInterface.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/ObjectClassInterface.php diff --git a/library/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php b/library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php diff --git a/library/Zend/Ldap/Node/Schema/OpenLdap.php b/library/TorrentPier/Zend/Ldap/Node/Schema/OpenLdap.php similarity index 100% rename from library/Zend/Ldap/Node/Schema/OpenLdap.php rename to library/TorrentPier/Zend/Ldap/Node/Schema/OpenLdap.php diff --git a/library/Zend/Ldap/README.md b/library/TorrentPier/Zend/Ldap/README.md similarity index 100% rename from library/Zend/Ldap/README.md rename to library/TorrentPier/Zend/Ldap/README.md diff --git a/library/Zend/Ldap/composer.json b/library/TorrentPier/Zend/Ldap/composer.json similarity index 100% rename from library/Zend/Ldap/composer.json rename to library/TorrentPier/Zend/Ldap/composer.json diff --git a/library/Zend/Loader/AutoloaderFactory.php b/library/TorrentPier/Zend/Loader/AutoloaderFactory.php similarity index 91% rename from library/Zend/Loader/AutoloaderFactory.php rename to library/TorrentPier/Zend/Loader/AutoloaderFactory.php index a786c494a..1ade337a2 100644 --- a/library/Zend/Loader/AutoloaderFactory.php +++ b/library/TorrentPier/Zend/Loader/AutoloaderFactory.php @@ -22,7 +22,7 @@ abstract class AutoloaderFactory /** * @var array All autoloaders registered using the factory */ - protected static $loaders = array(); + protected static $loaders = []; /** * @var StandardAutoloader StandardAutoloader instance for resolving @@ -71,7 +71,7 @@ abstract class AutoloaderFactory if (!is_array($options) && !($options instanceof Traversable)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException( + throw new Exception\InvalidArgumentException( 'Options provided must be an array or Traversable' ); } @@ -81,14 +81,14 @@ abstract class AutoloaderFactory $autoloader = static::getStandardAutoloader(); if (!class_exists($class) && !$autoloader->autoload($class)) { require_once 'Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException( + throw new Exception\InvalidArgumentException( sprintf('Autoloader class "%s" not loaded', $class) ); } if (!is_subclass_of($class, 'Zend\Loader\SplAutoloader')) { require_once 'Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException( + throw new Exception\InvalidArgumentException( sprintf('Autoloader class %s must implement Zend\\Loader\\SplAutoloader', $class) ); } @@ -129,7 +129,7 @@ abstract class AutoloaderFactory { if (!isset(static::$loaders[$class])) { require_once 'Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException(sprintf('Autoloader class "%s" not loaded', $class)); + throw new Exception\InvalidArgumentException(sprintf('Autoloader class "%s" not loaded', $class)); } return static::$loaders[$class]; } @@ -143,7 +143,7 @@ abstract class AutoloaderFactory public static function unregisterAutoloaders() { foreach (static::getRegisteredAutoloaders() as $class => $autoloader) { - spl_autoload_unregister(array($autoloader, 'autoload')); + spl_autoload_unregister([$autoloader, 'autoload']); unset(static::$loaders[$class]); } } @@ -161,7 +161,7 @@ abstract class AutoloaderFactory } $autoloader = static::$loaders[$autoloaderClass]; - spl_autoload_unregister(array($autoloader, 'autoload')); + spl_autoload_unregister([$autoloader, 'autoload']); unset(static::$loaders[$autoloaderClass]); return true; } @@ -185,9 +185,9 @@ abstract class AutoloaderFactory if (!class_exists(static::STANDARD_AUTOLOADER)) { // Extract the filename from the classname $stdAutoloader = substr(strrchr(static::STANDARD_AUTOLOADER, '\\'), 1); - require_once __DIR__ . "/$stdAutoloader.php"; - } - $loader = new StandardAutoloader(); + require_once __DIR__ . "/AutoloaderFactory.php"; + } + $loader = new StandardAutoloader(); static::$standardAutoloader = $loader; return static::$standardAutoloader; } diff --git a/library/Zend/Loader/CONTRIBUTING.md b/library/TorrentPier/Zend/Loader/CONTRIBUTING.md similarity index 100% rename from library/Zend/Loader/CONTRIBUTING.md rename to library/TorrentPier/Zend/Loader/CONTRIBUTING.md diff --git a/library/Zend/Loader/ClassMapAutoloader.php b/library/TorrentPier/Zend/Loader/ClassMapAutoloader.php similarity index 91% rename from library/Zend/Loader/ClassMapAutoloader.php rename to library/TorrentPier/Zend/Loader/ClassMapAutoloader.php index a50e1fc0a..2c5a328e5 100644 --- a/library/Zend/Loader/ClassMapAutoloader.php +++ b/library/TorrentPier/Zend/Loader/ClassMapAutoloader.php @@ -25,13 +25,13 @@ class ClassMapAutoloader implements SplAutoloader * Registry of map files that have already been loaded * @var array */ - protected $mapsLoaded = array(); + protected $mapsLoaded = []; /** * Class name/filename map * @var array */ - protected $map = array(); + protected $map = []; /** * Constructor @@ -85,7 +85,7 @@ class ClassMapAutoloader implements SplAutoloader if (!is_array($map)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException(sprintf( + throw new Exception\InvalidArgumentException(sprintf( 'Map file provided does not return a map. Map file: "%s"', (isset($location) && is_string($location) ? $location : 'unexpected type: ' . gettype($map)) )); @@ -111,7 +111,7 @@ class ClassMapAutoloader implements SplAutoloader { if (!is_array($locations) && !($locations instanceof Traversable)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException('Map list must be an array or implement Traversable'); + throw new Exception\InvalidArgumentException('Map list must be an array or implement Traversable'); } foreach ($locations as $location) { $this->registerAutoloadMap($location); @@ -150,7 +150,7 @@ class ClassMapAutoloader implements SplAutoloader */ public function register() { - spl_autoload_register(array($this, 'autoload'), true, true); + spl_autoload_register([$this, 'autoload'], true, true); } /** @@ -168,7 +168,7 @@ class ClassMapAutoloader implements SplAutoloader { if (!file_exists($location)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException(sprintf( + throw new Exception\InvalidArgumentException(sprintf( 'Map file provided does not exist. Map file: "%s"', (is_string($location) ? $location : 'unexpected type: ' . gettype($location)) )); @@ -202,7 +202,7 @@ class ClassMapAutoloader implements SplAutoloader } $prefixLength = 5 + strlen($match[1]); - $parts = explode('/', str_replace(array('/', '\\'), '/', substr($path, $prefixLength))); + $parts = explode('/', str_replace(['/', '\\'], '/', substr($path, $prefixLength))); $parts = array_values(array_filter($parts, function ($p) { return ($p !== '' && $p !== '.'); })); diff --git a/library/Zend/Loader/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Loader/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Loader/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Loader/Exception/BadMethodCallException.php diff --git a/library/Zend/Loader/Exception/DomainException.php b/library/TorrentPier/Zend/Loader/Exception/DomainException.php similarity index 100% rename from library/Zend/Loader/Exception/DomainException.php rename to library/TorrentPier/Zend/Loader/Exception/DomainException.php diff --git a/library/Zend/Loader/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Loader/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Loader/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Loader/Exception/ExceptionInterface.php diff --git a/library/Zend/Loader/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Loader/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Loader/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Loader/Exception/InvalidArgumentException.php diff --git a/library/Zend/Loader/Exception/InvalidPathException.php b/library/TorrentPier/Zend/Loader/Exception/InvalidPathException.php similarity index 100% rename from library/Zend/Loader/Exception/InvalidPathException.php rename to library/TorrentPier/Zend/Loader/Exception/InvalidPathException.php diff --git a/library/Zend/Loader/Exception/MissingResourceNamespaceException.php b/library/TorrentPier/Zend/Loader/Exception/MissingResourceNamespaceException.php similarity index 100% rename from library/Zend/Loader/Exception/MissingResourceNamespaceException.php rename to library/TorrentPier/Zend/Loader/Exception/MissingResourceNamespaceException.php diff --git a/library/Zend/Loader/Exception/PluginLoaderException.php b/library/TorrentPier/Zend/Loader/Exception/PluginLoaderException.php similarity index 100% rename from library/Zend/Loader/Exception/PluginLoaderException.php rename to library/TorrentPier/Zend/Loader/Exception/PluginLoaderException.php diff --git a/library/Zend/Loader/Exception/RuntimeException.php b/library/TorrentPier/Zend/Loader/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Loader/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Loader/Exception/RuntimeException.php diff --git a/library/Zend/Loader/Exception/SecurityException.php b/library/TorrentPier/Zend/Loader/Exception/SecurityException.php similarity index 100% rename from library/Zend/Loader/Exception/SecurityException.php rename to library/TorrentPier/Zend/Loader/Exception/SecurityException.php diff --git a/library/Zend/Loader/ModuleAutoloader.php b/library/TorrentPier/Zend/Loader/ModuleAutoloader.php similarity index 95% rename from library/Zend/Loader/ModuleAutoloader.php rename to library/TorrentPier/Zend/Loader/ModuleAutoloader.php index e867aae84..6b49ffd24 100644 --- a/library/Zend/Loader/ModuleAutoloader.php +++ b/library/TorrentPier/Zend/Loader/ModuleAutoloader.php @@ -23,17 +23,17 @@ class ModuleAutoloader implements SplAutoloader /** * @var array An array of module paths to scan */ - protected $paths = array(); + protected $paths = []; /** * @var array An array of modulename => path */ - protected $explicitPaths = array(); + protected $explicitPaths = []; /** * @var array An array of namespaceName => namespacePath */ - protected $namespacedPaths = array(); + protected $namespacedPaths = []; /** * @var string Will contain the absolute phar:// path to the executable when packaged as phar file @@ -43,12 +43,12 @@ class ModuleAutoloader implements SplAutoloader /** * @var array An array of supported phar extensions (filled on constructor) */ - protected $pharExtensions = array(); + protected $pharExtensions = []; /** * @var array An array of module classes to their containing files */ - protected $moduleClassMap = array(); + protected $moduleClassMap = []; /** * Constructor @@ -61,11 +61,11 @@ class ModuleAutoloader implements SplAutoloader { if (extension_loaded('phar')) { $this->pharBasePath = Phar::running(true); - $this->pharExtensions = array( + $this->pharExtensions = [ 'phar', 'phar.tar', 'tar', - ); + ]; // ext/zlib enabled -> phar can read gzip & zip compressed files if (extension_loaded('zlib')) { @@ -325,7 +325,7 @@ class ModuleAutoloader implements SplAutoloader */ public function register() { - spl_autoload_register(array($this, 'autoload')); + spl_autoload_register([$this, 'autoload']); } /** @@ -335,7 +335,7 @@ class ModuleAutoloader implements SplAutoloader */ public function unregister() { - spl_autoload_unregister(array($this, 'autoload')); + spl_autoload_unregister([$this, 'autoload']); } /** @@ -349,7 +349,7 @@ class ModuleAutoloader implements SplAutoloader { if (!is_array($paths) && !$paths instanceof Traversable) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException( + throw new Exception\InvalidArgumentException( 'Parameter to \\Zend\\Loader\\ModuleAutoloader\'s ' . 'registerPaths method must be an array or ' . 'implement the Traversable interface' @@ -379,13 +379,13 @@ class ModuleAutoloader implements SplAutoloader { if (!is_string($path)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException(sprintf( + throw new Exception\InvalidArgumentException(sprintf( 'Invalid path provided; must be a string, received %s', gettype($path) )); } if ($moduleName) { - if (in_array(substr($moduleName, -2), array('\\*', '\\%'))) { + if (in_array(substr($moduleName, -2), ['\\*', '\\%'])) { $this->namespacedPaths[substr($moduleName, 0, -2)] = static::normalizePath($path); } else { $this->explicitPaths[$moduleName] = static::normalizePath($path); diff --git a/library/Zend/Loader/PluginClassLoader.php b/library/TorrentPier/Zend/Loader/PluginClassLoader.php similarity index 100% rename from library/Zend/Loader/PluginClassLoader.php rename to library/TorrentPier/Zend/Loader/PluginClassLoader.php diff --git a/library/Zend/Loader/PluginClassLocator.php b/library/TorrentPier/Zend/Loader/PluginClassLocator.php similarity index 100% rename from library/Zend/Loader/PluginClassLocator.php rename to library/TorrentPier/Zend/Loader/PluginClassLocator.php diff --git a/library/Zend/Loader/README.md b/library/TorrentPier/Zend/Loader/README.md similarity index 100% rename from library/Zend/Loader/README.md rename to library/TorrentPier/Zend/Loader/README.md diff --git a/library/Zend/Loader/ShortNameLocator.php b/library/TorrentPier/Zend/Loader/ShortNameLocator.php similarity index 100% rename from library/Zend/Loader/ShortNameLocator.php rename to library/TorrentPier/Zend/Loader/ShortNameLocator.php diff --git a/library/Zend/Loader/SplAutoloader.php b/library/TorrentPier/Zend/Loader/SplAutoloader.php similarity index 100% rename from library/Zend/Loader/SplAutoloader.php rename to library/TorrentPier/Zend/Loader/SplAutoloader.php diff --git a/library/Zend/Loader/StandardAutoloader.php b/library/TorrentPier/Zend/Loader/StandardAutoloader.php similarity index 93% rename from library/Zend/Loader/StandardAutoloader.php rename to library/TorrentPier/Zend/Loader/StandardAutoloader.php index 2d744a88e..334bccafd 100644 --- a/library/Zend/Loader/StandardAutoloader.php +++ b/library/TorrentPier/Zend/Loader/StandardAutoloader.php @@ -31,12 +31,12 @@ class StandardAutoloader implements SplAutoloader /** * @var array Namespace/directory pairs to search; ZF library added by default */ - protected $namespaces = array(); + protected $namespaces = []; /** * @var array Prefix/directory pairs to search */ - protected $prefixes = array(); + protected $prefixes = []; /** * @var bool Whether or not the autoloader should also act as a fallback autoloader @@ -81,7 +81,7 @@ class StandardAutoloader implements SplAutoloader { if (!is_array($options) && !($options instanceof \Traversable)) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException('Options must be either an array or Traversable'); + throw new Exception\InvalidArgumentException('Options must be either an array or Traversable'); } foreach ($options as $type => $pairs) { @@ -159,7 +159,7 @@ class StandardAutoloader implements SplAutoloader { if (!is_array($namespaces) && !$namespaces instanceof \Traversable) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException('Namespace pairs must be either an array or Traversable'); + throw new Exception\InvalidArgumentException('Namespace pairs must be either an array or Traversable'); } foreach ($namespaces as $namespace => $directory) { @@ -193,7 +193,7 @@ class StandardAutoloader implements SplAutoloader { if (!is_array($prefixes) && !$prefixes instanceof \Traversable) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException('Prefix pairs must be either an array or Traversable'); + throw new Exception\InvalidArgumentException('Prefix pairs must be either an array or Traversable'); } foreach ($prefixes as $prefix => $directory) { @@ -240,7 +240,7 @@ class StandardAutoloader implements SplAutoloader */ public function register() { - spl_autoload_register(array($this, 'autoload')); + spl_autoload_register([$this, 'autoload']); } /** @@ -254,7 +254,7 @@ class StandardAutoloader implements SplAutoloader { // $class may contain a namespace portion, in which case we need // to preserve any underscores in that portion. - $matches = array(); + $matches = []; preg_match('/(?P.+\\\)?(?P[^\\\]+$)/', $class, $matches); $class = (isset($matches['class'])) ? $matches['class'] : ''; @@ -276,9 +276,9 @@ class StandardAutoloader implements SplAutoloader */ protected function loadClass($class, $type) { - if (!in_array($type, array(self::LOAD_NS, self::LOAD_PREFIX, self::ACT_AS_FALLBACK))) { + if (!in_array($type, [self::LOAD_NS, self::LOAD_PREFIX, self::ACT_AS_FALLBACK])) { require_once __DIR__ . '/Exception/InvalidArgumentException.php'; - throw new Exception\InvalidArgumentException(); + throw new Exception\InvalidArgumentException(); } // Fallback autoloading @@ -317,7 +317,7 @@ class StandardAutoloader implements SplAutoloader protected function normalizeDirectory($directory) { $last = $directory[strlen($directory) - 1]; - if (in_array($last, array('/', '\\'))) { + if (in_array($last, ['/', '\\'])) { $directory[strlen($directory) - 1] = DIRECTORY_SEPARATOR; return $directory; } diff --git a/library/Zend/Loader/composer.json b/library/TorrentPier/Zend/Loader/composer.json similarity index 100% rename from library/Zend/Loader/composer.json rename to library/TorrentPier/Zend/Loader/composer.json diff --git a/library/Zend/Log/CONTRIBUTING.md b/library/TorrentPier/Zend/Log/CONTRIBUTING.md similarity index 100% rename from library/Zend/Log/CONTRIBUTING.md rename to library/TorrentPier/Zend/Log/CONTRIBUTING.md diff --git a/library/Zend/Log/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Log/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Log/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Log/Exception/ExceptionInterface.php diff --git a/library/Zend/Log/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Log/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Log/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Log/Exception/InvalidArgumentException.php diff --git a/library/Zend/Log/Exception/RuntimeException.php b/library/TorrentPier/Zend/Log/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Log/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Log/Exception/RuntimeException.php diff --git a/library/Zend/Log/Filter/FilterInterface.php b/library/TorrentPier/Zend/Log/Filter/FilterInterface.php similarity index 100% rename from library/Zend/Log/Filter/FilterInterface.php rename to library/TorrentPier/Zend/Log/Filter/FilterInterface.php diff --git a/library/Zend/Log/Filter/Mock.php b/library/TorrentPier/Zend/Log/Filter/Mock.php similarity index 100% rename from library/Zend/Log/Filter/Mock.php rename to library/TorrentPier/Zend/Log/Filter/Mock.php diff --git a/library/Zend/Log/Filter/Priority.php b/library/TorrentPier/Zend/Log/Filter/Priority.php similarity index 100% rename from library/Zend/Log/Filter/Priority.php rename to library/TorrentPier/Zend/Log/Filter/Priority.php diff --git a/library/Zend/Log/Filter/Regex.php b/library/TorrentPier/Zend/Log/Filter/Regex.php similarity index 100% rename from library/Zend/Log/Filter/Regex.php rename to library/TorrentPier/Zend/Log/Filter/Regex.php diff --git a/library/Zend/Log/Filter/Sample.php b/library/TorrentPier/Zend/Log/Filter/Sample.php similarity index 100% rename from library/Zend/Log/Filter/Sample.php rename to library/TorrentPier/Zend/Log/Filter/Sample.php diff --git a/library/Zend/Log/Filter/SuppressFilter.php b/library/TorrentPier/Zend/Log/Filter/SuppressFilter.php similarity index 100% rename from library/Zend/Log/Filter/SuppressFilter.php rename to library/TorrentPier/Zend/Log/Filter/SuppressFilter.php diff --git a/library/Zend/Log/Filter/Timestamp.php b/library/TorrentPier/Zend/Log/Filter/Timestamp.php similarity index 100% rename from library/Zend/Log/Filter/Timestamp.php rename to library/TorrentPier/Zend/Log/Filter/Timestamp.php diff --git a/library/Zend/Log/Filter/Validator.php b/library/TorrentPier/Zend/Log/Filter/Validator.php similarity index 100% rename from library/Zend/Log/Filter/Validator.php rename to library/TorrentPier/Zend/Log/Filter/Validator.php diff --git a/library/Zend/Log/Formatter/Base.php b/library/TorrentPier/Zend/Log/Formatter/Base.php similarity index 100% rename from library/Zend/Log/Formatter/Base.php rename to library/TorrentPier/Zend/Log/Formatter/Base.php diff --git a/library/Zend/Log/Formatter/ChromePhp.php b/library/TorrentPier/Zend/Log/Formatter/ChromePhp.php similarity index 100% rename from library/Zend/Log/Formatter/ChromePhp.php rename to library/TorrentPier/Zend/Log/Formatter/ChromePhp.php diff --git a/library/Zend/Log/Formatter/Db.php b/library/TorrentPier/Zend/Log/Formatter/Db.php similarity index 100% rename from library/Zend/Log/Formatter/Db.php rename to library/TorrentPier/Zend/Log/Formatter/Db.php diff --git a/library/Zend/Log/Formatter/ErrorHandler.php b/library/TorrentPier/Zend/Log/Formatter/ErrorHandler.php similarity index 100% rename from library/Zend/Log/Formatter/ErrorHandler.php rename to library/TorrentPier/Zend/Log/Formatter/ErrorHandler.php diff --git a/library/Zend/Log/Formatter/ExceptionHandler.php b/library/TorrentPier/Zend/Log/Formatter/ExceptionHandler.php similarity index 100% rename from library/Zend/Log/Formatter/ExceptionHandler.php rename to library/TorrentPier/Zend/Log/Formatter/ExceptionHandler.php diff --git a/library/Zend/Log/Formatter/FirePhp.php b/library/TorrentPier/Zend/Log/Formatter/FirePhp.php similarity index 100% rename from library/Zend/Log/Formatter/FirePhp.php rename to library/TorrentPier/Zend/Log/Formatter/FirePhp.php diff --git a/library/Zend/Log/Formatter/FormatterInterface.php b/library/TorrentPier/Zend/Log/Formatter/FormatterInterface.php similarity index 100% rename from library/Zend/Log/Formatter/FormatterInterface.php rename to library/TorrentPier/Zend/Log/Formatter/FormatterInterface.php diff --git a/library/Zend/Log/Formatter/Simple.php b/library/TorrentPier/Zend/Log/Formatter/Simple.php similarity index 100% rename from library/Zend/Log/Formatter/Simple.php rename to library/TorrentPier/Zend/Log/Formatter/Simple.php diff --git a/library/Zend/Log/Formatter/Xml.php b/library/TorrentPier/Zend/Log/Formatter/Xml.php similarity index 100% rename from library/Zend/Log/Formatter/Xml.php rename to library/TorrentPier/Zend/Log/Formatter/Xml.php diff --git a/library/Zend/Log/Logger.php b/library/TorrentPier/Zend/Log/Logger.php similarity index 100% rename from library/Zend/Log/Logger.php rename to library/TorrentPier/Zend/Log/Logger.php diff --git a/library/Zend/Log/LoggerAbstractServiceFactory.php b/library/TorrentPier/Zend/Log/LoggerAbstractServiceFactory.php similarity index 100% rename from library/Zend/Log/LoggerAbstractServiceFactory.php rename to library/TorrentPier/Zend/Log/LoggerAbstractServiceFactory.php diff --git a/library/Zend/Log/LoggerAwareInterface.php b/library/TorrentPier/Zend/Log/LoggerAwareInterface.php similarity index 100% rename from library/Zend/Log/LoggerAwareInterface.php rename to library/TorrentPier/Zend/Log/LoggerAwareInterface.php diff --git a/library/Zend/Log/LoggerAwareTrait.php b/library/TorrentPier/Zend/Log/LoggerAwareTrait.php similarity index 100% rename from library/Zend/Log/LoggerAwareTrait.php rename to library/TorrentPier/Zend/Log/LoggerAwareTrait.php diff --git a/library/Zend/Log/LoggerInterface.php b/library/TorrentPier/Zend/Log/LoggerInterface.php similarity index 100% rename from library/Zend/Log/LoggerInterface.php rename to library/TorrentPier/Zend/Log/LoggerInterface.php diff --git a/library/Zend/Log/LoggerServiceFactory.php b/library/TorrentPier/Zend/Log/LoggerServiceFactory.php similarity index 100% rename from library/Zend/Log/LoggerServiceFactory.php rename to library/TorrentPier/Zend/Log/LoggerServiceFactory.php diff --git a/library/Zend/Log/Processor/Backtrace.php b/library/TorrentPier/Zend/Log/Processor/Backtrace.php similarity index 100% rename from library/Zend/Log/Processor/Backtrace.php rename to library/TorrentPier/Zend/Log/Processor/Backtrace.php diff --git a/library/Zend/Log/Processor/ProcessorInterface.php b/library/TorrentPier/Zend/Log/Processor/ProcessorInterface.php similarity index 100% rename from library/Zend/Log/Processor/ProcessorInterface.php rename to library/TorrentPier/Zend/Log/Processor/ProcessorInterface.php diff --git a/library/Zend/Log/Processor/ReferenceId.php b/library/TorrentPier/Zend/Log/Processor/ReferenceId.php similarity index 100% rename from library/Zend/Log/Processor/ReferenceId.php rename to library/TorrentPier/Zend/Log/Processor/ReferenceId.php diff --git a/library/Zend/Log/Processor/RequestId.php b/library/TorrentPier/Zend/Log/Processor/RequestId.php similarity index 100% rename from library/Zend/Log/Processor/RequestId.php rename to library/TorrentPier/Zend/Log/Processor/RequestId.php diff --git a/library/Zend/Log/ProcessorPluginManager.php b/library/TorrentPier/Zend/Log/ProcessorPluginManager.php similarity index 100% rename from library/Zend/Log/ProcessorPluginManager.php rename to library/TorrentPier/Zend/Log/ProcessorPluginManager.php diff --git a/library/Zend/Log/README.md b/library/TorrentPier/Zend/Log/README.md similarity index 100% rename from library/Zend/Log/README.md rename to library/TorrentPier/Zend/Log/README.md diff --git a/library/Zend/Log/Writer/AbstractWriter.php b/library/TorrentPier/Zend/Log/Writer/AbstractWriter.php similarity index 100% rename from library/Zend/Log/Writer/AbstractWriter.php rename to library/TorrentPier/Zend/Log/Writer/AbstractWriter.php diff --git a/library/Zend/Log/Writer/ChromePhp.php b/library/TorrentPier/Zend/Log/Writer/ChromePhp.php similarity index 100% rename from library/Zend/Log/Writer/ChromePhp.php rename to library/TorrentPier/Zend/Log/Writer/ChromePhp.php diff --git a/library/Zend/Log/Writer/ChromePhp/ChromePhpBridge.php b/library/TorrentPier/Zend/Log/Writer/ChromePhp/ChromePhpBridge.php similarity index 100% rename from library/Zend/Log/Writer/ChromePhp/ChromePhpBridge.php rename to library/TorrentPier/Zend/Log/Writer/ChromePhp/ChromePhpBridge.php diff --git a/library/Zend/Log/Writer/ChromePhp/ChromePhpInterface.php b/library/TorrentPier/Zend/Log/Writer/ChromePhp/ChromePhpInterface.php similarity index 100% rename from library/Zend/Log/Writer/ChromePhp/ChromePhpInterface.php rename to library/TorrentPier/Zend/Log/Writer/ChromePhp/ChromePhpInterface.php diff --git a/library/Zend/Log/Writer/Db.php b/library/TorrentPier/Zend/Log/Writer/Db.php similarity index 100% rename from library/Zend/Log/Writer/Db.php rename to library/TorrentPier/Zend/Log/Writer/Db.php diff --git a/library/Zend/Log/Writer/FilterPluginManager.php b/library/TorrentPier/Zend/Log/Writer/FilterPluginManager.php similarity index 100% rename from library/Zend/Log/Writer/FilterPluginManager.php rename to library/TorrentPier/Zend/Log/Writer/FilterPluginManager.php diff --git a/library/Zend/Log/Writer/FingersCrossed.php b/library/TorrentPier/Zend/Log/Writer/FingersCrossed.php similarity index 100% rename from library/Zend/Log/Writer/FingersCrossed.php rename to library/TorrentPier/Zend/Log/Writer/FingersCrossed.php diff --git a/library/Zend/Log/Writer/FirePhp.php b/library/TorrentPier/Zend/Log/Writer/FirePhp.php similarity index 100% rename from library/Zend/Log/Writer/FirePhp.php rename to library/TorrentPier/Zend/Log/Writer/FirePhp.php diff --git a/library/Zend/Log/Writer/FirePhp/FirePhpBridge.php b/library/TorrentPier/Zend/Log/Writer/FirePhp/FirePhpBridge.php similarity index 100% rename from library/Zend/Log/Writer/FirePhp/FirePhpBridge.php rename to library/TorrentPier/Zend/Log/Writer/FirePhp/FirePhpBridge.php diff --git a/library/Zend/Log/Writer/FirePhp/FirePhpInterface.php b/library/TorrentPier/Zend/Log/Writer/FirePhp/FirePhpInterface.php similarity index 100% rename from library/Zend/Log/Writer/FirePhp/FirePhpInterface.php rename to library/TorrentPier/Zend/Log/Writer/FirePhp/FirePhpInterface.php diff --git a/library/Zend/Log/Writer/FormatterPluginManager.php b/library/TorrentPier/Zend/Log/Writer/FormatterPluginManager.php similarity index 100% rename from library/Zend/Log/Writer/FormatterPluginManager.php rename to library/TorrentPier/Zend/Log/Writer/FormatterPluginManager.php diff --git a/library/Zend/Log/Writer/Mail.php b/library/TorrentPier/Zend/Log/Writer/Mail.php similarity index 100% rename from library/Zend/Log/Writer/Mail.php rename to library/TorrentPier/Zend/Log/Writer/Mail.php diff --git a/library/Zend/Log/Writer/Mock.php b/library/TorrentPier/Zend/Log/Writer/Mock.php similarity index 100% rename from library/Zend/Log/Writer/Mock.php rename to library/TorrentPier/Zend/Log/Writer/Mock.php diff --git a/library/Zend/Log/Writer/MongoDB.php b/library/TorrentPier/Zend/Log/Writer/MongoDB.php similarity index 100% rename from library/Zend/Log/Writer/MongoDB.php rename to library/TorrentPier/Zend/Log/Writer/MongoDB.php diff --git a/library/Zend/Log/Writer/Noop.php b/library/TorrentPier/Zend/Log/Writer/Noop.php similarity index 100% rename from library/Zend/Log/Writer/Noop.php rename to library/TorrentPier/Zend/Log/Writer/Noop.php diff --git a/library/Zend/Log/Writer/Null.php b/library/TorrentPier/Zend/Log/Writer/Null.php similarity index 100% rename from library/Zend/Log/Writer/Null.php rename to library/TorrentPier/Zend/Log/Writer/Null.php diff --git a/library/Zend/Log/Writer/Stream.php b/library/TorrentPier/Zend/Log/Writer/Stream.php similarity index 100% rename from library/Zend/Log/Writer/Stream.php rename to library/TorrentPier/Zend/Log/Writer/Stream.php diff --git a/library/Zend/Log/Writer/Syslog.php b/library/TorrentPier/Zend/Log/Writer/Syslog.php similarity index 100% rename from library/Zend/Log/Writer/Syslog.php rename to library/TorrentPier/Zend/Log/Writer/Syslog.php diff --git a/library/Zend/Log/Writer/WriterInterface.php b/library/TorrentPier/Zend/Log/Writer/WriterInterface.php similarity index 100% rename from library/Zend/Log/Writer/WriterInterface.php rename to library/TorrentPier/Zend/Log/Writer/WriterInterface.php diff --git a/library/Zend/Log/Writer/ZendMonitor.php b/library/TorrentPier/Zend/Log/Writer/ZendMonitor.php similarity index 100% rename from library/Zend/Log/Writer/ZendMonitor.php rename to library/TorrentPier/Zend/Log/Writer/ZendMonitor.php diff --git a/library/Zend/Log/WriterPluginManager.php b/library/TorrentPier/Zend/Log/WriterPluginManager.php similarity index 100% rename from library/Zend/Log/WriterPluginManager.php rename to library/TorrentPier/Zend/Log/WriterPluginManager.php diff --git a/library/Zend/Log/composer.json b/library/TorrentPier/Zend/Log/composer.json similarity index 100% rename from library/Zend/Log/composer.json rename to library/TorrentPier/Zend/Log/composer.json diff --git a/library/Zend/Mail/Address.php b/library/TorrentPier/Zend/Mail/Address.php similarity index 100% rename from library/Zend/Mail/Address.php rename to library/TorrentPier/Zend/Mail/Address.php diff --git a/library/Zend/Mail/Address/AddressInterface.php b/library/TorrentPier/Zend/Mail/Address/AddressInterface.php similarity index 100% rename from library/Zend/Mail/Address/AddressInterface.php rename to library/TorrentPier/Zend/Mail/Address/AddressInterface.php diff --git a/library/Zend/Mail/AddressList.php b/library/TorrentPier/Zend/Mail/AddressList.php similarity index 100% rename from library/Zend/Mail/AddressList.php rename to library/TorrentPier/Zend/Mail/AddressList.php diff --git a/library/Zend/Mail/CONTRIBUTING.md b/library/TorrentPier/Zend/Mail/CONTRIBUTING.md similarity index 100% rename from library/Zend/Mail/CONTRIBUTING.md rename to library/TorrentPier/Zend/Mail/CONTRIBUTING.md diff --git a/library/Zend/Mail/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Mail/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Mail/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Mail/Exception/BadMethodCallException.php diff --git a/library/Zend/Mail/Exception/DomainException.php b/library/TorrentPier/Zend/Mail/Exception/DomainException.php similarity index 100% rename from library/Zend/Mail/Exception/DomainException.php rename to library/TorrentPier/Zend/Mail/Exception/DomainException.php diff --git a/library/Zend/Mail/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Mail/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Mail/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Mail/Exception/OutOfBoundsException.php diff --git a/library/Zend/Mail/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Header/AbstractAddressList.php b/library/TorrentPier/Zend/Mail/Header/AbstractAddressList.php similarity index 100% rename from library/Zend/Mail/Header/AbstractAddressList.php rename to library/TorrentPier/Zend/Mail/Header/AbstractAddressList.php diff --git a/library/Zend/Mail/Header/Bcc.php b/library/TorrentPier/Zend/Mail/Header/Bcc.php similarity index 100% rename from library/Zend/Mail/Header/Bcc.php rename to library/TorrentPier/Zend/Mail/Header/Bcc.php diff --git a/library/Zend/Mail/Header/Cc.php b/library/TorrentPier/Zend/Mail/Header/Cc.php similarity index 100% rename from library/Zend/Mail/Header/Cc.php rename to library/TorrentPier/Zend/Mail/Header/Cc.php diff --git a/library/Zend/Mail/Header/ContentTransferEncoding.php b/library/TorrentPier/Zend/Mail/Header/ContentTransferEncoding.php similarity index 100% rename from library/Zend/Mail/Header/ContentTransferEncoding.php rename to library/TorrentPier/Zend/Mail/Header/ContentTransferEncoding.php diff --git a/library/Zend/Mail/Header/ContentType.php b/library/TorrentPier/Zend/Mail/Header/ContentType.php similarity index 100% rename from library/Zend/Mail/Header/ContentType.php rename to library/TorrentPier/Zend/Mail/Header/ContentType.php diff --git a/library/Zend/Mail/Header/Date.php b/library/TorrentPier/Zend/Mail/Header/Date.php similarity index 100% rename from library/Zend/Mail/Header/Date.php rename to library/TorrentPier/Zend/Mail/Header/Date.php diff --git a/library/Zend/Mail/Header/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Mail/Header/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Mail/Header/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Mail/Header/Exception/BadMethodCallException.php diff --git a/library/Zend/Mail/Header/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Header/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Header/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Header/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Header/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Header/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Header/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Header/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Header/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Header/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Header/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Header/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Header/From.php b/library/TorrentPier/Zend/Mail/Header/From.php similarity index 100% rename from library/Zend/Mail/Header/From.php rename to library/TorrentPier/Zend/Mail/Header/From.php diff --git a/library/Zend/Mail/Header/GenericHeader.php b/library/TorrentPier/Zend/Mail/Header/GenericHeader.php similarity index 100% rename from library/Zend/Mail/Header/GenericHeader.php rename to library/TorrentPier/Zend/Mail/Header/GenericHeader.php diff --git a/library/Zend/Mail/Header/GenericMultiHeader.php b/library/TorrentPier/Zend/Mail/Header/GenericMultiHeader.php similarity index 100% rename from library/Zend/Mail/Header/GenericMultiHeader.php rename to library/TorrentPier/Zend/Mail/Header/GenericMultiHeader.php diff --git a/library/Zend/Mail/Header/HeaderInterface.php b/library/TorrentPier/Zend/Mail/Header/HeaderInterface.php similarity index 100% rename from library/Zend/Mail/Header/HeaderInterface.php rename to library/TorrentPier/Zend/Mail/Header/HeaderInterface.php diff --git a/library/Zend/Mail/Header/HeaderLoader.php b/library/TorrentPier/Zend/Mail/Header/HeaderLoader.php similarity index 100% rename from library/Zend/Mail/Header/HeaderLoader.php rename to library/TorrentPier/Zend/Mail/Header/HeaderLoader.php diff --git a/library/Zend/Mail/Header/HeaderWrap.php b/library/TorrentPier/Zend/Mail/Header/HeaderWrap.php similarity index 100% rename from library/Zend/Mail/Header/HeaderWrap.php rename to library/TorrentPier/Zend/Mail/Header/HeaderWrap.php diff --git a/library/Zend/Mail/Header/MessageId.php b/library/TorrentPier/Zend/Mail/Header/MessageId.php similarity index 100% rename from library/Zend/Mail/Header/MessageId.php rename to library/TorrentPier/Zend/Mail/Header/MessageId.php diff --git a/library/Zend/Mail/Header/MimeVersion.php b/library/TorrentPier/Zend/Mail/Header/MimeVersion.php similarity index 100% rename from library/Zend/Mail/Header/MimeVersion.php rename to library/TorrentPier/Zend/Mail/Header/MimeVersion.php diff --git a/library/Zend/Mail/Header/MultipleHeadersInterface.php b/library/TorrentPier/Zend/Mail/Header/MultipleHeadersInterface.php similarity index 100% rename from library/Zend/Mail/Header/MultipleHeadersInterface.php rename to library/TorrentPier/Zend/Mail/Header/MultipleHeadersInterface.php diff --git a/library/Zend/Mail/Header/Received.php b/library/TorrentPier/Zend/Mail/Header/Received.php similarity index 100% rename from library/Zend/Mail/Header/Received.php rename to library/TorrentPier/Zend/Mail/Header/Received.php diff --git a/library/Zend/Mail/Header/ReplyTo.php b/library/TorrentPier/Zend/Mail/Header/ReplyTo.php similarity index 100% rename from library/Zend/Mail/Header/ReplyTo.php rename to library/TorrentPier/Zend/Mail/Header/ReplyTo.php diff --git a/library/Zend/Mail/Header/Sender.php b/library/TorrentPier/Zend/Mail/Header/Sender.php similarity index 100% rename from library/Zend/Mail/Header/Sender.php rename to library/TorrentPier/Zend/Mail/Header/Sender.php diff --git a/library/Zend/Mail/Header/StructuredInterface.php b/library/TorrentPier/Zend/Mail/Header/StructuredInterface.php similarity index 100% rename from library/Zend/Mail/Header/StructuredInterface.php rename to library/TorrentPier/Zend/Mail/Header/StructuredInterface.php diff --git a/library/Zend/Mail/Header/Subject.php b/library/TorrentPier/Zend/Mail/Header/Subject.php similarity index 100% rename from library/Zend/Mail/Header/Subject.php rename to library/TorrentPier/Zend/Mail/Header/Subject.php diff --git a/library/Zend/Mail/Header/To.php b/library/TorrentPier/Zend/Mail/Header/To.php similarity index 100% rename from library/Zend/Mail/Header/To.php rename to library/TorrentPier/Zend/Mail/Header/To.php diff --git a/library/Zend/Mail/Header/UnstructuredInterface.php b/library/TorrentPier/Zend/Mail/Header/UnstructuredInterface.php similarity index 100% rename from library/Zend/Mail/Header/UnstructuredInterface.php rename to library/TorrentPier/Zend/Mail/Header/UnstructuredInterface.php diff --git a/library/Zend/Mail/Headers.php b/library/TorrentPier/Zend/Mail/Headers.php similarity index 100% rename from library/Zend/Mail/Headers.php rename to library/TorrentPier/Zend/Mail/Headers.php diff --git a/library/Zend/Mail/Message.php b/library/TorrentPier/Zend/Mail/Message.php similarity index 100% rename from library/Zend/Mail/Message.php rename to library/TorrentPier/Zend/Mail/Message.php diff --git a/library/Zend/Mail/MessageFactory.php b/library/TorrentPier/Zend/Mail/MessageFactory.php similarity index 100% rename from library/Zend/Mail/MessageFactory.php rename to library/TorrentPier/Zend/Mail/MessageFactory.php diff --git a/library/Zend/Mail/Protocol/AbstractProtocol.php b/library/TorrentPier/Zend/Mail/Protocol/AbstractProtocol.php similarity index 100% rename from library/Zend/Mail/Protocol/AbstractProtocol.php rename to library/TorrentPier/Zend/Mail/Protocol/AbstractProtocol.php diff --git a/library/Zend/Mail/Protocol/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Protocol/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Protocol/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Protocol/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Protocol/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Protocol/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Protocol/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Protocol/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Protocol/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Protocol/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Protocol/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Protocol/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Protocol/Imap.php b/library/TorrentPier/Zend/Mail/Protocol/Imap.php similarity index 100% rename from library/Zend/Mail/Protocol/Imap.php rename to library/TorrentPier/Zend/Mail/Protocol/Imap.php diff --git a/library/Zend/Mail/Protocol/Pop3.php b/library/TorrentPier/Zend/Mail/Protocol/Pop3.php similarity index 100% rename from library/Zend/Mail/Protocol/Pop3.php rename to library/TorrentPier/Zend/Mail/Protocol/Pop3.php diff --git a/library/Zend/Mail/Protocol/Smtp.php b/library/TorrentPier/Zend/Mail/Protocol/Smtp.php similarity index 100% rename from library/Zend/Mail/Protocol/Smtp.php rename to library/TorrentPier/Zend/Mail/Protocol/Smtp.php diff --git a/library/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php b/library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php similarity index 100% rename from library/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php rename to library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php diff --git a/library/Zend/Mail/Protocol/Smtp/Auth/Login.php b/library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Login.php similarity index 100% rename from library/Zend/Mail/Protocol/Smtp/Auth/Login.php rename to library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Login.php diff --git a/library/Zend/Mail/Protocol/Smtp/Auth/Plain.php b/library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Plain.php similarity index 100% rename from library/Zend/Mail/Protocol/Smtp/Auth/Plain.php rename to library/TorrentPier/Zend/Mail/Protocol/Smtp/Auth/Plain.php diff --git a/library/Zend/Mail/Protocol/SmtpPluginManager.php b/library/TorrentPier/Zend/Mail/Protocol/SmtpPluginManager.php similarity index 100% rename from library/Zend/Mail/Protocol/SmtpPluginManager.php rename to library/TorrentPier/Zend/Mail/Protocol/SmtpPluginManager.php diff --git a/library/Zend/Mail/README.md b/library/TorrentPier/Zend/Mail/README.md similarity index 100% rename from library/Zend/Mail/README.md rename to library/TorrentPier/Zend/Mail/README.md diff --git a/library/Zend/Mail/Storage.php b/library/TorrentPier/Zend/Mail/Storage.php similarity index 100% rename from library/Zend/Mail/Storage.php rename to library/TorrentPier/Zend/Mail/Storage.php diff --git a/library/Zend/Mail/Storage/AbstractStorage.php b/library/TorrentPier/Zend/Mail/Storage/AbstractStorage.php similarity index 100% rename from library/Zend/Mail/Storage/AbstractStorage.php rename to library/TorrentPier/Zend/Mail/Storage/AbstractStorage.php diff --git a/library/Zend/Mail/Storage/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Storage/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Storage/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Storage/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Storage/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Storage/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Storage/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Mail/Storage/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Mail/Storage/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Mail/Storage/Exception/OutOfBoundsException.php diff --git a/library/Zend/Mail/Storage/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Storage/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Storage/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Storage/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Storage/Folder.php b/library/TorrentPier/Zend/Mail/Storage/Folder.php similarity index 100% rename from library/Zend/Mail/Storage/Folder.php rename to library/TorrentPier/Zend/Mail/Storage/Folder.php diff --git a/library/Zend/Mail/Storage/Folder/FolderInterface.php b/library/TorrentPier/Zend/Mail/Storage/Folder/FolderInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Folder/FolderInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Folder/FolderInterface.php diff --git a/library/Zend/Mail/Storage/Folder/Maildir.php b/library/TorrentPier/Zend/Mail/Storage/Folder/Maildir.php similarity index 100% rename from library/Zend/Mail/Storage/Folder/Maildir.php rename to library/TorrentPier/Zend/Mail/Storage/Folder/Maildir.php diff --git a/library/Zend/Mail/Storage/Folder/Mbox.php b/library/TorrentPier/Zend/Mail/Storage/Folder/Mbox.php similarity index 100% rename from library/Zend/Mail/Storage/Folder/Mbox.php rename to library/TorrentPier/Zend/Mail/Storage/Folder/Mbox.php diff --git a/library/Zend/Mail/Storage/Imap.php b/library/TorrentPier/Zend/Mail/Storage/Imap.php similarity index 100% rename from library/Zend/Mail/Storage/Imap.php rename to library/TorrentPier/Zend/Mail/Storage/Imap.php diff --git a/library/Zend/Mail/Storage/Maildir.php b/library/TorrentPier/Zend/Mail/Storage/Maildir.php similarity index 100% rename from library/Zend/Mail/Storage/Maildir.php rename to library/TorrentPier/Zend/Mail/Storage/Maildir.php diff --git a/library/Zend/Mail/Storage/Mbox.php b/library/TorrentPier/Zend/Mail/Storage/Mbox.php similarity index 100% rename from library/Zend/Mail/Storage/Mbox.php rename to library/TorrentPier/Zend/Mail/Storage/Mbox.php diff --git a/library/Zend/Mail/Storage/Message.php b/library/TorrentPier/Zend/Mail/Storage/Message.php similarity index 100% rename from library/Zend/Mail/Storage/Message.php rename to library/TorrentPier/Zend/Mail/Storage/Message.php diff --git a/library/Zend/Mail/Storage/Message/File.php b/library/TorrentPier/Zend/Mail/Storage/Message/File.php similarity index 100% rename from library/Zend/Mail/Storage/Message/File.php rename to library/TorrentPier/Zend/Mail/Storage/Message/File.php diff --git a/library/Zend/Mail/Storage/Message/MessageInterface.php b/library/TorrentPier/Zend/Mail/Storage/Message/MessageInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Message/MessageInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Message/MessageInterface.php diff --git a/library/Zend/Mail/Storage/Part.php b/library/TorrentPier/Zend/Mail/Storage/Part.php similarity index 100% rename from library/Zend/Mail/Storage/Part.php rename to library/TorrentPier/Zend/Mail/Storage/Part.php diff --git a/library/Zend/Mail/Storage/Part/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Storage/Part/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Part/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Part/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Storage/Part/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Storage/Part/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Storage/Part/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Storage/Part/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Storage/Part/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Storage/Part/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Storage/Part/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Storage/Part/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Storage/Part/File.php b/library/TorrentPier/Zend/Mail/Storage/Part/File.php similarity index 100% rename from library/Zend/Mail/Storage/Part/File.php rename to library/TorrentPier/Zend/Mail/Storage/Part/File.php diff --git a/library/Zend/Mail/Storage/Part/PartInterface.php b/library/TorrentPier/Zend/Mail/Storage/Part/PartInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Part/PartInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Part/PartInterface.php diff --git a/library/Zend/Mail/Storage/Pop3.php b/library/TorrentPier/Zend/Mail/Storage/Pop3.php similarity index 100% rename from library/Zend/Mail/Storage/Pop3.php rename to library/TorrentPier/Zend/Mail/Storage/Pop3.php diff --git a/library/Zend/Mail/Storage/Writable/Maildir.php b/library/TorrentPier/Zend/Mail/Storage/Writable/Maildir.php similarity index 100% rename from library/Zend/Mail/Storage/Writable/Maildir.php rename to library/TorrentPier/Zend/Mail/Storage/Writable/Maildir.php diff --git a/library/Zend/Mail/Storage/Writable/WritableInterface.php b/library/TorrentPier/Zend/Mail/Storage/Writable/WritableInterface.php similarity index 100% rename from library/Zend/Mail/Storage/Writable/WritableInterface.php rename to library/TorrentPier/Zend/Mail/Storage/Writable/WritableInterface.php diff --git a/library/Zend/Mail/Transport/Envelope.php b/library/TorrentPier/Zend/Mail/Transport/Envelope.php similarity index 100% rename from library/Zend/Mail/Transport/Envelope.php rename to library/TorrentPier/Zend/Mail/Transport/Envelope.php diff --git a/library/Zend/Mail/Transport/Exception/DomainException.php b/library/TorrentPier/Zend/Mail/Transport/Exception/DomainException.php similarity index 100% rename from library/Zend/Mail/Transport/Exception/DomainException.php rename to library/TorrentPier/Zend/Mail/Transport/Exception/DomainException.php diff --git a/library/Zend/Mail/Transport/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mail/Transport/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mail/Transport/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mail/Transport/Exception/ExceptionInterface.php diff --git a/library/Zend/Mail/Transport/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mail/Transport/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mail/Transport/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mail/Transport/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mail/Transport/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mail/Transport/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mail/Transport/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mail/Transport/Exception/RuntimeException.php diff --git a/library/Zend/Mail/Transport/Factory.php b/library/TorrentPier/Zend/Mail/Transport/Factory.php similarity index 100% rename from library/Zend/Mail/Transport/Factory.php rename to library/TorrentPier/Zend/Mail/Transport/Factory.php diff --git a/library/Zend/Mail/Transport/File.php b/library/TorrentPier/Zend/Mail/Transport/File.php similarity index 100% rename from library/Zend/Mail/Transport/File.php rename to library/TorrentPier/Zend/Mail/Transport/File.php diff --git a/library/Zend/Mail/Transport/FileOptions.php b/library/TorrentPier/Zend/Mail/Transport/FileOptions.php similarity index 100% rename from library/Zend/Mail/Transport/FileOptions.php rename to library/TorrentPier/Zend/Mail/Transport/FileOptions.php diff --git a/library/Zend/Mail/Transport/InMemory.php b/library/TorrentPier/Zend/Mail/Transport/InMemory.php similarity index 100% rename from library/Zend/Mail/Transport/InMemory.php rename to library/TorrentPier/Zend/Mail/Transport/InMemory.php diff --git a/library/Zend/Mail/Transport/Null.php b/library/TorrentPier/Zend/Mail/Transport/Null.php similarity index 100% rename from library/Zend/Mail/Transport/Null.php rename to library/TorrentPier/Zend/Mail/Transport/Null.php diff --git a/library/Zend/Mail/Transport/Sendmail.php b/library/TorrentPier/Zend/Mail/Transport/Sendmail.php similarity index 100% rename from library/Zend/Mail/Transport/Sendmail.php rename to library/TorrentPier/Zend/Mail/Transport/Sendmail.php diff --git a/library/Zend/Mail/Transport/Smtp.php b/library/TorrentPier/Zend/Mail/Transport/Smtp.php similarity index 100% rename from library/Zend/Mail/Transport/Smtp.php rename to library/TorrentPier/Zend/Mail/Transport/Smtp.php diff --git a/library/Zend/Mail/Transport/SmtpOptions.php b/library/TorrentPier/Zend/Mail/Transport/SmtpOptions.php similarity index 100% rename from library/Zend/Mail/Transport/SmtpOptions.php rename to library/TorrentPier/Zend/Mail/Transport/SmtpOptions.php diff --git a/library/Zend/Mail/Transport/TransportInterface.php b/library/TorrentPier/Zend/Mail/Transport/TransportInterface.php similarity index 100% rename from library/Zend/Mail/Transport/TransportInterface.php rename to library/TorrentPier/Zend/Mail/Transport/TransportInterface.php diff --git a/library/Zend/Mail/composer.json b/library/TorrentPier/Zend/Mail/composer.json similarity index 100% rename from library/Zend/Mail/composer.json rename to library/TorrentPier/Zend/Mail/composer.json diff --git a/library/Zend/Math/BigInteger/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Math/BigInteger/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Math/BigInteger/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Math/BigInteger/Adapter/AdapterInterface.php diff --git a/library/Zend/Math/BigInteger/Adapter/Bcmath.php b/library/TorrentPier/Zend/Math/BigInteger/Adapter/Bcmath.php similarity index 100% rename from library/Zend/Math/BigInteger/Adapter/Bcmath.php rename to library/TorrentPier/Zend/Math/BigInteger/Adapter/Bcmath.php diff --git a/library/Zend/Math/BigInteger/Adapter/Gmp.php b/library/TorrentPier/Zend/Math/BigInteger/Adapter/Gmp.php similarity index 100% rename from library/Zend/Math/BigInteger/Adapter/Gmp.php rename to library/TorrentPier/Zend/Math/BigInteger/Adapter/Gmp.php diff --git a/library/Zend/Math/BigInteger/AdapterPluginManager.php b/library/TorrentPier/Zend/Math/BigInteger/AdapterPluginManager.php similarity index 100% rename from library/Zend/Math/BigInteger/AdapterPluginManager.php rename to library/TorrentPier/Zend/Math/BigInteger/AdapterPluginManager.php diff --git a/library/Zend/Math/BigInteger/BigInteger.php b/library/TorrentPier/Zend/Math/BigInteger/BigInteger.php similarity index 100% rename from library/Zend/Math/BigInteger/BigInteger.php rename to library/TorrentPier/Zend/Math/BigInteger/BigInteger.php diff --git a/library/Zend/Math/BigInteger/Exception/DivisionByZeroException.php b/library/TorrentPier/Zend/Math/BigInteger/Exception/DivisionByZeroException.php similarity index 100% rename from library/Zend/Math/BigInteger/Exception/DivisionByZeroException.php rename to library/TorrentPier/Zend/Math/BigInteger/Exception/DivisionByZeroException.php diff --git a/library/Zend/Math/BigInteger/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Math/BigInteger/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Math/BigInteger/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Math/BigInteger/Exception/ExceptionInterface.php diff --git a/library/Zend/Math/BigInteger/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Math/BigInteger/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Math/BigInteger/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Math/BigInteger/Exception/InvalidArgumentException.php diff --git a/library/Zend/Math/BigInteger/Exception/RuntimeException.php b/library/TorrentPier/Zend/Math/BigInteger/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Math/BigInteger/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Math/BigInteger/Exception/RuntimeException.php diff --git a/library/Zend/Math/CONTRIBUTING.md b/library/TorrentPier/Zend/Math/CONTRIBUTING.md similarity index 100% rename from library/Zend/Math/CONTRIBUTING.md rename to library/TorrentPier/Zend/Math/CONTRIBUTING.md diff --git a/library/Zend/Math/Exception/DomainException.php b/library/TorrentPier/Zend/Math/Exception/DomainException.php similarity index 100% rename from library/Zend/Math/Exception/DomainException.php rename to library/TorrentPier/Zend/Math/Exception/DomainException.php diff --git a/library/Zend/Math/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Math/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Math/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Math/Exception/ExceptionInterface.php diff --git a/library/Zend/Math/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Math/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Math/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Math/Exception/InvalidArgumentException.php diff --git a/library/Zend/Math/Exception/RuntimeException.php b/library/TorrentPier/Zend/Math/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Math/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Math/Exception/RuntimeException.php diff --git a/library/Zend/Math/README.md b/library/TorrentPier/Zend/Math/README.md similarity index 100% rename from library/Zend/Math/README.md rename to library/TorrentPier/Zend/Math/README.md diff --git a/library/Zend/Math/Rand.php b/library/TorrentPier/Zend/Math/Rand.php similarity index 100% rename from library/Zend/Math/Rand.php rename to library/TorrentPier/Zend/Math/Rand.php diff --git a/library/Zend/Math/Source/HashTiming.php b/library/TorrentPier/Zend/Math/Source/HashTiming.php similarity index 100% rename from library/Zend/Math/Source/HashTiming.php rename to library/TorrentPier/Zend/Math/Source/HashTiming.php diff --git a/library/Zend/Math/composer.json b/library/TorrentPier/Zend/Math/composer.json similarity index 100% rename from library/Zend/Math/composer.json rename to library/TorrentPier/Zend/Math/composer.json diff --git a/library/Zend/Memory/CONTRIBUTING.md b/library/TorrentPier/Zend/Memory/CONTRIBUTING.md similarity index 100% rename from library/Zend/Memory/CONTRIBUTING.md rename to library/TorrentPier/Zend/Memory/CONTRIBUTING.md diff --git a/library/Zend/Memory/Container/AbstractContainer.php b/library/TorrentPier/Zend/Memory/Container/AbstractContainer.php similarity index 100% rename from library/Zend/Memory/Container/AbstractContainer.php rename to library/TorrentPier/Zend/Memory/Container/AbstractContainer.php diff --git a/library/Zend/Memory/Container/AccessController.php b/library/TorrentPier/Zend/Memory/Container/AccessController.php similarity index 100% rename from library/Zend/Memory/Container/AccessController.php rename to library/TorrentPier/Zend/Memory/Container/AccessController.php diff --git a/library/Zend/Memory/Container/ContainerInterface.php b/library/TorrentPier/Zend/Memory/Container/ContainerInterface.php similarity index 100% rename from library/Zend/Memory/Container/ContainerInterface.php rename to library/TorrentPier/Zend/Memory/Container/ContainerInterface.php diff --git a/library/Zend/Memory/Container/Locked.php b/library/TorrentPier/Zend/Memory/Container/Locked.php similarity index 100% rename from library/Zend/Memory/Container/Locked.php rename to library/TorrentPier/Zend/Memory/Container/Locked.php diff --git a/library/Zend/Memory/Container/Movable.php b/library/TorrentPier/Zend/Memory/Container/Movable.php similarity index 100% rename from library/Zend/Memory/Container/Movable.php rename to library/TorrentPier/Zend/Memory/Container/Movable.php diff --git a/library/Zend/Memory/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Memory/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Memory/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Memory/Exception/ExceptionInterface.php diff --git a/library/Zend/Memory/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Memory/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Memory/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Memory/Exception/InvalidArgumentException.php diff --git a/library/Zend/Memory/Exception/RuntimeException.php b/library/TorrentPier/Zend/Memory/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Memory/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Memory/Exception/RuntimeException.php diff --git a/library/Zend/Memory/MemoryManager.php b/library/TorrentPier/Zend/Memory/MemoryManager.php similarity index 100% rename from library/Zend/Memory/MemoryManager.php rename to library/TorrentPier/Zend/Memory/MemoryManager.php diff --git a/library/Zend/Memory/README.md b/library/TorrentPier/Zend/Memory/README.md similarity index 100% rename from library/Zend/Memory/README.md rename to library/TorrentPier/Zend/Memory/README.md diff --git a/library/Zend/Memory/Value.php b/library/TorrentPier/Zend/Memory/Value.php similarity index 100% rename from library/Zend/Memory/Value.php rename to library/TorrentPier/Zend/Memory/Value.php diff --git a/library/Zend/Memory/composer.json b/library/TorrentPier/Zend/Memory/composer.json similarity index 100% rename from library/Zend/Memory/composer.json rename to library/TorrentPier/Zend/Memory/composer.json diff --git a/library/Zend/Mime/CONTRIBUTING.md b/library/TorrentPier/Zend/Mime/CONTRIBUTING.md similarity index 100% rename from library/Zend/Mime/CONTRIBUTING.md rename to library/TorrentPier/Zend/Mime/CONTRIBUTING.md diff --git a/library/Zend/Mime/Decode.php b/library/TorrentPier/Zend/Mime/Decode.php similarity index 100% rename from library/Zend/Mime/Decode.php rename to library/TorrentPier/Zend/Mime/Decode.php diff --git a/library/Zend/Mime/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mime/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mime/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mime/Exception/ExceptionInterface.php diff --git a/library/Zend/Mime/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mime/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mime/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mime/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mime/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mime/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mime/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mime/Exception/RuntimeException.php diff --git a/library/Zend/Mime/Message.php b/library/TorrentPier/Zend/Mime/Message.php similarity index 100% rename from library/Zend/Mime/Message.php rename to library/TorrentPier/Zend/Mime/Message.php diff --git a/library/Zend/Mime/Mime.php b/library/TorrentPier/Zend/Mime/Mime.php similarity index 100% rename from library/Zend/Mime/Mime.php rename to library/TorrentPier/Zend/Mime/Mime.php diff --git a/library/Zend/Mime/Part.php b/library/TorrentPier/Zend/Mime/Part.php similarity index 100% rename from library/Zend/Mime/Part.php rename to library/TorrentPier/Zend/Mime/Part.php diff --git a/library/Zend/Mime/README.md b/library/TorrentPier/Zend/Mime/README.md similarity index 100% rename from library/Zend/Mime/README.md rename to library/TorrentPier/Zend/Mime/README.md diff --git a/library/Zend/Mime/composer.json b/library/TorrentPier/Zend/Mime/composer.json similarity index 100% rename from library/Zend/Mime/composer.json rename to library/TorrentPier/Zend/Mime/composer.json diff --git a/library/Zend/ModuleManager/CONTRIBUTING.md b/library/TorrentPier/Zend/ModuleManager/CONTRIBUTING.md similarity index 100% rename from library/Zend/ModuleManager/CONTRIBUTING.md rename to library/TorrentPier/Zend/ModuleManager/CONTRIBUTING.md diff --git a/library/Zend/ModuleManager/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/ModuleManager/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/ModuleManager/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/ModuleManager/Exception/ExceptionInterface.php diff --git a/library/Zend/ModuleManager/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/ModuleManager/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/ModuleManager/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/ModuleManager/Exception/InvalidArgumentException.php diff --git a/library/Zend/ModuleManager/Exception/MissingDependencyModuleException.php b/library/TorrentPier/Zend/ModuleManager/Exception/MissingDependencyModuleException.php similarity index 100% rename from library/Zend/ModuleManager/Exception/MissingDependencyModuleException.php rename to library/TorrentPier/Zend/ModuleManager/Exception/MissingDependencyModuleException.php diff --git a/library/Zend/ModuleManager/Exception/RuntimeException.php b/library/TorrentPier/Zend/ModuleManager/Exception/RuntimeException.php similarity index 100% rename from library/Zend/ModuleManager/Exception/RuntimeException.php rename to library/TorrentPier/Zend/ModuleManager/Exception/RuntimeException.php diff --git a/library/Zend/ModuleManager/Feature/AutoloaderProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/AutoloaderProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/AutoloaderProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/AutoloaderProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/BootstrapListenerInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/BootstrapListenerInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/BootstrapListenerInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/BootstrapListenerInterface.php diff --git a/library/Zend/ModuleManager/Feature/ConfigProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ConfigProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ConfigProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ConfigProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ConsoleBannerProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ConsoleBannerProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ConsoleBannerProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ConsoleBannerProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ConsoleUsageProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ConsoleUsageProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ConsoleUsageProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ConsoleUsageProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ControllerPluginProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ControllerPluginProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ControllerPluginProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ControllerPluginProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ControllerProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ControllerProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ControllerProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ControllerProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/DependencyIndicatorInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/DependencyIndicatorInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/DependencyIndicatorInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/DependencyIndicatorInterface.php diff --git a/library/Zend/ModuleManager/Feature/FilterProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/FilterProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/FilterProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/FilterProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/FormElementProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/FormElementProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/FormElementProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/FormElementProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/HydratorProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/HydratorProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/HydratorProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/HydratorProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/InitProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/InitProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/InitProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/InitProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/InputFilterProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/InputFilterProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/InputFilterProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/InputFilterProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/LocatorRegisteredInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/LocatorRegisteredInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/LocatorRegisteredInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/LocatorRegisteredInterface.php diff --git a/library/Zend/ModuleManager/Feature/LogProcessorProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/LogProcessorProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/LogProcessorProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/LogProcessorProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/LogWriterProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/LogWriterProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/LogWriterProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/LogWriterProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/RouteProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/RouteProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/RouteProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/RouteProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/SerializerProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/SerializerProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/SerializerProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/SerializerProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ServiceProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ServiceProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ServiceProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ServiceProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/TranslatorPluginProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/TranslatorPluginProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/TranslatorPluginProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/TranslatorPluginProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ValidatorProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ValidatorProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ValidatorProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ValidatorProviderInterface.php diff --git a/library/Zend/ModuleManager/Feature/ViewHelperProviderInterface.php b/library/TorrentPier/Zend/ModuleManager/Feature/ViewHelperProviderInterface.php similarity index 100% rename from library/Zend/ModuleManager/Feature/ViewHelperProviderInterface.php rename to library/TorrentPier/Zend/ModuleManager/Feature/ViewHelperProviderInterface.php diff --git a/library/Zend/ModuleManager/Listener/AbstractListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/AbstractListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/AbstractListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/AbstractListener.php diff --git a/library/Zend/ModuleManager/Listener/AutoloaderListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/AutoloaderListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/AutoloaderListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/AutoloaderListener.php diff --git a/library/Zend/ModuleManager/Listener/ConfigListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/ConfigListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ConfigListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ConfigListener.php diff --git a/library/Zend/ModuleManager/Listener/ConfigMergerInterface.php b/library/TorrentPier/Zend/ModuleManager/Listener/ConfigMergerInterface.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ConfigMergerInterface.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ConfigMergerInterface.php diff --git a/library/Zend/ModuleManager/Listener/DefaultListenerAggregate.php b/library/TorrentPier/Zend/ModuleManager/Listener/DefaultListenerAggregate.php similarity index 100% rename from library/Zend/ModuleManager/Listener/DefaultListenerAggregate.php rename to library/TorrentPier/Zend/ModuleManager/Listener/DefaultListenerAggregate.php diff --git a/library/Zend/ModuleManager/Listener/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/ModuleManager/Listener/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/ModuleManager/Listener/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/ModuleManager/Listener/Exception/ExceptionInterface.php diff --git a/library/Zend/ModuleManager/Listener/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/ModuleManager/Listener/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/ModuleManager/Listener/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/ModuleManager/Listener/Exception/InvalidArgumentException.php diff --git a/library/Zend/ModuleManager/Listener/Exception/RuntimeException.php b/library/TorrentPier/Zend/ModuleManager/Listener/Exception/RuntimeException.php similarity index 100% rename from library/Zend/ModuleManager/Listener/Exception/RuntimeException.php rename to library/TorrentPier/Zend/ModuleManager/Listener/Exception/RuntimeException.php diff --git a/library/Zend/ModuleManager/Listener/InitTrigger.php b/library/TorrentPier/Zend/ModuleManager/Listener/InitTrigger.php similarity index 100% rename from library/Zend/ModuleManager/Listener/InitTrigger.php rename to library/TorrentPier/Zend/ModuleManager/Listener/InitTrigger.php diff --git a/library/Zend/ModuleManager/Listener/ListenerOptions.php b/library/TorrentPier/Zend/ModuleManager/Listener/ListenerOptions.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ListenerOptions.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ListenerOptions.php diff --git a/library/Zend/ModuleManager/Listener/LocatorRegistrationListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/LocatorRegistrationListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/LocatorRegistrationListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/LocatorRegistrationListener.php diff --git a/library/Zend/ModuleManager/Listener/ModuleDependencyCheckerListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/ModuleDependencyCheckerListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ModuleDependencyCheckerListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ModuleDependencyCheckerListener.php diff --git a/library/Zend/ModuleManager/Listener/ModuleLoaderListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/ModuleLoaderListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ModuleLoaderListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ModuleLoaderListener.php diff --git a/library/Zend/ModuleManager/Listener/ModuleResolverListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/ModuleResolverListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ModuleResolverListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ModuleResolverListener.php diff --git a/library/Zend/ModuleManager/Listener/OnBootstrapListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/OnBootstrapListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/OnBootstrapListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/OnBootstrapListener.php diff --git a/library/Zend/ModuleManager/Listener/ServiceListener.php b/library/TorrentPier/Zend/ModuleManager/Listener/ServiceListener.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ServiceListener.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ServiceListener.php diff --git a/library/Zend/ModuleManager/Listener/ServiceListenerInterface.php b/library/TorrentPier/Zend/ModuleManager/Listener/ServiceListenerInterface.php similarity index 100% rename from library/Zend/ModuleManager/Listener/ServiceListenerInterface.php rename to library/TorrentPier/Zend/ModuleManager/Listener/ServiceListenerInterface.php diff --git a/library/Zend/ModuleManager/ModuleEvent.php b/library/TorrentPier/Zend/ModuleManager/ModuleEvent.php similarity index 100% rename from library/Zend/ModuleManager/ModuleEvent.php rename to library/TorrentPier/Zend/ModuleManager/ModuleEvent.php diff --git a/library/Zend/ModuleManager/ModuleManager.php b/library/TorrentPier/Zend/ModuleManager/ModuleManager.php similarity index 100% rename from library/Zend/ModuleManager/ModuleManager.php rename to library/TorrentPier/Zend/ModuleManager/ModuleManager.php diff --git a/library/Zend/ModuleManager/ModuleManagerInterface.php b/library/TorrentPier/Zend/ModuleManager/ModuleManagerInterface.php similarity index 100% rename from library/Zend/ModuleManager/ModuleManagerInterface.php rename to library/TorrentPier/Zend/ModuleManager/ModuleManagerInterface.php diff --git a/library/Zend/ModuleManager/README.md b/library/TorrentPier/Zend/ModuleManager/README.md similarity index 100% rename from library/Zend/ModuleManager/README.md rename to library/TorrentPier/Zend/ModuleManager/README.md diff --git a/library/Zend/ModuleManager/composer.json b/library/TorrentPier/Zend/ModuleManager/composer.json similarity index 100% rename from library/Zend/ModuleManager/composer.json rename to library/TorrentPier/Zend/ModuleManager/composer.json diff --git a/library/Zend/Mvc/Application.php b/library/TorrentPier/Zend/Mvc/Application.php similarity index 100% rename from library/Zend/Mvc/Application.php rename to library/TorrentPier/Zend/Mvc/Application.php diff --git a/library/Zend/Mvc/ApplicationInterface.php b/library/TorrentPier/Zend/Mvc/ApplicationInterface.php similarity index 100% rename from library/Zend/Mvc/ApplicationInterface.php rename to library/TorrentPier/Zend/Mvc/ApplicationInterface.php diff --git a/library/Zend/Mvc/CONTRIBUTING.md b/library/TorrentPier/Zend/Mvc/CONTRIBUTING.md similarity index 100% rename from library/Zend/Mvc/CONTRIBUTING.md rename to library/TorrentPier/Zend/Mvc/CONTRIBUTING.md diff --git a/library/Zend/Mvc/Controller/AbstractActionController.php b/library/TorrentPier/Zend/Mvc/Controller/AbstractActionController.php similarity index 100% rename from library/Zend/Mvc/Controller/AbstractActionController.php rename to library/TorrentPier/Zend/Mvc/Controller/AbstractActionController.php diff --git a/library/Zend/Mvc/Controller/AbstractConsoleController.php b/library/TorrentPier/Zend/Mvc/Controller/AbstractConsoleController.php similarity index 100% rename from library/Zend/Mvc/Controller/AbstractConsoleController.php rename to library/TorrentPier/Zend/Mvc/Controller/AbstractConsoleController.php diff --git a/library/Zend/Mvc/Controller/AbstractController.php b/library/TorrentPier/Zend/Mvc/Controller/AbstractController.php similarity index 100% rename from library/Zend/Mvc/Controller/AbstractController.php rename to library/TorrentPier/Zend/Mvc/Controller/AbstractController.php diff --git a/library/Zend/Mvc/Controller/AbstractRestfulController.php b/library/TorrentPier/Zend/Mvc/Controller/AbstractRestfulController.php similarity index 100% rename from library/Zend/Mvc/Controller/AbstractRestfulController.php rename to library/TorrentPier/Zend/Mvc/Controller/AbstractRestfulController.php diff --git a/library/Zend/Mvc/Controller/ControllerManager.php b/library/TorrentPier/Zend/Mvc/Controller/ControllerManager.php similarity index 100% rename from library/Zend/Mvc/Controller/ControllerManager.php rename to library/TorrentPier/Zend/Mvc/Controller/ControllerManager.php diff --git a/library/Zend/Mvc/Controller/Plugin/AbstractPlugin.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/AbstractPlugin.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/AbstractPlugin.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/AbstractPlugin.php diff --git a/library/Zend/Mvc/Controller/Plugin/AcceptableViewModelSelector.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/AcceptableViewModelSelector.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/AcceptableViewModelSelector.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/AcceptableViewModelSelector.php diff --git a/library/Zend/Mvc/Controller/Plugin/CreateConsoleNotFoundModel.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/CreateConsoleNotFoundModel.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/CreateConsoleNotFoundModel.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/CreateConsoleNotFoundModel.php diff --git a/library/Zend/Mvc/Controller/Plugin/CreateHttpNotFoundModel.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/CreateHttpNotFoundModel.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/CreateHttpNotFoundModel.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/CreateHttpNotFoundModel.php diff --git a/library/Zend/Mvc/Controller/Plugin/FilePostRedirectGet.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/FilePostRedirectGet.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/FilePostRedirectGet.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/FilePostRedirectGet.php diff --git a/library/Zend/Mvc/Controller/Plugin/FlashMessenger.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/FlashMessenger.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/FlashMessenger.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/FlashMessenger.php diff --git a/library/Zend/Mvc/Controller/Plugin/Forward.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Forward.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Forward.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Forward.php diff --git a/library/Zend/Mvc/Controller/Plugin/Identity.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Identity.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Identity.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Identity.php diff --git a/library/Zend/Mvc/Controller/Plugin/Layout.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Layout.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Layout.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Layout.php diff --git a/library/Zend/Mvc/Controller/Plugin/Params.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Params.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Params.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Params.php diff --git a/library/Zend/Mvc/Controller/Plugin/PluginInterface.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/PluginInterface.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/PluginInterface.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/PluginInterface.php diff --git a/library/Zend/Mvc/Controller/Plugin/PostRedirectGet.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/PostRedirectGet.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/PostRedirectGet.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/PostRedirectGet.php diff --git a/library/Zend/Mvc/Controller/Plugin/Redirect.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Redirect.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Redirect.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Redirect.php diff --git a/library/Zend/Mvc/Controller/Plugin/Service/ForwardFactory.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Service/ForwardFactory.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Service/ForwardFactory.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Service/ForwardFactory.php diff --git a/library/Zend/Mvc/Controller/Plugin/Service/IdentityFactory.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Service/IdentityFactory.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Service/IdentityFactory.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Service/IdentityFactory.php diff --git a/library/Zend/Mvc/Controller/Plugin/Url.php b/library/TorrentPier/Zend/Mvc/Controller/Plugin/Url.php similarity index 100% rename from library/Zend/Mvc/Controller/Plugin/Url.php rename to library/TorrentPier/Zend/Mvc/Controller/Plugin/Url.php diff --git a/library/Zend/Mvc/Controller/PluginManager.php b/library/TorrentPier/Zend/Mvc/Controller/PluginManager.php similarity index 100% rename from library/Zend/Mvc/Controller/PluginManager.php rename to library/TorrentPier/Zend/Mvc/Controller/PluginManager.php diff --git a/library/Zend/Mvc/DispatchListener.php b/library/TorrentPier/Zend/Mvc/DispatchListener.php similarity index 100% rename from library/Zend/Mvc/DispatchListener.php rename to library/TorrentPier/Zend/Mvc/DispatchListener.php diff --git a/library/Zend/Mvc/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Mvc/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Mvc/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Mvc/Exception/BadMethodCallException.php diff --git a/library/Zend/Mvc/Exception/DomainException.php b/library/TorrentPier/Zend/Mvc/Exception/DomainException.php similarity index 100% rename from library/Zend/Mvc/Exception/DomainException.php rename to library/TorrentPier/Zend/Mvc/Exception/DomainException.php diff --git a/library/Zend/Mvc/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mvc/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mvc/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mvc/Exception/ExceptionInterface.php diff --git a/library/Zend/Mvc/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mvc/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mvc/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mvc/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mvc/Exception/InvalidControllerException.php b/library/TorrentPier/Zend/Mvc/Exception/InvalidControllerException.php similarity index 100% rename from library/Zend/Mvc/Exception/InvalidControllerException.php rename to library/TorrentPier/Zend/Mvc/Exception/InvalidControllerException.php diff --git a/library/Zend/Mvc/Exception/InvalidPluginException.php b/library/TorrentPier/Zend/Mvc/Exception/InvalidPluginException.php similarity index 100% rename from library/Zend/Mvc/Exception/InvalidPluginException.php rename to library/TorrentPier/Zend/Mvc/Exception/InvalidPluginException.php diff --git a/library/Zend/Mvc/Exception/MissingLocatorException.php b/library/TorrentPier/Zend/Mvc/Exception/MissingLocatorException.php similarity index 100% rename from library/Zend/Mvc/Exception/MissingLocatorException.php rename to library/TorrentPier/Zend/Mvc/Exception/MissingLocatorException.php diff --git a/library/Zend/Mvc/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mvc/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mvc/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mvc/Exception/RuntimeException.php diff --git a/library/Zend/Mvc/HttpMethodListener.php b/library/TorrentPier/Zend/Mvc/HttpMethodListener.php similarity index 100% rename from library/Zend/Mvc/HttpMethodListener.php rename to library/TorrentPier/Zend/Mvc/HttpMethodListener.php diff --git a/library/Zend/Mvc/I18n/DummyTranslator.php b/library/TorrentPier/Zend/Mvc/I18n/DummyTranslator.php similarity index 100% rename from library/Zend/Mvc/I18n/DummyTranslator.php rename to library/TorrentPier/Zend/Mvc/I18n/DummyTranslator.php diff --git a/library/Zend/Mvc/I18n/Translator.php b/library/TorrentPier/Zend/Mvc/I18n/Translator.php similarity index 100% rename from library/Zend/Mvc/I18n/Translator.php rename to library/TorrentPier/Zend/Mvc/I18n/Translator.php diff --git a/library/Zend/Mvc/InjectApplicationEventInterface.php b/library/TorrentPier/Zend/Mvc/InjectApplicationEventInterface.php similarity index 100% rename from library/Zend/Mvc/InjectApplicationEventInterface.php rename to library/TorrentPier/Zend/Mvc/InjectApplicationEventInterface.php diff --git a/library/Zend/Mvc/ModuleRouteListener.php b/library/TorrentPier/Zend/Mvc/ModuleRouteListener.php similarity index 100% rename from library/Zend/Mvc/ModuleRouteListener.php rename to library/TorrentPier/Zend/Mvc/ModuleRouteListener.php diff --git a/library/Zend/Mvc/MvcEvent.php b/library/TorrentPier/Zend/Mvc/MvcEvent.php similarity index 100% rename from library/Zend/Mvc/MvcEvent.php rename to library/TorrentPier/Zend/Mvc/MvcEvent.php diff --git a/library/Zend/Mvc/README.md b/library/TorrentPier/Zend/Mvc/README.md similarity index 100% rename from library/Zend/Mvc/README.md rename to library/TorrentPier/Zend/Mvc/README.md diff --git a/library/Zend/Mvc/ResponseSender/AbstractResponseSender.php b/library/TorrentPier/Zend/Mvc/ResponseSender/AbstractResponseSender.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/AbstractResponseSender.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/AbstractResponseSender.php diff --git a/library/Zend/Mvc/ResponseSender/ConsoleResponseSender.php b/library/TorrentPier/Zend/Mvc/ResponseSender/ConsoleResponseSender.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/ConsoleResponseSender.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/ConsoleResponseSender.php diff --git a/library/Zend/Mvc/ResponseSender/HttpResponseSender.php b/library/TorrentPier/Zend/Mvc/ResponseSender/HttpResponseSender.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/HttpResponseSender.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/HttpResponseSender.php diff --git a/library/Zend/Mvc/ResponseSender/PhpEnvironmentResponseSender.php b/library/TorrentPier/Zend/Mvc/ResponseSender/PhpEnvironmentResponseSender.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/PhpEnvironmentResponseSender.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/PhpEnvironmentResponseSender.php diff --git a/library/Zend/Mvc/ResponseSender/ResponseSenderInterface.php b/library/TorrentPier/Zend/Mvc/ResponseSender/ResponseSenderInterface.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/ResponseSenderInterface.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/ResponseSenderInterface.php diff --git a/library/Zend/Mvc/ResponseSender/SendResponseEvent.php b/library/TorrentPier/Zend/Mvc/ResponseSender/SendResponseEvent.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/SendResponseEvent.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/SendResponseEvent.php diff --git a/library/Zend/Mvc/ResponseSender/SimpleStreamResponseSender.php b/library/TorrentPier/Zend/Mvc/ResponseSender/SimpleStreamResponseSender.php similarity index 100% rename from library/Zend/Mvc/ResponseSender/SimpleStreamResponseSender.php rename to library/TorrentPier/Zend/Mvc/ResponseSender/SimpleStreamResponseSender.php diff --git a/library/Zend/Mvc/RouteListener.php b/library/TorrentPier/Zend/Mvc/RouteListener.php similarity index 100% rename from library/Zend/Mvc/RouteListener.php rename to library/TorrentPier/Zend/Mvc/RouteListener.php diff --git a/library/Zend/Mvc/Router/Console/Catchall.php b/library/TorrentPier/Zend/Mvc/Router/Console/Catchall.php similarity index 100% rename from library/Zend/Mvc/Router/Console/Catchall.php rename to library/TorrentPier/Zend/Mvc/Router/Console/Catchall.php diff --git a/library/Zend/Mvc/Router/Console/RouteInterface.php b/library/TorrentPier/Zend/Mvc/Router/Console/RouteInterface.php similarity index 100% rename from library/Zend/Mvc/Router/Console/RouteInterface.php rename to library/TorrentPier/Zend/Mvc/Router/Console/RouteInterface.php diff --git a/library/Zend/Mvc/Router/Console/RouteMatch.php b/library/TorrentPier/Zend/Mvc/Router/Console/RouteMatch.php similarity index 100% rename from library/Zend/Mvc/Router/Console/RouteMatch.php rename to library/TorrentPier/Zend/Mvc/Router/Console/RouteMatch.php diff --git a/library/Zend/Mvc/Router/Console/Simple.php b/library/TorrentPier/Zend/Mvc/Router/Console/Simple.php similarity index 100% rename from library/Zend/Mvc/Router/Console/Simple.php rename to library/TorrentPier/Zend/Mvc/Router/Console/Simple.php diff --git a/library/Zend/Mvc/Router/Console/SimpleRouteStack.php b/library/TorrentPier/Zend/Mvc/Router/Console/SimpleRouteStack.php similarity index 100% rename from library/Zend/Mvc/Router/Console/SimpleRouteStack.php rename to library/TorrentPier/Zend/Mvc/Router/Console/SimpleRouteStack.php diff --git a/library/Zend/Mvc/Router/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Mvc/Router/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Mvc/Router/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Mvc/Router/Exception/ExceptionInterface.php diff --git a/library/Zend/Mvc/Router/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Mvc/Router/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Mvc/Router/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Mvc/Router/Exception/InvalidArgumentException.php diff --git a/library/Zend/Mvc/Router/Exception/RuntimeException.php b/library/TorrentPier/Zend/Mvc/Router/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Mvc/Router/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Mvc/Router/Exception/RuntimeException.php diff --git a/library/Zend/Mvc/Router/Http/Chain.php b/library/TorrentPier/Zend/Mvc/Router/Http/Chain.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Chain.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Chain.php diff --git a/library/Zend/Mvc/Router/Http/Hostname.php b/library/TorrentPier/Zend/Mvc/Router/Http/Hostname.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Hostname.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Hostname.php diff --git a/library/Zend/Mvc/Router/Http/Literal.php b/library/TorrentPier/Zend/Mvc/Router/Http/Literal.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Literal.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Literal.php diff --git a/library/Zend/Mvc/Router/Http/Method.php b/library/TorrentPier/Zend/Mvc/Router/Http/Method.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Method.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Method.php diff --git a/library/Zend/Mvc/Router/Http/Part.php b/library/TorrentPier/Zend/Mvc/Router/Http/Part.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Part.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Part.php diff --git a/library/Zend/Mvc/Router/Http/Query.php b/library/TorrentPier/Zend/Mvc/Router/Http/Query.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Query.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Query.php diff --git a/library/Zend/Mvc/Router/Http/Regex.php b/library/TorrentPier/Zend/Mvc/Router/Http/Regex.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Regex.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Regex.php diff --git a/library/Zend/Mvc/Router/Http/RouteInterface.php b/library/TorrentPier/Zend/Mvc/Router/Http/RouteInterface.php similarity index 100% rename from library/Zend/Mvc/Router/Http/RouteInterface.php rename to library/TorrentPier/Zend/Mvc/Router/Http/RouteInterface.php diff --git a/library/Zend/Mvc/Router/Http/RouteMatch.php b/library/TorrentPier/Zend/Mvc/Router/Http/RouteMatch.php similarity index 100% rename from library/Zend/Mvc/Router/Http/RouteMatch.php rename to library/TorrentPier/Zend/Mvc/Router/Http/RouteMatch.php diff --git a/library/Zend/Mvc/Router/Http/Scheme.php b/library/TorrentPier/Zend/Mvc/Router/Http/Scheme.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Scheme.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Scheme.php diff --git a/library/Zend/Mvc/Router/Http/Segment.php b/library/TorrentPier/Zend/Mvc/Router/Http/Segment.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Segment.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Segment.php diff --git a/library/Zend/Mvc/Router/Http/TranslatorAwareTreeRouteStack.php b/library/TorrentPier/Zend/Mvc/Router/Http/TranslatorAwareTreeRouteStack.php similarity index 100% rename from library/Zend/Mvc/Router/Http/TranslatorAwareTreeRouteStack.php rename to library/TorrentPier/Zend/Mvc/Router/Http/TranslatorAwareTreeRouteStack.php diff --git a/library/Zend/Mvc/Router/Http/TreeRouteStack.php b/library/TorrentPier/Zend/Mvc/Router/Http/TreeRouteStack.php similarity index 100% rename from library/Zend/Mvc/Router/Http/TreeRouteStack.php rename to library/TorrentPier/Zend/Mvc/Router/Http/TreeRouteStack.php diff --git a/library/Zend/Mvc/Router/Http/Wildcard.php b/library/TorrentPier/Zend/Mvc/Router/Http/Wildcard.php similarity index 100% rename from library/Zend/Mvc/Router/Http/Wildcard.php rename to library/TorrentPier/Zend/Mvc/Router/Http/Wildcard.php diff --git a/library/Zend/Mvc/Router/PriorityList.php b/library/TorrentPier/Zend/Mvc/Router/PriorityList.php similarity index 100% rename from library/Zend/Mvc/Router/PriorityList.php rename to library/TorrentPier/Zend/Mvc/Router/PriorityList.php diff --git a/library/Zend/Mvc/Router/RouteInterface.php b/library/TorrentPier/Zend/Mvc/Router/RouteInterface.php similarity index 100% rename from library/Zend/Mvc/Router/RouteInterface.php rename to library/TorrentPier/Zend/Mvc/Router/RouteInterface.php diff --git a/library/Zend/Mvc/Router/RouteMatch.php b/library/TorrentPier/Zend/Mvc/Router/RouteMatch.php similarity index 100% rename from library/Zend/Mvc/Router/RouteMatch.php rename to library/TorrentPier/Zend/Mvc/Router/RouteMatch.php diff --git a/library/Zend/Mvc/Router/RoutePluginManager.php b/library/TorrentPier/Zend/Mvc/Router/RoutePluginManager.php similarity index 100% rename from library/Zend/Mvc/Router/RoutePluginManager.php rename to library/TorrentPier/Zend/Mvc/Router/RoutePluginManager.php diff --git a/library/Zend/Mvc/Router/RouteStackInterface.php b/library/TorrentPier/Zend/Mvc/Router/RouteStackInterface.php similarity index 100% rename from library/Zend/Mvc/Router/RouteStackInterface.php rename to library/TorrentPier/Zend/Mvc/Router/RouteStackInterface.php diff --git a/library/Zend/Mvc/Router/SimpleRouteStack.php b/library/TorrentPier/Zend/Mvc/Router/SimpleRouteStack.php similarity index 100% rename from library/Zend/Mvc/Router/SimpleRouteStack.php rename to library/TorrentPier/Zend/Mvc/Router/SimpleRouteStack.php diff --git a/library/Zend/Mvc/SendResponseListener.php b/library/TorrentPier/Zend/Mvc/SendResponseListener.php similarity index 100% rename from library/Zend/Mvc/SendResponseListener.php rename to library/TorrentPier/Zend/Mvc/SendResponseListener.php diff --git a/library/Zend/Mvc/Service/AbstractPluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/AbstractPluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/AbstractPluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/AbstractPluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/ApplicationFactory.php b/library/TorrentPier/Zend/Mvc/Service/ApplicationFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ApplicationFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ApplicationFactory.php diff --git a/library/Zend/Mvc/Service/ConfigFactory.php b/library/TorrentPier/Zend/Mvc/Service/ConfigFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ConfigFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ConfigFactory.php diff --git a/library/Zend/Mvc/Service/ConsoleAdapterFactory.php b/library/TorrentPier/Zend/Mvc/Service/ConsoleAdapterFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ConsoleAdapterFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ConsoleAdapterFactory.php diff --git a/library/Zend/Mvc/Service/ConsoleViewManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ConsoleViewManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ConsoleViewManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ConsoleViewManagerFactory.php diff --git a/library/Zend/Mvc/Service/ControllerLoaderFactory.php b/library/TorrentPier/Zend/Mvc/Service/ControllerLoaderFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ControllerLoaderFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ControllerLoaderFactory.php diff --git a/library/Zend/Mvc/Service/ControllerPluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ControllerPluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ControllerPluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ControllerPluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/DiAbstractServiceFactoryFactory.php b/library/TorrentPier/Zend/Mvc/Service/DiAbstractServiceFactoryFactory.php similarity index 100% rename from library/Zend/Mvc/Service/DiAbstractServiceFactoryFactory.php rename to library/TorrentPier/Zend/Mvc/Service/DiAbstractServiceFactoryFactory.php diff --git a/library/Zend/Mvc/Service/DiFactory.php b/library/TorrentPier/Zend/Mvc/Service/DiFactory.php similarity index 100% rename from library/Zend/Mvc/Service/DiFactory.php rename to library/TorrentPier/Zend/Mvc/Service/DiFactory.php diff --git a/library/Zend/Mvc/Service/DiServiceInitializerFactory.php b/library/TorrentPier/Zend/Mvc/Service/DiServiceInitializerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/DiServiceInitializerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/DiServiceInitializerFactory.php diff --git a/library/Zend/Mvc/Service/DiStrictAbstractServiceFactory.php b/library/TorrentPier/Zend/Mvc/Service/DiStrictAbstractServiceFactory.php similarity index 100% rename from library/Zend/Mvc/Service/DiStrictAbstractServiceFactory.php rename to library/TorrentPier/Zend/Mvc/Service/DiStrictAbstractServiceFactory.php diff --git a/library/Zend/Mvc/Service/DiStrictAbstractServiceFactoryFactory.php b/library/TorrentPier/Zend/Mvc/Service/DiStrictAbstractServiceFactoryFactory.php similarity index 100% rename from library/Zend/Mvc/Service/DiStrictAbstractServiceFactoryFactory.php rename to library/TorrentPier/Zend/Mvc/Service/DiStrictAbstractServiceFactoryFactory.php diff --git a/library/Zend/Mvc/Service/EventManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/EventManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/EventManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/EventManagerFactory.php diff --git a/library/Zend/Mvc/Service/FilterManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/FilterManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/FilterManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/FilterManagerFactory.php diff --git a/library/Zend/Mvc/Service/FormAnnotationBuilderFactory.php b/library/TorrentPier/Zend/Mvc/Service/FormAnnotationBuilderFactory.php similarity index 100% rename from library/Zend/Mvc/Service/FormAnnotationBuilderFactory.php rename to library/TorrentPier/Zend/Mvc/Service/FormAnnotationBuilderFactory.php diff --git a/library/Zend/Mvc/Service/FormElementManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/FormElementManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/FormElementManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/FormElementManagerFactory.php diff --git a/library/Zend/Mvc/Service/HttpMethodListenerFactory.php b/library/TorrentPier/Zend/Mvc/Service/HttpMethodListenerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/HttpMethodListenerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/HttpMethodListenerFactory.php diff --git a/library/Zend/Mvc/Service/HttpViewManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/HttpViewManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/HttpViewManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/HttpViewManagerFactory.php diff --git a/library/Zend/Mvc/Service/HydratorManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/HydratorManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/HydratorManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/HydratorManagerFactory.php diff --git a/library/Zend/Mvc/Service/InjectTemplateListenerFactory.php b/library/TorrentPier/Zend/Mvc/Service/InjectTemplateListenerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/InjectTemplateListenerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/InjectTemplateListenerFactory.php diff --git a/library/Zend/Mvc/Service/InputFilterManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/InputFilterManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/InputFilterManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/InputFilterManagerFactory.php diff --git a/library/Zend/Mvc/Service/LogProcessorManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/LogProcessorManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/LogProcessorManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/LogProcessorManagerFactory.php diff --git a/library/Zend/Mvc/Service/LogWriterManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/LogWriterManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/LogWriterManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/LogWriterManagerFactory.php diff --git a/library/Zend/Mvc/Service/ModuleManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ModuleManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ModuleManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ModuleManagerFactory.php diff --git a/library/Zend/Mvc/Service/PaginatorPluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/PaginatorPluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/PaginatorPluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/PaginatorPluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/RequestFactory.php b/library/TorrentPier/Zend/Mvc/Service/RequestFactory.php similarity index 100% rename from library/Zend/Mvc/Service/RequestFactory.php rename to library/TorrentPier/Zend/Mvc/Service/RequestFactory.php diff --git a/library/Zend/Mvc/Service/ResponseFactory.php b/library/TorrentPier/Zend/Mvc/Service/ResponseFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ResponseFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ResponseFactory.php diff --git a/library/Zend/Mvc/Service/RoutePluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/RoutePluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/RoutePluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/RoutePluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/RouterFactory.php b/library/TorrentPier/Zend/Mvc/Service/RouterFactory.php similarity index 100% rename from library/Zend/Mvc/Service/RouterFactory.php rename to library/TorrentPier/Zend/Mvc/Service/RouterFactory.php diff --git a/library/Zend/Mvc/Service/SerializerAdapterPluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/SerializerAdapterPluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/SerializerAdapterPluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/SerializerAdapterPluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/ServiceListenerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ServiceListenerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ServiceListenerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ServiceListenerFactory.php diff --git a/library/Zend/Mvc/Service/ServiceManagerConfig.php b/library/TorrentPier/Zend/Mvc/Service/ServiceManagerConfig.php similarity index 100% rename from library/Zend/Mvc/Service/ServiceManagerConfig.php rename to library/TorrentPier/Zend/Mvc/Service/ServiceManagerConfig.php diff --git a/library/Zend/Mvc/Service/TranslatorPluginManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/TranslatorPluginManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/TranslatorPluginManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/TranslatorPluginManagerFactory.php diff --git a/library/Zend/Mvc/Service/TranslatorServiceFactory.php b/library/TorrentPier/Zend/Mvc/Service/TranslatorServiceFactory.php similarity index 100% rename from library/Zend/Mvc/Service/TranslatorServiceFactory.php rename to library/TorrentPier/Zend/Mvc/Service/TranslatorServiceFactory.php diff --git a/library/Zend/Mvc/Service/ValidatorManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ValidatorManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ValidatorManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ValidatorManagerFactory.php diff --git a/library/Zend/Mvc/Service/ViewFeedStrategyFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewFeedStrategyFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewFeedStrategyFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewFeedStrategyFactory.php diff --git a/library/Zend/Mvc/Service/ViewHelperManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewHelperManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewHelperManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewHelperManagerFactory.php diff --git a/library/Zend/Mvc/Service/ViewJsonStrategyFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewJsonStrategyFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewJsonStrategyFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewJsonStrategyFactory.php diff --git a/library/Zend/Mvc/Service/ViewManagerFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewManagerFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewManagerFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewManagerFactory.php diff --git a/library/Zend/Mvc/Service/ViewPrefixPathStackResolverFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewPrefixPathStackResolverFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewPrefixPathStackResolverFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewPrefixPathStackResolverFactory.php diff --git a/library/Zend/Mvc/Service/ViewResolverFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewResolverFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewResolverFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewResolverFactory.php diff --git a/library/Zend/Mvc/Service/ViewTemplateMapResolverFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewTemplateMapResolverFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewTemplateMapResolverFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewTemplateMapResolverFactory.php diff --git a/library/Zend/Mvc/Service/ViewTemplatePathStackFactory.php b/library/TorrentPier/Zend/Mvc/Service/ViewTemplatePathStackFactory.php similarity index 100% rename from library/Zend/Mvc/Service/ViewTemplatePathStackFactory.php rename to library/TorrentPier/Zend/Mvc/Service/ViewTemplatePathStackFactory.php diff --git a/library/Zend/Mvc/View/Console/CreateViewModelListener.php b/library/TorrentPier/Zend/Mvc/View/Console/CreateViewModelListener.php similarity index 100% rename from library/Zend/Mvc/View/Console/CreateViewModelListener.php rename to library/TorrentPier/Zend/Mvc/View/Console/CreateViewModelListener.php diff --git a/library/Zend/Mvc/View/Console/DefaultRenderingStrategy.php b/library/TorrentPier/Zend/Mvc/View/Console/DefaultRenderingStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Console/DefaultRenderingStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Console/DefaultRenderingStrategy.php diff --git a/library/Zend/Mvc/View/Console/ExceptionStrategy.php b/library/TorrentPier/Zend/Mvc/View/Console/ExceptionStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Console/ExceptionStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Console/ExceptionStrategy.php diff --git a/library/Zend/Mvc/View/Console/InjectNamedConsoleParamsListener.php b/library/TorrentPier/Zend/Mvc/View/Console/InjectNamedConsoleParamsListener.php similarity index 100% rename from library/Zend/Mvc/View/Console/InjectNamedConsoleParamsListener.php rename to library/TorrentPier/Zend/Mvc/View/Console/InjectNamedConsoleParamsListener.php diff --git a/library/Zend/Mvc/View/Console/InjectViewModelListener.php b/library/TorrentPier/Zend/Mvc/View/Console/InjectViewModelListener.php similarity index 100% rename from library/Zend/Mvc/View/Console/InjectViewModelListener.php rename to library/TorrentPier/Zend/Mvc/View/Console/InjectViewModelListener.php diff --git a/library/Zend/Mvc/View/Console/RouteNotFoundStrategy.php b/library/TorrentPier/Zend/Mvc/View/Console/RouteNotFoundStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Console/RouteNotFoundStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Console/RouteNotFoundStrategy.php diff --git a/library/Zend/Mvc/View/Console/ViewManager.php b/library/TorrentPier/Zend/Mvc/View/Console/ViewManager.php similarity index 100% rename from library/Zend/Mvc/View/Console/ViewManager.php rename to library/TorrentPier/Zend/Mvc/View/Console/ViewManager.php diff --git a/library/Zend/Mvc/View/Http/CreateViewModelListener.php b/library/TorrentPier/Zend/Mvc/View/Http/CreateViewModelListener.php similarity index 100% rename from library/Zend/Mvc/View/Http/CreateViewModelListener.php rename to library/TorrentPier/Zend/Mvc/View/Http/CreateViewModelListener.php diff --git a/library/Zend/Mvc/View/Http/DefaultRenderingStrategy.php b/library/TorrentPier/Zend/Mvc/View/Http/DefaultRenderingStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Http/DefaultRenderingStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Http/DefaultRenderingStrategy.php diff --git a/library/Zend/Mvc/View/Http/ExceptionStrategy.php b/library/TorrentPier/Zend/Mvc/View/Http/ExceptionStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Http/ExceptionStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Http/ExceptionStrategy.php diff --git a/library/Zend/Mvc/View/Http/InjectRoutematchParamsListener.php b/library/TorrentPier/Zend/Mvc/View/Http/InjectRoutematchParamsListener.php similarity index 100% rename from library/Zend/Mvc/View/Http/InjectRoutematchParamsListener.php rename to library/TorrentPier/Zend/Mvc/View/Http/InjectRoutematchParamsListener.php diff --git a/library/Zend/Mvc/View/Http/InjectTemplateListener.php b/library/TorrentPier/Zend/Mvc/View/Http/InjectTemplateListener.php similarity index 100% rename from library/Zend/Mvc/View/Http/InjectTemplateListener.php rename to library/TorrentPier/Zend/Mvc/View/Http/InjectTemplateListener.php diff --git a/library/Zend/Mvc/View/Http/InjectViewModelListener.php b/library/TorrentPier/Zend/Mvc/View/Http/InjectViewModelListener.php similarity index 100% rename from library/Zend/Mvc/View/Http/InjectViewModelListener.php rename to library/TorrentPier/Zend/Mvc/View/Http/InjectViewModelListener.php diff --git a/library/Zend/Mvc/View/Http/RouteNotFoundStrategy.php b/library/TorrentPier/Zend/Mvc/View/Http/RouteNotFoundStrategy.php similarity index 100% rename from library/Zend/Mvc/View/Http/RouteNotFoundStrategy.php rename to library/TorrentPier/Zend/Mvc/View/Http/RouteNotFoundStrategy.php diff --git a/library/Zend/Mvc/View/Http/ViewManager.php b/library/TorrentPier/Zend/Mvc/View/Http/ViewManager.php similarity index 100% rename from library/Zend/Mvc/View/Http/ViewManager.php rename to library/TorrentPier/Zend/Mvc/View/Http/ViewManager.php diff --git a/library/Zend/Mvc/View/SendResponseListener.php b/library/TorrentPier/Zend/Mvc/View/SendResponseListener.php similarity index 100% rename from library/Zend/Mvc/View/SendResponseListener.php rename to library/TorrentPier/Zend/Mvc/View/SendResponseListener.php diff --git a/library/Zend/Mvc/composer.json b/library/TorrentPier/Zend/Mvc/composer.json similarity index 100% rename from library/Zend/Mvc/composer.json rename to library/TorrentPier/Zend/Mvc/composer.json diff --git a/library/Zend/Navigation/AbstractContainer.php b/library/TorrentPier/Zend/Navigation/AbstractContainer.php similarity index 100% rename from library/Zend/Navigation/AbstractContainer.php rename to library/TorrentPier/Zend/Navigation/AbstractContainer.php diff --git a/library/Zend/Navigation/CONTRIBUTING.md b/library/TorrentPier/Zend/Navigation/CONTRIBUTING.md similarity index 100% rename from library/Zend/Navigation/CONTRIBUTING.md rename to library/TorrentPier/Zend/Navigation/CONTRIBUTING.md diff --git a/library/Zend/Navigation/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Navigation/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Navigation/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Navigation/Exception/BadMethodCallException.php diff --git a/library/Zend/Navigation/Exception/DomainException.php b/library/TorrentPier/Zend/Navigation/Exception/DomainException.php similarity index 100% rename from library/Zend/Navigation/Exception/DomainException.php rename to library/TorrentPier/Zend/Navigation/Exception/DomainException.php diff --git a/library/Zend/Navigation/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Navigation/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Navigation/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Navigation/Exception/ExceptionInterface.php diff --git a/library/Zend/Navigation/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Navigation/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Navigation/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Navigation/Exception/InvalidArgumentException.php diff --git a/library/Zend/Navigation/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Navigation/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Navigation/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Navigation/Exception/OutOfBoundsException.php diff --git a/library/Zend/Navigation/Navigation.php b/library/TorrentPier/Zend/Navigation/Navigation.php similarity index 100% rename from library/Zend/Navigation/Navigation.php rename to library/TorrentPier/Zend/Navigation/Navigation.php diff --git a/library/Zend/Navigation/Page/AbstractPage.php b/library/TorrentPier/Zend/Navigation/Page/AbstractPage.php similarity index 100% rename from library/Zend/Navigation/Page/AbstractPage.php rename to library/TorrentPier/Zend/Navigation/Page/AbstractPage.php diff --git a/library/Zend/Navigation/Page/Mvc.php b/library/TorrentPier/Zend/Navigation/Page/Mvc.php similarity index 100% rename from library/Zend/Navigation/Page/Mvc.php rename to library/TorrentPier/Zend/Navigation/Page/Mvc.php diff --git a/library/Zend/Navigation/Page/Uri.php b/library/TorrentPier/Zend/Navigation/Page/Uri.php similarity index 100% rename from library/Zend/Navigation/Page/Uri.php rename to library/TorrentPier/Zend/Navigation/Page/Uri.php diff --git a/library/Zend/Navigation/README.md b/library/TorrentPier/Zend/Navigation/README.md similarity index 100% rename from library/Zend/Navigation/README.md rename to library/TorrentPier/Zend/Navigation/README.md diff --git a/library/Zend/Navigation/Service/AbstractNavigationFactory.php b/library/TorrentPier/Zend/Navigation/Service/AbstractNavigationFactory.php similarity index 100% rename from library/Zend/Navigation/Service/AbstractNavigationFactory.php rename to library/TorrentPier/Zend/Navigation/Service/AbstractNavigationFactory.php diff --git a/library/Zend/Navigation/Service/ConstructedNavigationFactory.php b/library/TorrentPier/Zend/Navigation/Service/ConstructedNavigationFactory.php similarity index 100% rename from library/Zend/Navigation/Service/ConstructedNavigationFactory.php rename to library/TorrentPier/Zend/Navigation/Service/ConstructedNavigationFactory.php diff --git a/library/Zend/Navigation/Service/DefaultNavigationFactory.php b/library/TorrentPier/Zend/Navigation/Service/DefaultNavigationFactory.php similarity index 100% rename from library/Zend/Navigation/Service/DefaultNavigationFactory.php rename to library/TorrentPier/Zend/Navigation/Service/DefaultNavigationFactory.php diff --git a/library/Zend/Navigation/Service/NavigationAbstractServiceFactory.php b/library/TorrentPier/Zend/Navigation/Service/NavigationAbstractServiceFactory.php similarity index 100% rename from library/Zend/Navigation/Service/NavigationAbstractServiceFactory.php rename to library/TorrentPier/Zend/Navigation/Service/NavigationAbstractServiceFactory.php diff --git a/library/Zend/Navigation/View/HelperConfig.php b/library/TorrentPier/Zend/Navigation/View/HelperConfig.php similarity index 100% rename from library/Zend/Navigation/View/HelperConfig.php rename to library/TorrentPier/Zend/Navigation/View/HelperConfig.php diff --git a/library/Zend/Navigation/composer.json b/library/TorrentPier/Zend/Navigation/composer.json similarity index 100% rename from library/Zend/Navigation/composer.json rename to library/TorrentPier/Zend/Navigation/composer.json diff --git a/library/Zend/Paginator/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Paginator/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Paginator/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Paginator/Adapter/AdapterInterface.php diff --git a/library/Zend/Paginator/Adapter/ArrayAdapter.php b/library/TorrentPier/Zend/Paginator/Adapter/ArrayAdapter.php similarity index 100% rename from library/Zend/Paginator/Adapter/ArrayAdapter.php rename to library/TorrentPier/Zend/Paginator/Adapter/ArrayAdapter.php diff --git a/library/Zend/Paginator/Adapter/Callback.php b/library/TorrentPier/Zend/Paginator/Adapter/Callback.php similarity index 100% rename from library/Zend/Paginator/Adapter/Callback.php rename to library/TorrentPier/Zend/Paginator/Adapter/Callback.php diff --git a/library/Zend/Paginator/Adapter/DbSelect.php b/library/TorrentPier/Zend/Paginator/Adapter/DbSelect.php similarity index 100% rename from library/Zend/Paginator/Adapter/DbSelect.php rename to library/TorrentPier/Zend/Paginator/Adapter/DbSelect.php diff --git a/library/Zend/Paginator/Adapter/DbTableGateway.php b/library/TorrentPier/Zend/Paginator/Adapter/DbTableGateway.php similarity index 100% rename from library/Zend/Paginator/Adapter/DbTableGateway.php rename to library/TorrentPier/Zend/Paginator/Adapter/DbTableGateway.php diff --git a/library/Zend/Paginator/Adapter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Paginator/Adapter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Paginator/Adapter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Paginator/Adapter/Exception/ExceptionInterface.php diff --git a/library/Zend/Paginator/Adapter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Paginator/Adapter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Paginator/Adapter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Paginator/Adapter/Exception/InvalidArgumentException.php diff --git a/library/Zend/Paginator/Adapter/Exception/RuntimeException.php b/library/TorrentPier/Zend/Paginator/Adapter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Paginator/Adapter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Paginator/Adapter/Exception/RuntimeException.php diff --git a/library/Zend/Paginator/Adapter/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Paginator/Adapter/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Paginator/Adapter/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Paginator/Adapter/Exception/UnexpectedValueException.php diff --git a/library/Zend/Paginator/Adapter/Iterator.php b/library/TorrentPier/Zend/Paginator/Adapter/Iterator.php similarity index 100% rename from library/Zend/Paginator/Adapter/Iterator.php rename to library/TorrentPier/Zend/Paginator/Adapter/Iterator.php diff --git a/library/Zend/Paginator/Adapter/Null.php b/library/TorrentPier/Zend/Paginator/Adapter/Null.php similarity index 100% rename from library/Zend/Paginator/Adapter/Null.php rename to library/TorrentPier/Zend/Paginator/Adapter/Null.php diff --git a/library/Zend/Paginator/Adapter/NullFill.php b/library/TorrentPier/Zend/Paginator/Adapter/NullFill.php similarity index 100% rename from library/Zend/Paginator/Adapter/NullFill.php rename to library/TorrentPier/Zend/Paginator/Adapter/NullFill.php diff --git a/library/Zend/Paginator/Adapter/Service/CallbackFactory.php b/library/TorrentPier/Zend/Paginator/Adapter/Service/CallbackFactory.php similarity index 100% rename from library/Zend/Paginator/Adapter/Service/CallbackFactory.php rename to library/TorrentPier/Zend/Paginator/Adapter/Service/CallbackFactory.php diff --git a/library/Zend/Paginator/Adapter/Service/DbSelectFactory.php b/library/TorrentPier/Zend/Paginator/Adapter/Service/DbSelectFactory.php similarity index 100% rename from library/Zend/Paginator/Adapter/Service/DbSelectFactory.php rename to library/TorrentPier/Zend/Paginator/Adapter/Service/DbSelectFactory.php diff --git a/library/Zend/Paginator/Adapter/Service/DbTableGatewayFactory.php b/library/TorrentPier/Zend/Paginator/Adapter/Service/DbTableGatewayFactory.php similarity index 100% rename from library/Zend/Paginator/Adapter/Service/DbTableGatewayFactory.php rename to library/TorrentPier/Zend/Paginator/Adapter/Service/DbTableGatewayFactory.php diff --git a/library/Zend/Paginator/AdapterAggregateInterface.php b/library/TorrentPier/Zend/Paginator/AdapterAggregateInterface.php similarity index 100% rename from library/Zend/Paginator/AdapterAggregateInterface.php rename to library/TorrentPier/Zend/Paginator/AdapterAggregateInterface.php diff --git a/library/Zend/Paginator/AdapterPluginManager.php b/library/TorrentPier/Zend/Paginator/AdapterPluginManager.php similarity index 100% rename from library/Zend/Paginator/AdapterPluginManager.php rename to library/TorrentPier/Zend/Paginator/AdapterPluginManager.php diff --git a/library/Zend/Paginator/CONTRIBUTING.md b/library/TorrentPier/Zend/Paginator/CONTRIBUTING.md similarity index 100% rename from library/Zend/Paginator/CONTRIBUTING.md rename to library/TorrentPier/Zend/Paginator/CONTRIBUTING.md diff --git a/library/Zend/Paginator/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Paginator/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Paginator/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Paginator/Exception/ExceptionInterface.php diff --git a/library/Zend/Paginator/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Paginator/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Paginator/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Paginator/Exception/InvalidArgumentException.php diff --git a/library/Zend/Paginator/Exception/RuntimeException.php b/library/TorrentPier/Zend/Paginator/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Paginator/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Paginator/Exception/RuntimeException.php diff --git a/library/Zend/Paginator/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Paginator/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Paginator/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Paginator/Exception/UnexpectedValueException.php diff --git a/library/Zend/Paginator/Factory.php b/library/TorrentPier/Zend/Paginator/Factory.php similarity index 100% rename from library/Zend/Paginator/Factory.php rename to library/TorrentPier/Zend/Paginator/Factory.php diff --git a/library/Zend/Paginator/Paginator.php b/library/TorrentPier/Zend/Paginator/Paginator.php similarity index 100% rename from library/Zend/Paginator/Paginator.php rename to library/TorrentPier/Zend/Paginator/Paginator.php diff --git a/library/Zend/Paginator/PaginatorIterator.php b/library/TorrentPier/Zend/Paginator/PaginatorIterator.php similarity index 100% rename from library/Zend/Paginator/PaginatorIterator.php rename to library/TorrentPier/Zend/Paginator/PaginatorIterator.php diff --git a/library/Zend/Paginator/README.md b/library/TorrentPier/Zend/Paginator/README.md similarity index 100% rename from library/Zend/Paginator/README.md rename to library/TorrentPier/Zend/Paginator/README.md diff --git a/library/Zend/Paginator/ScrollingStyle/All.php b/library/TorrentPier/Zend/Paginator/ScrollingStyle/All.php similarity index 100% rename from library/Zend/Paginator/ScrollingStyle/All.php rename to library/TorrentPier/Zend/Paginator/ScrollingStyle/All.php diff --git a/library/Zend/Paginator/ScrollingStyle/Elastic.php b/library/TorrentPier/Zend/Paginator/ScrollingStyle/Elastic.php similarity index 100% rename from library/Zend/Paginator/ScrollingStyle/Elastic.php rename to library/TorrentPier/Zend/Paginator/ScrollingStyle/Elastic.php diff --git a/library/Zend/Paginator/ScrollingStyle/Jumping.php b/library/TorrentPier/Zend/Paginator/ScrollingStyle/Jumping.php similarity index 100% rename from library/Zend/Paginator/ScrollingStyle/Jumping.php rename to library/TorrentPier/Zend/Paginator/ScrollingStyle/Jumping.php diff --git a/library/Zend/Paginator/ScrollingStyle/ScrollingStyleInterface.php b/library/TorrentPier/Zend/Paginator/ScrollingStyle/ScrollingStyleInterface.php similarity index 100% rename from library/Zend/Paginator/ScrollingStyle/ScrollingStyleInterface.php rename to library/TorrentPier/Zend/Paginator/ScrollingStyle/ScrollingStyleInterface.php diff --git a/library/Zend/Paginator/ScrollingStyle/Sliding.php b/library/TorrentPier/Zend/Paginator/ScrollingStyle/Sliding.php similarity index 100% rename from library/Zend/Paginator/ScrollingStyle/Sliding.php rename to library/TorrentPier/Zend/Paginator/ScrollingStyle/Sliding.php diff --git a/library/Zend/Paginator/ScrollingStylePluginManager.php b/library/TorrentPier/Zend/Paginator/ScrollingStylePluginManager.php similarity index 100% rename from library/Zend/Paginator/ScrollingStylePluginManager.php rename to library/TorrentPier/Zend/Paginator/ScrollingStylePluginManager.php diff --git a/library/Zend/Paginator/SerializableLimitIterator.php b/library/TorrentPier/Zend/Paginator/SerializableLimitIterator.php similarity index 100% rename from library/Zend/Paginator/SerializableLimitIterator.php rename to library/TorrentPier/Zend/Paginator/SerializableLimitIterator.php diff --git a/library/Zend/Paginator/composer.json b/library/TorrentPier/Zend/Paginator/composer.json similarity index 100% rename from library/Zend/Paginator/composer.json rename to library/TorrentPier/Zend/Paginator/composer.json diff --git a/library/Zend/Permissions/Acl/Acl.php b/library/TorrentPier/Zend/Permissions/Acl/Acl.php similarity index 100% rename from library/Zend/Permissions/Acl/Acl.php rename to library/TorrentPier/Zend/Permissions/Acl/Acl.php diff --git a/library/Zend/Permissions/Acl/AclInterface.php b/library/TorrentPier/Zend/Permissions/Acl/AclInterface.php similarity index 100% rename from library/Zend/Permissions/Acl/AclInterface.php rename to library/TorrentPier/Zend/Permissions/Acl/AclInterface.php diff --git a/library/Zend/Permissions/Acl/Assertion/AssertionAggregate.php b/library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionAggregate.php similarity index 100% rename from library/Zend/Permissions/Acl/Assertion/AssertionAggregate.php rename to library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionAggregate.php diff --git a/library/Zend/Permissions/Acl/Assertion/AssertionInterface.php b/library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionInterface.php similarity index 100% rename from library/Zend/Permissions/Acl/Assertion/AssertionInterface.php rename to library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionInterface.php diff --git a/library/Zend/Permissions/Acl/Assertion/AssertionManager.php b/library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionManager.php similarity index 100% rename from library/Zend/Permissions/Acl/Assertion/AssertionManager.php rename to library/TorrentPier/Zend/Permissions/Acl/Assertion/AssertionManager.php diff --git a/library/Zend/Permissions/Acl/Assertion/CallbackAssertion.php b/library/TorrentPier/Zend/Permissions/Acl/Assertion/CallbackAssertion.php similarity index 100% rename from library/Zend/Permissions/Acl/Assertion/CallbackAssertion.php rename to library/TorrentPier/Zend/Permissions/Acl/Assertion/CallbackAssertion.php diff --git a/library/Zend/Permissions/Acl/Assertion/Exception/InvalidAssertionException.php b/library/TorrentPier/Zend/Permissions/Acl/Assertion/Exception/InvalidAssertionException.php similarity index 100% rename from library/Zend/Permissions/Acl/Assertion/Exception/InvalidAssertionException.php rename to library/TorrentPier/Zend/Permissions/Acl/Assertion/Exception/InvalidAssertionException.php diff --git a/library/Zend/Permissions/Acl/CONTRIBUTING.md b/library/TorrentPier/Zend/Permissions/Acl/CONTRIBUTING.md similarity index 100% rename from library/Zend/Permissions/Acl/CONTRIBUTING.md rename to library/TorrentPier/Zend/Permissions/Acl/CONTRIBUTING.md diff --git a/library/Zend/Permissions/Acl/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Permissions/Acl/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Permissions/Acl/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Permissions/Acl/Exception/ExceptionInterface.php diff --git a/library/Zend/Permissions/Acl/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Permissions/Acl/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Permissions/Acl/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Permissions/Acl/Exception/InvalidArgumentException.php diff --git a/library/Zend/Permissions/Acl/Exception/RuntimeException.php b/library/TorrentPier/Zend/Permissions/Acl/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Permissions/Acl/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Permissions/Acl/Exception/RuntimeException.php diff --git a/library/Zend/Permissions/Acl/README.md b/library/TorrentPier/Zend/Permissions/Acl/README.md similarity index 100% rename from library/Zend/Permissions/Acl/README.md rename to library/TorrentPier/Zend/Permissions/Acl/README.md diff --git a/library/Zend/Permissions/Acl/Resource/GenericResource.php b/library/TorrentPier/Zend/Permissions/Acl/Resource/GenericResource.php similarity index 100% rename from library/Zend/Permissions/Acl/Resource/GenericResource.php rename to library/TorrentPier/Zend/Permissions/Acl/Resource/GenericResource.php diff --git a/library/Zend/Permissions/Acl/Resource/ResourceInterface.php b/library/TorrentPier/Zend/Permissions/Acl/Resource/ResourceInterface.php similarity index 100% rename from library/Zend/Permissions/Acl/Resource/ResourceInterface.php rename to library/TorrentPier/Zend/Permissions/Acl/Resource/ResourceInterface.php diff --git a/library/Zend/Permissions/Acl/Role/GenericRole.php b/library/TorrentPier/Zend/Permissions/Acl/Role/GenericRole.php similarity index 100% rename from library/Zend/Permissions/Acl/Role/GenericRole.php rename to library/TorrentPier/Zend/Permissions/Acl/Role/GenericRole.php diff --git a/library/Zend/Permissions/Acl/Role/Registry.php b/library/TorrentPier/Zend/Permissions/Acl/Role/Registry.php similarity index 100% rename from library/Zend/Permissions/Acl/Role/Registry.php rename to library/TorrentPier/Zend/Permissions/Acl/Role/Registry.php diff --git a/library/Zend/Permissions/Acl/Role/RoleInterface.php b/library/TorrentPier/Zend/Permissions/Acl/Role/RoleInterface.php similarity index 100% rename from library/Zend/Permissions/Acl/Role/RoleInterface.php rename to library/TorrentPier/Zend/Permissions/Acl/Role/RoleInterface.php diff --git a/library/Zend/Permissions/Acl/composer.json b/library/TorrentPier/Zend/Permissions/Acl/composer.json similarity index 100% rename from library/Zend/Permissions/Acl/composer.json rename to library/TorrentPier/Zend/Permissions/Acl/composer.json diff --git a/library/Zend/Permissions/Rbac/AbstractIterator.php b/library/TorrentPier/Zend/Permissions/Rbac/AbstractIterator.php similarity index 100% rename from library/Zend/Permissions/Rbac/AbstractIterator.php rename to library/TorrentPier/Zend/Permissions/Rbac/AbstractIterator.php diff --git a/library/Zend/Permissions/Rbac/AbstractRole.php b/library/TorrentPier/Zend/Permissions/Rbac/AbstractRole.php similarity index 100% rename from library/Zend/Permissions/Rbac/AbstractRole.php rename to library/TorrentPier/Zend/Permissions/Rbac/AbstractRole.php diff --git a/library/Zend/Permissions/Rbac/Assertion/CallbackAssertion.php b/library/TorrentPier/Zend/Permissions/Rbac/Assertion/CallbackAssertion.php similarity index 100% rename from library/Zend/Permissions/Rbac/Assertion/CallbackAssertion.php rename to library/TorrentPier/Zend/Permissions/Rbac/Assertion/CallbackAssertion.php diff --git a/library/Zend/Permissions/Rbac/AssertionInterface.php b/library/TorrentPier/Zend/Permissions/Rbac/AssertionInterface.php similarity index 100% rename from library/Zend/Permissions/Rbac/AssertionInterface.php rename to library/TorrentPier/Zend/Permissions/Rbac/AssertionInterface.php diff --git a/library/Zend/Permissions/Rbac/CONTRIBUTING.md b/library/TorrentPier/Zend/Permissions/Rbac/CONTRIBUTING.md similarity index 100% rename from library/Zend/Permissions/Rbac/CONTRIBUTING.md rename to library/TorrentPier/Zend/Permissions/Rbac/CONTRIBUTING.md diff --git a/library/Zend/Permissions/Rbac/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Permissions/Rbac/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Permissions/Rbac/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Permissions/Rbac/Exception/ExceptionInterface.php diff --git a/library/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php diff --git a/library/Zend/Permissions/Rbac/README.md b/library/TorrentPier/Zend/Permissions/Rbac/README.md similarity index 100% rename from library/Zend/Permissions/Rbac/README.md rename to library/TorrentPier/Zend/Permissions/Rbac/README.md diff --git a/library/Zend/Permissions/Rbac/Rbac.php b/library/TorrentPier/Zend/Permissions/Rbac/Rbac.php similarity index 100% rename from library/Zend/Permissions/Rbac/Rbac.php rename to library/TorrentPier/Zend/Permissions/Rbac/Rbac.php diff --git a/library/Zend/Permissions/Rbac/Role.php b/library/TorrentPier/Zend/Permissions/Rbac/Role.php similarity index 100% rename from library/Zend/Permissions/Rbac/Role.php rename to library/TorrentPier/Zend/Permissions/Rbac/Role.php diff --git a/library/Zend/Permissions/Rbac/RoleInterface.php b/library/TorrentPier/Zend/Permissions/Rbac/RoleInterface.php similarity index 100% rename from library/Zend/Permissions/Rbac/RoleInterface.php rename to library/TorrentPier/Zend/Permissions/Rbac/RoleInterface.php diff --git a/library/Zend/Permissions/Rbac/composer.json b/library/TorrentPier/Zend/Permissions/Rbac/composer.json similarity index 100% rename from library/Zend/Permissions/Rbac/composer.json rename to library/TorrentPier/Zend/Permissions/Rbac/composer.json diff --git a/library/Zend/ProgressBar/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/ProgressBar/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/AbstractAdapter.php diff --git a/library/Zend/ProgressBar/Adapter/Console.php b/library/TorrentPier/Zend/ProgressBar/Adapter/Console.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/Console.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/Console.php diff --git a/library/Zend/ProgressBar/Adapter/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/ProgressBar/Adapter/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/Exception/ExceptionInterface.php diff --git a/library/Zend/ProgressBar/Adapter/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/ProgressBar/Adapter/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/Exception/InvalidArgumentException.php diff --git a/library/Zend/ProgressBar/Adapter/Exception/RuntimeException.php b/library/TorrentPier/Zend/ProgressBar/Adapter/Exception/RuntimeException.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/Exception/RuntimeException.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/Exception/RuntimeException.php diff --git a/library/Zend/ProgressBar/Adapter/JsPull.php b/library/TorrentPier/Zend/ProgressBar/Adapter/JsPull.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/JsPull.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/JsPull.php diff --git a/library/Zend/ProgressBar/Adapter/JsPush.php b/library/TorrentPier/Zend/ProgressBar/Adapter/JsPush.php similarity index 100% rename from library/Zend/ProgressBar/Adapter/JsPush.php rename to library/TorrentPier/Zend/ProgressBar/Adapter/JsPush.php diff --git a/library/Zend/ProgressBar/CONTRIBUTING.md b/library/TorrentPier/Zend/ProgressBar/CONTRIBUTING.md similarity index 100% rename from library/Zend/ProgressBar/CONTRIBUTING.md rename to library/TorrentPier/Zend/ProgressBar/CONTRIBUTING.md diff --git a/library/Zend/ProgressBar/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/ProgressBar/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/ProgressBar/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/ProgressBar/Exception/ExceptionInterface.php diff --git a/library/Zend/ProgressBar/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/ProgressBar/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/ProgressBar/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/ProgressBar/Exception/InvalidArgumentException.php diff --git a/library/Zend/ProgressBar/Exception/OutOfRangeException.php b/library/TorrentPier/Zend/ProgressBar/Exception/OutOfRangeException.php similarity index 100% rename from library/Zend/ProgressBar/Exception/OutOfRangeException.php rename to library/TorrentPier/Zend/ProgressBar/Exception/OutOfRangeException.php diff --git a/library/Zend/ProgressBar/Exception/PhpEnvironmentException.php b/library/TorrentPier/Zend/ProgressBar/Exception/PhpEnvironmentException.php similarity index 100% rename from library/Zend/ProgressBar/Exception/PhpEnvironmentException.php rename to library/TorrentPier/Zend/ProgressBar/Exception/PhpEnvironmentException.php diff --git a/library/Zend/ProgressBar/Exception/RuntimeException.php b/library/TorrentPier/Zend/ProgressBar/Exception/RuntimeException.php similarity index 100% rename from library/Zend/ProgressBar/Exception/RuntimeException.php rename to library/TorrentPier/Zend/ProgressBar/Exception/RuntimeException.php diff --git a/library/Zend/ProgressBar/ProgressBar.php b/library/TorrentPier/Zend/ProgressBar/ProgressBar.php similarity index 100% rename from library/Zend/ProgressBar/ProgressBar.php rename to library/TorrentPier/Zend/ProgressBar/ProgressBar.php diff --git a/library/Zend/ProgressBar/README.md b/library/TorrentPier/Zend/ProgressBar/README.md similarity index 100% rename from library/Zend/ProgressBar/README.md rename to library/TorrentPier/Zend/ProgressBar/README.md diff --git a/library/Zend/ProgressBar/Upload/AbstractUploadHandler.php b/library/TorrentPier/Zend/ProgressBar/Upload/AbstractUploadHandler.php similarity index 100% rename from library/Zend/ProgressBar/Upload/AbstractUploadHandler.php rename to library/TorrentPier/Zend/ProgressBar/Upload/AbstractUploadHandler.php diff --git a/library/Zend/ProgressBar/Upload/ApcProgress.php b/library/TorrentPier/Zend/ProgressBar/Upload/ApcProgress.php similarity index 100% rename from library/Zend/ProgressBar/Upload/ApcProgress.php rename to library/TorrentPier/Zend/ProgressBar/Upload/ApcProgress.php diff --git a/library/Zend/ProgressBar/Upload/SessionProgress.php b/library/TorrentPier/Zend/ProgressBar/Upload/SessionProgress.php similarity index 100% rename from library/Zend/ProgressBar/Upload/SessionProgress.php rename to library/TorrentPier/Zend/ProgressBar/Upload/SessionProgress.php diff --git a/library/Zend/ProgressBar/Upload/UploadHandlerInterface.php b/library/TorrentPier/Zend/ProgressBar/Upload/UploadHandlerInterface.php similarity index 100% rename from library/Zend/ProgressBar/Upload/UploadHandlerInterface.php rename to library/TorrentPier/Zend/ProgressBar/Upload/UploadHandlerInterface.php diff --git a/library/Zend/ProgressBar/Upload/UploadProgress.php b/library/TorrentPier/Zend/ProgressBar/Upload/UploadProgress.php similarity index 100% rename from library/Zend/ProgressBar/Upload/UploadProgress.php rename to library/TorrentPier/Zend/ProgressBar/Upload/UploadProgress.php diff --git a/library/Zend/ProgressBar/composer.json b/library/TorrentPier/Zend/ProgressBar/composer.json similarity index 100% rename from library/Zend/ProgressBar/composer.json rename to library/TorrentPier/Zend/ProgressBar/composer.json diff --git a/library/Zend/Serializer/Adapter/AbstractAdapter.php b/library/TorrentPier/Zend/Serializer/Adapter/AbstractAdapter.php similarity index 100% rename from library/Zend/Serializer/Adapter/AbstractAdapter.php rename to library/TorrentPier/Zend/Serializer/Adapter/AbstractAdapter.php diff --git a/library/Zend/Serializer/Adapter/AdapterInterface.php b/library/TorrentPier/Zend/Serializer/Adapter/AdapterInterface.php similarity index 100% rename from library/Zend/Serializer/Adapter/AdapterInterface.php rename to library/TorrentPier/Zend/Serializer/Adapter/AdapterInterface.php diff --git a/library/Zend/Serializer/Adapter/AdapterOptions.php b/library/TorrentPier/Zend/Serializer/Adapter/AdapterOptions.php similarity index 100% rename from library/Zend/Serializer/Adapter/AdapterOptions.php rename to library/TorrentPier/Zend/Serializer/Adapter/AdapterOptions.php diff --git a/library/Zend/Serializer/Adapter/IgBinary.php b/library/TorrentPier/Zend/Serializer/Adapter/IgBinary.php similarity index 100% rename from library/Zend/Serializer/Adapter/IgBinary.php rename to library/TorrentPier/Zend/Serializer/Adapter/IgBinary.php diff --git a/library/Zend/Serializer/Adapter/Json.php b/library/TorrentPier/Zend/Serializer/Adapter/Json.php similarity index 100% rename from library/Zend/Serializer/Adapter/Json.php rename to library/TorrentPier/Zend/Serializer/Adapter/Json.php diff --git a/library/Zend/Serializer/Adapter/JsonOptions.php b/library/TorrentPier/Zend/Serializer/Adapter/JsonOptions.php similarity index 100% rename from library/Zend/Serializer/Adapter/JsonOptions.php rename to library/TorrentPier/Zend/Serializer/Adapter/JsonOptions.php diff --git a/library/Zend/Serializer/Adapter/MsgPack.php b/library/TorrentPier/Zend/Serializer/Adapter/MsgPack.php similarity index 100% rename from library/Zend/Serializer/Adapter/MsgPack.php rename to library/TorrentPier/Zend/Serializer/Adapter/MsgPack.php diff --git a/library/Zend/Serializer/Adapter/PhpCode.php b/library/TorrentPier/Zend/Serializer/Adapter/PhpCode.php similarity index 100% rename from library/Zend/Serializer/Adapter/PhpCode.php rename to library/TorrentPier/Zend/Serializer/Adapter/PhpCode.php diff --git a/library/Zend/Serializer/Adapter/PhpSerialize.php b/library/TorrentPier/Zend/Serializer/Adapter/PhpSerialize.php similarity index 100% rename from library/Zend/Serializer/Adapter/PhpSerialize.php rename to library/TorrentPier/Zend/Serializer/Adapter/PhpSerialize.php diff --git a/library/Zend/Serializer/Adapter/PythonPickle.php b/library/TorrentPier/Zend/Serializer/Adapter/PythonPickle.php similarity index 100% rename from library/Zend/Serializer/Adapter/PythonPickle.php rename to library/TorrentPier/Zend/Serializer/Adapter/PythonPickle.php diff --git a/library/Zend/Serializer/Adapter/PythonPickleOptions.php b/library/TorrentPier/Zend/Serializer/Adapter/PythonPickleOptions.php similarity index 100% rename from library/Zend/Serializer/Adapter/PythonPickleOptions.php rename to library/TorrentPier/Zend/Serializer/Adapter/PythonPickleOptions.php diff --git a/library/Zend/Serializer/Adapter/Wddx.php b/library/TorrentPier/Zend/Serializer/Adapter/Wddx.php similarity index 100% rename from library/Zend/Serializer/Adapter/Wddx.php rename to library/TorrentPier/Zend/Serializer/Adapter/Wddx.php diff --git a/library/Zend/Serializer/Adapter/WddxOptions.php b/library/TorrentPier/Zend/Serializer/Adapter/WddxOptions.php similarity index 100% rename from library/Zend/Serializer/Adapter/WddxOptions.php rename to library/TorrentPier/Zend/Serializer/Adapter/WddxOptions.php diff --git a/library/Zend/Serializer/AdapterPluginManager.php b/library/TorrentPier/Zend/Serializer/AdapterPluginManager.php similarity index 100% rename from library/Zend/Serializer/AdapterPluginManager.php rename to library/TorrentPier/Zend/Serializer/AdapterPluginManager.php diff --git a/library/Zend/Serializer/CONTRIBUTING.md b/library/TorrentPier/Zend/Serializer/CONTRIBUTING.md similarity index 100% rename from library/Zend/Serializer/CONTRIBUTING.md rename to library/TorrentPier/Zend/Serializer/CONTRIBUTING.md diff --git a/library/Zend/Serializer/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Serializer/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Serializer/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Serializer/Exception/ExceptionInterface.php diff --git a/library/Zend/Serializer/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Serializer/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Serializer/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Serializer/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Serializer/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Serializer/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Serializer/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Serializer/Exception/InvalidArgumentException.php diff --git a/library/Zend/Serializer/Exception/RuntimeException.php b/library/TorrentPier/Zend/Serializer/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Serializer/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Serializer/Exception/RuntimeException.php diff --git a/library/Zend/Serializer/README.md b/library/TorrentPier/Zend/Serializer/README.md similarity index 100% rename from library/Zend/Serializer/README.md rename to library/TorrentPier/Zend/Serializer/README.md diff --git a/library/Zend/Serializer/Serializer.php b/library/TorrentPier/Zend/Serializer/Serializer.php similarity index 100% rename from library/Zend/Serializer/Serializer.php rename to library/TorrentPier/Zend/Serializer/Serializer.php diff --git a/library/Zend/Serializer/composer.json b/library/TorrentPier/Zend/Serializer/composer.json similarity index 100% rename from library/Zend/Serializer/composer.json rename to library/TorrentPier/Zend/Serializer/composer.json diff --git a/library/Zend/Server/AbstractServer.php b/library/TorrentPier/Zend/Server/AbstractServer.php similarity index 100% rename from library/Zend/Server/AbstractServer.php rename to library/TorrentPier/Zend/Server/AbstractServer.php diff --git a/library/Zend/Server/CONTRIBUTING.md b/library/TorrentPier/Zend/Server/CONTRIBUTING.md similarity index 100% rename from library/Zend/Server/CONTRIBUTING.md rename to library/TorrentPier/Zend/Server/CONTRIBUTING.md diff --git a/library/Zend/Server/Cache.php b/library/TorrentPier/Zend/Server/Cache.php similarity index 100% rename from library/Zend/Server/Cache.php rename to library/TorrentPier/Zend/Server/Cache.php diff --git a/library/Zend/Server/Client.php b/library/TorrentPier/Zend/Server/Client.php similarity index 100% rename from library/Zend/Server/Client.php rename to library/TorrentPier/Zend/Server/Client.php diff --git a/library/Zend/Server/Definition.php b/library/TorrentPier/Zend/Server/Definition.php similarity index 100% rename from library/Zend/Server/Definition.php rename to library/TorrentPier/Zend/Server/Definition.php diff --git a/library/Zend/Server/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Server/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Server/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Server/Exception/BadMethodCallException.php diff --git a/library/Zend/Server/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Server/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Server/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Server/Exception/ExceptionInterface.php diff --git a/library/Zend/Server/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Server/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Server/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Server/Exception/InvalidArgumentException.php diff --git a/library/Zend/Server/Exception/RuntimeException.php b/library/TorrentPier/Zend/Server/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Server/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Server/Exception/RuntimeException.php diff --git a/library/Zend/Server/Method/Callback.php b/library/TorrentPier/Zend/Server/Method/Callback.php similarity index 100% rename from library/Zend/Server/Method/Callback.php rename to library/TorrentPier/Zend/Server/Method/Callback.php diff --git a/library/Zend/Server/Method/Definition.php b/library/TorrentPier/Zend/Server/Method/Definition.php similarity index 100% rename from library/Zend/Server/Method/Definition.php rename to library/TorrentPier/Zend/Server/Method/Definition.php diff --git a/library/Zend/Server/Method/Parameter.php b/library/TorrentPier/Zend/Server/Method/Parameter.php similarity index 100% rename from library/Zend/Server/Method/Parameter.php rename to library/TorrentPier/Zend/Server/Method/Parameter.php diff --git a/library/Zend/Server/Method/Prototype.php b/library/TorrentPier/Zend/Server/Method/Prototype.php similarity index 100% rename from library/Zend/Server/Method/Prototype.php rename to library/TorrentPier/Zend/Server/Method/Prototype.php diff --git a/library/Zend/Server/README.md b/library/TorrentPier/Zend/Server/README.md similarity index 100% rename from library/Zend/Server/README.md rename to library/TorrentPier/Zend/Server/README.md diff --git a/library/Zend/Server/Reflection.php b/library/TorrentPier/Zend/Server/Reflection.php similarity index 100% rename from library/Zend/Server/Reflection.php rename to library/TorrentPier/Zend/Server/Reflection.php diff --git a/library/Zend/Server/Reflection/AbstractFunction.php b/library/TorrentPier/Zend/Server/Reflection/AbstractFunction.php similarity index 100% rename from library/Zend/Server/Reflection/AbstractFunction.php rename to library/TorrentPier/Zend/Server/Reflection/AbstractFunction.php diff --git a/library/Zend/Server/Reflection/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Server/Reflection/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Server/Reflection/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Server/Reflection/Exception/BadMethodCallException.php diff --git a/library/Zend/Server/Reflection/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Server/Reflection/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Server/Reflection/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Server/Reflection/Exception/ExceptionInterface.php diff --git a/library/Zend/Server/Reflection/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Server/Reflection/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Server/Reflection/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Server/Reflection/Exception/InvalidArgumentException.php diff --git a/library/Zend/Server/Reflection/Exception/RuntimeException.php b/library/TorrentPier/Zend/Server/Reflection/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Server/Reflection/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Server/Reflection/Exception/RuntimeException.php diff --git a/library/Zend/Server/Reflection/Node.php b/library/TorrentPier/Zend/Server/Reflection/Node.php similarity index 100% rename from library/Zend/Server/Reflection/Node.php rename to library/TorrentPier/Zend/Server/Reflection/Node.php diff --git a/library/Zend/Server/Reflection/Prototype.php b/library/TorrentPier/Zend/Server/Reflection/Prototype.php similarity index 100% rename from library/Zend/Server/Reflection/Prototype.php rename to library/TorrentPier/Zend/Server/Reflection/Prototype.php diff --git a/library/Zend/Server/Reflection/ReflectionClass.php b/library/TorrentPier/Zend/Server/Reflection/ReflectionClass.php similarity index 100% rename from library/Zend/Server/Reflection/ReflectionClass.php rename to library/TorrentPier/Zend/Server/Reflection/ReflectionClass.php diff --git a/library/Zend/Server/Reflection/ReflectionFunction.php b/library/TorrentPier/Zend/Server/Reflection/ReflectionFunction.php similarity index 100% rename from library/Zend/Server/Reflection/ReflectionFunction.php rename to library/TorrentPier/Zend/Server/Reflection/ReflectionFunction.php diff --git a/library/Zend/Server/Reflection/ReflectionMethod.php b/library/TorrentPier/Zend/Server/Reflection/ReflectionMethod.php similarity index 100% rename from library/Zend/Server/Reflection/ReflectionMethod.php rename to library/TorrentPier/Zend/Server/Reflection/ReflectionMethod.php diff --git a/library/Zend/Server/Reflection/ReflectionParameter.php b/library/TorrentPier/Zend/Server/Reflection/ReflectionParameter.php similarity index 100% rename from library/Zend/Server/Reflection/ReflectionParameter.php rename to library/TorrentPier/Zend/Server/Reflection/ReflectionParameter.php diff --git a/library/Zend/Server/Reflection/ReflectionReturnValue.php b/library/TorrentPier/Zend/Server/Reflection/ReflectionReturnValue.php similarity index 100% rename from library/Zend/Server/Reflection/ReflectionReturnValue.php rename to library/TorrentPier/Zend/Server/Reflection/ReflectionReturnValue.php diff --git a/library/Zend/Server/Server.php b/library/TorrentPier/Zend/Server/Server.php similarity index 100% rename from library/Zend/Server/Server.php rename to library/TorrentPier/Zend/Server/Server.php diff --git a/library/Zend/Server/composer.json b/library/TorrentPier/Zend/Server/composer.json similarity index 100% rename from library/Zend/Server/composer.json rename to library/TorrentPier/Zend/Server/composer.json diff --git a/library/Zend/ServiceManager/AbstractFactoryInterface.php b/library/TorrentPier/Zend/ServiceManager/AbstractFactoryInterface.php similarity index 100% rename from library/Zend/ServiceManager/AbstractFactoryInterface.php rename to library/TorrentPier/Zend/ServiceManager/AbstractFactoryInterface.php diff --git a/library/Zend/ServiceManager/AbstractPluginManager.php b/library/TorrentPier/Zend/ServiceManager/AbstractPluginManager.php similarity index 100% rename from library/Zend/ServiceManager/AbstractPluginManager.php rename to library/TorrentPier/Zend/ServiceManager/AbstractPluginManager.php diff --git a/library/Zend/ServiceManager/CONTRIBUTING.md b/library/TorrentPier/Zend/ServiceManager/CONTRIBUTING.md similarity index 100% rename from library/Zend/ServiceManager/CONTRIBUTING.md rename to library/TorrentPier/Zend/ServiceManager/CONTRIBUTING.md diff --git a/library/Zend/ServiceManager/Config.php b/library/TorrentPier/Zend/ServiceManager/Config.php similarity index 100% rename from library/Zend/ServiceManager/Config.php rename to library/TorrentPier/Zend/ServiceManager/Config.php diff --git a/library/Zend/ServiceManager/ConfigInterface.php b/library/TorrentPier/Zend/ServiceManager/ConfigInterface.php similarity index 100% rename from library/Zend/ServiceManager/ConfigInterface.php rename to library/TorrentPier/Zend/ServiceManager/ConfigInterface.php diff --git a/library/Zend/ServiceManager/DelegatorFactoryInterface.php b/library/TorrentPier/Zend/ServiceManager/DelegatorFactoryInterface.php similarity index 100% rename from library/Zend/ServiceManager/DelegatorFactoryInterface.php rename to library/TorrentPier/Zend/ServiceManager/DelegatorFactoryInterface.php diff --git a/library/Zend/ServiceManager/Di/DiAbstractServiceFactory.php b/library/TorrentPier/Zend/ServiceManager/Di/DiAbstractServiceFactory.php similarity index 100% rename from library/Zend/ServiceManager/Di/DiAbstractServiceFactory.php rename to library/TorrentPier/Zend/ServiceManager/Di/DiAbstractServiceFactory.php diff --git a/library/Zend/ServiceManager/Di/DiInstanceManagerProxy.php b/library/TorrentPier/Zend/ServiceManager/Di/DiInstanceManagerProxy.php similarity index 100% rename from library/Zend/ServiceManager/Di/DiInstanceManagerProxy.php rename to library/TorrentPier/Zend/ServiceManager/Di/DiInstanceManagerProxy.php diff --git a/library/Zend/ServiceManager/Di/DiServiceFactory.php b/library/TorrentPier/Zend/ServiceManager/Di/DiServiceFactory.php similarity index 100% rename from library/Zend/ServiceManager/Di/DiServiceFactory.php rename to library/TorrentPier/Zend/ServiceManager/Di/DiServiceFactory.php diff --git a/library/Zend/ServiceManager/Di/DiServiceInitializer.php b/library/TorrentPier/Zend/ServiceManager/Di/DiServiceInitializer.php similarity index 100% rename from library/Zend/ServiceManager/Di/DiServiceInitializer.php rename to library/TorrentPier/Zend/ServiceManager/Di/DiServiceInitializer.php diff --git a/library/Zend/ServiceManager/Exception/CircularDependencyFoundException.php b/library/TorrentPier/Zend/ServiceManager/Exception/CircularDependencyFoundException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/CircularDependencyFoundException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/CircularDependencyFoundException.php diff --git a/library/Zend/ServiceManager/Exception/CircularReferenceException.php b/library/TorrentPier/Zend/ServiceManager/Exception/CircularReferenceException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/CircularReferenceException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/CircularReferenceException.php diff --git a/library/Zend/ServiceManager/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/ServiceManager/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/ServiceManager/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/ServiceManager/Exception/ExceptionInterface.php diff --git a/library/Zend/ServiceManager/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/ServiceManager/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/InvalidArgumentException.php diff --git a/library/Zend/ServiceManager/Exception/InvalidServiceNameException.php b/library/TorrentPier/Zend/ServiceManager/Exception/InvalidServiceNameException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/InvalidServiceNameException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/InvalidServiceNameException.php diff --git a/library/Zend/ServiceManager/Exception/RuntimeException.php b/library/TorrentPier/Zend/ServiceManager/Exception/RuntimeException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/RuntimeException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/RuntimeException.php diff --git a/library/Zend/ServiceManager/Exception/ServiceLocatorUsageException.php b/library/TorrentPier/Zend/ServiceManager/Exception/ServiceLocatorUsageException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/ServiceLocatorUsageException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/ServiceLocatorUsageException.php diff --git a/library/Zend/ServiceManager/Exception/ServiceNotCreatedException.php b/library/TorrentPier/Zend/ServiceManager/Exception/ServiceNotCreatedException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/ServiceNotCreatedException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/ServiceNotCreatedException.php diff --git a/library/Zend/ServiceManager/Exception/ServiceNotFoundException.php b/library/TorrentPier/Zend/ServiceManager/Exception/ServiceNotFoundException.php similarity index 100% rename from library/Zend/ServiceManager/Exception/ServiceNotFoundException.php rename to library/TorrentPier/Zend/ServiceManager/Exception/ServiceNotFoundException.php diff --git a/library/Zend/ServiceManager/FactoryInterface.php b/library/TorrentPier/Zend/ServiceManager/FactoryInterface.php similarity index 100% rename from library/Zend/ServiceManager/FactoryInterface.php rename to library/TorrentPier/Zend/ServiceManager/FactoryInterface.php diff --git a/library/Zend/ServiceManager/InitializerInterface.php b/library/TorrentPier/Zend/ServiceManager/InitializerInterface.php similarity index 100% rename from library/Zend/ServiceManager/InitializerInterface.php rename to library/TorrentPier/Zend/ServiceManager/InitializerInterface.php diff --git a/library/Zend/ServiceManager/MutableCreationOptionsInterface.php b/library/TorrentPier/Zend/ServiceManager/MutableCreationOptionsInterface.php similarity index 100% rename from library/Zend/ServiceManager/MutableCreationOptionsInterface.php rename to library/TorrentPier/Zend/ServiceManager/MutableCreationOptionsInterface.php diff --git a/library/Zend/ServiceManager/MutableCreationOptionsTrait.php b/library/TorrentPier/Zend/ServiceManager/MutableCreationOptionsTrait.php similarity index 100% rename from library/Zend/ServiceManager/MutableCreationOptionsTrait.php rename to library/TorrentPier/Zend/ServiceManager/MutableCreationOptionsTrait.php diff --git a/library/Zend/ServiceManager/Proxy/LazyServiceFactory.php b/library/TorrentPier/Zend/ServiceManager/Proxy/LazyServiceFactory.php similarity index 100% rename from library/Zend/ServiceManager/Proxy/LazyServiceFactory.php rename to library/TorrentPier/Zend/ServiceManager/Proxy/LazyServiceFactory.php diff --git a/library/Zend/ServiceManager/Proxy/LazyServiceFactoryFactory.php b/library/TorrentPier/Zend/ServiceManager/Proxy/LazyServiceFactoryFactory.php similarity index 100% rename from library/Zend/ServiceManager/Proxy/LazyServiceFactoryFactory.php rename to library/TorrentPier/Zend/ServiceManager/Proxy/LazyServiceFactoryFactory.php diff --git a/library/Zend/ServiceManager/README.md b/library/TorrentPier/Zend/ServiceManager/README.md similarity index 100% rename from library/Zend/ServiceManager/README.md rename to library/TorrentPier/Zend/ServiceManager/README.md diff --git a/library/Zend/ServiceManager/ServiceLocatorAwareInterface.php b/library/TorrentPier/Zend/ServiceManager/ServiceLocatorAwareInterface.php similarity index 100% rename from library/Zend/ServiceManager/ServiceLocatorAwareInterface.php rename to library/TorrentPier/Zend/ServiceManager/ServiceLocatorAwareInterface.php diff --git a/library/Zend/ServiceManager/ServiceLocatorAwareTrait.php b/library/TorrentPier/Zend/ServiceManager/ServiceLocatorAwareTrait.php similarity index 100% rename from library/Zend/ServiceManager/ServiceLocatorAwareTrait.php rename to library/TorrentPier/Zend/ServiceManager/ServiceLocatorAwareTrait.php diff --git a/library/Zend/ServiceManager/ServiceLocatorInterface.php b/library/TorrentPier/Zend/ServiceManager/ServiceLocatorInterface.php similarity index 100% rename from library/Zend/ServiceManager/ServiceLocatorInterface.php rename to library/TorrentPier/Zend/ServiceManager/ServiceLocatorInterface.php diff --git a/library/Zend/ServiceManager/ServiceManager.php b/library/TorrentPier/Zend/ServiceManager/ServiceManager.php similarity index 100% rename from library/Zend/ServiceManager/ServiceManager.php rename to library/TorrentPier/Zend/ServiceManager/ServiceManager.php diff --git a/library/Zend/ServiceManager/ServiceManagerAwareInterface.php b/library/TorrentPier/Zend/ServiceManager/ServiceManagerAwareInterface.php similarity index 100% rename from library/Zend/ServiceManager/ServiceManagerAwareInterface.php rename to library/TorrentPier/Zend/ServiceManager/ServiceManagerAwareInterface.php diff --git a/library/Zend/ServiceManager/composer.json b/library/TorrentPier/Zend/ServiceManager/composer.json similarity index 100% rename from library/Zend/ServiceManager/composer.json rename to library/TorrentPier/Zend/ServiceManager/composer.json diff --git a/library/Zend/Session/AbstractContainer.php b/library/TorrentPier/Zend/Session/AbstractContainer.php similarity index 100% rename from library/Zend/Session/AbstractContainer.php rename to library/TorrentPier/Zend/Session/AbstractContainer.php diff --git a/library/Zend/Session/AbstractManager.php b/library/TorrentPier/Zend/Session/AbstractManager.php similarity index 100% rename from library/Zend/Session/AbstractManager.php rename to library/TorrentPier/Zend/Session/AbstractManager.php diff --git a/library/Zend/Session/CONTRIBUTING.md b/library/TorrentPier/Zend/Session/CONTRIBUTING.md similarity index 100% rename from library/Zend/Session/CONTRIBUTING.md rename to library/TorrentPier/Zend/Session/CONTRIBUTING.md diff --git a/library/Zend/Session/Config/ConfigInterface.php b/library/TorrentPier/Zend/Session/Config/ConfigInterface.php similarity index 100% rename from library/Zend/Session/Config/ConfigInterface.php rename to library/TorrentPier/Zend/Session/Config/ConfigInterface.php diff --git a/library/Zend/Session/Config/SessionConfig.php b/library/TorrentPier/Zend/Session/Config/SessionConfig.php similarity index 100% rename from library/Zend/Session/Config/SessionConfig.php rename to library/TorrentPier/Zend/Session/Config/SessionConfig.php diff --git a/library/Zend/Session/Config/StandardConfig.php b/library/TorrentPier/Zend/Session/Config/StandardConfig.php similarity index 100% rename from library/Zend/Session/Config/StandardConfig.php rename to library/TorrentPier/Zend/Session/Config/StandardConfig.php diff --git a/library/Zend/Session/Container.php b/library/TorrentPier/Zend/Session/Container.php similarity index 100% rename from library/Zend/Session/Container.php rename to library/TorrentPier/Zend/Session/Container.php diff --git a/library/Zend/Session/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Session/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Session/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Session/Exception/BadMethodCallException.php diff --git a/library/Zend/Session/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Session/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Session/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Session/Exception/ExceptionInterface.php diff --git a/library/Zend/Session/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Session/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Session/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Session/Exception/InvalidArgumentException.php diff --git a/library/Zend/Session/Exception/RuntimeException.php b/library/TorrentPier/Zend/Session/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Session/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Session/Exception/RuntimeException.php diff --git a/library/Zend/Session/ManagerInterface.php b/library/TorrentPier/Zend/Session/ManagerInterface.php similarity index 100% rename from library/Zend/Session/ManagerInterface.php rename to library/TorrentPier/Zend/Session/ManagerInterface.php diff --git a/library/Zend/Session/README.md b/library/TorrentPier/Zend/Session/README.md similarity index 100% rename from library/Zend/Session/README.md rename to library/TorrentPier/Zend/Session/README.md diff --git a/library/Zend/Session/SaveHandler/Cache.php b/library/TorrentPier/Zend/Session/SaveHandler/Cache.php similarity index 100% rename from library/Zend/Session/SaveHandler/Cache.php rename to library/TorrentPier/Zend/Session/SaveHandler/Cache.php diff --git a/library/Zend/Session/SaveHandler/DbTableGateway.php b/library/TorrentPier/Zend/Session/SaveHandler/DbTableGateway.php similarity index 100% rename from library/Zend/Session/SaveHandler/DbTableGateway.php rename to library/TorrentPier/Zend/Session/SaveHandler/DbTableGateway.php diff --git a/library/Zend/Session/SaveHandler/DbTableGatewayOptions.php b/library/TorrentPier/Zend/Session/SaveHandler/DbTableGatewayOptions.php similarity index 100% rename from library/Zend/Session/SaveHandler/DbTableGatewayOptions.php rename to library/TorrentPier/Zend/Session/SaveHandler/DbTableGatewayOptions.php diff --git a/library/Zend/Session/SaveHandler/MongoDB.php b/library/TorrentPier/Zend/Session/SaveHandler/MongoDB.php similarity index 100% rename from library/Zend/Session/SaveHandler/MongoDB.php rename to library/TorrentPier/Zend/Session/SaveHandler/MongoDB.php diff --git a/library/Zend/Session/SaveHandler/MongoDBOptions.php b/library/TorrentPier/Zend/Session/SaveHandler/MongoDBOptions.php similarity index 100% rename from library/Zend/Session/SaveHandler/MongoDBOptions.php rename to library/TorrentPier/Zend/Session/SaveHandler/MongoDBOptions.php diff --git a/library/Zend/Session/SaveHandler/SaveHandlerInterface.php b/library/TorrentPier/Zend/Session/SaveHandler/SaveHandlerInterface.php similarity index 100% rename from library/Zend/Session/SaveHandler/SaveHandlerInterface.php rename to library/TorrentPier/Zend/Session/SaveHandler/SaveHandlerInterface.php diff --git a/library/Zend/Session/Service/ContainerAbstractServiceFactory.php b/library/TorrentPier/Zend/Session/Service/ContainerAbstractServiceFactory.php similarity index 100% rename from library/Zend/Session/Service/ContainerAbstractServiceFactory.php rename to library/TorrentPier/Zend/Session/Service/ContainerAbstractServiceFactory.php diff --git a/library/Zend/Session/Service/SessionConfigFactory.php b/library/TorrentPier/Zend/Session/Service/SessionConfigFactory.php similarity index 100% rename from library/Zend/Session/Service/SessionConfigFactory.php rename to library/TorrentPier/Zend/Session/Service/SessionConfigFactory.php diff --git a/library/Zend/Session/Service/SessionManagerFactory.php b/library/TorrentPier/Zend/Session/Service/SessionManagerFactory.php similarity index 100% rename from library/Zend/Session/Service/SessionManagerFactory.php rename to library/TorrentPier/Zend/Session/Service/SessionManagerFactory.php diff --git a/library/Zend/Session/Service/StorageFactory.php b/library/TorrentPier/Zend/Session/Service/StorageFactory.php similarity index 100% rename from library/Zend/Session/Service/StorageFactory.php rename to library/TorrentPier/Zend/Session/Service/StorageFactory.php diff --git a/library/Zend/Session/SessionManager.php b/library/TorrentPier/Zend/Session/SessionManager.php similarity index 100% rename from library/Zend/Session/SessionManager.php rename to library/TorrentPier/Zend/Session/SessionManager.php diff --git a/library/Zend/Session/Storage/AbstractSessionArrayStorage.php b/library/TorrentPier/Zend/Session/Storage/AbstractSessionArrayStorage.php similarity index 100% rename from library/Zend/Session/Storage/AbstractSessionArrayStorage.php rename to library/TorrentPier/Zend/Session/Storage/AbstractSessionArrayStorage.php diff --git a/library/Zend/Session/Storage/ArrayStorage.php b/library/TorrentPier/Zend/Session/Storage/ArrayStorage.php similarity index 100% rename from library/Zend/Session/Storage/ArrayStorage.php rename to library/TorrentPier/Zend/Session/Storage/ArrayStorage.php diff --git a/library/Zend/Session/Storage/Factory.php b/library/TorrentPier/Zend/Session/Storage/Factory.php similarity index 100% rename from library/Zend/Session/Storage/Factory.php rename to library/TorrentPier/Zend/Session/Storage/Factory.php diff --git a/library/Zend/Session/Storage/SessionArrayStorage.php b/library/TorrentPier/Zend/Session/Storage/SessionArrayStorage.php similarity index 100% rename from library/Zend/Session/Storage/SessionArrayStorage.php rename to library/TorrentPier/Zend/Session/Storage/SessionArrayStorage.php diff --git a/library/Zend/Session/Storage/SessionStorage.php b/library/TorrentPier/Zend/Session/Storage/SessionStorage.php similarity index 100% rename from library/Zend/Session/Storage/SessionStorage.php rename to library/TorrentPier/Zend/Session/Storage/SessionStorage.php diff --git a/library/Zend/Session/Storage/StorageInitializationInterface.php b/library/TorrentPier/Zend/Session/Storage/StorageInitializationInterface.php similarity index 100% rename from library/Zend/Session/Storage/StorageInitializationInterface.php rename to library/TorrentPier/Zend/Session/Storage/StorageInitializationInterface.php diff --git a/library/Zend/Session/Storage/StorageInterface.php b/library/TorrentPier/Zend/Session/Storage/StorageInterface.php similarity index 100% rename from library/Zend/Session/Storage/StorageInterface.php rename to library/TorrentPier/Zend/Session/Storage/StorageInterface.php diff --git a/library/Zend/Session/Validator/HttpUserAgent.php b/library/TorrentPier/Zend/Session/Validator/HttpUserAgent.php similarity index 100% rename from library/Zend/Session/Validator/HttpUserAgent.php rename to library/TorrentPier/Zend/Session/Validator/HttpUserAgent.php diff --git a/library/Zend/Session/Validator/RemoteAddr.php b/library/TorrentPier/Zend/Session/Validator/RemoteAddr.php similarity index 100% rename from library/Zend/Session/Validator/RemoteAddr.php rename to library/TorrentPier/Zend/Session/Validator/RemoteAddr.php diff --git a/library/Zend/Session/Validator/ValidatorInterface.php b/library/TorrentPier/Zend/Session/Validator/ValidatorInterface.php similarity index 100% rename from library/Zend/Session/Validator/ValidatorInterface.php rename to library/TorrentPier/Zend/Session/Validator/ValidatorInterface.php diff --git a/library/Zend/Session/ValidatorChain.php b/library/TorrentPier/Zend/Session/ValidatorChain.php similarity index 100% rename from library/Zend/Session/ValidatorChain.php rename to library/TorrentPier/Zend/Session/ValidatorChain.php diff --git a/library/Zend/Session/compatibility/autoload.php b/library/TorrentPier/Zend/Session/compatibility/autoload.php similarity index 100% rename from library/Zend/Session/compatibility/autoload.php rename to library/TorrentPier/Zend/Session/compatibility/autoload.php diff --git a/library/Zend/Session/composer.json b/library/TorrentPier/Zend/Session/composer.json similarity index 100% rename from library/Zend/Session/composer.json rename to library/TorrentPier/Zend/Session/composer.json diff --git a/library/Zend/Soap/AutoDiscover.php b/library/TorrentPier/Zend/Soap/AutoDiscover.php similarity index 100% rename from library/Zend/Soap/AutoDiscover.php rename to library/TorrentPier/Zend/Soap/AutoDiscover.php diff --git a/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php b/library/TorrentPier/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php similarity index 100% rename from library/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php rename to library/TorrentPier/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php diff --git a/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php b/library/TorrentPier/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php similarity index 100% rename from library/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php rename to library/TorrentPier/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php diff --git a/library/Zend/Soap/CONTRIBUTING.md b/library/TorrentPier/Zend/Soap/CONTRIBUTING.md similarity index 100% rename from library/Zend/Soap/CONTRIBUTING.md rename to library/TorrentPier/Zend/Soap/CONTRIBUTING.md diff --git a/library/Zend/Soap/Client.php b/library/TorrentPier/Zend/Soap/Client.php similarity index 100% rename from library/Zend/Soap/Client.php rename to library/TorrentPier/Zend/Soap/Client.php diff --git a/library/Zend/Soap/Client/Common.php b/library/TorrentPier/Zend/Soap/Client/Common.php similarity index 100% rename from library/Zend/Soap/Client/Common.php rename to library/TorrentPier/Zend/Soap/Client/Common.php diff --git a/library/Zend/Soap/Client/DotNet.php b/library/TorrentPier/Zend/Soap/Client/DotNet.php similarity index 100% rename from library/Zend/Soap/Client/DotNet.php rename to library/TorrentPier/Zend/Soap/Client/DotNet.php diff --git a/library/Zend/Soap/Client/Local.php b/library/TorrentPier/Zend/Soap/Client/Local.php similarity index 100% rename from library/Zend/Soap/Client/Local.php rename to library/TorrentPier/Zend/Soap/Client/Local.php diff --git a/library/Zend/Soap/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Soap/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Soap/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Soap/Exception/BadMethodCallException.php diff --git a/library/Zend/Soap/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Soap/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Soap/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Soap/Exception/ExceptionInterface.php diff --git a/library/Zend/Soap/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Soap/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Soap/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Soap/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Soap/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Soap/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Soap/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Soap/Exception/InvalidArgumentException.php diff --git a/library/Zend/Soap/Exception/RuntimeException.php b/library/TorrentPier/Zend/Soap/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Soap/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Soap/Exception/RuntimeException.php diff --git a/library/Zend/Soap/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Soap/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Soap/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Soap/Exception/UnexpectedValueException.php diff --git a/library/Zend/Soap/README.md b/library/TorrentPier/Zend/Soap/README.md similarity index 100% rename from library/Zend/Soap/README.md rename to library/TorrentPier/Zend/Soap/README.md diff --git a/library/Zend/Soap/Server.php b/library/TorrentPier/Zend/Soap/Server.php similarity index 100% rename from library/Zend/Soap/Server.php rename to library/TorrentPier/Zend/Soap/Server.php diff --git a/library/Zend/Soap/Server/DocumentLiteralWrapper.php b/library/TorrentPier/Zend/Soap/Server/DocumentLiteralWrapper.php similarity index 100% rename from library/Zend/Soap/Server/DocumentLiteralWrapper.php rename to library/TorrentPier/Zend/Soap/Server/DocumentLiteralWrapper.php diff --git a/library/Zend/Soap/Wsdl.php b/library/TorrentPier/Zend/Soap/Wsdl.php similarity index 100% rename from library/Zend/Soap/Wsdl.php rename to library/TorrentPier/Zend/Soap/Wsdl.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/AbstractComplexTypeStrategy.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/AnyType.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/AnyType.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/AnyType.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/AnyType.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeComplex.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/ComplexTypeStrategyInterface.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/Composite.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/Composite.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/Composite.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/Composite.php diff --git a/library/Zend/Soap/Wsdl/ComplexTypeStrategy/DefaultComplexType.php b/library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/DefaultComplexType.php similarity index 100% rename from library/Zend/Soap/Wsdl/ComplexTypeStrategy/DefaultComplexType.php rename to library/TorrentPier/Zend/Soap/Wsdl/ComplexTypeStrategy/DefaultComplexType.php diff --git a/library/Zend/Soap/composer.json b/library/TorrentPier/Zend/Soap/composer.json similarity index 100% rename from library/Zend/Soap/composer.json rename to library/TorrentPier/Zend/Soap/composer.json diff --git a/library/Zend/Stdlib/AbstractOptions.php b/library/TorrentPier/Zend/Stdlib/AbstractOptions.php similarity index 100% rename from library/Zend/Stdlib/AbstractOptions.php rename to library/TorrentPier/Zend/Stdlib/AbstractOptions.php diff --git a/library/Zend/Stdlib/ArrayObject.php b/library/TorrentPier/Zend/Stdlib/ArrayObject.php similarity index 100% rename from library/Zend/Stdlib/ArrayObject.php rename to library/TorrentPier/Zend/Stdlib/ArrayObject.php diff --git a/library/Zend/Stdlib/ArraySerializableInterface.php b/library/TorrentPier/Zend/Stdlib/ArraySerializableInterface.php similarity index 100% rename from library/Zend/Stdlib/ArraySerializableInterface.php rename to library/TorrentPier/Zend/Stdlib/ArraySerializableInterface.php diff --git a/library/Zend/Stdlib/ArrayStack.php b/library/TorrentPier/Zend/Stdlib/ArrayStack.php similarity index 100% rename from library/Zend/Stdlib/ArrayStack.php rename to library/TorrentPier/Zend/Stdlib/ArrayStack.php diff --git a/library/Zend/Stdlib/ArrayUtils.php b/library/TorrentPier/Zend/Stdlib/ArrayUtils.php similarity index 100% rename from library/Zend/Stdlib/ArrayUtils.php rename to library/TorrentPier/Zend/Stdlib/ArrayUtils.php diff --git a/library/Zend/Stdlib/ArrayUtils/MergeRemoveKey.php b/library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeRemoveKey.php similarity index 100% rename from library/Zend/Stdlib/ArrayUtils/MergeRemoveKey.php rename to library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeRemoveKey.php diff --git a/library/Zend/Stdlib/ArrayUtils/MergeReplaceKey.php b/library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeReplaceKey.php similarity index 100% rename from library/Zend/Stdlib/ArrayUtils/MergeReplaceKey.php rename to library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeReplaceKey.php diff --git a/library/Zend/Stdlib/ArrayUtils/MergeReplaceKeyInterface.php b/library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeReplaceKeyInterface.php similarity index 100% rename from library/Zend/Stdlib/ArrayUtils/MergeReplaceKeyInterface.php rename to library/TorrentPier/Zend/Stdlib/ArrayUtils/MergeReplaceKeyInterface.php diff --git a/library/Zend/Stdlib/CONTRIBUTING.md b/library/TorrentPier/Zend/Stdlib/CONTRIBUTING.md similarity index 100% rename from library/Zend/Stdlib/CONTRIBUTING.md rename to library/TorrentPier/Zend/Stdlib/CONTRIBUTING.md diff --git a/library/Zend/Stdlib/CallbackHandler.php b/library/TorrentPier/Zend/Stdlib/CallbackHandler.php similarity index 100% rename from library/Zend/Stdlib/CallbackHandler.php rename to library/TorrentPier/Zend/Stdlib/CallbackHandler.php diff --git a/library/Zend/Stdlib/DateTime.php b/library/TorrentPier/Zend/Stdlib/DateTime.php similarity index 100% rename from library/Zend/Stdlib/DateTime.php rename to library/TorrentPier/Zend/Stdlib/DateTime.php diff --git a/library/Zend/Stdlib/DispatchableInterface.php b/library/TorrentPier/Zend/Stdlib/DispatchableInterface.php similarity index 100% rename from library/Zend/Stdlib/DispatchableInterface.php rename to library/TorrentPier/Zend/Stdlib/DispatchableInterface.php diff --git a/library/Zend/Stdlib/ErrorHandler.php b/library/TorrentPier/Zend/Stdlib/ErrorHandler.php similarity index 100% rename from library/Zend/Stdlib/ErrorHandler.php rename to library/TorrentPier/Zend/Stdlib/ErrorHandler.php diff --git a/library/Zend/Stdlib/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Stdlib/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Stdlib/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Stdlib/Exception/BadMethodCallException.php diff --git a/library/Zend/Stdlib/Exception/DomainException.php b/library/TorrentPier/Zend/Stdlib/Exception/DomainException.php similarity index 100% rename from library/Zend/Stdlib/Exception/DomainException.php rename to library/TorrentPier/Zend/Stdlib/Exception/DomainException.php diff --git a/library/Zend/Stdlib/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Stdlib/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Stdlib/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Stdlib/Exception/ExceptionInterface.php diff --git a/library/Zend/Stdlib/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Stdlib/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Stdlib/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Stdlib/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Stdlib/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Stdlib/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Stdlib/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Stdlib/Exception/InvalidArgumentException.php diff --git a/library/Zend/Stdlib/Exception/InvalidCallbackException.php b/library/TorrentPier/Zend/Stdlib/Exception/InvalidCallbackException.php similarity index 100% rename from library/Zend/Stdlib/Exception/InvalidCallbackException.php rename to library/TorrentPier/Zend/Stdlib/Exception/InvalidCallbackException.php diff --git a/library/Zend/Stdlib/Exception/LogicException.php b/library/TorrentPier/Zend/Stdlib/Exception/LogicException.php similarity index 100% rename from library/Zend/Stdlib/Exception/LogicException.php rename to library/TorrentPier/Zend/Stdlib/Exception/LogicException.php diff --git a/library/Zend/Stdlib/Exception/RuntimeException.php b/library/TorrentPier/Zend/Stdlib/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Stdlib/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Stdlib/Exception/RuntimeException.php diff --git a/library/Zend/Stdlib/Extractor/ExtractionInterface.php b/library/TorrentPier/Zend/Stdlib/Extractor/ExtractionInterface.php similarity index 100% rename from library/Zend/Stdlib/Extractor/ExtractionInterface.php rename to library/TorrentPier/Zend/Stdlib/Extractor/ExtractionInterface.php diff --git a/library/Zend/Stdlib/Glob.php b/library/TorrentPier/Zend/Stdlib/Glob.php similarity index 100% rename from library/Zend/Stdlib/Glob.php rename to library/TorrentPier/Zend/Stdlib/Glob.php diff --git a/library/Zend/Stdlib/Guard/AllGuardsTrait.php b/library/TorrentPier/Zend/Stdlib/Guard/AllGuardsTrait.php similarity index 100% rename from library/Zend/Stdlib/Guard/AllGuardsTrait.php rename to library/TorrentPier/Zend/Stdlib/Guard/AllGuardsTrait.php diff --git a/library/Zend/Stdlib/Guard/ArrayOrTraversableGuardTrait.php b/library/TorrentPier/Zend/Stdlib/Guard/ArrayOrTraversableGuardTrait.php similarity index 100% rename from library/Zend/Stdlib/Guard/ArrayOrTraversableGuardTrait.php rename to library/TorrentPier/Zend/Stdlib/Guard/ArrayOrTraversableGuardTrait.php diff --git a/library/Zend/Stdlib/Guard/EmptyGuardTrait.php b/library/TorrentPier/Zend/Stdlib/Guard/EmptyGuardTrait.php similarity index 100% rename from library/Zend/Stdlib/Guard/EmptyGuardTrait.php rename to library/TorrentPier/Zend/Stdlib/Guard/EmptyGuardTrait.php diff --git a/library/Zend/Stdlib/Guard/GuardUtils.php b/library/TorrentPier/Zend/Stdlib/Guard/GuardUtils.php similarity index 100% rename from library/Zend/Stdlib/Guard/GuardUtils.php rename to library/TorrentPier/Zend/Stdlib/Guard/GuardUtils.php diff --git a/library/Zend/Stdlib/Guard/NullGuardTrait.php b/library/TorrentPier/Zend/Stdlib/Guard/NullGuardTrait.php similarity index 100% rename from library/Zend/Stdlib/Guard/NullGuardTrait.php rename to library/TorrentPier/Zend/Stdlib/Guard/NullGuardTrait.php diff --git a/library/Zend/Stdlib/Hydrator/AbstractHydrator.php b/library/TorrentPier/Zend/Stdlib/Hydrator/AbstractHydrator.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/AbstractHydrator.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/AbstractHydrator.php diff --git a/library/Zend/Stdlib/Hydrator/Aggregate/AggregateHydrator.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/AggregateHydrator.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Aggregate/AggregateHydrator.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/AggregateHydrator.php diff --git a/library/Zend/Stdlib/Hydrator/Aggregate/ExtractEvent.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/ExtractEvent.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Aggregate/ExtractEvent.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/ExtractEvent.php diff --git a/library/Zend/Stdlib/Hydrator/Aggregate/HydrateEvent.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/HydrateEvent.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Aggregate/HydrateEvent.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/HydrateEvent.php diff --git a/library/Zend/Stdlib/Hydrator/Aggregate/HydratorListener.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/HydratorListener.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Aggregate/HydratorListener.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Aggregate/HydratorListener.php diff --git a/library/Zend/Stdlib/Hydrator/ArraySerializable.php b/library/TorrentPier/Zend/Stdlib/Hydrator/ArraySerializable.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/ArraySerializable.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/ArraySerializable.php diff --git a/library/Zend/Stdlib/Hydrator/ClassMethods.php b/library/TorrentPier/Zend/Stdlib/Hydrator/ClassMethods.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/ClassMethods.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/ClassMethods.php diff --git a/library/Zend/Stdlib/Hydrator/DelegatingHydrator.php b/library/TorrentPier/Zend/Stdlib/Hydrator/DelegatingHydrator.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/DelegatingHydrator.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/DelegatingHydrator.php diff --git a/library/Zend/Stdlib/Hydrator/DelegatingHydratorFactory.php b/library/TorrentPier/Zend/Stdlib/Hydrator/DelegatingHydratorFactory.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/DelegatingHydratorFactory.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/DelegatingHydratorFactory.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/FilterComposite.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterComposite.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/FilterComposite.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterComposite.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/FilterInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/FilterInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterInterface.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/FilterProviderInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterProviderInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/FilterProviderInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/FilterProviderInterface.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/GetFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/GetFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/GetFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/GetFilter.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/HasFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/HasFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/HasFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/HasFilter.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/IsFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/IsFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/IsFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/IsFilter.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/MethodMatchFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/MethodMatchFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/MethodMatchFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/MethodMatchFilter.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/NumberOfParameterFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/NumberOfParameterFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/NumberOfParameterFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/NumberOfParameterFilter.php diff --git a/library/Zend/Stdlib/Hydrator/Filter/OptionalParametersFilter.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Filter/OptionalParametersFilter.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Filter/OptionalParametersFilter.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Filter/OptionalParametersFilter.php diff --git a/library/Zend/Stdlib/Hydrator/FilterEnabledInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/FilterEnabledInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/FilterEnabledInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/FilterEnabledInterface.php diff --git a/library/Zend/Stdlib/Hydrator/HydrationInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydrationInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydrationInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydrationInterface.php diff --git a/library/Zend/Stdlib/Hydrator/HydratorAwareInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydratorAwareInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydratorAwareInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydratorAwareInterface.php diff --git a/library/Zend/Stdlib/Hydrator/HydratorAwareTrait.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydratorAwareTrait.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydratorAwareTrait.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydratorAwareTrait.php diff --git a/library/Zend/Stdlib/Hydrator/HydratorInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydratorInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydratorInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydratorInterface.php diff --git a/library/Zend/Stdlib/Hydrator/HydratorOptionsInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydratorOptionsInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydratorOptionsInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydratorOptionsInterface.php diff --git a/library/Zend/Stdlib/Hydrator/HydratorPluginManager.php b/library/TorrentPier/Zend/Stdlib/Hydrator/HydratorPluginManager.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/HydratorPluginManager.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/HydratorPluginManager.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/ArrayMapNamingStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/ArrayMapNamingStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/ArrayMapNamingStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/ArrayMapNamingStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/CompositeNamingStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/CompositeNamingStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/CompositeNamingStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/CompositeNamingStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/IdentityNamingStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/IdentityNamingStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/IdentityNamingStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/IdentityNamingStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/MapNamingStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/MapNamingStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/MapNamingStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/MapNamingStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/NamingStrategyInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/NamingStrategyInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/NamingStrategyInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/NamingStrategyInterface.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategy/UnderscoreNamingStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/UnderscoreNamingStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategy/UnderscoreNamingStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategy/UnderscoreNamingStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/NamingStrategyEnabledInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategyEnabledInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/NamingStrategyEnabledInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/NamingStrategyEnabledInterface.php diff --git a/library/Zend/Stdlib/Hydrator/ObjectProperty.php b/library/TorrentPier/Zend/Stdlib/Hydrator/ObjectProperty.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/ObjectProperty.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/ObjectProperty.php diff --git a/library/Zend/Stdlib/Hydrator/Reflection.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Reflection.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Reflection.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Reflection.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/BooleanStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/BooleanStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/BooleanStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/BooleanStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/ClosureStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/ClosureStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/ClosureStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/ClosureStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/DateTimeFormatterStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/DateTimeFormatterStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/DateTimeFormatterStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/DateTimeFormatterStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/DefaultStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/DefaultStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/DefaultStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/DefaultStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/Exception/ExceptionInterface.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/Exception/InvalidArgumentException.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/ExplodeStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/ExplodeStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/ExplodeStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/ExplodeStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/SerializableStrategy.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/SerializableStrategy.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/SerializableStrategy.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/SerializableStrategy.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/StrategyChain.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/StrategyChain.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/StrategyChain.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/StrategyChain.php diff --git a/library/Zend/Stdlib/Hydrator/Strategy/StrategyInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/StrategyInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/Strategy/StrategyInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/Strategy/StrategyInterface.php diff --git a/library/Zend/Stdlib/Hydrator/StrategyEnabledInterface.php b/library/TorrentPier/Zend/Stdlib/Hydrator/StrategyEnabledInterface.php similarity index 100% rename from library/Zend/Stdlib/Hydrator/StrategyEnabledInterface.php rename to library/TorrentPier/Zend/Stdlib/Hydrator/StrategyEnabledInterface.php diff --git a/library/Zend/Stdlib/InitializableInterface.php b/library/TorrentPier/Zend/Stdlib/InitializableInterface.php similarity index 100% rename from library/Zend/Stdlib/InitializableInterface.php rename to library/TorrentPier/Zend/Stdlib/InitializableInterface.php diff --git a/library/Zend/Stdlib/JsonSerializable.php b/library/TorrentPier/Zend/Stdlib/JsonSerializable.php similarity index 100% rename from library/Zend/Stdlib/JsonSerializable.php rename to library/TorrentPier/Zend/Stdlib/JsonSerializable.php diff --git a/library/Zend/Stdlib/JsonSerializable/PhpLegacyCompatibility.php b/library/TorrentPier/Zend/Stdlib/JsonSerializable/PhpLegacyCompatibility.php similarity index 100% rename from library/Zend/Stdlib/JsonSerializable/PhpLegacyCompatibility.php rename to library/TorrentPier/Zend/Stdlib/JsonSerializable/PhpLegacyCompatibility.php diff --git a/library/Zend/Stdlib/Message.php b/library/TorrentPier/Zend/Stdlib/Message.php similarity index 100% rename from library/Zend/Stdlib/Message.php rename to library/TorrentPier/Zend/Stdlib/Message.php diff --git a/library/Zend/Stdlib/MessageInterface.php b/library/TorrentPier/Zend/Stdlib/MessageInterface.php similarity index 100% rename from library/Zend/Stdlib/MessageInterface.php rename to library/TorrentPier/Zend/Stdlib/MessageInterface.php diff --git a/library/Zend/Stdlib/ParameterObjectInterface.php b/library/TorrentPier/Zend/Stdlib/ParameterObjectInterface.php similarity index 100% rename from library/Zend/Stdlib/ParameterObjectInterface.php rename to library/TorrentPier/Zend/Stdlib/ParameterObjectInterface.php diff --git a/library/Zend/Stdlib/Parameters.php b/library/TorrentPier/Zend/Stdlib/Parameters.php similarity index 100% rename from library/Zend/Stdlib/Parameters.php rename to library/TorrentPier/Zend/Stdlib/Parameters.php diff --git a/library/Zend/Stdlib/ParametersInterface.php b/library/TorrentPier/Zend/Stdlib/ParametersInterface.php similarity index 100% rename from library/Zend/Stdlib/ParametersInterface.php rename to library/TorrentPier/Zend/Stdlib/ParametersInterface.php diff --git a/library/Zend/Stdlib/PriorityList.php b/library/TorrentPier/Zend/Stdlib/PriorityList.php similarity index 100% rename from library/Zend/Stdlib/PriorityList.php rename to library/TorrentPier/Zend/Stdlib/PriorityList.php diff --git a/library/Zend/Stdlib/PriorityQueue.php b/library/TorrentPier/Zend/Stdlib/PriorityQueue.php similarity index 100% rename from library/Zend/Stdlib/PriorityQueue.php rename to library/TorrentPier/Zend/Stdlib/PriorityQueue.php diff --git a/library/Zend/Stdlib/README.md b/library/TorrentPier/Zend/Stdlib/README.md similarity index 100% rename from library/Zend/Stdlib/README.md rename to library/TorrentPier/Zend/Stdlib/README.md diff --git a/library/Zend/Stdlib/Request.php b/library/TorrentPier/Zend/Stdlib/Request.php similarity index 100% rename from library/Zend/Stdlib/Request.php rename to library/TorrentPier/Zend/Stdlib/Request.php diff --git a/library/Zend/Stdlib/RequestInterface.php b/library/TorrentPier/Zend/Stdlib/RequestInterface.php similarity index 100% rename from library/Zend/Stdlib/RequestInterface.php rename to library/TorrentPier/Zend/Stdlib/RequestInterface.php diff --git a/library/Zend/Stdlib/Response.php b/library/TorrentPier/Zend/Stdlib/Response.php similarity index 100% rename from library/Zend/Stdlib/Response.php rename to library/TorrentPier/Zend/Stdlib/Response.php diff --git a/library/Zend/Stdlib/ResponseInterface.php b/library/TorrentPier/Zend/Stdlib/ResponseInterface.php similarity index 100% rename from library/Zend/Stdlib/ResponseInterface.php rename to library/TorrentPier/Zend/Stdlib/ResponseInterface.php diff --git a/library/Zend/Stdlib/SplPriorityQueue.php b/library/TorrentPier/Zend/Stdlib/SplPriorityQueue.php similarity index 100% rename from library/Zend/Stdlib/SplPriorityQueue.php rename to library/TorrentPier/Zend/Stdlib/SplPriorityQueue.php diff --git a/library/Zend/Stdlib/SplQueue.php b/library/TorrentPier/Zend/Stdlib/SplQueue.php similarity index 100% rename from library/Zend/Stdlib/SplQueue.php rename to library/TorrentPier/Zend/Stdlib/SplQueue.php diff --git a/library/Zend/Stdlib/SplStack.php b/library/TorrentPier/Zend/Stdlib/SplStack.php similarity index 100% rename from library/Zend/Stdlib/SplStack.php rename to library/TorrentPier/Zend/Stdlib/SplStack.php diff --git a/library/Zend/Stdlib/StringUtils.php b/library/TorrentPier/Zend/Stdlib/StringUtils.php similarity index 100% rename from library/Zend/Stdlib/StringUtils.php rename to library/TorrentPier/Zend/Stdlib/StringUtils.php diff --git a/library/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/AbstractStringWrapper.php diff --git a/library/Zend/Stdlib/StringWrapper/Iconv.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/Iconv.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/Iconv.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/Iconv.php diff --git a/library/Zend/Stdlib/StringWrapper/Intl.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/Intl.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/Intl.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/Intl.php diff --git a/library/Zend/Stdlib/StringWrapper/MbString.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/MbString.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/MbString.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/MbString.php diff --git a/library/Zend/Stdlib/StringWrapper/Native.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/Native.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/Native.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/Native.php diff --git a/library/Zend/Stdlib/StringWrapper/StringWrapperInterface.php b/library/TorrentPier/Zend/Stdlib/StringWrapper/StringWrapperInterface.php similarity index 100% rename from library/Zend/Stdlib/StringWrapper/StringWrapperInterface.php rename to library/TorrentPier/Zend/Stdlib/StringWrapper/StringWrapperInterface.php diff --git a/library/Zend/Stdlib/compatibility/autoload.php b/library/TorrentPier/Zend/Stdlib/compatibility/autoload.php similarity index 100% rename from library/Zend/Stdlib/compatibility/autoload.php rename to library/TorrentPier/Zend/Stdlib/compatibility/autoload.php diff --git a/library/Zend/Stdlib/composer.json b/library/TorrentPier/Zend/Stdlib/composer.json similarity index 100% rename from library/Zend/Stdlib/composer.json rename to library/TorrentPier/Zend/Stdlib/composer.json diff --git a/library/Zend/Tag/CONTRIBUTING.md b/library/TorrentPier/Zend/Tag/CONTRIBUTING.md similarity index 100% rename from library/Zend/Tag/CONTRIBUTING.md rename to library/TorrentPier/Zend/Tag/CONTRIBUTING.md diff --git a/library/Zend/Tag/Cloud.php b/library/TorrentPier/Zend/Tag/Cloud.php similarity index 100% rename from library/Zend/Tag/Cloud.php rename to library/TorrentPier/Zend/Tag/Cloud.php diff --git a/library/Zend/Tag/Cloud/Decorator/AbstractCloud.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractCloud.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/AbstractCloud.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractCloud.php diff --git a/library/Zend/Tag/Cloud/Decorator/AbstractDecorator.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractDecorator.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/AbstractDecorator.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractDecorator.php diff --git a/library/Zend/Tag/Cloud/Decorator/AbstractTag.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractTag.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/AbstractTag.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/AbstractTag.php diff --git a/library/Zend/Tag/Cloud/Decorator/DecoratorInterface.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/DecoratorInterface.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/DecoratorInterface.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/DecoratorInterface.php diff --git a/library/Zend/Tag/Cloud/Decorator/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/Exception/ExceptionInterface.php diff --git a/library/Zend/Tag/Cloud/Decorator/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/Exception/InvalidArgumentException.php diff --git a/library/Zend/Tag/Cloud/Decorator/HtmlCloud.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/HtmlCloud.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/HtmlCloud.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/HtmlCloud.php diff --git a/library/Zend/Tag/Cloud/Decorator/HtmlTag.php b/library/TorrentPier/Zend/Tag/Cloud/Decorator/HtmlTag.php similarity index 100% rename from library/Zend/Tag/Cloud/Decorator/HtmlTag.php rename to library/TorrentPier/Zend/Tag/Cloud/Decorator/HtmlTag.php diff --git a/library/Zend/Tag/Cloud/DecoratorPluginManager.php b/library/TorrentPier/Zend/Tag/Cloud/DecoratorPluginManager.php similarity index 100% rename from library/Zend/Tag/Cloud/DecoratorPluginManager.php rename to library/TorrentPier/Zend/Tag/Cloud/DecoratorPluginManager.php diff --git a/library/Zend/Tag/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Tag/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Tag/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Tag/Exception/ExceptionInterface.php diff --git a/library/Zend/Tag/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Tag/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Tag/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Tag/Exception/InvalidArgumentException.php diff --git a/library/Zend/Tag/Exception/InvalidAttributeNameException.php b/library/TorrentPier/Zend/Tag/Exception/InvalidAttributeNameException.php similarity index 100% rename from library/Zend/Tag/Exception/InvalidAttributeNameException.php rename to library/TorrentPier/Zend/Tag/Exception/InvalidAttributeNameException.php diff --git a/library/Zend/Tag/Exception/InvalidElementNameException.php b/library/TorrentPier/Zend/Tag/Exception/InvalidElementNameException.php similarity index 100% rename from library/Zend/Tag/Exception/InvalidElementNameException.php rename to library/TorrentPier/Zend/Tag/Exception/InvalidElementNameException.php diff --git a/library/Zend/Tag/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Tag/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Tag/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Tag/Exception/OutOfBoundsException.php diff --git a/library/Zend/Tag/Item.php b/library/TorrentPier/Zend/Tag/Item.php similarity index 100% rename from library/Zend/Tag/Item.php rename to library/TorrentPier/Zend/Tag/Item.php diff --git a/library/Zend/Tag/ItemList.php b/library/TorrentPier/Zend/Tag/ItemList.php similarity index 100% rename from library/Zend/Tag/ItemList.php rename to library/TorrentPier/Zend/Tag/ItemList.php diff --git a/library/Zend/Tag/README.md b/library/TorrentPier/Zend/Tag/README.md similarity index 100% rename from library/Zend/Tag/README.md rename to library/TorrentPier/Zend/Tag/README.md diff --git a/library/Zend/Tag/TaggableInterface.php b/library/TorrentPier/Zend/Tag/TaggableInterface.php similarity index 100% rename from library/Zend/Tag/TaggableInterface.php rename to library/TorrentPier/Zend/Tag/TaggableInterface.php diff --git a/library/Zend/Tag/composer.json b/library/TorrentPier/Zend/Tag/composer.json similarity index 100% rename from library/Zend/Tag/composer.json rename to library/TorrentPier/Zend/Tag/composer.json diff --git a/library/Zend/Test/CONTRIBUTING.md b/library/TorrentPier/Zend/Test/CONTRIBUTING.md similarity index 100% rename from library/Zend/Test/CONTRIBUTING.md rename to library/TorrentPier/Zend/Test/CONTRIBUTING.md diff --git a/library/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php b/library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php similarity index 100% rename from library/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php rename to library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php diff --git a/library/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php b/library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php similarity index 100% rename from library/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php rename to library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php diff --git a/library/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php b/library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php similarity index 100% rename from library/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php rename to library/TorrentPier/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php diff --git a/library/Zend/Test/README.md b/library/TorrentPier/Zend/Test/README.md similarity index 100% rename from library/Zend/Test/README.md rename to library/TorrentPier/Zend/Test/README.md diff --git a/library/Zend/Test/Util/ModuleLoader.php b/library/TorrentPier/Zend/Test/Util/ModuleLoader.php similarity index 100% rename from library/Zend/Test/Util/ModuleLoader.php rename to library/TorrentPier/Zend/Test/Util/ModuleLoader.php diff --git a/library/Zend/Test/composer.json b/library/TorrentPier/Zend/Test/composer.json similarity index 100% rename from library/Zend/Test/composer.json rename to library/TorrentPier/Zend/Test/composer.json diff --git a/library/Zend/Text/CONTRIBUTING.md b/library/TorrentPier/Zend/Text/CONTRIBUTING.md similarity index 100% rename from library/Zend/Text/CONTRIBUTING.md rename to library/TorrentPier/Zend/Text/CONTRIBUTING.md diff --git a/library/Zend/Text/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Text/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Text/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Text/Exception/ExceptionInterface.php diff --git a/library/Zend/Text/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Text/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Text/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Text/Exception/InvalidArgumentException.php diff --git a/library/Zend/Text/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Text/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Text/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Text/Exception/OutOfBoundsException.php diff --git a/library/Zend/Text/Exception/OverflowException.php b/library/TorrentPier/Zend/Text/Exception/OverflowException.php similarity index 100% rename from library/Zend/Text/Exception/OverflowException.php rename to library/TorrentPier/Zend/Text/Exception/OverflowException.php diff --git a/library/Zend/Text/Exception/RuntimeException.php b/library/TorrentPier/Zend/Text/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Text/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Text/Exception/RuntimeException.php diff --git a/library/Zend/Text/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Text/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Text/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Text/Exception/UnexpectedValueException.php diff --git a/library/Zend/Text/Figlet/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Text/Figlet/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Text/Figlet/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Text/Figlet/Exception/ExceptionInterface.php diff --git a/library/Zend/Text/Figlet/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Text/Figlet/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Text/Figlet/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Text/Figlet/Exception/InvalidArgumentException.php diff --git a/library/Zend/Text/Figlet/Exception/RuntimeException.php b/library/TorrentPier/Zend/Text/Figlet/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Text/Figlet/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Text/Figlet/Exception/RuntimeException.php diff --git a/library/Zend/Text/Figlet/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Text/Figlet/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Text/Figlet/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Text/Figlet/Exception/UnexpectedValueException.php diff --git a/library/Zend/Text/Figlet/Figlet.php b/library/TorrentPier/Zend/Text/Figlet/Figlet.php similarity index 100% rename from library/Zend/Text/Figlet/Figlet.php rename to library/TorrentPier/Zend/Text/Figlet/Figlet.php diff --git a/library/Zend/Text/Figlet/zend-framework.flf b/library/TorrentPier/Zend/Text/Figlet/zend-framework.flf similarity index 100% rename from library/Zend/Text/Figlet/zend-framework.flf rename to library/TorrentPier/Zend/Text/Figlet/zend-framework.flf diff --git a/library/Zend/Text/MultiByte.php b/library/TorrentPier/Zend/Text/MultiByte.php similarity index 100% rename from library/Zend/Text/MultiByte.php rename to library/TorrentPier/Zend/Text/MultiByte.php diff --git a/library/Zend/Text/README.md b/library/TorrentPier/Zend/Text/README.md similarity index 100% rename from library/Zend/Text/README.md rename to library/TorrentPier/Zend/Text/README.md diff --git a/library/Zend/Text/Table/Column.php b/library/TorrentPier/Zend/Text/Table/Column.php similarity index 100% rename from library/Zend/Text/Table/Column.php rename to library/TorrentPier/Zend/Text/Table/Column.php diff --git a/library/Zend/Text/Table/Decorator/Ascii.php b/library/TorrentPier/Zend/Text/Table/Decorator/Ascii.php similarity index 100% rename from library/Zend/Text/Table/Decorator/Ascii.php rename to library/TorrentPier/Zend/Text/Table/Decorator/Ascii.php diff --git a/library/Zend/Text/Table/Decorator/Blank.php b/library/TorrentPier/Zend/Text/Table/Decorator/Blank.php similarity index 100% rename from library/Zend/Text/Table/Decorator/Blank.php rename to library/TorrentPier/Zend/Text/Table/Decorator/Blank.php diff --git a/library/Zend/Text/Table/Decorator/DecoratorInterface.php b/library/TorrentPier/Zend/Text/Table/Decorator/DecoratorInterface.php similarity index 100% rename from library/Zend/Text/Table/Decorator/DecoratorInterface.php rename to library/TorrentPier/Zend/Text/Table/Decorator/DecoratorInterface.php diff --git a/library/Zend/Text/Table/Decorator/Unicode.php b/library/TorrentPier/Zend/Text/Table/Decorator/Unicode.php similarity index 100% rename from library/Zend/Text/Table/Decorator/Unicode.php rename to library/TorrentPier/Zend/Text/Table/Decorator/Unicode.php diff --git a/library/Zend/Text/Table/DecoratorManager.php b/library/TorrentPier/Zend/Text/Table/DecoratorManager.php similarity index 100% rename from library/Zend/Text/Table/DecoratorManager.php rename to library/TorrentPier/Zend/Text/Table/DecoratorManager.php diff --git a/library/Zend/Text/Table/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Text/Table/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Text/Table/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Text/Table/Exception/ExceptionInterface.php diff --git a/library/Zend/Text/Table/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Text/Table/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Text/Table/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Text/Table/Exception/InvalidArgumentException.php diff --git a/library/Zend/Text/Table/Exception/InvalidDecoratorException.php b/library/TorrentPier/Zend/Text/Table/Exception/InvalidDecoratorException.php similarity index 100% rename from library/Zend/Text/Table/Exception/InvalidDecoratorException.php rename to library/TorrentPier/Zend/Text/Table/Exception/InvalidDecoratorException.php diff --git a/library/Zend/Text/Table/Exception/OutOfBoundsException.php b/library/TorrentPier/Zend/Text/Table/Exception/OutOfBoundsException.php similarity index 100% rename from library/Zend/Text/Table/Exception/OutOfBoundsException.php rename to library/TorrentPier/Zend/Text/Table/Exception/OutOfBoundsException.php diff --git a/library/Zend/Text/Table/Exception/OverflowException.php b/library/TorrentPier/Zend/Text/Table/Exception/OverflowException.php similarity index 100% rename from library/Zend/Text/Table/Exception/OverflowException.php rename to library/TorrentPier/Zend/Text/Table/Exception/OverflowException.php diff --git a/library/Zend/Text/Table/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/Text/Table/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/Text/Table/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/Text/Table/Exception/UnexpectedValueException.php diff --git a/library/Zend/Text/Table/Row.php b/library/TorrentPier/Zend/Text/Table/Row.php similarity index 100% rename from library/Zend/Text/Table/Row.php rename to library/TorrentPier/Zend/Text/Table/Row.php diff --git a/library/Zend/Text/Table/Table.php b/library/TorrentPier/Zend/Text/Table/Table.php similarity index 100% rename from library/Zend/Text/Table/Table.php rename to library/TorrentPier/Zend/Text/Table/Table.php diff --git a/library/Zend/Text/composer.json b/library/TorrentPier/Zend/Text/composer.json similarity index 100% rename from library/Zend/Text/composer.json rename to library/TorrentPier/Zend/Text/composer.json diff --git a/library/Zend/Uri/CONTRIBUTING.md b/library/TorrentPier/Zend/Uri/CONTRIBUTING.md similarity index 100% rename from library/Zend/Uri/CONTRIBUTING.md rename to library/TorrentPier/Zend/Uri/CONTRIBUTING.md diff --git a/library/Zend/Uri/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Uri/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Uri/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Uri/Exception/ExceptionInterface.php diff --git a/library/Zend/Uri/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Uri/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Uri/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Uri/Exception/InvalidArgumentException.php diff --git a/library/Zend/Uri/Exception/InvalidUriException.php b/library/TorrentPier/Zend/Uri/Exception/InvalidUriException.php similarity index 100% rename from library/Zend/Uri/Exception/InvalidUriException.php rename to library/TorrentPier/Zend/Uri/Exception/InvalidUriException.php diff --git a/library/Zend/Uri/Exception/InvalidUriPartException.php b/library/TorrentPier/Zend/Uri/Exception/InvalidUriPartException.php similarity index 100% rename from library/Zend/Uri/Exception/InvalidUriPartException.php rename to library/TorrentPier/Zend/Uri/Exception/InvalidUriPartException.php diff --git a/library/Zend/Uri/File.php b/library/TorrentPier/Zend/Uri/File.php similarity index 100% rename from library/Zend/Uri/File.php rename to library/TorrentPier/Zend/Uri/File.php diff --git a/library/Zend/Uri/Http.php b/library/TorrentPier/Zend/Uri/Http.php similarity index 100% rename from library/Zend/Uri/Http.php rename to library/TorrentPier/Zend/Uri/Http.php diff --git a/library/Zend/Uri/Mailto.php b/library/TorrentPier/Zend/Uri/Mailto.php similarity index 100% rename from library/Zend/Uri/Mailto.php rename to library/TorrentPier/Zend/Uri/Mailto.php diff --git a/library/Zend/Uri/README.md b/library/TorrentPier/Zend/Uri/README.md similarity index 100% rename from library/Zend/Uri/README.md rename to library/TorrentPier/Zend/Uri/README.md diff --git a/library/Zend/Uri/Uri.php b/library/TorrentPier/Zend/Uri/Uri.php similarity index 100% rename from library/Zend/Uri/Uri.php rename to library/TorrentPier/Zend/Uri/Uri.php diff --git a/library/Zend/Uri/UriFactory.php b/library/TorrentPier/Zend/Uri/UriFactory.php similarity index 100% rename from library/Zend/Uri/UriFactory.php rename to library/TorrentPier/Zend/Uri/UriFactory.php diff --git a/library/Zend/Uri/UriInterface.php b/library/TorrentPier/Zend/Uri/UriInterface.php similarity index 100% rename from library/Zend/Uri/UriInterface.php rename to library/TorrentPier/Zend/Uri/UriInterface.php diff --git a/library/Zend/Uri/composer.json b/library/TorrentPier/Zend/Uri/composer.json similarity index 100% rename from library/Zend/Uri/composer.json rename to library/TorrentPier/Zend/Uri/composer.json diff --git a/library/Zend/Validator/AbstractValidator.php b/library/TorrentPier/Zend/Validator/AbstractValidator.php similarity index 100% rename from library/Zend/Validator/AbstractValidator.php rename to library/TorrentPier/Zend/Validator/AbstractValidator.php diff --git a/library/Zend/Validator/Barcode.php b/library/TorrentPier/Zend/Validator/Barcode.php similarity index 100% rename from library/Zend/Validator/Barcode.php rename to library/TorrentPier/Zend/Validator/Barcode.php diff --git a/library/Zend/Validator/Barcode/AbstractAdapter.php b/library/TorrentPier/Zend/Validator/Barcode/AbstractAdapter.php similarity index 100% rename from library/Zend/Validator/Barcode/AbstractAdapter.php rename to library/TorrentPier/Zend/Validator/Barcode/AbstractAdapter.php diff --git a/library/Zend/Validator/Barcode/AdapterInterface.php b/library/TorrentPier/Zend/Validator/Barcode/AdapterInterface.php similarity index 100% rename from library/Zend/Validator/Barcode/AdapterInterface.php rename to library/TorrentPier/Zend/Validator/Barcode/AdapterInterface.php diff --git a/library/Zend/Validator/Barcode/Codabar.php b/library/TorrentPier/Zend/Validator/Barcode/Codabar.php similarity index 100% rename from library/Zend/Validator/Barcode/Codabar.php rename to library/TorrentPier/Zend/Validator/Barcode/Codabar.php diff --git a/library/Zend/Validator/Barcode/Code128.php b/library/TorrentPier/Zend/Validator/Barcode/Code128.php similarity index 100% rename from library/Zend/Validator/Barcode/Code128.php rename to library/TorrentPier/Zend/Validator/Barcode/Code128.php diff --git a/library/Zend/Validator/Barcode/Code25.php b/library/TorrentPier/Zend/Validator/Barcode/Code25.php similarity index 100% rename from library/Zend/Validator/Barcode/Code25.php rename to library/TorrentPier/Zend/Validator/Barcode/Code25.php diff --git a/library/Zend/Validator/Barcode/Code25interleaved.php b/library/TorrentPier/Zend/Validator/Barcode/Code25interleaved.php similarity index 100% rename from library/Zend/Validator/Barcode/Code25interleaved.php rename to library/TorrentPier/Zend/Validator/Barcode/Code25interleaved.php diff --git a/library/Zend/Validator/Barcode/Code39.php b/library/TorrentPier/Zend/Validator/Barcode/Code39.php similarity index 100% rename from library/Zend/Validator/Barcode/Code39.php rename to library/TorrentPier/Zend/Validator/Barcode/Code39.php diff --git a/library/Zend/Validator/Barcode/Code39ext.php b/library/TorrentPier/Zend/Validator/Barcode/Code39ext.php similarity index 100% rename from library/Zend/Validator/Barcode/Code39ext.php rename to library/TorrentPier/Zend/Validator/Barcode/Code39ext.php diff --git a/library/Zend/Validator/Barcode/Code93.php b/library/TorrentPier/Zend/Validator/Barcode/Code93.php similarity index 100% rename from library/Zend/Validator/Barcode/Code93.php rename to library/TorrentPier/Zend/Validator/Barcode/Code93.php diff --git a/library/Zend/Validator/Barcode/Code93ext.php b/library/TorrentPier/Zend/Validator/Barcode/Code93ext.php similarity index 100% rename from library/Zend/Validator/Barcode/Code93ext.php rename to library/TorrentPier/Zend/Validator/Barcode/Code93ext.php diff --git a/library/Zend/Validator/Barcode/Ean12.php b/library/TorrentPier/Zend/Validator/Barcode/Ean12.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean12.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean12.php diff --git a/library/Zend/Validator/Barcode/Ean13.php b/library/TorrentPier/Zend/Validator/Barcode/Ean13.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean13.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean13.php diff --git a/library/Zend/Validator/Barcode/Ean14.php b/library/TorrentPier/Zend/Validator/Barcode/Ean14.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean14.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean14.php diff --git a/library/Zend/Validator/Barcode/Ean18.php b/library/TorrentPier/Zend/Validator/Barcode/Ean18.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean18.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean18.php diff --git a/library/Zend/Validator/Barcode/Ean2.php b/library/TorrentPier/Zend/Validator/Barcode/Ean2.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean2.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean2.php diff --git a/library/Zend/Validator/Barcode/Ean5.php b/library/TorrentPier/Zend/Validator/Barcode/Ean5.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean5.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean5.php diff --git a/library/Zend/Validator/Barcode/Ean8.php b/library/TorrentPier/Zend/Validator/Barcode/Ean8.php similarity index 100% rename from library/Zend/Validator/Barcode/Ean8.php rename to library/TorrentPier/Zend/Validator/Barcode/Ean8.php diff --git a/library/Zend/Validator/Barcode/Gtin12.php b/library/TorrentPier/Zend/Validator/Barcode/Gtin12.php similarity index 100% rename from library/Zend/Validator/Barcode/Gtin12.php rename to library/TorrentPier/Zend/Validator/Barcode/Gtin12.php diff --git a/library/Zend/Validator/Barcode/Gtin13.php b/library/TorrentPier/Zend/Validator/Barcode/Gtin13.php similarity index 100% rename from library/Zend/Validator/Barcode/Gtin13.php rename to library/TorrentPier/Zend/Validator/Barcode/Gtin13.php diff --git a/library/Zend/Validator/Barcode/Gtin14.php b/library/TorrentPier/Zend/Validator/Barcode/Gtin14.php similarity index 100% rename from library/Zend/Validator/Barcode/Gtin14.php rename to library/TorrentPier/Zend/Validator/Barcode/Gtin14.php diff --git a/library/Zend/Validator/Barcode/Identcode.php b/library/TorrentPier/Zend/Validator/Barcode/Identcode.php similarity index 100% rename from library/Zend/Validator/Barcode/Identcode.php rename to library/TorrentPier/Zend/Validator/Barcode/Identcode.php diff --git a/library/Zend/Validator/Barcode/Intelligentmail.php b/library/TorrentPier/Zend/Validator/Barcode/Intelligentmail.php similarity index 100% rename from library/Zend/Validator/Barcode/Intelligentmail.php rename to library/TorrentPier/Zend/Validator/Barcode/Intelligentmail.php diff --git a/library/Zend/Validator/Barcode/Issn.php b/library/TorrentPier/Zend/Validator/Barcode/Issn.php similarity index 100% rename from library/Zend/Validator/Barcode/Issn.php rename to library/TorrentPier/Zend/Validator/Barcode/Issn.php diff --git a/library/Zend/Validator/Barcode/Itf14.php b/library/TorrentPier/Zend/Validator/Barcode/Itf14.php similarity index 100% rename from library/Zend/Validator/Barcode/Itf14.php rename to library/TorrentPier/Zend/Validator/Barcode/Itf14.php diff --git a/library/Zend/Validator/Barcode/Leitcode.php b/library/TorrentPier/Zend/Validator/Barcode/Leitcode.php similarity index 100% rename from library/Zend/Validator/Barcode/Leitcode.php rename to library/TorrentPier/Zend/Validator/Barcode/Leitcode.php diff --git a/library/Zend/Validator/Barcode/Planet.php b/library/TorrentPier/Zend/Validator/Barcode/Planet.php similarity index 100% rename from library/Zend/Validator/Barcode/Planet.php rename to library/TorrentPier/Zend/Validator/Barcode/Planet.php diff --git a/library/Zend/Validator/Barcode/Postnet.php b/library/TorrentPier/Zend/Validator/Barcode/Postnet.php similarity index 100% rename from library/Zend/Validator/Barcode/Postnet.php rename to library/TorrentPier/Zend/Validator/Barcode/Postnet.php diff --git a/library/Zend/Validator/Barcode/Royalmail.php b/library/TorrentPier/Zend/Validator/Barcode/Royalmail.php similarity index 100% rename from library/Zend/Validator/Barcode/Royalmail.php rename to library/TorrentPier/Zend/Validator/Barcode/Royalmail.php diff --git a/library/Zend/Validator/Barcode/Sscc.php b/library/TorrentPier/Zend/Validator/Barcode/Sscc.php similarity index 100% rename from library/Zend/Validator/Barcode/Sscc.php rename to library/TorrentPier/Zend/Validator/Barcode/Sscc.php diff --git a/library/Zend/Validator/Barcode/Upca.php b/library/TorrentPier/Zend/Validator/Barcode/Upca.php similarity index 100% rename from library/Zend/Validator/Barcode/Upca.php rename to library/TorrentPier/Zend/Validator/Barcode/Upca.php diff --git a/library/Zend/Validator/Barcode/Upce.php b/library/TorrentPier/Zend/Validator/Barcode/Upce.php similarity index 100% rename from library/Zend/Validator/Barcode/Upce.php rename to library/TorrentPier/Zend/Validator/Barcode/Upce.php diff --git a/library/Zend/Validator/Between.php b/library/TorrentPier/Zend/Validator/Between.php similarity index 100% rename from library/Zend/Validator/Between.php rename to library/TorrentPier/Zend/Validator/Between.php diff --git a/library/Zend/Validator/Bitwise.php b/library/TorrentPier/Zend/Validator/Bitwise.php similarity index 100% rename from library/Zend/Validator/Bitwise.php rename to library/TorrentPier/Zend/Validator/Bitwise.php diff --git a/library/Zend/Validator/CONTRIBUTING.md b/library/TorrentPier/Zend/Validator/CONTRIBUTING.md similarity index 100% rename from library/Zend/Validator/CONTRIBUTING.md rename to library/TorrentPier/Zend/Validator/CONTRIBUTING.md diff --git a/library/Zend/Validator/Callback.php b/library/TorrentPier/Zend/Validator/Callback.php similarity index 100% rename from library/Zend/Validator/Callback.php rename to library/TorrentPier/Zend/Validator/Callback.php diff --git a/library/Zend/Validator/CreditCard.php b/library/TorrentPier/Zend/Validator/CreditCard.php similarity index 100% rename from library/Zend/Validator/CreditCard.php rename to library/TorrentPier/Zend/Validator/CreditCard.php diff --git a/library/Zend/Validator/Csrf.php b/library/TorrentPier/Zend/Validator/Csrf.php similarity index 100% rename from library/Zend/Validator/Csrf.php rename to library/TorrentPier/Zend/Validator/Csrf.php diff --git a/library/Zend/Validator/Date.php b/library/TorrentPier/Zend/Validator/Date.php similarity index 100% rename from library/Zend/Validator/Date.php rename to library/TorrentPier/Zend/Validator/Date.php diff --git a/library/Zend/Validator/DateStep.php b/library/TorrentPier/Zend/Validator/DateStep.php similarity index 100% rename from library/Zend/Validator/DateStep.php rename to library/TorrentPier/Zend/Validator/DateStep.php diff --git a/library/Zend/Validator/Db/AbstractDb.php b/library/TorrentPier/Zend/Validator/Db/AbstractDb.php similarity index 100% rename from library/Zend/Validator/Db/AbstractDb.php rename to library/TorrentPier/Zend/Validator/Db/AbstractDb.php diff --git a/library/Zend/Validator/Db/NoRecordExists.php b/library/TorrentPier/Zend/Validator/Db/NoRecordExists.php similarity index 100% rename from library/Zend/Validator/Db/NoRecordExists.php rename to library/TorrentPier/Zend/Validator/Db/NoRecordExists.php diff --git a/library/Zend/Validator/Db/RecordExists.php b/library/TorrentPier/Zend/Validator/Db/RecordExists.php similarity index 100% rename from library/Zend/Validator/Db/RecordExists.php rename to library/TorrentPier/Zend/Validator/Db/RecordExists.php diff --git a/library/Zend/Validator/Digits.php b/library/TorrentPier/Zend/Validator/Digits.php similarity index 100% rename from library/Zend/Validator/Digits.php rename to library/TorrentPier/Zend/Validator/Digits.php diff --git a/library/Zend/Validator/EmailAddress.php b/library/TorrentPier/Zend/Validator/EmailAddress.php similarity index 100% rename from library/Zend/Validator/EmailAddress.php rename to library/TorrentPier/Zend/Validator/EmailAddress.php diff --git a/library/Zend/Validator/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/Validator/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/Validator/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/Validator/Exception/BadMethodCallException.php diff --git a/library/Zend/Validator/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/Validator/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/Validator/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/Validator/Exception/ExceptionInterface.php diff --git a/library/Zend/Validator/Exception/ExtensionNotLoadedException.php b/library/TorrentPier/Zend/Validator/Exception/ExtensionNotLoadedException.php similarity index 100% rename from library/Zend/Validator/Exception/ExtensionNotLoadedException.php rename to library/TorrentPier/Zend/Validator/Exception/ExtensionNotLoadedException.php diff --git a/library/Zend/Validator/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/Validator/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/Validator/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/Validator/Exception/InvalidArgumentException.php diff --git a/library/Zend/Validator/Exception/InvalidMagicMimeFileException.php b/library/TorrentPier/Zend/Validator/Exception/InvalidMagicMimeFileException.php similarity index 100% rename from library/Zend/Validator/Exception/InvalidMagicMimeFileException.php rename to library/TorrentPier/Zend/Validator/Exception/InvalidMagicMimeFileException.php diff --git a/library/Zend/Validator/Exception/RuntimeException.php b/library/TorrentPier/Zend/Validator/Exception/RuntimeException.php similarity index 100% rename from library/Zend/Validator/Exception/RuntimeException.php rename to library/TorrentPier/Zend/Validator/Exception/RuntimeException.php diff --git a/library/Zend/Validator/Explode.php b/library/TorrentPier/Zend/Validator/Explode.php similarity index 100% rename from library/Zend/Validator/Explode.php rename to library/TorrentPier/Zend/Validator/Explode.php diff --git a/library/Zend/Validator/File/Count.php b/library/TorrentPier/Zend/Validator/File/Count.php similarity index 100% rename from library/Zend/Validator/File/Count.php rename to library/TorrentPier/Zend/Validator/File/Count.php diff --git a/library/Zend/Validator/File/Crc32.php b/library/TorrentPier/Zend/Validator/File/Crc32.php similarity index 100% rename from library/Zend/Validator/File/Crc32.php rename to library/TorrentPier/Zend/Validator/File/Crc32.php diff --git a/library/Zend/Validator/File/ExcludeExtension.php b/library/TorrentPier/Zend/Validator/File/ExcludeExtension.php similarity index 100% rename from library/Zend/Validator/File/ExcludeExtension.php rename to library/TorrentPier/Zend/Validator/File/ExcludeExtension.php diff --git a/library/Zend/Validator/File/ExcludeMimeType.php b/library/TorrentPier/Zend/Validator/File/ExcludeMimeType.php similarity index 100% rename from library/Zend/Validator/File/ExcludeMimeType.php rename to library/TorrentPier/Zend/Validator/File/ExcludeMimeType.php diff --git a/library/Zend/Validator/File/Exists.php b/library/TorrentPier/Zend/Validator/File/Exists.php similarity index 100% rename from library/Zend/Validator/File/Exists.php rename to library/TorrentPier/Zend/Validator/File/Exists.php diff --git a/library/Zend/Validator/File/Extension.php b/library/TorrentPier/Zend/Validator/File/Extension.php similarity index 100% rename from library/Zend/Validator/File/Extension.php rename to library/TorrentPier/Zend/Validator/File/Extension.php diff --git a/library/Zend/Validator/File/FilesSize.php b/library/TorrentPier/Zend/Validator/File/FilesSize.php similarity index 100% rename from library/Zend/Validator/File/FilesSize.php rename to library/TorrentPier/Zend/Validator/File/FilesSize.php diff --git a/library/Zend/Validator/File/Hash.php b/library/TorrentPier/Zend/Validator/File/Hash.php similarity index 100% rename from library/Zend/Validator/File/Hash.php rename to library/TorrentPier/Zend/Validator/File/Hash.php diff --git a/library/Zend/Validator/File/ImageSize.php b/library/TorrentPier/Zend/Validator/File/ImageSize.php similarity index 100% rename from library/Zend/Validator/File/ImageSize.php rename to library/TorrentPier/Zend/Validator/File/ImageSize.php diff --git a/library/Zend/Validator/File/IsCompressed.php b/library/TorrentPier/Zend/Validator/File/IsCompressed.php similarity index 100% rename from library/Zend/Validator/File/IsCompressed.php rename to library/TorrentPier/Zend/Validator/File/IsCompressed.php diff --git a/library/Zend/Validator/File/IsImage.php b/library/TorrentPier/Zend/Validator/File/IsImage.php similarity index 100% rename from library/Zend/Validator/File/IsImage.php rename to library/TorrentPier/Zend/Validator/File/IsImage.php diff --git a/library/Zend/Validator/File/Md5.php b/library/TorrentPier/Zend/Validator/File/Md5.php similarity index 100% rename from library/Zend/Validator/File/Md5.php rename to library/TorrentPier/Zend/Validator/File/Md5.php diff --git a/library/Zend/Validator/File/MimeType.php b/library/TorrentPier/Zend/Validator/File/MimeType.php similarity index 100% rename from library/Zend/Validator/File/MimeType.php rename to library/TorrentPier/Zend/Validator/File/MimeType.php diff --git a/library/Zend/Validator/File/NotExists.php b/library/TorrentPier/Zend/Validator/File/NotExists.php similarity index 100% rename from library/Zend/Validator/File/NotExists.php rename to library/TorrentPier/Zend/Validator/File/NotExists.php diff --git a/library/Zend/Validator/File/Sha1.php b/library/TorrentPier/Zend/Validator/File/Sha1.php similarity index 100% rename from library/Zend/Validator/File/Sha1.php rename to library/TorrentPier/Zend/Validator/File/Sha1.php diff --git a/library/Zend/Validator/File/Size.php b/library/TorrentPier/Zend/Validator/File/Size.php similarity index 100% rename from library/Zend/Validator/File/Size.php rename to library/TorrentPier/Zend/Validator/File/Size.php diff --git a/library/Zend/Validator/File/Upload.php b/library/TorrentPier/Zend/Validator/File/Upload.php similarity index 100% rename from library/Zend/Validator/File/Upload.php rename to library/TorrentPier/Zend/Validator/File/Upload.php diff --git a/library/Zend/Validator/File/UploadFile.php b/library/TorrentPier/Zend/Validator/File/UploadFile.php similarity index 100% rename from library/Zend/Validator/File/UploadFile.php rename to library/TorrentPier/Zend/Validator/File/UploadFile.php diff --git a/library/Zend/Validator/File/WordCount.php b/library/TorrentPier/Zend/Validator/File/WordCount.php similarity index 100% rename from library/Zend/Validator/File/WordCount.php rename to library/TorrentPier/Zend/Validator/File/WordCount.php diff --git a/library/Zend/Validator/GreaterThan.php b/library/TorrentPier/Zend/Validator/GreaterThan.php similarity index 100% rename from library/Zend/Validator/GreaterThan.php rename to library/TorrentPier/Zend/Validator/GreaterThan.php diff --git a/library/Zend/Validator/Hex.php b/library/TorrentPier/Zend/Validator/Hex.php similarity index 100% rename from library/Zend/Validator/Hex.php rename to library/TorrentPier/Zend/Validator/Hex.php diff --git a/library/Zend/Validator/Hostname.php b/library/TorrentPier/Zend/Validator/Hostname.php similarity index 100% rename from library/Zend/Validator/Hostname.php rename to library/TorrentPier/Zend/Validator/Hostname.php diff --git a/library/Zend/Validator/Hostname/Biz.php b/library/TorrentPier/Zend/Validator/Hostname/Biz.php similarity index 100% rename from library/Zend/Validator/Hostname/Biz.php rename to library/TorrentPier/Zend/Validator/Hostname/Biz.php diff --git a/library/Zend/Validator/Hostname/Cn.php b/library/TorrentPier/Zend/Validator/Hostname/Cn.php similarity index 100% rename from library/Zend/Validator/Hostname/Cn.php rename to library/TorrentPier/Zend/Validator/Hostname/Cn.php diff --git a/library/Zend/Validator/Hostname/Com.php b/library/TorrentPier/Zend/Validator/Hostname/Com.php similarity index 100% rename from library/Zend/Validator/Hostname/Com.php rename to library/TorrentPier/Zend/Validator/Hostname/Com.php diff --git a/library/Zend/Validator/Hostname/Jp.php b/library/TorrentPier/Zend/Validator/Hostname/Jp.php similarity index 100% rename from library/Zend/Validator/Hostname/Jp.php rename to library/TorrentPier/Zend/Validator/Hostname/Jp.php diff --git a/library/Zend/Validator/Iban.php b/library/TorrentPier/Zend/Validator/Iban.php similarity index 100% rename from library/Zend/Validator/Iban.php rename to library/TorrentPier/Zend/Validator/Iban.php diff --git a/library/Zend/Validator/Identical.php b/library/TorrentPier/Zend/Validator/Identical.php similarity index 100% rename from library/Zend/Validator/Identical.php rename to library/TorrentPier/Zend/Validator/Identical.php diff --git a/library/Zend/Validator/InArray.php b/library/TorrentPier/Zend/Validator/InArray.php similarity index 100% rename from library/Zend/Validator/InArray.php rename to library/TorrentPier/Zend/Validator/InArray.php diff --git a/library/Zend/Validator/Ip.php b/library/TorrentPier/Zend/Validator/Ip.php similarity index 100% rename from library/Zend/Validator/Ip.php rename to library/TorrentPier/Zend/Validator/Ip.php diff --git a/library/Zend/Validator/IsInstanceOf.php b/library/TorrentPier/Zend/Validator/IsInstanceOf.php similarity index 100% rename from library/Zend/Validator/IsInstanceOf.php rename to library/TorrentPier/Zend/Validator/IsInstanceOf.php diff --git a/library/Zend/Validator/Isbn.php b/library/TorrentPier/Zend/Validator/Isbn.php similarity index 100% rename from library/Zend/Validator/Isbn.php rename to library/TorrentPier/Zend/Validator/Isbn.php diff --git a/library/Zend/Validator/LessThan.php b/library/TorrentPier/Zend/Validator/LessThan.php similarity index 100% rename from library/Zend/Validator/LessThan.php rename to library/TorrentPier/Zend/Validator/LessThan.php diff --git a/library/Zend/Validator/NotEmpty.php b/library/TorrentPier/Zend/Validator/NotEmpty.php similarity index 100% rename from library/Zend/Validator/NotEmpty.php rename to library/TorrentPier/Zend/Validator/NotEmpty.php diff --git a/library/Zend/Validator/README.md b/library/TorrentPier/Zend/Validator/README.md similarity index 100% rename from library/Zend/Validator/README.md rename to library/TorrentPier/Zend/Validator/README.md diff --git a/library/Zend/Validator/Regex.php b/library/TorrentPier/Zend/Validator/Regex.php similarity index 100% rename from library/Zend/Validator/Regex.php rename to library/TorrentPier/Zend/Validator/Regex.php diff --git a/library/Zend/Validator/Sitemap/Changefreq.php b/library/TorrentPier/Zend/Validator/Sitemap/Changefreq.php similarity index 100% rename from library/Zend/Validator/Sitemap/Changefreq.php rename to library/TorrentPier/Zend/Validator/Sitemap/Changefreq.php diff --git a/library/Zend/Validator/Sitemap/Lastmod.php b/library/TorrentPier/Zend/Validator/Sitemap/Lastmod.php similarity index 100% rename from library/Zend/Validator/Sitemap/Lastmod.php rename to library/TorrentPier/Zend/Validator/Sitemap/Lastmod.php diff --git a/library/Zend/Validator/Sitemap/Loc.php b/library/TorrentPier/Zend/Validator/Sitemap/Loc.php similarity index 100% rename from library/Zend/Validator/Sitemap/Loc.php rename to library/TorrentPier/Zend/Validator/Sitemap/Loc.php diff --git a/library/Zend/Validator/Sitemap/Priority.php b/library/TorrentPier/Zend/Validator/Sitemap/Priority.php similarity index 100% rename from library/Zend/Validator/Sitemap/Priority.php rename to library/TorrentPier/Zend/Validator/Sitemap/Priority.php diff --git a/library/Zend/Validator/StaticValidator.php b/library/TorrentPier/Zend/Validator/StaticValidator.php similarity index 100% rename from library/Zend/Validator/StaticValidator.php rename to library/TorrentPier/Zend/Validator/StaticValidator.php diff --git a/library/Zend/Validator/Step.php b/library/TorrentPier/Zend/Validator/Step.php similarity index 100% rename from library/Zend/Validator/Step.php rename to library/TorrentPier/Zend/Validator/Step.php diff --git a/library/Zend/Validator/StringLength.php b/library/TorrentPier/Zend/Validator/StringLength.php similarity index 100% rename from library/Zend/Validator/StringLength.php rename to library/TorrentPier/Zend/Validator/StringLength.php diff --git a/library/Zend/Validator/Timezone.php b/library/TorrentPier/Zend/Validator/Timezone.php similarity index 100% rename from library/Zend/Validator/Timezone.php rename to library/TorrentPier/Zend/Validator/Timezone.php diff --git a/library/Zend/Validator/Translator/TranslatorAwareInterface.php b/library/TorrentPier/Zend/Validator/Translator/TranslatorAwareInterface.php similarity index 100% rename from library/Zend/Validator/Translator/TranslatorAwareInterface.php rename to library/TorrentPier/Zend/Validator/Translator/TranslatorAwareInterface.php diff --git a/library/Zend/Validator/Translator/TranslatorInterface.php b/library/TorrentPier/Zend/Validator/Translator/TranslatorInterface.php similarity index 100% rename from library/Zend/Validator/Translator/TranslatorInterface.php rename to library/TorrentPier/Zend/Validator/Translator/TranslatorInterface.php diff --git a/library/Zend/Validator/Uri.php b/library/TorrentPier/Zend/Validator/Uri.php similarity index 100% rename from library/Zend/Validator/Uri.php rename to library/TorrentPier/Zend/Validator/Uri.php diff --git a/library/Zend/Validator/ValidatorChain.php b/library/TorrentPier/Zend/Validator/ValidatorChain.php similarity index 100% rename from library/Zend/Validator/ValidatorChain.php rename to library/TorrentPier/Zend/Validator/ValidatorChain.php diff --git a/library/Zend/Validator/ValidatorInterface.php b/library/TorrentPier/Zend/Validator/ValidatorInterface.php similarity index 100% rename from library/Zend/Validator/ValidatorInterface.php rename to library/TorrentPier/Zend/Validator/ValidatorInterface.php diff --git a/library/Zend/Validator/ValidatorPluginManager.php b/library/TorrentPier/Zend/Validator/ValidatorPluginManager.php similarity index 100% rename from library/Zend/Validator/ValidatorPluginManager.php rename to library/TorrentPier/Zend/Validator/ValidatorPluginManager.php diff --git a/library/Zend/Validator/ValidatorPluginManagerAwareInterface.php b/library/TorrentPier/Zend/Validator/ValidatorPluginManagerAwareInterface.php similarity index 100% rename from library/Zend/Validator/ValidatorPluginManagerAwareInterface.php rename to library/TorrentPier/Zend/Validator/ValidatorPluginManagerAwareInterface.php diff --git a/library/Zend/Validator/composer.json b/library/TorrentPier/Zend/Validator/composer.json similarity index 100% rename from library/Zend/Validator/composer.json rename to library/TorrentPier/Zend/Validator/composer.json diff --git a/library/Zend/Version/CONTRIBUTING.md b/library/TorrentPier/Zend/Version/CONTRIBUTING.md similarity index 100% rename from library/Zend/Version/CONTRIBUTING.md rename to library/TorrentPier/Zend/Version/CONTRIBUTING.md diff --git a/library/Zend/Version/README.md b/library/TorrentPier/Zend/Version/README.md similarity index 100% rename from library/Zend/Version/README.md rename to library/TorrentPier/Zend/Version/README.md diff --git a/library/Zend/Version/Version.php b/library/TorrentPier/Zend/Version/Version.php similarity index 100% rename from library/Zend/Version/Version.php rename to library/TorrentPier/Zend/Version/Version.php diff --git a/library/Zend/Version/composer.json b/library/TorrentPier/Zend/Version/composer.json similarity index 100% rename from library/Zend/Version/composer.json rename to library/TorrentPier/Zend/Version/composer.json diff --git a/library/Zend/View/CONTRIBUTING.md b/library/TorrentPier/Zend/View/CONTRIBUTING.md similarity index 100% rename from library/Zend/View/CONTRIBUTING.md rename to library/TorrentPier/Zend/View/CONTRIBUTING.md diff --git a/library/Zend/View/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/View/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/View/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/View/Exception/BadMethodCallException.php diff --git a/library/Zend/View/Exception/DomainException.php b/library/TorrentPier/Zend/View/Exception/DomainException.php similarity index 100% rename from library/Zend/View/Exception/DomainException.php rename to library/TorrentPier/Zend/View/Exception/DomainException.php diff --git a/library/Zend/View/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/View/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/View/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/View/Exception/ExceptionInterface.php diff --git a/library/Zend/View/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/View/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/View/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/View/Exception/InvalidArgumentException.php diff --git a/library/Zend/View/Exception/InvalidHelperException.php b/library/TorrentPier/Zend/View/Exception/InvalidHelperException.php similarity index 100% rename from library/Zend/View/Exception/InvalidHelperException.php rename to library/TorrentPier/Zend/View/Exception/InvalidHelperException.php diff --git a/library/Zend/View/Exception/RuntimeException.php b/library/TorrentPier/Zend/View/Exception/RuntimeException.php similarity index 100% rename from library/Zend/View/Exception/RuntimeException.php rename to library/TorrentPier/Zend/View/Exception/RuntimeException.php diff --git a/library/Zend/View/Exception/UnexpectedValueException.php b/library/TorrentPier/Zend/View/Exception/UnexpectedValueException.php similarity index 100% rename from library/Zend/View/Exception/UnexpectedValueException.php rename to library/TorrentPier/Zend/View/Exception/UnexpectedValueException.php diff --git a/library/Zend/View/Helper/AbstractHelper.php b/library/TorrentPier/Zend/View/Helper/AbstractHelper.php similarity index 100% rename from library/Zend/View/Helper/AbstractHelper.php rename to library/TorrentPier/Zend/View/Helper/AbstractHelper.php diff --git a/library/Zend/View/Helper/AbstractHtmlElement.php b/library/TorrentPier/Zend/View/Helper/AbstractHtmlElement.php similarity index 100% rename from library/Zend/View/Helper/AbstractHtmlElement.php rename to library/TorrentPier/Zend/View/Helper/AbstractHtmlElement.php diff --git a/library/Zend/View/Helper/BasePath.php b/library/TorrentPier/Zend/View/Helper/BasePath.php similarity index 100% rename from library/Zend/View/Helper/BasePath.php rename to library/TorrentPier/Zend/View/Helper/BasePath.php diff --git a/library/Zend/View/Helper/Cycle.php b/library/TorrentPier/Zend/View/Helper/Cycle.php similarity index 100% rename from library/Zend/View/Helper/Cycle.php rename to library/TorrentPier/Zend/View/Helper/Cycle.php diff --git a/library/Zend/View/Helper/DeclareVars.php b/library/TorrentPier/Zend/View/Helper/DeclareVars.php similarity index 100% rename from library/Zend/View/Helper/DeclareVars.php rename to library/TorrentPier/Zend/View/Helper/DeclareVars.php diff --git a/library/Zend/View/Helper/Doctype.php b/library/TorrentPier/Zend/View/Helper/Doctype.php similarity index 100% rename from library/Zend/View/Helper/Doctype.php rename to library/TorrentPier/Zend/View/Helper/Doctype.php diff --git a/library/Zend/View/Helper/EscapeCss.php b/library/TorrentPier/Zend/View/Helper/EscapeCss.php similarity index 100% rename from library/Zend/View/Helper/EscapeCss.php rename to library/TorrentPier/Zend/View/Helper/EscapeCss.php diff --git a/library/Zend/View/Helper/EscapeHtml.php b/library/TorrentPier/Zend/View/Helper/EscapeHtml.php similarity index 100% rename from library/Zend/View/Helper/EscapeHtml.php rename to library/TorrentPier/Zend/View/Helper/EscapeHtml.php diff --git a/library/Zend/View/Helper/EscapeHtmlAttr.php b/library/TorrentPier/Zend/View/Helper/EscapeHtmlAttr.php similarity index 100% rename from library/Zend/View/Helper/EscapeHtmlAttr.php rename to library/TorrentPier/Zend/View/Helper/EscapeHtmlAttr.php diff --git a/library/Zend/View/Helper/EscapeJs.php b/library/TorrentPier/Zend/View/Helper/EscapeJs.php similarity index 100% rename from library/Zend/View/Helper/EscapeJs.php rename to library/TorrentPier/Zend/View/Helper/EscapeJs.php diff --git a/library/Zend/View/Helper/EscapeUrl.php b/library/TorrentPier/Zend/View/Helper/EscapeUrl.php similarity index 100% rename from library/Zend/View/Helper/EscapeUrl.php rename to library/TorrentPier/Zend/View/Helper/EscapeUrl.php diff --git a/library/Zend/View/Helper/Escaper/AbstractHelper.php b/library/TorrentPier/Zend/View/Helper/Escaper/AbstractHelper.php similarity index 100% rename from library/Zend/View/Helper/Escaper/AbstractHelper.php rename to library/TorrentPier/Zend/View/Helper/Escaper/AbstractHelper.php diff --git a/library/Zend/View/Helper/FlashMessenger.php b/library/TorrentPier/Zend/View/Helper/FlashMessenger.php similarity index 100% rename from library/Zend/View/Helper/FlashMessenger.php rename to library/TorrentPier/Zend/View/Helper/FlashMessenger.php diff --git a/library/Zend/View/Helper/Gravatar.php b/library/TorrentPier/Zend/View/Helper/Gravatar.php similarity index 100% rename from library/Zend/View/Helper/Gravatar.php rename to library/TorrentPier/Zend/View/Helper/Gravatar.php diff --git a/library/Zend/View/Helper/HeadLink.php b/library/TorrentPier/Zend/View/Helper/HeadLink.php similarity index 100% rename from library/Zend/View/Helper/HeadLink.php rename to library/TorrentPier/Zend/View/Helper/HeadLink.php diff --git a/library/Zend/View/Helper/HeadMeta.php b/library/TorrentPier/Zend/View/Helper/HeadMeta.php similarity index 100% rename from library/Zend/View/Helper/HeadMeta.php rename to library/TorrentPier/Zend/View/Helper/HeadMeta.php diff --git a/library/Zend/View/Helper/HeadScript.php b/library/TorrentPier/Zend/View/Helper/HeadScript.php similarity index 100% rename from library/Zend/View/Helper/HeadScript.php rename to library/TorrentPier/Zend/View/Helper/HeadScript.php diff --git a/library/Zend/View/Helper/HeadStyle.php b/library/TorrentPier/Zend/View/Helper/HeadStyle.php similarity index 100% rename from library/Zend/View/Helper/HeadStyle.php rename to library/TorrentPier/Zend/View/Helper/HeadStyle.php diff --git a/library/Zend/View/Helper/HeadTitle.php b/library/TorrentPier/Zend/View/Helper/HeadTitle.php similarity index 100% rename from library/Zend/View/Helper/HeadTitle.php rename to library/TorrentPier/Zend/View/Helper/HeadTitle.php diff --git a/library/Zend/View/Helper/HelperInterface.php b/library/TorrentPier/Zend/View/Helper/HelperInterface.php similarity index 100% rename from library/Zend/View/Helper/HelperInterface.php rename to library/TorrentPier/Zend/View/Helper/HelperInterface.php diff --git a/library/Zend/View/Helper/HtmlFlash.php b/library/TorrentPier/Zend/View/Helper/HtmlFlash.php similarity index 100% rename from library/Zend/View/Helper/HtmlFlash.php rename to library/TorrentPier/Zend/View/Helper/HtmlFlash.php diff --git a/library/Zend/View/Helper/HtmlList.php b/library/TorrentPier/Zend/View/Helper/HtmlList.php similarity index 100% rename from library/Zend/View/Helper/HtmlList.php rename to library/TorrentPier/Zend/View/Helper/HtmlList.php diff --git a/library/Zend/View/Helper/HtmlObject.php b/library/TorrentPier/Zend/View/Helper/HtmlObject.php similarity index 100% rename from library/Zend/View/Helper/HtmlObject.php rename to library/TorrentPier/Zend/View/Helper/HtmlObject.php diff --git a/library/Zend/View/Helper/HtmlPage.php b/library/TorrentPier/Zend/View/Helper/HtmlPage.php similarity index 100% rename from library/Zend/View/Helper/HtmlPage.php rename to library/TorrentPier/Zend/View/Helper/HtmlPage.php diff --git a/library/Zend/View/Helper/HtmlQuicktime.php b/library/TorrentPier/Zend/View/Helper/HtmlQuicktime.php similarity index 100% rename from library/Zend/View/Helper/HtmlQuicktime.php rename to library/TorrentPier/Zend/View/Helper/HtmlQuicktime.php diff --git a/library/Zend/View/Helper/HtmlTag.php b/library/TorrentPier/Zend/View/Helper/HtmlTag.php similarity index 100% rename from library/Zend/View/Helper/HtmlTag.php rename to library/TorrentPier/Zend/View/Helper/HtmlTag.php diff --git a/library/Zend/View/Helper/Identity.php b/library/TorrentPier/Zend/View/Helper/Identity.php similarity index 100% rename from library/Zend/View/Helper/Identity.php rename to library/TorrentPier/Zend/View/Helper/Identity.php diff --git a/library/Zend/View/Helper/InlineScript.php b/library/TorrentPier/Zend/View/Helper/InlineScript.php similarity index 100% rename from library/Zend/View/Helper/InlineScript.php rename to library/TorrentPier/Zend/View/Helper/InlineScript.php diff --git a/library/Zend/View/Helper/Json.php b/library/TorrentPier/Zend/View/Helper/Json.php similarity index 100% rename from library/Zend/View/Helper/Json.php rename to library/TorrentPier/Zend/View/Helper/Json.php diff --git a/library/Zend/View/Helper/Layout.php b/library/TorrentPier/Zend/View/Helper/Layout.php similarity index 100% rename from library/Zend/View/Helper/Layout.php rename to library/TorrentPier/Zend/View/Helper/Layout.php diff --git a/library/Zend/View/Helper/Navigation.php b/library/TorrentPier/Zend/View/Helper/Navigation.php similarity index 100% rename from library/Zend/View/Helper/Navigation.php rename to library/TorrentPier/Zend/View/Helper/Navigation.php diff --git a/library/Zend/View/Helper/Navigation/AbstractHelper.php b/library/TorrentPier/Zend/View/Helper/Navigation/AbstractHelper.php similarity index 100% rename from library/Zend/View/Helper/Navigation/AbstractHelper.php rename to library/TorrentPier/Zend/View/Helper/Navigation/AbstractHelper.php diff --git a/library/Zend/View/Helper/Navigation/Breadcrumbs.php b/library/TorrentPier/Zend/View/Helper/Navigation/Breadcrumbs.php similarity index 100% rename from library/Zend/View/Helper/Navigation/Breadcrumbs.php rename to library/TorrentPier/Zend/View/Helper/Navigation/Breadcrumbs.php diff --git a/library/Zend/View/Helper/Navigation/HelperInterface.php b/library/TorrentPier/Zend/View/Helper/Navigation/HelperInterface.php similarity index 100% rename from library/Zend/View/Helper/Navigation/HelperInterface.php rename to library/TorrentPier/Zend/View/Helper/Navigation/HelperInterface.php diff --git a/library/Zend/View/Helper/Navigation/Links.php b/library/TorrentPier/Zend/View/Helper/Navigation/Links.php similarity index 100% rename from library/Zend/View/Helper/Navigation/Links.php rename to library/TorrentPier/Zend/View/Helper/Navigation/Links.php diff --git a/library/Zend/View/Helper/Navigation/Listener/AclListener.php b/library/TorrentPier/Zend/View/Helper/Navigation/Listener/AclListener.php similarity index 100% rename from library/Zend/View/Helper/Navigation/Listener/AclListener.php rename to library/TorrentPier/Zend/View/Helper/Navigation/Listener/AclListener.php diff --git a/library/Zend/View/Helper/Navigation/Menu.php b/library/TorrentPier/Zend/View/Helper/Navigation/Menu.php similarity index 100% rename from library/Zend/View/Helper/Navigation/Menu.php rename to library/TorrentPier/Zend/View/Helper/Navigation/Menu.php diff --git a/library/Zend/View/Helper/Navigation/PluginManager.php b/library/TorrentPier/Zend/View/Helper/Navigation/PluginManager.php similarity index 100% rename from library/Zend/View/Helper/Navigation/PluginManager.php rename to library/TorrentPier/Zend/View/Helper/Navigation/PluginManager.php diff --git a/library/Zend/View/Helper/Navigation/Sitemap.php b/library/TorrentPier/Zend/View/Helper/Navigation/Sitemap.php similarity index 100% rename from library/Zend/View/Helper/Navigation/Sitemap.php rename to library/TorrentPier/Zend/View/Helper/Navigation/Sitemap.php diff --git a/library/Zend/View/Helper/PaginationControl.php b/library/TorrentPier/Zend/View/Helper/PaginationControl.php similarity index 100% rename from library/Zend/View/Helper/PaginationControl.php rename to library/TorrentPier/Zend/View/Helper/PaginationControl.php diff --git a/library/Zend/View/Helper/Partial.php b/library/TorrentPier/Zend/View/Helper/Partial.php similarity index 100% rename from library/Zend/View/Helper/Partial.php rename to library/TorrentPier/Zend/View/Helper/Partial.php diff --git a/library/Zend/View/Helper/PartialLoop.php b/library/TorrentPier/Zend/View/Helper/PartialLoop.php similarity index 100% rename from library/Zend/View/Helper/PartialLoop.php rename to library/TorrentPier/Zend/View/Helper/PartialLoop.php diff --git a/library/Zend/View/Helper/Placeholder.php b/library/TorrentPier/Zend/View/Helper/Placeholder.php similarity index 100% rename from library/Zend/View/Helper/Placeholder.php rename to library/TorrentPier/Zend/View/Helper/Placeholder.php diff --git a/library/Zend/View/Helper/Placeholder/Container.php b/library/TorrentPier/Zend/View/Helper/Placeholder/Container.php similarity index 100% rename from library/Zend/View/Helper/Placeholder/Container.php rename to library/TorrentPier/Zend/View/Helper/Placeholder/Container.php diff --git a/library/Zend/View/Helper/Placeholder/Container/AbstractContainer.php b/library/TorrentPier/Zend/View/Helper/Placeholder/Container/AbstractContainer.php similarity index 100% rename from library/Zend/View/Helper/Placeholder/Container/AbstractContainer.php rename to library/TorrentPier/Zend/View/Helper/Placeholder/Container/AbstractContainer.php diff --git a/library/Zend/View/Helper/Placeholder/Container/AbstractStandalone.php b/library/TorrentPier/Zend/View/Helper/Placeholder/Container/AbstractStandalone.php similarity index 100% rename from library/Zend/View/Helper/Placeholder/Container/AbstractStandalone.php rename to library/TorrentPier/Zend/View/Helper/Placeholder/Container/AbstractStandalone.php diff --git a/library/Zend/View/Helper/Placeholder/Registry.php b/library/TorrentPier/Zend/View/Helper/Placeholder/Registry.php similarity index 100% rename from library/Zend/View/Helper/Placeholder/Registry.php rename to library/TorrentPier/Zend/View/Helper/Placeholder/Registry.php diff --git a/library/Zend/View/Helper/RenderChildModel.php b/library/TorrentPier/Zend/View/Helper/RenderChildModel.php similarity index 100% rename from library/Zend/View/Helper/RenderChildModel.php rename to library/TorrentPier/Zend/View/Helper/RenderChildModel.php diff --git a/library/Zend/View/Helper/RenderToPlaceholder.php b/library/TorrentPier/Zend/View/Helper/RenderToPlaceholder.php similarity index 100% rename from library/Zend/View/Helper/RenderToPlaceholder.php rename to library/TorrentPier/Zend/View/Helper/RenderToPlaceholder.php diff --git a/library/Zend/View/Helper/ServerUrl.php b/library/TorrentPier/Zend/View/Helper/ServerUrl.php similarity index 100% rename from library/Zend/View/Helper/ServerUrl.php rename to library/TorrentPier/Zend/View/Helper/ServerUrl.php diff --git a/library/Zend/View/Helper/Service/FlashMessengerFactory.php b/library/TorrentPier/Zend/View/Helper/Service/FlashMessengerFactory.php similarity index 100% rename from library/Zend/View/Helper/Service/FlashMessengerFactory.php rename to library/TorrentPier/Zend/View/Helper/Service/FlashMessengerFactory.php diff --git a/library/Zend/View/Helper/Service/IdentityFactory.php b/library/TorrentPier/Zend/View/Helper/Service/IdentityFactory.php similarity index 100% rename from library/Zend/View/Helper/Service/IdentityFactory.php rename to library/TorrentPier/Zend/View/Helper/Service/IdentityFactory.php diff --git a/library/Zend/View/Helper/Url.php b/library/TorrentPier/Zend/View/Helper/Url.php similarity index 100% rename from library/Zend/View/Helper/Url.php rename to library/TorrentPier/Zend/View/Helper/Url.php diff --git a/library/Zend/View/Helper/ViewModel.php b/library/TorrentPier/Zend/View/Helper/ViewModel.php similarity index 100% rename from library/Zend/View/Helper/ViewModel.php rename to library/TorrentPier/Zend/View/Helper/ViewModel.php diff --git a/library/Zend/View/HelperPluginManager.php b/library/TorrentPier/Zend/View/HelperPluginManager.php similarity index 100% rename from library/Zend/View/HelperPluginManager.php rename to library/TorrentPier/Zend/View/HelperPluginManager.php diff --git a/library/Zend/View/Model/ClearableModelInterface.php b/library/TorrentPier/Zend/View/Model/ClearableModelInterface.php similarity index 100% rename from library/Zend/View/Model/ClearableModelInterface.php rename to library/TorrentPier/Zend/View/Model/ClearableModelInterface.php diff --git a/library/Zend/View/Model/ConsoleModel.php b/library/TorrentPier/Zend/View/Model/ConsoleModel.php similarity index 100% rename from library/Zend/View/Model/ConsoleModel.php rename to library/TorrentPier/Zend/View/Model/ConsoleModel.php diff --git a/library/Zend/View/Model/FeedModel.php b/library/TorrentPier/Zend/View/Model/FeedModel.php similarity index 100% rename from library/Zend/View/Model/FeedModel.php rename to library/TorrentPier/Zend/View/Model/FeedModel.php diff --git a/library/Zend/View/Model/JsonModel.php b/library/TorrentPier/Zend/View/Model/JsonModel.php similarity index 100% rename from library/Zend/View/Model/JsonModel.php rename to library/TorrentPier/Zend/View/Model/JsonModel.php diff --git a/library/Zend/View/Model/ModelInterface.php b/library/TorrentPier/Zend/View/Model/ModelInterface.php similarity index 100% rename from library/Zend/View/Model/ModelInterface.php rename to library/TorrentPier/Zend/View/Model/ModelInterface.php diff --git a/library/Zend/View/Model/RetrievableChildrenInterface.php b/library/TorrentPier/Zend/View/Model/RetrievableChildrenInterface.php similarity index 100% rename from library/Zend/View/Model/RetrievableChildrenInterface.php rename to library/TorrentPier/Zend/View/Model/RetrievableChildrenInterface.php diff --git a/library/Zend/View/Model/ViewModel.php b/library/TorrentPier/Zend/View/Model/ViewModel.php similarity index 100% rename from library/Zend/View/Model/ViewModel.php rename to library/TorrentPier/Zend/View/Model/ViewModel.php diff --git a/library/Zend/View/README.md b/library/TorrentPier/Zend/View/README.md similarity index 100% rename from library/Zend/View/README.md rename to library/TorrentPier/Zend/View/README.md diff --git a/library/Zend/View/Renderer/ConsoleRenderer.php b/library/TorrentPier/Zend/View/Renderer/ConsoleRenderer.php similarity index 100% rename from library/Zend/View/Renderer/ConsoleRenderer.php rename to library/TorrentPier/Zend/View/Renderer/ConsoleRenderer.php diff --git a/library/Zend/View/Renderer/FeedRenderer.php b/library/TorrentPier/Zend/View/Renderer/FeedRenderer.php similarity index 100% rename from library/Zend/View/Renderer/FeedRenderer.php rename to library/TorrentPier/Zend/View/Renderer/FeedRenderer.php diff --git a/library/Zend/View/Renderer/JsonRenderer.php b/library/TorrentPier/Zend/View/Renderer/JsonRenderer.php similarity index 100% rename from library/Zend/View/Renderer/JsonRenderer.php rename to library/TorrentPier/Zend/View/Renderer/JsonRenderer.php diff --git a/library/Zend/View/Renderer/PhpRenderer.php b/library/TorrentPier/Zend/View/Renderer/PhpRenderer.php similarity index 100% rename from library/Zend/View/Renderer/PhpRenderer.php rename to library/TorrentPier/Zend/View/Renderer/PhpRenderer.php diff --git a/library/Zend/View/Renderer/RendererInterface.php b/library/TorrentPier/Zend/View/Renderer/RendererInterface.php similarity index 100% rename from library/Zend/View/Renderer/RendererInterface.php rename to library/TorrentPier/Zend/View/Renderer/RendererInterface.php diff --git a/library/Zend/View/Renderer/TreeRendererInterface.php b/library/TorrentPier/Zend/View/Renderer/TreeRendererInterface.php similarity index 100% rename from library/Zend/View/Renderer/TreeRendererInterface.php rename to library/TorrentPier/Zend/View/Renderer/TreeRendererInterface.php diff --git a/library/Zend/View/Resolver/AggregateResolver.php b/library/TorrentPier/Zend/View/Resolver/AggregateResolver.php similarity index 100% rename from library/Zend/View/Resolver/AggregateResolver.php rename to library/TorrentPier/Zend/View/Resolver/AggregateResolver.php diff --git a/library/Zend/View/Resolver/PrefixPathStackResolver.php b/library/TorrentPier/Zend/View/Resolver/PrefixPathStackResolver.php similarity index 100% rename from library/Zend/View/Resolver/PrefixPathStackResolver.php rename to library/TorrentPier/Zend/View/Resolver/PrefixPathStackResolver.php diff --git a/library/Zend/View/Resolver/RelativeFallbackResolver.php b/library/TorrentPier/Zend/View/Resolver/RelativeFallbackResolver.php similarity index 100% rename from library/Zend/View/Resolver/RelativeFallbackResolver.php rename to library/TorrentPier/Zend/View/Resolver/RelativeFallbackResolver.php diff --git a/library/Zend/View/Resolver/ResolverInterface.php b/library/TorrentPier/Zend/View/Resolver/ResolverInterface.php similarity index 100% rename from library/Zend/View/Resolver/ResolverInterface.php rename to library/TorrentPier/Zend/View/Resolver/ResolverInterface.php diff --git a/library/Zend/View/Resolver/TemplateMapResolver.php b/library/TorrentPier/Zend/View/Resolver/TemplateMapResolver.php similarity index 100% rename from library/Zend/View/Resolver/TemplateMapResolver.php rename to library/TorrentPier/Zend/View/Resolver/TemplateMapResolver.php diff --git a/library/Zend/View/Resolver/TemplatePathStack.php b/library/TorrentPier/Zend/View/Resolver/TemplatePathStack.php similarity index 100% rename from library/Zend/View/Resolver/TemplatePathStack.php rename to library/TorrentPier/Zend/View/Resolver/TemplatePathStack.php diff --git a/library/Zend/View/Strategy/FeedStrategy.php b/library/TorrentPier/Zend/View/Strategy/FeedStrategy.php similarity index 100% rename from library/Zend/View/Strategy/FeedStrategy.php rename to library/TorrentPier/Zend/View/Strategy/FeedStrategy.php diff --git a/library/Zend/View/Strategy/JsonStrategy.php b/library/TorrentPier/Zend/View/Strategy/JsonStrategy.php similarity index 100% rename from library/Zend/View/Strategy/JsonStrategy.php rename to library/TorrentPier/Zend/View/Strategy/JsonStrategy.php diff --git a/library/Zend/View/Strategy/PhpRendererStrategy.php b/library/TorrentPier/Zend/View/Strategy/PhpRendererStrategy.php similarity index 100% rename from library/Zend/View/Strategy/PhpRendererStrategy.php rename to library/TorrentPier/Zend/View/Strategy/PhpRendererStrategy.php diff --git a/library/Zend/View/Stream.php b/library/TorrentPier/Zend/View/Stream.php similarity index 100% rename from library/Zend/View/Stream.php rename to library/TorrentPier/Zend/View/Stream.php diff --git a/library/Zend/View/Variables.php b/library/TorrentPier/Zend/View/Variables.php similarity index 100% rename from library/Zend/View/Variables.php rename to library/TorrentPier/Zend/View/Variables.php diff --git a/library/Zend/View/View.php b/library/TorrentPier/Zend/View/View.php similarity index 100% rename from library/Zend/View/View.php rename to library/TorrentPier/Zend/View/View.php diff --git a/library/Zend/View/ViewEvent.php b/library/TorrentPier/Zend/View/ViewEvent.php similarity index 100% rename from library/Zend/View/ViewEvent.php rename to library/TorrentPier/Zend/View/ViewEvent.php diff --git a/library/Zend/View/composer.json b/library/TorrentPier/Zend/View/composer.json similarity index 100% rename from library/Zend/View/composer.json rename to library/TorrentPier/Zend/View/composer.json diff --git a/library/Zend/XmlRpc/AbstractValue.php b/library/TorrentPier/Zend/XmlRpc/AbstractValue.php similarity index 100% rename from library/Zend/XmlRpc/AbstractValue.php rename to library/TorrentPier/Zend/XmlRpc/AbstractValue.php diff --git a/library/Zend/XmlRpc/CONTRIBUTING.md b/library/TorrentPier/Zend/XmlRpc/CONTRIBUTING.md similarity index 100% rename from library/Zend/XmlRpc/CONTRIBUTING.md rename to library/TorrentPier/Zend/XmlRpc/CONTRIBUTING.md diff --git a/library/Zend/XmlRpc/Client.php b/library/TorrentPier/Zend/XmlRpc/Client.php similarity index 100% rename from library/Zend/XmlRpc/Client.php rename to library/TorrentPier/Zend/XmlRpc/Client.php diff --git a/library/Zend/XmlRpc/Client/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/ExceptionInterface.php diff --git a/library/Zend/XmlRpc/Client/Exception/FaultException.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/FaultException.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/FaultException.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/FaultException.php diff --git a/library/Zend/XmlRpc/Client/Exception/HttpException.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/HttpException.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/HttpException.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/HttpException.php diff --git a/library/Zend/XmlRpc/Client/Exception/IntrospectException.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/IntrospectException.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/IntrospectException.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/IntrospectException.php diff --git a/library/Zend/XmlRpc/Client/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/InvalidArgumentException.php diff --git a/library/Zend/XmlRpc/Client/Exception/RuntimeException.php b/library/TorrentPier/Zend/XmlRpc/Client/Exception/RuntimeException.php similarity index 100% rename from library/Zend/XmlRpc/Client/Exception/RuntimeException.php rename to library/TorrentPier/Zend/XmlRpc/Client/Exception/RuntimeException.php diff --git a/library/Zend/XmlRpc/Client/ServerIntrospection.php b/library/TorrentPier/Zend/XmlRpc/Client/ServerIntrospection.php similarity index 100% rename from library/Zend/XmlRpc/Client/ServerIntrospection.php rename to library/TorrentPier/Zend/XmlRpc/Client/ServerIntrospection.php diff --git a/library/Zend/XmlRpc/Client/ServerProxy.php b/library/TorrentPier/Zend/XmlRpc/Client/ServerProxy.php similarity index 100% rename from library/Zend/XmlRpc/Client/ServerProxy.php rename to library/TorrentPier/Zend/XmlRpc/Client/ServerProxy.php diff --git a/library/Zend/XmlRpc/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/XmlRpc/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/XmlRpc/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/XmlRpc/Exception/BadMethodCallException.php diff --git a/library/Zend/XmlRpc/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/XmlRpc/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/XmlRpc/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/XmlRpc/Exception/ExceptionInterface.php diff --git a/library/Zend/XmlRpc/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/XmlRpc/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/XmlRpc/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/XmlRpc/Exception/InvalidArgumentException.php diff --git a/library/Zend/XmlRpc/Exception/RuntimeException.php b/library/TorrentPier/Zend/XmlRpc/Exception/RuntimeException.php similarity index 100% rename from library/Zend/XmlRpc/Exception/RuntimeException.php rename to library/TorrentPier/Zend/XmlRpc/Exception/RuntimeException.php diff --git a/library/Zend/XmlRpc/Exception/ValueException.php b/library/TorrentPier/Zend/XmlRpc/Exception/ValueException.php similarity index 100% rename from library/Zend/XmlRpc/Exception/ValueException.php rename to library/TorrentPier/Zend/XmlRpc/Exception/ValueException.php diff --git a/library/Zend/XmlRpc/Fault.php b/library/TorrentPier/Zend/XmlRpc/Fault.php similarity index 100% rename from library/Zend/XmlRpc/Fault.php rename to library/TorrentPier/Zend/XmlRpc/Fault.php diff --git a/library/Zend/XmlRpc/Generator/AbstractGenerator.php b/library/TorrentPier/Zend/XmlRpc/Generator/AbstractGenerator.php similarity index 100% rename from library/Zend/XmlRpc/Generator/AbstractGenerator.php rename to library/TorrentPier/Zend/XmlRpc/Generator/AbstractGenerator.php diff --git a/library/Zend/XmlRpc/Generator/DomDocument.php b/library/TorrentPier/Zend/XmlRpc/Generator/DomDocument.php similarity index 100% rename from library/Zend/XmlRpc/Generator/DomDocument.php rename to library/TorrentPier/Zend/XmlRpc/Generator/DomDocument.php diff --git a/library/Zend/XmlRpc/Generator/GeneratorInterface.php b/library/TorrentPier/Zend/XmlRpc/Generator/GeneratorInterface.php similarity index 100% rename from library/Zend/XmlRpc/Generator/GeneratorInterface.php rename to library/TorrentPier/Zend/XmlRpc/Generator/GeneratorInterface.php diff --git a/library/Zend/XmlRpc/Generator/XmlWriter.php b/library/TorrentPier/Zend/XmlRpc/Generator/XmlWriter.php similarity index 100% rename from library/Zend/XmlRpc/Generator/XmlWriter.php rename to library/TorrentPier/Zend/XmlRpc/Generator/XmlWriter.php diff --git a/library/Zend/XmlRpc/README.md b/library/TorrentPier/Zend/XmlRpc/README.md similarity index 100% rename from library/Zend/XmlRpc/README.md rename to library/TorrentPier/Zend/XmlRpc/README.md diff --git a/library/Zend/XmlRpc/Request.php b/library/TorrentPier/Zend/XmlRpc/Request.php similarity index 100% rename from library/Zend/XmlRpc/Request.php rename to library/TorrentPier/Zend/XmlRpc/Request.php diff --git a/library/Zend/XmlRpc/Request/Http.php b/library/TorrentPier/Zend/XmlRpc/Request/Http.php similarity index 100% rename from library/Zend/XmlRpc/Request/Http.php rename to library/TorrentPier/Zend/XmlRpc/Request/Http.php diff --git a/library/Zend/XmlRpc/Request/Stdin.php b/library/TorrentPier/Zend/XmlRpc/Request/Stdin.php similarity index 100% rename from library/Zend/XmlRpc/Request/Stdin.php rename to library/TorrentPier/Zend/XmlRpc/Request/Stdin.php diff --git a/library/Zend/XmlRpc/Response.php b/library/TorrentPier/Zend/XmlRpc/Response.php similarity index 100% rename from library/Zend/XmlRpc/Response.php rename to library/TorrentPier/Zend/XmlRpc/Response.php diff --git a/library/Zend/XmlRpc/Response/Http.php b/library/TorrentPier/Zend/XmlRpc/Response/Http.php similarity index 100% rename from library/Zend/XmlRpc/Response/Http.php rename to library/TorrentPier/Zend/XmlRpc/Response/Http.php diff --git a/library/Zend/XmlRpc/Server.php b/library/TorrentPier/Zend/XmlRpc/Server.php similarity index 100% rename from library/Zend/XmlRpc/Server.php rename to library/TorrentPier/Zend/XmlRpc/Server.php diff --git a/library/Zend/XmlRpc/Server/Cache.php b/library/TorrentPier/Zend/XmlRpc/Server/Cache.php similarity index 100% rename from library/Zend/XmlRpc/Server/Cache.php rename to library/TorrentPier/Zend/XmlRpc/Server/Cache.php diff --git a/library/Zend/XmlRpc/Server/Exception/BadMethodCallException.php b/library/TorrentPier/Zend/XmlRpc/Server/Exception/BadMethodCallException.php similarity index 100% rename from library/Zend/XmlRpc/Server/Exception/BadMethodCallException.php rename to library/TorrentPier/Zend/XmlRpc/Server/Exception/BadMethodCallException.php diff --git a/library/Zend/XmlRpc/Server/Exception/ExceptionInterface.php b/library/TorrentPier/Zend/XmlRpc/Server/Exception/ExceptionInterface.php similarity index 100% rename from library/Zend/XmlRpc/Server/Exception/ExceptionInterface.php rename to library/TorrentPier/Zend/XmlRpc/Server/Exception/ExceptionInterface.php diff --git a/library/Zend/XmlRpc/Server/Exception/InvalidArgumentException.php b/library/TorrentPier/Zend/XmlRpc/Server/Exception/InvalidArgumentException.php similarity index 100% rename from library/Zend/XmlRpc/Server/Exception/InvalidArgumentException.php rename to library/TorrentPier/Zend/XmlRpc/Server/Exception/InvalidArgumentException.php diff --git a/library/Zend/XmlRpc/Server/Exception/RuntimeException.php b/library/TorrentPier/Zend/XmlRpc/Server/Exception/RuntimeException.php similarity index 100% rename from library/Zend/XmlRpc/Server/Exception/RuntimeException.php rename to library/TorrentPier/Zend/XmlRpc/Server/Exception/RuntimeException.php diff --git a/library/Zend/XmlRpc/Server/Fault.php b/library/TorrentPier/Zend/XmlRpc/Server/Fault.php similarity index 100% rename from library/Zend/XmlRpc/Server/Fault.php rename to library/TorrentPier/Zend/XmlRpc/Server/Fault.php diff --git a/library/Zend/XmlRpc/Server/System.php b/library/TorrentPier/Zend/XmlRpc/Server/System.php similarity index 100% rename from library/Zend/XmlRpc/Server/System.php rename to library/TorrentPier/Zend/XmlRpc/Server/System.php diff --git a/library/Zend/XmlRpc/Value/AbstractCollection.php b/library/TorrentPier/Zend/XmlRpc/Value/AbstractCollection.php similarity index 100% rename from library/Zend/XmlRpc/Value/AbstractCollection.php rename to library/TorrentPier/Zend/XmlRpc/Value/AbstractCollection.php diff --git a/library/Zend/XmlRpc/Value/AbstractScalar.php b/library/TorrentPier/Zend/XmlRpc/Value/AbstractScalar.php similarity index 100% rename from library/Zend/XmlRpc/Value/AbstractScalar.php rename to library/TorrentPier/Zend/XmlRpc/Value/AbstractScalar.php diff --git a/library/Zend/XmlRpc/Value/ArrayValue.php b/library/TorrentPier/Zend/XmlRpc/Value/ArrayValue.php similarity index 100% rename from library/Zend/XmlRpc/Value/ArrayValue.php rename to library/TorrentPier/Zend/XmlRpc/Value/ArrayValue.php diff --git a/library/Zend/XmlRpc/Value/Base64.php b/library/TorrentPier/Zend/XmlRpc/Value/Base64.php similarity index 100% rename from library/Zend/XmlRpc/Value/Base64.php rename to library/TorrentPier/Zend/XmlRpc/Value/Base64.php diff --git a/library/Zend/XmlRpc/Value/BigInteger.php b/library/TorrentPier/Zend/XmlRpc/Value/BigInteger.php similarity index 100% rename from library/Zend/XmlRpc/Value/BigInteger.php rename to library/TorrentPier/Zend/XmlRpc/Value/BigInteger.php diff --git a/library/Zend/XmlRpc/Value/Boolean.php b/library/TorrentPier/Zend/XmlRpc/Value/Boolean.php similarity index 100% rename from library/Zend/XmlRpc/Value/Boolean.php rename to library/TorrentPier/Zend/XmlRpc/Value/Boolean.php diff --git a/library/Zend/XmlRpc/Value/DateTime.php b/library/TorrentPier/Zend/XmlRpc/Value/DateTime.php similarity index 100% rename from library/Zend/XmlRpc/Value/DateTime.php rename to library/TorrentPier/Zend/XmlRpc/Value/DateTime.php diff --git a/library/Zend/XmlRpc/Value/Double.php b/library/TorrentPier/Zend/XmlRpc/Value/Double.php similarity index 100% rename from library/Zend/XmlRpc/Value/Double.php rename to library/TorrentPier/Zend/XmlRpc/Value/Double.php diff --git a/library/Zend/XmlRpc/Value/Integer.php b/library/TorrentPier/Zend/XmlRpc/Value/Integer.php similarity index 100% rename from library/Zend/XmlRpc/Value/Integer.php rename to library/TorrentPier/Zend/XmlRpc/Value/Integer.php diff --git a/library/Zend/XmlRpc/Value/Nil.php b/library/TorrentPier/Zend/XmlRpc/Value/Nil.php similarity index 100% rename from library/Zend/XmlRpc/Value/Nil.php rename to library/TorrentPier/Zend/XmlRpc/Value/Nil.php diff --git a/library/Zend/XmlRpc/Value/Struct.php b/library/TorrentPier/Zend/XmlRpc/Value/Struct.php similarity index 100% rename from library/Zend/XmlRpc/Value/Struct.php rename to library/TorrentPier/Zend/XmlRpc/Value/Struct.php diff --git a/library/Zend/XmlRpc/Value/Text.php b/library/TorrentPier/Zend/XmlRpc/Value/Text.php similarity index 100% rename from library/Zend/XmlRpc/Value/Text.php rename to library/TorrentPier/Zend/XmlRpc/Value/Text.php diff --git a/library/Zend/XmlRpc/composer.json b/library/TorrentPier/Zend/XmlRpc/composer.json similarity index 100% rename from library/Zend/XmlRpc/composer.json rename to library/TorrentPier/Zend/XmlRpc/composer.json diff --git a/library/config.php b/library/config.php index 51bc9ee30..ce381e27b 100644 --- a/library/config.php +++ b/library/config.php @@ -125,7 +125,7 @@ $bb_cfg['cache']['engines'] = array( 'bb_cache' => array('filecache', array()), 'bb_config' => array('filecache', array()), 'tr_cache' => array('filecache', array()), - 'session_cache' => array('filecache', array()), + 'bb_session' => array('filecache', array()), 'bb_login_err' => array('filecache', array()), 'bb_poll_data' => array('filecache', array()), ); @@ -255,6 +255,7 @@ define('CACHE_DIR', BB_PATH .'/internal_data/cache/' ); define('LOG_DIR', BB_PATH .'/internal_data/log/' ); define('SITEMAP_DIR', BB_PATH .'/internal_data/sitemap/' ); define('TRIGGERS_DIR', BB_PATH .'/internal_data/triggers/' ); +define('LIB_DIR', BB_ROOT .'/library/' ); define('AJAX_DIR', BB_ROOT .'/library/ajax/' ); define('CFG_DIR', BB_PATH .'/library/config/' ); define('INC_DIR', BB_PATH .'/library/includes/' ); @@ -262,9 +263,10 @@ define('CLASS_DIR', BB_PATH .'/library/includes/classes/'); define('CORE_DIR', BB_PATH .'/library/includes/core/' ); define('UCP_DIR', BB_PATH .'/library/includes/ucp/' ); define('LANG_ROOT_DIR', BB_PATH .'/library/language/' ); -define('TP_AUTO_DIR', BB_PATH .'/library/TorrentPier/' ); +define('TP_DIR', BB_PATH .'/library/TorrentPier/' ); define('IMAGES_DIR', BB_PATH .'/styles/images/' ); define('TEMPLATES_DIR', BB_PATH .'/styles/templates/' ); +define('ADMIN_TPL_DIR', TEMPLATES_DIR .'/admin/' ); // URL's $bb_cfg['ajax_url'] = 'ajax.php'; # "http://{$_SERVER['SERVER_NAME']}/ajax.php" @@ -323,9 +325,6 @@ $bb_cfg['lang'] = array( ), ); -// Templates -define('ADMIN_TPL_DIR', TEMPLATES_DIR .'/admin/'); - $bb_cfg['templates'] = array( // 'folder' => 'Name', 'default' => 'Стандартный', diff --git a/library/includes/functions.php b/library/includes/functions.php index 5a5c51c48..ac819b389 100644 --- a/library/includes/functions.php +++ b/library/includes/functions.php @@ -48,7 +48,7 @@ function get_tracks ($type) trigger_error(__FUNCTION__ .": invalid type '$type'", E_USER_ERROR); } $tracks = !empty($_COOKIE[$c_name]) ? @unserialize($_COOKIE[$c_name]) : false; - return ($tracks) ? $tracks : array(); + return ($tracks) ? $tracks : []; } function set_tracks ($cookie_name, &$tracking_ary, $tracks = null, $val = TIMENOW) @@ -63,7 +63,7 @@ function set_tracks ($cookie_name, &$tracking_ary, $tracks = null, $val = TIMENO { if (!is_array($tracks)) { - $tracks = array($tracks => $val); + $tracks = [$tracks => $val]; } foreach ($tracks as $key => $val) { @@ -146,7 +146,7 @@ define('UG_PERM_BOTH', 1); // both user and group define('UG_PERM_USER_ONLY', 2); // only personal user permissions define('UG_PERM_GROUP_ONLY', 3); // only group permissions -$bf['forum_perm'] = array( +$bf['forum_perm'] = [ 'auth_view' => AUTH_VIEW, 'auth_read' => AUTH_READ, 'auth_mod' => AUTH_MOD, @@ -160,9 +160,9 @@ $bf['forum_perm'] = array( 'auth_pollcreate' => AUTH_POLLCREATE, 'auth_attachments' => AUTH_ATTACH, 'auth_download' => AUTH_DOWNLOAD, -); +]; -$bf['user_opt'] = array( +$bf['user_opt'] = [ # 'dis_opt_name' => ЗАПРЕТЫ используемые администраторами для пользователей # 'user_opt_name' => НАСТРОЙКИ используемые пользователями 'user_viewemail' => 0, // Показывать e-mail @@ -181,7 +181,7 @@ $bf['user_opt'] = array( 'dis_post_edit' => 13, // Запрет на редактирование сообщений 'user_dls' => 14, // Скрывать список текущих закачек в профиле 'user_retracker' => 15, // Добавлять ретрекер к скачиваемым торрентам -); +]; function bit2dec ($bit_num) { @@ -245,13 +245,13 @@ function setbit (&$int, $bit_num, $on) forum auth levels, this will prevent the auth function having to do its own lookup */ -function auth ($type, $forum_id, $ug_data, $f_access = array(), $group_perm = UG_PERM_BOTH) +function auth ($type, $forum_id, $ug_data, $f_access = [], $group_perm = UG_PERM_BOTH) { global $lang, $bf, $datastore; $is_guest = true; $is_admin = false; - $auth = $auth_fields = $u_access = array(); + $auth = $auth_fields = $u_access = []; $add_auth_type_desc = ($forum_id != AUTH_LIST_ALL); // @@ -263,7 +263,7 @@ function auth ($type, $forum_id, $ug_data, $f_access = array(), $group_perm = UG } else if ($auth_type = array_search($type, $bf['forum_perm'])) { - $auth_fields = array($auth_type); + $auth_fields = [$auth_type]; } if (empty($auth_fields)) @@ -296,7 +296,7 @@ function auth ($type, $forum_id, $ug_data, $f_access = array(), $group_perm = UG else if (isset($f_access['forum_id'])) { // Change passed $f_access format for later using in foreach() - $f_access = array($f_access['forum_id'] => $f_access); + $f_access = [$f_access['forum_id'] => $f_access]; } if (empty($f_access)) @@ -439,14 +439,14 @@ function auth_check ($bf_ary, $bf_key, $perm_ary, $perm_key, $is_admin = false) class Date_Delta { - var $auto_granularity = array( + var $auto_granularity = [ 60 => 'seconds', // set granularity to "seconds" if delta less then 1 minute 10800 => 'minutes', // 3 hours 259200 => 'hours', // 3 days 31363200 => 'mday', // 12 months 311040000 => 'mon', // 10 years - ); - var $intervals = array(); + ]; + var $intervals = []; var $format = ''; // Creates new object. @@ -487,7 +487,7 @@ class Date_Delta if (!$delta) return false; // Make spellable phrase. - $parts = array(); + $parts = []; $intervals = $GLOBALS['lang']['DELTA_TIME']['INTERVALS']; foreach (array_reverse($delta) as $k => $n) @@ -568,7 +568,7 @@ function delta_time ($timestamp_1, $timestamp_2 = TIMENOW, $granularity = 'auto' function get_select ($select, $selected = null, $return_as = 'html', $first_opt = '»» Выбрать ') { - $select_ary = array(); + $select_ary = []; switch ($select) { @@ -598,10 +598,10 @@ function get_select ($select, $selected = null, $return_as = 'html', $first_opt class html_common { var $options = ''; - var $attr = array(); + var $attr = []; var $cur_attr = null; var $max_length = HTML_SELECT_MAX_LENGTH; - var $selected = array(); + var $selected = []; function build_select ($name, $params, $selected = null, $max_length = HTML_SELECT_MAX_LENGTH, $multiple_size = null, $js = '') { @@ -611,7 +611,7 @@ class html_common $this->selected = array_flip((array) $selected); $this->max_length = $max_length; - $this->attr = array(); + $this->attr = []; $this->cur_attr =& $this->attr; if (isset($params['__attributes'])) @@ -838,8 +838,8 @@ function commify ($number) */ function humn_size ($size, $rounder = null, $min = null, $space = ' ') { - static $sizes = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'); - static $rounders = array(0, 0, 0, 2, 3, 3, 3, 3, 3); + static $sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; + static $rounders = [0, 0, 0, 2, 3, 3, 3, 3, 3]; $size = (float) $size; $ext = $sizes[0]; @@ -961,7 +961,7 @@ function set_var (&$result, $var, $type, $multibyte = false, $strip = true) if ($type == 'string') { - $result = trim(htmlspecialchars(str_replace(array("\r\n", "\r"), array("\n", "\n"), $result))); + $result = trim(htmlspecialchars(str_replace(["\r\n", "\r"], ["\n", "\n"], $result))); if (!empty($result)) { @@ -990,14 +990,14 @@ function request_var ($var_name, $default, $multibyte = false, $cookie = false) { if (!isset($_GET[$var_name]) && !isset($_POST[$var_name])) { - return (is_array($default)) ? array() : $default; + return (is_array($default)) ? [] : $default; } $_REQUEST[$var_name] = isset($_POST[$var_name]) ? $_POST[$var_name] : $_GET[$var_name]; } if (!isset($_REQUEST[$var_name]) || (is_array($_REQUEST[$var_name]) && !is_array($default)) || (is_array($default) && !is_array($_REQUEST[$var_name]))) { - return (is_array($default)) ? array() : $default; + return (is_array($default)) ? [] : $default; } $var = $_REQUEST[$var_name]; @@ -1024,7 +1024,7 @@ function request_var ($var_name, $default, $multibyte = false, $cookie = false) if (is_array($var)) { $_var = $var; - $var = array(); + $var = []; foreach ($_var as $k => $v) { @@ -1063,11 +1063,11 @@ function get_username ($user_id) { if (empty($user_id)) { - return is_array($user_id) ? array() : false; + return is_array($user_id) ? [] : false; } if (is_array($user_id)) { - $usernames = array(); + $usernames = []; foreach (DB()->fetch_rowset("SELECT user_id, username FROM ". BB_USERS ." WHERE user_id IN(". get_id_csv($user_id) .")") as $row) { $usernames[$row['user_id']] = $row['username']; @@ -1146,7 +1146,7 @@ function show_bt_userdata ($user_id) $btu = get_bt_userdata($user_id); - $template->assign_vars(array( + $template->assign_vars([ 'SHOW_BT_USERDATA' => true, 'UP_TOTAL' => humn_size($btu['u_up_total']), 'UP_BONUS' => humn_size($btu['u_up_bonus']), @@ -1172,7 +1172,7 @@ function show_bt_userdata ($user_id) 'SPEED_UP' => humn_size($btu['speed_up'], 0, 'KB') .'/s', 'SPEED_DOWN' => humn_size($btu['speed_down'], 0, 'KB') .'/s', - )); + ]); } function get_attachments_dir ($cfg = null) @@ -1196,7 +1196,7 @@ function bb_get_config ($table, $from_db = false, $update_cache = true) { if ($from_db OR !$cfg = CACHE('bb_config')->get("config_{$table}")) { - $cfg = array(); + $cfg = []; foreach (DB()->fetch_rowset("SELECT * FROM $table") as $row) { $cfg[$row['config_name']] = $row['config_value']; @@ -1211,13 +1211,13 @@ function bb_get_config ($table, $from_db = false, $update_cache = true) function bb_update_config ($params, $table = BB_CONFIG) { - $updates = array(); + $updates = []; foreach ($params as $name => $val) { - $updates[] = array( + $updates[] = [ 'config_name' => $name, 'config_value' => $val, - ); + ]; } $updates = DB()->build_array('MULTI_INSERT', $updates); @@ -1317,7 +1317,7 @@ function get_userdata ($u, $force_name = false, $allow_guest = false) } } - $u_data = array(); + $u_data = []; $name_search = false; $exclude_anon_sql = (!$allow_guest) ? "AND user_id != ". GUEST_UID : ''; @@ -1361,9 +1361,9 @@ function make_jumpbox ($selected = 0) $jumpbox = $datastore->get('jumpbox'); } - $template->assign_vars(array( + $template->assign_vars([ 'JUMPBOX' => (IS_GUEST) ? $jumpbox['guest'] : $jumpbox['user'], - )); + ]); } // $mode: array(not_auth_forum1,not_auth_forum2,..) or (string) 'mode' @@ -1380,7 +1380,7 @@ function get_forum_select ($mode = 'guest', $name = POST_FORUM_URL, $selected = { $max_length = HTML_SELECT_MAX_LENGTH; } - $select = is_null($all_forums_option) ? array() : array($lang['ALL_AVAILABLE'] => $all_forums_option); + $select = is_null($all_forums_option) ? [] : [$lang['ALL_AVAILABLE'] => $all_forums_option]; if (!$forums = $datastore->get('cat_forums')) { $datastore->update('cat_forums'); @@ -1450,18 +1450,18 @@ function setup_style () $template = new Template(TEMPLATES_DIR . $tpl_dir_name); $css_dir = 'styles/' . basename(TEMPLATES_DIR) . '/' . $tpl_dir_name . '/css/'; - $template->assign_vars(array( + $template->assign_vars([ 'BB_ROOT' => BB_ROOT, 'SPACER' => make_url('styles/images/spacer.gif'), 'STYLESHEET' => make_url($css_dir . $stylesheet), 'EXT_LINK_NEW_WIN' => $bb_cfg['ext_link_new_win'], 'TPL_DIR' => make_url($css_dir), 'SITE_URL' => make_url('/'), - )); + ]); require(TEMPLATES_DIR . $tpl_dir_name .'/tpl_config.php'); - $theme = array('template_name' => $tpl_dir_name); + $theme = ['template_name' => $tpl_dir_name]; return $theme; } @@ -1642,12 +1642,12 @@ function generate_pagination ($base_url, $num_items, $per_page, $start_item, $ad $pagination = ($page_string) ? ''. $lang['GOTO_PAGE'] .' :  '. $page_string : ''; $pagination = str_replace('&start=0', '', $pagination); - $template->assign_vars(array( + $template->assign_vars([ 'PAGINATION' => $pagination, 'PAGE_NUMBER' => sprintf($lang['PAGE_OF'], ( floor($start_item/$per_page) + 1 ), ceil( $num_items / $per_page )), 'PG_BASE_URL' => $base_url, 'PG_PER_PAGE' => $per_page, - )); + ]); return $pagination; } @@ -1666,7 +1666,7 @@ function obtain_word_list (&$orig_word, &$replacement_word) if (!$sql = CACHE('bb_cache')->get('censored')) { $sql = DB()->fetch_rowset("SELECT word, replacement FROM ". BB_WORDS); - if(!$sql) $sql = array(array('word' => 1, 'replacement' => 1)); + if(!$sql) $sql = [['word' => 1, 'replacement' => 1]]; CACHE('bb_cache')->set('censored', $sql, 7200); } @@ -1728,12 +1728,12 @@ function bb_die ($msg_text) $msg_text = $lang[$msg_text]; } - $template->assign_vars(array( + $template->assign_vars([ 'TPL_BB_DIE' => true, 'MESSAGE_TEXT' => $msg_text, - )); + ]); - $template->set_filenames(array('bb_die' => 'common.tpl')); + $template->set_filenames(['bb_die' => 'common.tpl']); $template->pparse('bb_die'); require(PAGE_FOOTER); @@ -1810,14 +1810,14 @@ function get_forum_display_sort_option ($selected_row = 0, $action = 'list', $li { global $lang; - $forum_display_sort = array( - 'lang_key' => array('LASTPOST', 'SORT_TOPIC_TITLE', 'SORT_TIME'), - 'fields' => array('t.topic_last_post_time', 't.topic_title', 't.topic_time'), - ); - $forum_display_order = array( - 'lang_key' => array('DESC', 'ASC'), - 'fields' => array('DESC', 'ASC'), - ); + $forum_display_sort = [ + 'lang_key' => ['LASTPOST', 'SORT_TOPIC_TITLE', 'SORT_TIME'], + 'fields' => ['t.topic_last_post_time', 't.topic_title', 't.topic_time'], + ]; + $forum_display_order = [ + 'lang_key' => ['DESC', 'ASC'], + 'fields' => ['DESC', 'ASC'], + ]; // get the good list $list_name = 'forum_display_' . $list; @@ -1893,7 +1893,7 @@ function cat_exists ($cat_id) // class log_action { - var $log_type = array( + var $log_type = [ # LOG_TYPE_NAME LOG_TYPE_ID 'mod_topic_delete' => 1, 'mod_topic_move' => 2, @@ -1904,8 +1904,8 @@ class log_action 'adm_user_delete' => 7, 'adm_user_ban' => 8, 'adm_user_unban' => 9, - ); - var $log_type_select = array(); + ]; + var $log_type_select = []; var $log_disabled = false; function init () @@ -1918,7 +1918,7 @@ class log_action } } - function mod ($type_name, $args = array()) + function mod ($type_name, $args = []) { global $userdata; @@ -1944,7 +1944,7 @@ class log_action $session_ip = ''; } - $sql_ary = array( + $sql_ary = [ 'log_type_id' => (int) $this->log_type["$type_name"], 'log_user_id' => (int) $user_id, 'log_user_ip' => (string) $session_ip, @@ -1956,13 +1956,13 @@ class log_action 'log_topic_title_new' => (string) $topic_title_new, 'log_time' => (int) TIMENOW, 'log_msg' => (string) $log_msg, - ); + ]; $sql_args = DB()->build_array('INSERT', $sql_ary); DB()->query("INSERT INTO ". BB_LOG ." $sql_args"); } - function admin ($type_name, $args = array()) + function admin ($type_name, $args = []) { $this->mod($type_name, $args); } @@ -2047,9 +2047,9 @@ function get_poll_data_items_js ($topic_id) { if (!$topic_id_csv = get_id_csv($topic_id)) { - return is_array($topic_id) ? array() : false; + return is_array($topic_id) ? [] : false; } - $items = array(); + $items = []; if (!$poll_data = CACHE('bb_poll_data')->get("poll_$topic_id")) { @@ -2067,7 +2067,7 @@ function get_poll_data_items_js ($topic_id) $opt_text_for_js = htmlCHR($row['vote_text']); $opt_result_for_js = (int) $row['vote_result']; - $items[$row['topic_id']][$row['vote_id']] = array($opt_text_for_js, $opt_result_for_js); + $items[$row['topic_id']][$row['vote_id']] = [$opt_text_for_js, $opt_result_for_js]; } foreach ($items as $k => $v) { @@ -2087,11 +2087,11 @@ function print_confirmation ($tpl_vars) { global $template, $lang; - $template->assign_vars(array( + $template->assign_vars([ 'TPL_CONFIRM' => true, 'CONFIRM_TITLE' => $lang['CONFIRM'], 'FORM_METHOD' => 'post', - )); + ]); $template->assign_vars($tpl_vars); print_page('common.tpl'); @@ -2125,7 +2125,7 @@ function print_page ($args, $type = '', $mode = '') require(PAGE_HEADER); } - $template->set_filenames(array('body' => $tpl)); + $template->set_filenames(['body' => $tpl]); $template->pparse('body'); if ($mode !== 'no_footer') @@ -2222,13 +2222,13 @@ function init_sphinx () function log_sphinx_error ($err_type, $err_msg, $query = '') { - $ignore_err_txt = array( + $ignore_err_txt = [ 'negation on top level', 'Query word length is less than min prefix length', - ); + ]; if (!count($ignore_err_txt) || !preg_match('#'. join('|', $ignore_err_txt) .'#i', $err_msg)) { - $orig_query = strtr($_REQUEST['nm'], array("\n" => '\n')); + $orig_query = strtr($_REQUEST['nm'], ["\n" => '\n']); bb_log(date('m-d H:i:s') ." | $err_type | $err_msg | $orig_query | $query". LOG_LF, 'sphinx_error'); } } @@ -2237,8 +2237,8 @@ function get_title_match_topics($search) { global $bb_cfg, $sphinx, $userdata, $lang; - $where_ids = array(); - $forum_ids = (isset($search['ids']) && is_array($search['ids'])) ? array_diff($search['ids'], array(0 => 0)) : ''; + $where_ids = []; + $forum_ids = (isset($search['ids']) && is_array($search['ids'])) ? array_diff($search['ids'], [0 => 0]) : ''; $title_match_sql = encode_text_match($search['query']); if ($bb_cfg['sphinx_enabled']) @@ -2431,7 +2431,7 @@ function profile_url ($data) $profile = ''. $username .''; - if (!in_array($user_id, array('', GUEST_UID, BOT_UID)) && $username) + if (!in_array($user_id, ['', GUEST_UID, BOT_UID]) && $username) { $profile = ''. $profile .''; } @@ -2568,8 +2568,6 @@ function bb_captcha ($mode, $callback = '') { global $bb_cfg, $lang, $userdata; - require_once(TP_AUTO_DIR . 'ReCaptcha/ReCaptcha.php'); - $secret = $bb_cfg['captcha']['secret_key']; $public = $bb_cfg['captcha']['public_key']; $cp_theme = $bb_cfg['captcha']['theme']; @@ -2612,4 +2610,77 @@ function bb_captcha ($mode, $callback = '') bb_simple_die(__FUNCTION__ . ": invalid mode '$mode'"); } return false; -} \ No newline at end of file +} + +## Sessions ## +function ignore_cached_userdata () +{ + return (defined('IN_PM')) ? true : false; +} + +function cache_get_userdata ($id) +{ + if (ignore_cached_userdata()) return false; + + return CACHE('bb_session')->get($id); +} + +function cache_set_userdata ($userdata, $force = false) +{ + global $bb_cfg; + + if (!$userdata || (ignore_cached_userdata() && !$force)) return false; + + $id = ($userdata['user_id'] == GUEST_UID) ? $userdata['session_ip'] : $userdata['session_id']; + return CACHE('bb_session')->set($id, $userdata, $bb_cfg['session_update_intrv']); +} + +function cache_rm_userdata ($userdata) +{ + if (!$userdata) return false; + + $id = ($userdata['user_id'] == GUEST_UID) ? $userdata['session_ip'] : $userdata['session_id']; + return CACHE('bb_session')->rm($id); +} + +// $user_id - array(id1,id2,..) or (string) id +function cache_rm_user_sessions ($user_id) +{ + $user_id = get_id_csv($user_id); + + $rowset = DB()->fetch_rowset(" + SELECT session_id FROM ". BB_SESSIONS ." WHERE session_user_id IN($user_id) + "); + + foreach ($rowset as $row) + { + CACHE('bb_session')->rm($row['session_id']); + } +} + +function cache_update_userdata ($userdata) +{ + return cache_set_userdata($userdata, true); +} + +function db_update_userdata ($userdata, $sql_ary, $data_already_escaped = true) +{ + if (!$userdata) return false; + + $sql_args = DB()->build_array('UPDATE', $sql_ary, $data_already_escaped); + DB()->query("UPDATE ". BB_USERS ." SET $sql_args WHERE user_id = {$userdata['user_id']}"); + + if (DB()->affected_rows()) + { + cache_rm_userdata($userdata); + } +} + +// $user_id - array(id1,id2,..) or (string) id +function delete_user_sessions ($user_id) +{ + cache_rm_user_sessions($user_id); + + $user_id = get_id_csv($user_id); + DB()->query("DELETE FROM ". BB_SESSIONS ." WHERE session_user_id IN($user_id)"); +} diff --git a/library/includes/init_bb.php b/library/includes/init_bb.php index af91a1667..5b50cda80 100644 --- a/library/includes/init_bb.php +++ b/library/includes/init_bb.php @@ -7,7 +7,7 @@ if (!defined('BB_CFG_LOADED')) trigger_error('File config.php not loaded', E_USE // Define some basic configuration arrays unset($stopwords, $synonyms_match, $synonyms_replace); -$userdata = $theme = $images = $lang = $nav_links = $bf = $attach_config = array(); +$userdata = $theme = $images = $lang = $nav_links = $bf = $attach_config = []; $gen_simple_header = false; $user = null; @@ -87,10 +87,10 @@ define('MOD', 2); define('GROUP_MEMBER', 20); define('CP_HOLDER', 25); -$excluded_users = array( +$excluded_users = [ GUEST_UID, BOT_UID, -); +]; define('EXCLUDED_USERS_CSV', implode(',', $excluded_users)); // User related @@ -181,7 +181,7 @@ define('TOR_CHECKING', 9); // проверяется define('TOR_TMP', 10); // временная define('TOR_PREMOD', 11); // премодерация -$bb_cfg['tor_icons'] = array( +$bb_cfg['tor_icons'] = [ TOR_NOT_APPROVED => '*', TOR_CLOSED => 'x', TOR_APPROVED => '', @@ -194,10 +194,10 @@ $bb_cfg['tor_icons'] = array( TOR_CHECKING => '%', TOR_TMP => 'T', TOR_PREMOD => '', -); +]; // Запрет на скачивание -$bb_cfg['tor_frozen'] = array( +$bb_cfg['tor_frozen'] = [ TOR_CHECKING => true, TOR_CLOSED => true, TOR_CLOSED_CPHOLD => true, @@ -205,36 +205,36 @@ $bb_cfg['tor_frozen'] = array( TOR_DUP => true, TOR_NO_DESC => true, TOR_PREMOD => true, -); +]; // Разрешение на скачку автором, если закрыто на скачивание. -$bb_cfg['tor_frozen_author_download'] = array( +$bb_cfg['tor_frozen_author_download'] = [ TOR_CHECKING => true, TOR_NO_DESC => true, TOR_PREMOD => true, -); +]; // Запрет на редактирование головного сообщения -$bb_cfg['tor_cannot_edit'] = array( +$bb_cfg['tor_cannot_edit'] = [ TOR_CHECKING => true, TOR_CLOSED => true, TOR_CONSUMED => true, TOR_DUP => true, -); +]; // Запрет на создание новых раздач если стоит статус недооформлено/неоформлено/сомнительно -$bb_cfg['tor_cannot_new'] = array(TOR_NEED_EDIT, TOR_NO_DESC, TOR_DOUBTFUL); +$bb_cfg['tor_cannot_new'] = [TOR_NEED_EDIT, TOR_NO_DESC, TOR_DOUBTFUL]; // Разрешение на ответ релизера, если раздача исправлена. -$bb_cfg['tor_reply'] = array(TOR_NEED_EDIT, TOR_NO_DESC, TOR_DOUBTFUL); +$bb_cfg['tor_reply'] = [TOR_NEED_EDIT, TOR_NO_DESC, TOR_DOUBTFUL]; // Если такой статус у релиза, то статистика раздачи будет скрыта -$bb_cfg['tor_no_tor_act'] = array( +$bb_cfg['tor_no_tor_act'] = [ TOR_CLOSED => true, TOR_DUP => true, TOR_CLOSED_CPHOLD => true, TOR_CONSUMED => true, -); +]; // Table names define('BUF_TOPIC_VIEW', 'buf_topic_view'); @@ -335,6 +335,23 @@ define('REQUEST', 4); define('CHBOX', 5); define('SELECT', 6); +define('ONLY_NEW_POSTS', 1); +define('ONLY_NEW_TOPICS', 2); + +// Template system constants +define('XS_TPL_PREFIX', 'tpl_'); +define('XS_USE_ISSET', '1'); +define('XS_TAG_NONE', 0); +define('XS_TAG_BEGIN', 2); +define('XS_TAG_END', 3); +define('XS_TAG_INCLUDE', 4); +define('XS_TAG_IF', 5); +define('XS_TAG_ELSE', 6); +define('XS_TAG_ELSEIF', 7); +define('XS_TAG_ENDIF', 8); +define('XS_TAG_BEGINELSE', 11); + + if (!empty($banned_user_agents)) { foreach ($banned_user_agents as $agent) @@ -410,27 +427,27 @@ function make_url ($path = '') } require(INC_DIR .'functions.php'); -require(INC_DIR .'sessions.php'); -require(INC_DIR .'template.php'); require(CORE_DIR .'mysql.php'); $bb_cfg = array_merge(bb_get_config(BB_CONFIG), $bb_cfg); -$user = new user_common(); +$user = new Sessions(); $userdata =& $user->data; if (DBG_USER) require(INC_DIR .'functions_dev.php'); + + $html = new html_common(); $log_action = new log_action(); // TODO temporarily 'cat_forums' always enqueued -$datastore->enqueue(array('cat_forums')); +$datastore->enqueue(['cat_forums']); // Дата старта вашего проекта if (!$bb_cfg['board_startdate']) { - bb_update_config(array('board_startdate' => TIMENOW)); + bb_update_config(['board_startdate' => TIMENOW]); DB()->query("UPDATE ". BB_USERS ." SET user_regdate = ". TIMENOW ." WHERE user_id IN(2, ". EXCLUDED_USERS_CSV .")"); } @@ -440,7 +457,7 @@ if ((empty($_POST) && !defined('IN_ADMIN') && !defined('IN_AJAX') && !file_exist if (TIMENOW - $bb_cfg['cron_last_check'] > $bb_cfg['cron_check_interval']) { // Update cron_last_check - bb_update_config(array('cron_last_check' => (TIMENOW + 10))); + bb_update_config(['cron_last_check' => (TIMENOW + 10)]); define('CRON_LOG_ENABLED', true); // global ON/OFF define('CRON_FORCE_LOG', false); // always log regardless of job settings @@ -464,21 +481,21 @@ if ((empty($_POST) && !defined('IN_ADMIN') && !defined('IN_AJAX') && !file_exist } } -$dl_link_css = array( +$dl_link_css = [ DL_STATUS_RELEASER => 'genmed', DL_STATUS_WILL => 'dlWill', DL_STATUS_DOWN => 'leechmed', DL_STATUS_COMPLETE => 'seedmed', DL_STATUS_CANCEL => 'dlCancel', -); +]; -$dl_status_css = array( +$dl_status_css = [ DL_STATUS_RELEASER => 'genmed', DL_STATUS_WILL => 'dlWill', DL_STATUS_DOWN => 'dlDown', DL_STATUS_COMPLETE => 'dlComplete', DL_STATUS_CANCEL => 'dlCancel', -); +]; // Exit if board is disabled via ON/OFF trigger or by admin if (($bb_cfg['board_disable'] || file_exists(BB_DISABLED)) && !defined('IN_ADMIN') && !defined('IN_AJAX') && !defined('IN_LOGIN')) diff --git a/library/includes/ucp/register.php b/library/includes/ucp/register.php index f6d1d670a..f606177ee 100644 --- a/library/includes/ucp/register.php +++ b/library/includes/ucp/register.php @@ -411,8 +411,7 @@ foreach ($profile_fields as $field => $can_edit) } else if (!empty($_FILES['avatar']['name']) && $bb_cfg['avatars']['up_allowed']) { - require(INC_DIR .'functions_upload.php'); - $upload = new upload_common(); + $upload = new Upload(); if ($upload->init($bb_cfg['avatars'], $_FILES['avatar']) AND $upload->store('avatar', $pr_data)) {