| #0 | Composer\Autoload\{closure} /var/www/html/touristas/vendor/composer/ClassLoader.php (427) <?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Autoload;
/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
/** @var \Closure(string):void */
private static $includeFile;
/** @var string|null */
private $vendorDir;
// PSR-4
/**
* @var array<string, array<string, int>>
*/
private $prefixLengthsPsr4 = array();
/**
* @var array<string, list<string>>
*/
private $prefixDirsPsr4 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr4 = array();
// PSR-0
/**
* List of PSR-0 prefixes
*
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
*
* @var array<string, array<string, list<string>>>
*/
private $prefixesPsr0 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr0 = array();
/** @var bool */
private $useIncludePath = false;
/**
* @var array<string, string>
*/
private $classMap = array();
/** @var bool */
private $classMapAuthoritative = false;
/**
* @var array<string, bool>
*/
private $missingClasses = array();
/** @var string|null */
private $apcuPrefix;
/**
* @var array<string, self>
*/
private static $registeredLoaders = array();
/**
* @param string|null $vendorDir
*/
public function __construct($vendorDir = null)
{
$this->vendorDir = $vendorDir;
self::initializeIncludeClosure();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
/**
* @return list<string>
*/
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
/**
* @return list<string>
*/
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
/**
* @return array<string, string> Array of classname => path
*/
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array<string, string> $classMap Class to filename map
*
* @return void
*/
public function addClassMap(array $classMap)
{
if ($this->classMap) {
$this->classMap = array_merge($this->classMap, $classMap);
} else {
$this->classMap = $classMap;
}
}
/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*
* @return void
*/
public function add($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
$paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
$paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
$paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
$paths
);
}
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
// Register directories for a new namespace.
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 base directories
*
* @return void
*/
public function set($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
} else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}
/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
}
}
/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*
* @return void
*/
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}
/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/
public function getUseIncludePath()
{
return $this->useIncludePath;
}
/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*
* @return void
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classMapAuthoritative = $classMapAuthoritative;
}
/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/
public function isClassMapAuthoritative()
{
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*
* @return void
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*
* @return void
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
if (null === $this->vendorDir) {
return;
}
if ($prepend) {
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
} else {
unset(self::$registeredLoaders[$this->vendorDir]);
self::$registeredLoaders[$this->vendorDir] = $this;
}
}
/**
* Unregisters this instance as an autoloader.
*
* @return void
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
if (null !== $this->vendorDir) {
unset(self::$registeredLoaders[$this->vendorDir]);
}
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
$includeFile = self::$includeFile;
$includeFile($file);
return true;
}
return null;
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
}
return $file;
}
/**
* Returns the currently registered loaders keyed by their corresponding vendor directories.
*
* @return array<string, self>
*/
public static function getRegisteredLoaders()
{
return self::$registeredLoaders;
}
/**
* @param string $class
* @param string $ext
* @return string|false
*/
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}
}
}
}
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
// PSR-0 lookup
if (false !== $pos = strrpos($class, '\\')) {
// namespaced class name
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
// PEAR-like class name
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
}
if (isset($this->prefixesPsr0[$first])) {
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
}
}
}
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
// PSR-0 include paths.
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
return false;
}
/**
* @return void
*/
private static function initializeIncludeClosure()
{
if (self::$includeFile !== null) {
return;
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
*/
self::$includeFile = \Closure::bind(static function($file) {
include $file;
}, null, null);
}
}
|
| #1 | Composer\Autoload\ClassLoader->loadClass |
| #2 | spl_autoload_call |
| #3 | Phalcon\Di->get |
| #4 | Phalcon\Di\Service->resolve |
| #5 | Phalcon\Di->get |
| #6 | Phalcon\Di->getShared |
| #7 | Phalcon\Di\Injectable->__get /var/www/html/touristas/src/Controllers/IndexController.php (27) <?php
declare(strict_types=1);
/**
* This file is part of the Vökuró.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Vokuro\Controllers;
//use Vokuro\Plugins\Locale\Locale;
/**
* Display the default index page.
*/
class IndexController extends ControllerBase
{
/**
* Default action. Set the public layout (layouts/public.volt)
*/
public function indexAction(): void
{
$redirect = $this->request->get('redirect',null, $this->request->getURI());
$this->view->setVar('logged_in', is_array($this->auth->getIdentity()));
// Get the Translate service from the DI container
// $this->view->setVar('t', $this->translator);
if ($this->auth->getIdentity()) {
$this->view->setVar("redirect", $redirect);
$this->view->setTemplateBefore('private');
$this->response->redirect('blog');
} else {
$this->view->setTemplateBefore('public');
}
}
}
|
| #8 | Vokuro\Controllers\IndexController->indexAction |
| #9 | Phalcon\Dispatcher\AbstractDispatcher->callActionMethod |
| #10 | Phalcon\Dispatcher\AbstractDispatcher->dispatch |
| #11 | Phalcon\Mvc\Application->handle /var/www/html/touristas/src/Application.php (79) <?php
declare(strict_types=1);
/**
* This file is part of the Vökuró.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Vokuro;
use Exception;
use Phalcon\Di\DiInterface;
use Phalcon\Di\FactoryDefault;
use Phalcon\Di\ServiceProviderInterface;
use Phalcon\Http\ResponseInterface;
use Phalcon\Mvc\Application as MvcApplication;
//use Vokuro\Providers\TranslationsProvider;
/**
* Vökuró Application
*/
class Application
{
const APPLICATION_PROVIDER = 'bootstrap';
/**
* @var MvcApplication
*/
protected $app;
/**
* @var DiInterface
*/
protected $di;
/**
* Project root path
*
* @var string
*/
protected $rootPath;
/**
* @param string $rootPath
*
* @throws Exception
*/
public function __construct(string $rootPath)
{
$this->di = new FactoryDefault();
$this->app = $this->createApplication();
// $this->app->setEventsManager($eventsManager);
$this->rootPath = $rootPath;
$this->di->setShared(self::APPLICATION_PROVIDER, $this);
// Enable debug mode
// $this->di->getShared('config')->application->debug = true;
$this->initializeProviders();
}
/**
* Run Vökuró Application
*
* @return string
* @throws Exception
*/
public function run(): string
{
$baseUri = $this->di->getShared('url')->getBaseUri();
$position = strpos($_SERVER['REQUEST_URI'], $baseUri) + strlen($baseUri);
$uri = '/' . substr($_SERVER['REQUEST_URI'], $position);
/** @var ResponseInterface $response */
$response = $this->app->handle($uri);
return (string)$response->getContent();
}
/**
* Get Project root path
*
* @return string
*/
public function getRootPath(): string
{
return $this->rootPath;
}
/**
* @return MvcApplication
*/
protected function createApplication(): MvcApplication
{
return new MvcApplication($this->di);
}
/**
* @throws Exception
*/
protected function initializeProviders(): void
{
$filename = $this->rootPath . '/config/providers.php';
if (!file_exists($filename) || !is_readable($filename)) {
throw new Exception('File providers.php does not exist or is not readable.');
}
$providers = include_once $filename;
foreach ($providers as $providerClass) {
/** @var ServiceProviderInterface $provider */
$provider = new $providerClass;
$provider->register($this->di);
}
}
}
|
| #12 | Vokuro\Application->run /var/www/html/touristas/public/index.php (36) <?php
/**
* This file is part of the Vökuró.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
use Vokuro\Application as VokuroApplication;
/*function exceptions_error_handler($severity, $message, $filename, $lineno) {
throw new ErrorException($message, 0, $severity, $filename, $lineno);
}
set_error_handler('exceptions_error_handler'); */
error_reporting(E_ALL);
$rootPath = dirname(__DIR__);
$debug = new Phalcon\Debug();
$debug->listen();
// Set the timezone to Greece
date_default_timezone_set('Europe/Athens');
try {
require_once $rootPath . '/vendor/autoload.php';
/**
* Load .env configurations
*/
Dotenv\Dotenv::create($rootPath)->load();
/**
* Run Vökuró!
*/
echo (new VokuroApplication($rootPath))->run();
} catch (Exception $e) {
echo $e->getMessage(), '<br>';
echo nl2br(htmlentities($e->getTraceAsString()));
}
|
| Key | Value |
|---|---|
| _url | /sitemap.xml |
| Key | Value |
|---|---|
| USER | apache |
| HOME | /usr/share/httpd |
| SCRIPT_NAME | /public/index.php |
| REQUEST_URI | /sitemap.xml |
| QUERY_STRING | _url=/sitemap.xml |
| REQUEST_METHOD | GET |
| SERVER_PROTOCOL | HTTP/1.1 |
| GATEWAY_INTERFACE | CGI/1.1 |
| REDIRECT_QUERY_STRING | _url=/sitemap.xml |
| REDIRECT_URL | /public/sitemap.xml |
| REMOTE_PORT | 4705 |
| SCRIPT_FILENAME | /var/www/html/touristas/public/index.php |
| SERVER_ADMIN | root@localhost |
| CONTEXT_DOCUMENT_ROOT | /var/www/html/touristas |
| CONTEXT_PREFIX | |
| REQUEST_SCHEME | https |
| DOCUMENT_ROOT | /var/www/html/touristas |
| REMOTE_ADDR | 216.73.216.212 |
| SERVER_PORT | 443 |
| SERVER_ADDR | 185.138.41.202 |
| SERVER_NAME | shipcruisers.gr |
| SERVER_SOFTWARE | Apache/2.4.37 (AlmaLinux) OpenSSL/1.1.1k |
| SERVER_SIGNATURE | |
| PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin |
| HTTP_HOST | shipcruisers.gr |
| HTTP_ACCEPT_ENCODING | gzip, br, zstd, deflate |
| HTTP_USER_AGENT | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
| HTTP_ACCEPT | */* |
| proxy-nokeepalive | 1 |
| SSL_TLS_SNI | shipcruisers.gr |
| HTTPS | on |
| SCRIPT_URI | https://shipcruisers.gr/sitemap.xml |
| SCRIPT_URL | /sitemap.xml |
| UNIQUE_ID | aTSE@yIYuS-nPCGcjsCEEgAAAlM |
| REDIRECT_STATUS | 200 |
| REDIRECT_SSL_TLS_SNI | shipcruisers.gr |
| REDIRECT_HTTPS | on |
| REDIRECT_SCRIPT_URI | https://shipcruisers.gr/sitemap.xml |
| REDIRECT_SCRIPT_URL | /sitemap.xml |
| REDIRECT_UNIQUE_ID | aTSE@yIYuS-nPCGcjsCEEgAAAlM |
| REDIRECT_REDIRECT_STATUS | 200 |
| REDIRECT_REDIRECT_SSL_TLS_SNI | shipcruisers.gr |
| REDIRECT_REDIRECT_HTTPS | on |
| REDIRECT_REDIRECT_SCRIPT_URI | https://shipcruisers.gr/sitemap.xml |
| REDIRECT_REDIRECT_SCRIPT_URL | /sitemap.xml |
| REDIRECT_REDIRECT_UNIQUE_ID | aTSE@yIYuS-nPCGcjsCEEgAAAlM |
| FCGI_ROLE | RESPONDER |
| PHP_SELF | /public/index.php |
| REQUEST_TIME_FLOAT | 1765049595.8104 |
| REQUEST_TIME | 1765049595 |
| APP_CRYPT_SALT | eEAfR|_&G&f,+vU]:jFr!!A&+71w1Ms9~8_4L!<@[N@DyaIP_2My|:+.u>/6m,$V |
| APP_BASE_URI | / |
| APP_PUBLIC_URL | shipcruises.gr |
| APP_LOCALE | el_GR |
| APP_ID | 1 |
| DB_ADAPTER | mysql |
| DB_HOST | 127.0.0.1 |
| DB_PORT | 3306 |
| DB_USERNAME | root |
| DB_PASSWORD | Twins7078 |
| DB_NAME | vokuro |
| MAIL_FROM_NAME | Shipcruises.gr |
| MAIL_FROM_EMAIL | noreply@shipcruises.gr |
| MAIL_SMTP_SERVER | 920253389.reseller18.grserver.gr |
| MAIL_SMTP_PORT | 587 |
| MAIL_SMTP_SECURITY | tls |
| MAIL_SMTP_USERNAME | noreply@srv01.box70.com |
| MAIL_SMTP_PASSWORD | 0c3lnP1&2 |
| CODECEPTION_URL | 127.0.0.1 |
| CODECEPTION_PORT | 8888 |
| # | Path |
|---|---|
| 0 | /var/www/html/touristas/public/index.php |
| 1 | /var/www/html/touristas/vendor/autoload.php |
| 2 | /var/www/html/touristas/vendor/composer/autoload_real.php |
| 3 | /var/www/html/touristas/vendor/composer/platform_check.php |
| 4 | /var/www/html/touristas/vendor/composer/ClassLoader.php |
| 5 | /var/www/html/touristas/vendor/composer/autoload_static.php |
| 6 | /var/www/html/touristas/vendor/symfony/deprecation-contracts/function.php |
| 7 | /var/www/html/touristas/vendor/symfony/polyfill-php80/bootstrap.php |
| 8 | /var/www/html/touristas/vendor/symfony/polyfill-ctype/bootstrap.php |
| 9 | /var/www/html/touristas/vendor/symfony/polyfill-mbstring/bootstrap.php |
| 10 | /var/www/html/touristas/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php |
| 11 | /var/www/html/touristas/vendor/symfony/polyfill-intl-normalizer/bootstrap.php |
| 12 | /var/www/html/touristas/vendor/ralouphie/getallheaders/src/getallheaders.php |
| 13 | /var/www/html/touristas/vendor/cakephp/core/functions.php |
| 14 | /var/www/html/touristas/vendor/symfony/polyfill-intl-grapheme/bootstrap.php |
| 15 | /var/www/html/touristas/vendor/symfony/polyfill-php73/bootstrap.php |
| 16 | /var/www/html/touristas/vendor/symfony/string/Resources/functions.php |
| 17 | /var/www/html/touristas/vendor/symfony/polyfill-php72/bootstrap.php |
| 18 | /var/www/html/touristas/vendor/symfony/polyfill-intl-idn/bootstrap.php |
| 19 | /var/www/html/touristas/vendor/codeception/codeception/functions.php |
| 20 | /var/www/html/touristas/vendor/guzzlehttp/guzzle/src/functions_include.php |
| 21 | /var/www/html/touristas/vendor/guzzlehttp/guzzle/src/functions.php |
| 22 | /var/www/html/touristas/vendor/amphp/amp/lib/functions.php |
| 23 | /var/www/html/touristas/vendor/amphp/amp/lib/Internal/functions.php |
| 24 | /var/www/html/touristas/vendor/symfony/polyfill-php81/bootstrap.php |
| 25 | /var/www/html/touristas/vendor/amphp/byte-stream/lib/functions.php |
| 26 | /var/www/html/touristas/vendor/cakephp/collection/functions.php |
| 27 | /var/www/html/touristas/vendor/cakephp/utility/bootstrap.php |
| 28 | /var/www/html/touristas/vendor/cakephp/utility/Inflector.php |
| 29 | /var/www/html/touristas/vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php |
| 30 | /var/www/html/touristas/vendor/google/apiclient-services/autoload.php |
| 31 | /var/www/html/touristas/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php |
| 32 | /var/www/html/touristas/vendor/symfony/polyfill-iconv/bootstrap.php |
| 33 | /var/www/html/touristas/vendor/google/apiclient/src/aliases.php |
| 34 | /var/www/html/touristas/vendor/google/apiclient/src/Client.php |
| 35 | /var/www/html/touristas/vendor/google/apiclient/src/Service.php |
| 36 | /var/www/html/touristas/vendor/google/apiclient/src/AccessToken/Revoke.php |
| 37 | /var/www/html/touristas/vendor/google/apiclient/src/AccessToken/Verify.php |
| 38 | /var/www/html/touristas/vendor/google/apiclient/src/Model.php |
| 39 | /var/www/html/touristas/vendor/google/apiclient/src/Utils/UriTemplate.php |
| 40 | /var/www/html/touristas/vendor/google/apiclient/src/AuthHandler/Guzzle6AuthHandler.php |
| 41 | /var/www/html/touristas/vendor/google/apiclient/src/AuthHandler/Guzzle7AuthHandler.php |
| 42 | /var/www/html/touristas/vendor/google/apiclient/src/AuthHandler/AuthHandlerFactory.php |
| 43 | /var/www/html/touristas/vendor/google/apiclient/src/Http/Batch.php |
| 44 | /var/www/html/touristas/vendor/google/apiclient/src/Http/MediaFileUpload.php |
| 45 | /var/www/html/touristas/vendor/google/apiclient/src/Http/REST.php |
| 46 | /var/www/html/touristas/vendor/google/apiclient/src/Task/Retryable.php |
| 47 | /var/www/html/touristas/vendor/google/apiclient/src/Task/Exception.php |
| 48 | /var/www/html/touristas/vendor/google/apiclient/src/Exception.php |
| 49 | /var/www/html/touristas/vendor/google/apiclient/src/Task/Runner.php |
| 50 | /var/www/html/touristas/vendor/google/apiclient/src/Collection.php |
| 51 | /var/www/html/touristas/vendor/google/apiclient/src/Service/Exception.php |
| 52 | /var/www/html/touristas/vendor/google/apiclient/src/Service/Resource.php |
| 53 | /var/www/html/touristas/vendor/google/apiclient/src/Task/Composer.php |
| 54 | /var/www/html/touristas/vendor/mpdf/mpdf/src/functions.php |
| 55 | /var/www/html/touristas/vendor/swiftmailer/swiftmailer/lib/swift_required.php |
| 56 | /var/www/html/touristas/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php |
| 57 | /var/www/html/touristas/vendor/vimeo/psalm/src/functions.php |
| 58 | /var/www/html/touristas/vendor/vimeo/psalm/src/spl_object_id.php |
| 59 | /var/www/html/touristas/src/Helpers.php |
| 60 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Dotenv.php |
| 61 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Loader.php |
| 62 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/DotenvFactory.php |
| 63 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/FactoryInterface.php |
| 64 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php |
| 65 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php |
| 66 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php |
| 67 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php |
| 68 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php |
| 69 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/DotenvVariables.php |
| 70 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/AbstractVariables.php |
| 71 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/VariablesInterface.php |
| 72 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php |
| 73 | /var/www/html/touristas/vendor/phpoption/phpoption/src/PhpOption/Option.php |
| 74 | /var/www/html/touristas/vendor/phpoption/phpoption/src/PhpOption/Some.php |
| 75 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Lines.php |
| 76 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Parser.php |
| 77 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Regex/Regex.php |
| 78 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Regex/Success.php |
| 79 | /var/www/html/touristas/vendor/vlucas/phpdotenv/src/Regex/Result.php |
| 80 | /var/www/html/touristas/vendor/phpoption/phpoption/src/PhpOption/None.php |
| 81 | /var/www/html/touristas/src/Application.php |
| 82 | /var/www/html/touristas/config/providers.php |
| 83 | /var/www/html/touristas/src/Providers/AclProvider.php |
| 84 | /var/www/html/touristas/src/Providers/AuthProvider.php |
| 85 | /var/www/html/touristas/src/Providers/ConfigProvider.php |
| 86 | /var/www/html/touristas/src/Providers/CryptProvider.php |
| 87 | /var/www/html/touristas/config/config.php |
| 88 | /var/www/html/touristas/src/Providers/MobileDetectProvider.php |
| 89 | /var/www/html/touristas/src/Providers/DbProvider.php |
| 90 | /var/www/html/touristas/src/Providers/DispatcherProvider.php |
| 91 | /var/www/html/touristas/src/Providers/FlashProvider.php |
| 92 | /var/www/html/touristas/src/Providers/LoggerProvider.php |
| 93 | /var/www/html/touristas/src/Providers/MailProvider.php |
| 94 | /var/www/html/touristas/src/Providers/ModelsMetadataProvider.php |
| 95 | /var/www/html/touristas/src/Providers/RouterProvider.php |
| 96 | /var/www/html/touristas/src/Providers/SessionBagProvider.php |
| 97 | /var/www/html/touristas/src/Providers/SessionProvider.php |
| 98 | /var/www/html/touristas/src/Providers/SecurityProvider.php |
| 99 | /var/www/html/touristas/src/Providers/UrlProvider.php |
| 100 | /var/www/html/touristas/src/Providers/ViewProvider.php |
| 101 | /var/www/html/touristas/vendor/mobiledetect/mobiledetectlib/src/MobileDetect.php |
| 102 | /var/www/html/touristas/src/Providers/AssetsProvider.php |
| 103 | /var/www/html/touristas/src/Providers/TranslationsProvider.php |
| 104 | /var/www/html/touristas/src/Translations/el_GR/messages.php |
| 105 | /var/www/html/touristas/src/Providers/QrcodeProvider.php |
| 106 | /var/www/html/touristas/src/Providers/Greek2LatinProvider.php |
| 107 | /var/www/html/touristas/config/routes.php |
| 108 | /var/www/html/touristas/src/Providers/NotFoundPlugin.php |
| 109 | /var/www/html/touristas/src/Controllers/IndexController.php |
| 110 | /var/www/html/touristas/src/Controllers/ControllerBase.php |
| 111 | /var/www/html/touristas/config/acl.php |
| 112 | /var/www/html/touristas/src/Plugins/Acl/Acl.php |
| Memory | |
|---|---|
| Usage | 2097152 |