diff --git a/common.php b/common.php index 8a1e9ed65..2b96366b0 100644 --- a/common.php +++ b/common.php @@ -17,23 +17,11 @@ header('X-Frame-Options: SAMEORIGIN'); // Get initial config require(BB_ROOT . 'library/config.php'); - -$fileDir = dirname(__FILE__); - -require($fileDir . '/library/TorrentPier/Autoloader.php'); -TorrentPier_Autoloader::getInstance()->setupAutoloader($fileDir . '/library/TorrentPier'); - -// 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); @@ -124,11 +112,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; @@ -255,7 +243,7 @@ function verify_id ($id, $length) function clean_filename ($fname) { - static $s = array('\\', '/', ':', '*', '?', '"', '<', '>', '|', ' '); + static $s = ['\\', '/', ':', '*', '?', '"', '<', '>', '|', ' ']; return str_replace($s, '_', str_compact($fname)); } @@ -458,7 +446,7 @@ function log_request ($file = '', $prepend_str = false, $add_post = true) global $user; $file = ($file) ? $file : 'req/'. date('m-d'); - $str = array(); + $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); @@ -491,11 +479,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 index ec0167f3f..0702d1422 100755 --- a/library/TorrentPier/Autoloader.php +++ b/library/TorrentPier/Autoloader.php @@ -1,18 +1,8 @@ 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 08fd62bf4..e50530643 100644 --- a/library/config.php +++ b/library/config.php @@ -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,7 +263,7 @@ 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/' );