JFIFHHCnxxdC"&!1A2Q"aqBb1 ?R{~,.Y|@sl_޸s[+6ϵG};?2Y`&9LP?3rj  "@V]:3T-G*P ( *(@AEY]qqqALn+Wtu?)lQUT*Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ηnu ڶh%(Lvũbb-?M֍݌٥IHln㏷L(69L^"6Pd&1H&8@TUTCJ%eʹFTj4i5=0g J&Wc+3kU@PS@HH33M *"Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePPd\A2glo=WL(6^;k"ucoH"b ,PDVlvL_/:̗rN\mdcw T-O$w+FZ5T *Y~l:99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~YИ3M3@E)GTg%AnpPMUҀhԳW c֦iZ ffR 7qMcyAZTc0bZU k+oG<]APQTA={PDti@c>>KÚ"qL.1Pk6QY7t.k7o<P &yַܼJZyWz{UrS@~P)Y:A"]Y&ScVO%17 6l4i4YR5ruk*ؼdZͨZZ cLakb3N6æ\1`XTloTuTAA 7Uq@2ŬzoʼnБRͪ&8}:e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt"(.=Y:V#'H:δ4#6yjѥBB ;WD-ElFf67*\AmADQ__'2$TX9nu'm@iPDTqS`%u%3[nY, :g = tiXH]ij"+6Z* .~|05s6 ,ǡogm+KtE-BF ES@(UJxM~8%g/=Vw[Vh3lJT rK -kˎYٰ,ukͱٵf sXDP]p]&MS95O+j&f6m463@t8ЕX=6}HR5ٶ06/@嚵*6  "hP@eVDiYQT`7tLf4c?m//B4 lajL} :Eb#PHQb,yN`rkAb^ |}s4XB4*,@[{Ru+%le2}`,kI$U`>OMuhP% ʵ/ L\5aɕVN1R63}ZLj-Dl@*(K\^i@F@551k㫖hQ沬#h XV +;]6zOsFpiX$OQ )ųl4YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 162.19.86.63  /  Your IP : 216.73.216.249   [ Reverse IP ]
Web Server : Apache
System : Linux oirealestate.net 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User : oinversion ( 10001)
PHP Version : 5.6.40
Disable Function : opcache_get_status
Domains : 5 Domains
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/vhosts/oinversion.com/.trash/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/vhosts/oinversion.com/.trash/composer.tar
autoload_namespaces.php000066600000000634151456236510011303 0ustar00<?php

// autoload_namespaces.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    'cebe\\gravatar\\' => array($vendorDir . '/cebe/yii2-gravatar'),
    'Imagine' => array($vendorDir . '/imagine/imagine/lib'),
    'HTMLPurifier' => array($vendorDir . '/ezyang/htmlpurifier/library'),
    'Diff' => array($vendorDir . '/phpspec/php-diff/lib'),
);
ClassLoader.php000066600000032213151456236510007466 0ustar00<?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    http://www.php-fig.org/psr/psr-0/
 * @see    http://www.php-fig.org/psr/psr-4/
 */
class ClassLoader
{
    // PSR-4
    private $prefixLengthsPsr4 = array();
    private $prefixDirsPsr4 = array();
    private $fallbackDirsPsr4 = array();

    // PSR-0
    private $prefixesPsr0 = array();
    private $fallbackDirsPsr0 = array();

    private $useIncludePath = false;
    private $classMap = array();
    private $classMapAuthoritative = false;
    private $missingClasses = array();
    private $apcuPrefix;

    public function getPrefixes()
    {
        if (!empty($this->prefixesPsr0)) {
            return call_user_func_array('array_merge', $this->prefixesPsr0);
        }

        return array();
    }

    public function getPrefixesPsr4()
    {
        return $this->prefixDirsPsr4;
    }

    public function getFallbackDirs()
    {
        return $this->fallbackDirsPsr0;
    }

    public function getFallbackDirsPsr4()
    {
        return $this->fallbackDirsPsr4;
    }

    public function getClassMap()
    {
        return $this->classMap;
    }

    /**
     * @param array $classMap Class to filename map
     */
    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 array|string $paths   The PSR-0 root directories
     * @param bool         $prepend Whether to prepend the directories
     */
    public function add($prefix, $paths, $prepend = false)
    {
        if (!$prefix) {
            if ($prepend) {
                $this->fallbackDirsPsr0 = array_merge(
                    (array) $paths,
                    $this->fallbackDirsPsr0
                );
            } else {
                $this->fallbackDirsPsr0 = array_merge(
                    $this->fallbackDirsPsr0,
                    (array) $paths
                );
            }

            return;
        }

        $first = $prefix[0];
        if (!isset($this->prefixesPsr0[$first][$prefix])) {
            $this->prefixesPsr0[$first][$prefix] = (array) $paths;

            return;
        }
        if ($prepend) {
            $this->prefixesPsr0[$first][$prefix] = array_merge(
                (array) $paths,
                $this->prefixesPsr0[$first][$prefix]
            );
        } else {
            $this->prefixesPsr0[$first][$prefix] = array_merge(
                $this->prefixesPsr0[$first][$prefix],
                (array) $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 array|string $paths   The PSR-4 base directories
     * @param bool         $prepend Whether to prepend the directories
     *
     * @throws \InvalidArgumentException
     */
    public function addPsr4($prefix, $paths, $prepend = false)
    {
        if (!$prefix) {
            // Register directories for the root namespace.
            if ($prepend) {
                $this->fallbackDirsPsr4 = array_merge(
                    (array) $paths,
                    $this->fallbackDirsPsr4
                );
            } else {
                $this->fallbackDirsPsr4 = array_merge(
                    $this->fallbackDirsPsr4,
                    (array) $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] = (array) $paths;
        } elseif ($prepend) {
            // Prepend directories for an already registered namespace.
            $this->prefixDirsPsr4[$prefix] = array_merge(
                (array) $paths,
                $this->prefixDirsPsr4[$prefix]
            );
        } else {
            // Append directories for an already registered namespace.
            $this->prefixDirsPsr4[$prefix] = array_merge(
                $this->prefixDirsPsr4[$prefix],
                (array) $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 array|string $paths  The PSR-0 base directories
     */
    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 array|string $paths  The PSR-4 base directories
     *
     * @throws \InvalidArgumentException
     */
    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
     */
    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
     */
    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
     */
    public function setApcuPrefix($apcuPrefix)
    {
        $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $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
     */
    public function register($prepend = false)
    {
        spl_autoload_register(array($this, 'loadClass'), true, $prepend);
    }

    /**
     * Unregisters this instance as an autoloader.
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));
    }

    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return bool|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);

            return true;
        }
    }

    /**
     * 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;
    }

    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])) {
                    foreach ($this->prefixDirsPsr4[$search] as $dir) {
                        $length = $this->prefixLengthsPsr4[$first][$search];
                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
                            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;
    }
}

/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
autoload_real.php000066600000004556151456236510010116 0ustar00<?php

// autoload_real.php @generated by Composer

class ComposerAutoloaderInit3a43c62ad7cc7b7968a03affe0837811
{
    private static $loader;

    public static function loadClassLoader($class)
    {
        if ('Composer\Autoload\ClassLoader' === $class) {
            require __DIR__ . '/ClassLoader.php';
        }
    }

    public static function getLoader()
    {
        if (null !== self::$loader) {
            return self::$loader;
        }

        spl_autoload_register(array('ComposerAutoloaderInit3a43c62ad7cc7b7968a03affe0837811', 'loadClassLoader'), true, true);
        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
        spl_autoload_unregister(array('ComposerAutoloaderInit3a43c62ad7cc7b7968a03affe0837811', 'loadClassLoader'));

        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
        if ($useStaticLoader) {
            require_once __DIR__ . '/autoload_static.php';

            call_user_func(\Composer\Autoload\ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::getInitializer($loader));
        } else {
            $map = require __DIR__ . '/autoload_namespaces.php';
            foreach ($map as $namespace => $path) {
                $loader->set($namespace, $path);
            }

            $map = require __DIR__ . '/autoload_psr4.php';
            foreach ($map as $namespace => $path) {
                $loader->setPsr4($namespace, $path);
            }

            $classMap = require __DIR__ . '/autoload_classmap.php';
            if ($classMap) {
                $loader->addClassMap($classMap);
            }
        }

        $loader->register(true);

        if ($useStaticLoader) {
            $includeFiles = Composer\Autoload\ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::$files;
        } else {
            $includeFiles = require __DIR__ . '/autoload_files.php';
        }
        foreach ($includeFiles as $fileIdentifier => $file) {
            composerRequire3a43c62ad7cc7b7968a03affe0837811($fileIdentifier, $file);
        }

        return $loader;
    }
}

function composerRequire3a43c62ad7cc7b7968a03affe0837811($fileIdentifier, $file)
{
    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
        require $file;

        $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    }
}
LICENSE000066600000002056151456236510005570 0ustar00
Copyright (c) Nils Adermann, Jordi Boggiano

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

autoload_psr4.php000066600000005425151456236510010057 0ustar00<?php

// autoload_psr4.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    'yii\\swiftmailer\\' => array($vendorDir . '/yiisoft/yii2-swiftmailer'),
    'yii\\imagine\\' => array($vendorDir . '/yiisoft/yii2-imagine/src'),
    'yii\\gii\\' => array($vendorDir . '/yiisoft/yii2-gii'),
    'yii\\faker\\' => array($vendorDir . '/yiisoft/yii2-faker'),
    'yii\\debug\\' => array($vendorDir . '/yiisoft/yii2-debug'),
    'yii\\composer\\' => array($vendorDir . '/yiisoft/yii2-composer'),
    'yii\\codeception\\' => array($vendorDir . '/yiisoft/yii2-codeception'),
    'yii\\bootstrap\\' => array($vendorDir . '/yiisoft/yii2-bootstrap'),
    'yii\\' => array($vendorDir . '/yiisoft/yii2'),
    'schmunk42\\giiant\\' => array($vendorDir . '/schmunk42/yii2-giiant/src'),
    'rmrevin\\yii\\fontawesome\\' => array($vendorDir . '/rmrevin/yii2-fontawesome'),
    'mikehaertl\\shellcommand\\' => array($vendorDir . '/mikehaertl/php-shellcommand/src'),
    'kolyunya\\yii2\\' => array($vendorDir . '/kolyunya/yii2-map-input-widget/sources'),
    'kartik\\sortinput\\' => array($vendorDir . '/kartik-v/yii2-sortable-input'),
    'kartik\\sortable\\' => array($vendorDir . '/kartik-v/yii2-sortable'),
    'kartik\\plugins\\fileinput\\' => array($vendorDir . '/kartik-v/bootstrap-fileinput'),
    'kartik\\file\\' => array($vendorDir . '/kartik-v/yii2-widget-fileinput'),
    'kartik\\base\\' => array($vendorDir . '/kartik-v/yii2-krajee-base'),
    'dmstr\\helpers\\' => array($vendorDir . '/dmstr/yii2-helpers/src'),
    'dmstr\\db\\tests\\' => array($vendorDir . '/dmstr/yii2-db/db/tests'),
    'dmstr\\db\\' => array($vendorDir . '/dmstr/yii2-db/db'),
    'dmstr\\console\\' => array($vendorDir . '/dmstr/yii2-db/console'),
    'dmstr\\bootstrap\\' => array($vendorDir . '/dmstr/yii2-bootstrap'),
    'dmstr\\' => array($vendorDir . '/dmstr/yii2-adminlte-asset'),
    'cebe\\markdown\\' => array($vendorDir . '/cebe/markdown'),
    'Zelenin\\yii\\widgets\\Summernote\\' => array($vendorDir . '/germanigortcev/yii2-summernote-widget'),
    'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
    'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'),
    'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
    'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
    'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
    'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'),
    'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
    'Symfony\\CS\\' => array($vendorDir . '/friendsofphp/php-cs-fixer/Symfony/CS'),
    'Faker\\' => array($vendorDir . '/fzaninotto/faker/src/Faker'),
);
autoload_classmap.php000066600000002020151456236510010756 0ustar00<?php

// autoload_classmap.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
    'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
    'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
    'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => $vendorDir . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
    'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
    'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
    'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
    'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
);
installed.json000066600000231312151456236510007434 0ustar00[
    {
        "name": "yiisoft/yii2-composer",
        "version": "2.0.4",
        "version_normalized": "2.0.4.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-composer.git",
            "reference": "7452fd908a5023b8bb5ea1b123a174ca080de464"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/7452fd908a5023b8bb5ea1b123a174ca080de464",
            "reference": "7452fd908a5023b8bb5ea1b123a174ca080de464",
            "shasum": ""
        },
        "require": {
            "composer-plugin-api": "^1.0"
        },
        "time": "2016-02-06T00:49:24+00:00",
        "type": "composer-plugin",
        "extra": {
            "class": "yii\\composer\\Plugin",
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\composer\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Qiang Xue",
                "email": "qiang.xue@gmail.com"
            }
        ],
        "description": "The composer plugin for Yii extension installer",
        "keywords": [
            "composer",
            "extension installer",
            "yii2"
        ]
    },
    {
        "name": "bower-asset/jquery",
        "version": "2.2.4",
        "version_normalized": "2.2.4.0",
        "source": {
            "type": "git",
            "url": "https://github.com/jquery/jquery-dist.git",
            "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
            "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
            "shasum": ""
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": "dist/jquery.js",
            "bower-asset-ignore": [
                "package.json"
            ]
        },
        "installation-source": "dist",
        "license": [
            "MIT"
        ],
        "keywords": [
            "browser",
            "javascript",
            "jquery",
            "library"
        ]
    },
    {
        "name": "bower-asset/bootstrap",
        "version": "v3.3.7",
        "version_normalized": "3.3.7.0",
        "source": {
            "type": "git",
            "url": "https://github.com/twbs/bootstrap.git",
            "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",
            "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86",
            "shasum": ""
        },
        "require": {
            "bower-asset/jquery": ">=1.9.1,<=3"
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": [
                "less/bootstrap.less",
                "dist/js/bootstrap.js"
            ],
            "bower-asset-ignore": [
                "/.*",
                "_config.yml",
                "CNAME",
                "composer.json",
                "CONTRIBUTING.md",
                "docs",
                "js/tests",
                "test-infra"
            ]
        },
        "installation-source": "dist",
        "license": [
            "MIT"
        ],
        "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
        "keywords": [
            "css",
            "framework",
            "front-end",
            "js",
            "less",
            "mobile-first",
            "responsive",
            "web"
        ]
    },
    {
        "name": "bower-asset/jquery.inputmask",
        "version": "3.2.7",
        "version_normalized": "3.2.7.0",
        "source": {
            "type": "git",
            "url": "https://github.com/RobinHerbots/jquery.inputmask.git",
            "reference": "5a72c563b502b8e05958a524cdfffafe9987be38"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/RobinHerbots/jquery.inputmask/zipball/5a72c563b502b8e05958a524cdfffafe9987be38",
            "reference": "5a72c563b502b8e05958a524cdfffafe9987be38",
            "shasum": ""
        },
        "require": {
            "bower-asset/jquery": ">=1.7"
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": [
                "./dist/inputmask/inputmask.js"
            ],
            "bower-asset-ignore": [
                "**/*",
                "!dist/*",
                "!dist/inputmask/*",
                "!dist/min/*",
                "!dist/min/inputmask/*",
                "!extra/bindings/*",
                "!extra/dependencyLibs/*",
                "!extra/phone-codes/*"
            ]
        },
        "installation-source": "dist",
        "license": [
            "http://opensource.org/licenses/mit-license.php"
        ],
        "description": "jquery.inputmask is a jquery plugin which create an input mask.",
        "keywords": [
            "form",
            "input",
            "inputmask",
            "jquery",
            "mask",
            "plugins"
        ]
    },
    {
        "name": "bower-asset/punycode",
        "version": "v1.3.2",
        "version_normalized": "1.3.2.0",
        "source": {
            "type": "git",
            "url": "https://github.com/bestiejs/punycode.js.git",
            "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
            "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
            "shasum": ""
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": "punycode.js",
            "bower-asset-ignore": [
                "coverage",
                "tests",
                ".*",
                "component.json",
                "Gruntfile.js",
                "node_modules",
                "package.json"
            ]
        },
        "installation-source": "dist"
    },
    {
        "name": "bower-asset/yii2-pjax",
        "version": "v2.0.6",
        "version_normalized": "2.0.6.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/jquery-pjax.git",
            "reference": "60728da6ade5879e807a49ce59ef9a72039b8978"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/60728da6ade5879e807a49ce59ef9a72039b8978",
            "reference": "60728da6ade5879e807a49ce59ef9a72039b8978",
            "shasum": ""
        },
        "require": {
            "bower-asset/jquery": ">=1.8"
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": "./jquery.pjax.js",
            "bower-asset-ignore": [
                ".travis.yml",
                "Gemfile",
                "Gemfile.lock",
                "CONTRIBUTING.md",
                "vendor/",
                "script/",
                "test/"
            ]
        },
        "installation-source": "dist",
        "license": [
            "MIT"
        ]
    },
    {
        "name": "cebe/markdown",
        "version": "1.1.0",
        "version_normalized": "1.1.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/cebe/markdown.git",
            "reference": "54a2c49de31cc44e864ebf0500a35ef21d0010b2"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/cebe/markdown/zipball/54a2c49de31cc44e864ebf0500a35ef21d0010b2",
            "reference": "54a2c49de31cc44e864ebf0500a35ef21d0010b2",
            "shasum": ""
        },
        "require": {
            "lib-pcre": "*",
            "php": ">=5.4.0"
        },
        "require-dev": {
            "cebe/indent": "*",
            "facebook/xhprof": "*@dev",
            "phpunit/phpunit": "4.1.*"
        },
        "time": "2015-03-06T05:28:07+00:00",
        "bin": [
            "bin/markdown"
        ],
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.1.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "cebe\\markdown\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Carsten Brandt",
                "email": "mail@cebe.cc",
                "homepage": "http://cebe.cc/",
                "role": "Creator"
            }
        ],
        "description": "A super fast, highly extensible markdown parser for PHP",
        "homepage": "https://github.com/cebe/markdown#readme",
        "keywords": [
            "extensible",
            "fast",
            "gfm",
            "markdown",
            "markdown-extra"
        ]
    },
    {
        "name": "ezyang/htmlpurifier",
        "version": "v4.8.0",
        "version_normalized": "4.8.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/ezyang/htmlpurifier.git",
            "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
            "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
            "shasum": ""
        },
        "require": {
            "php": ">=5.2"
        },
        "time": "2016-07-16T12:58:58+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "HTMLPurifier": "library/"
            },
            "files": [
                "library/HTMLPurifier.composer.php"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "LGPL"
        ],
        "authors": [
            {
                "name": "Edward Z. Yang",
                "email": "admin@htmlpurifier.org",
                "homepage": "http://ezyang.com"
            }
        ],
        "description": "Standards compliant HTML filter written in PHP",
        "homepage": "http://htmlpurifier.org/",
        "keywords": [
            "html"
        ]
    },
    {
        "name": "yiisoft/yii2",
        "version": "2.0.9",
        "version_normalized": "2.0.9.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-framework.git",
            "reference": "2b75151ea60e1fd820046416eee2e89c3dda1133"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/2b75151ea60e1fd820046416eee2e89c3dda1133",
            "reference": "2b75151ea60e1fd820046416eee2e89c3dda1133",
            "shasum": ""
        },
        "require": {
            "bower-asset/jquery": "2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
            "bower-asset/jquery.inputmask": "~3.2.2",
            "bower-asset/punycode": "1.3.*",
            "bower-asset/yii2-pjax": "~2.0.1",
            "cebe/markdown": "~1.0.0 | ~1.1.0",
            "ext-ctype": "*",
            "ext-mbstring": "*",
            "ezyang/htmlpurifier": "~4.6",
            "lib-pcre": "*",
            "php": ">=5.4.0",
            "yiisoft/yii2-composer": "~2.0.4"
        },
        "time": "2016-07-11T13:36:42+00:00",
        "bin": [
            "yii"
        ],
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Qiang Xue",
                "email": "qiang.xue@gmail.com",
                "homepage": "http://www.yiiframework.com/",
                "role": "Founder and project lead"
            },
            {
                "name": "Alexander Makarov",
                "email": "sam@rmcreative.ru",
                "homepage": "http://rmcreative.ru/",
                "role": "Core framework development"
            },
            {
                "name": "Maurizio Domba",
                "homepage": "http://mdomba.info/",
                "role": "Core framework development"
            },
            {
                "name": "Carsten Brandt",
                "email": "mail@cebe.cc",
                "homepage": "http://cebe.cc/",
                "role": "Core framework development"
            },
            {
                "name": "Timur Ruziev",
                "email": "resurtm@gmail.com",
                "homepage": "http://resurtm.com/",
                "role": "Core framework development"
            },
            {
                "name": "Paul Klimov",
                "email": "klimov.paul@gmail.com",
                "role": "Core framework development"
            },
            {
                "name": "Dmitry Naumenko",
                "email": "d.naumenko.a@gmail.com",
                "role": "Core framework development"
            }
        ],
        "description": "Yii PHP Framework Version 2",
        "homepage": "http://www.yiiframework.com/",
        "keywords": [
            "framework",
            "yii2"
        ]
    },
    {
        "name": "yiisoft/yii2-bootstrap",
        "version": "2.0.6",
        "version_normalized": "2.0.6.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-bootstrap.git",
            "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
            "reference": "3fd2b8c950cce79d60e9702d6bcb24eb3c80f6c5",
            "shasum": ""
        },
        "require": {
            "bower-asset/bootstrap": "3.3.* | 3.2.* | 3.1.*",
            "yiisoft/yii2": ">=2.0.6"
        },
        "time": "2016-03-17T03:29:28+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            },
            "asset-installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\bootstrap\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Qiang Xue",
                "email": "qiang.xue@gmail.com"
            }
        ],
        "description": "The Twitter Bootstrap extension for the Yii framework",
        "keywords": [
            "bootstrap",
            "yii2"
        ]
    },
    {
        "name": "rmrevin/yii2-fontawesome",
        "version": "2.15.1",
        "version_normalized": "2.15.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/rmrevin/yii2-fontawesome.git",
            "reference": "d2777130bc926bc670a4e50c2f504a0fb782efb1"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/rmrevin/yii2-fontawesome/zipball/d2777130bc926bc670a4e50c2f504a0fb782efb1",
            "reference": "d2777130bc926bc670a4e50c2f504a0fb782efb1",
            "shasum": ""
        },
        "require": {
            "php": ">=5.4.0",
            "yiisoft/yii2": "2.0.*"
        },
        "time": "2016-05-28T21:18:32+00:00",
        "type": "yii2-extension",
        "extra": {
            "asset-installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "rmrevin\\yii\\fontawesome\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Revin Roman",
                "email": "roman@rmrevin.com",
                "homepage": "https://rmrevin.com/"
            }
        ],
        "description": "Asset Bundle for Yii2 with Font Awesome",
        "keywords": [
            "asset",
            "awesome",
            "bundle",
            "font",
            "yii"
        ]
    },
    {
        "name": "cebe/yii2-gravatar",
        "version": "1.1",
        "version_normalized": "1.1.0.0",
        "target-dir": "cebe/gravatar",
        "source": {
            "type": "git",
            "url": "https://github.com/cebe/yii2-gravatar.git",
            "reference": "c9c01bd14c9bdee9e5ae1ef1aad23f80c182c057"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/cebe/yii2-gravatar/zipball/c9c01bd14c9bdee9e5ae1ef1aad23f80c182c057",
            "reference": "c9c01bd14c9bdee9e5ae1ef1aad23f80c182c057",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2": "*"
        },
        "time": "2013-12-10T17:49:58+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "cebe\\gravatar\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Carsten Brandt",
                "email": "mail@cebe.cc",
                "homepage": "http://cebe.cc/",
                "role": "Core framework development"
            }
        ],
        "description": "Gravatar Widget for Yii 2",
        "keywords": [
            "gravatar",
            "yii"
        ]
    },
    {
        "name": "almasaeed2010/adminlte",
        "version": "v2.3.5",
        "version_normalized": "2.3.5.0",
        "source": {
            "type": "git",
            "url": "https://github.com/almasaeed2010/AdminLTE.git",
            "reference": "0ab2eb7f382e79810ebf3032ce766a02af2b0f3b"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/almasaeed2010/AdminLTE/zipball/0ab2eb7f382e79810ebf3032ce766a02af2b0f3b",
            "reference": "0ab2eb7f382e79810ebf3032ce766a02af2b0f3b",
            "shasum": ""
        },
        "time": "2016-07-03T15:21:22+00:00",
        "type": "library",
        "installation-source": "dist",
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Abdullah Almsaeed",
                "email": "support@almsaeedstudio.com"
            }
        ],
        "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3",
        "homepage": "http://almsaeedstudio.com/",
        "keywords": [
            "JS",
            "admin",
            "back-end",
            "css",
            "less",
            "responsive",
            "template",
            "theme",
            "web"
        ]
    },
    {
        "name": "dmstr/yii2-adminlte-asset",
        "version": "2.3.3",
        "version_normalized": "2.3.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/dmstr/yii2-adminlte-asset.git",
            "reference": "a1330f2f678d66d8ce2f8acb6fb9ce60a4614c60"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/dmstr/yii2-adminlte-asset/zipball/a1330f2f678d66d8ce2f8acb6fb9ce60a4614c60",
            "reference": "a1330f2f678d66d8ce2f8acb6fb9ce60a4614c60",
            "shasum": ""
        },
        "require": {
            "almasaeed2010/adminlte": "~2.0",
            "cebe/yii2-gravatar": "1.*",
            "rmrevin/yii2-fontawesome": "~2.9",
            "yiisoft/yii2": "2.*",
            "yiisoft/yii2-bootstrap": "2.*"
        },
        "time": "2016-07-28T03:57:05+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "dmstr\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Tobias Munk",
                "email": "tobias@diemeisterei.de"
            },
            {
                "name": "Evgeniy Tkachenko",
                "email": "et.coder@gmail.com"
            }
        ],
        "description": "AdminLTE backend theme asset bundle for Yii 2.0 Framework",
        "keywords": [
            "AdminLTE",
            "admin",
            "asset",
            "backend",
            "css",
            "extension",
            "less",
            "theme",
            "yii2"
        ]
    },
    {
        "name": "bower-asset/font-awesome",
        "version": "v4.6.3",
        "version_normalized": "4.6.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/FortAwesome/Font-Awesome.git",
            "reference": "8e241f209faa1dd2182c9fdc9c352d8806504a4e"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/8e241f209faa1dd2182c9fdc9c352d8806504a4e",
            "reference": "8e241f209faa1dd2182c9fdc9c352d8806504a4e",
            "shasum": ""
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": [
                "less/font-awesome.less",
                "scss/font-awesome.scss"
            ],
            "bower-asset-ignore": [
                "*/.*",
                "*.json",
                "src",
                "*.yml",
                "Gemfile",
                "Gemfile.lock",
                "*.md"
            ]
        },
        "installation-source": "dist",
        "license": [
            "OFL-1.1",
            "MIT",
            "CC-BY-3.0"
        ],
        "description": "Font Awesome"
    },
    {
        "name": "bower-asset/summernote-0.6.16",
        "version": "v0.6.16",
        "version_normalized": "0.6.16.0",
        "source": {
            "type": "git",
            "url": "https://github.com/summernote/summernote.git",
            "reference": "4a988eebc69b783f649e16e44511bea5afa73df8"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/summernote/summernote/zipball/4a988eebc69b783f649e16e44511bea5afa73df8",
            "reference": "4a988eebc69b783f649e16e44511bea5afa73df8",
            "shasum": ""
        },
        "require": {
            "bower-asset/bootstrap": ">=3.0.1",
            "bower-asset/font-awesome": ">=4.2.0",
            "bower-asset/jquery": ">=1.9.0"
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": [
                "./dist/summernote.js",
                "./dist/summernote.css"
            ],
            "bower-asset-ignore": [
                "**/.*",
                "node_modules",
                "bower_components",
                "test",
                "tests"
            ]
        },
        "installation-source": "dist",
        "license": [
            "MIT"
        ]
    },
    {
        "name": "bower-asset/codemirror",
        "version": "5.17.0",
        "version_normalized": "5.17.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/codemirror/CodeMirror.git",
            "reference": "b6c7f3ff2e04a3d41937c30cdedbd004e5eb22d2"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/codemirror/CodeMirror/zipball/b6c7f3ff2e04a3d41937c30cdedbd004e5eb22d2",
            "reference": "b6c7f3ff2e04a3d41937c30cdedbd004e5eb22d2",
            "shasum": ""
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": [
                "lib/codemirror.js",
                "lib/codemirror.css"
            ],
            "bower-asset-ignore": [
                "**/.*",
                "node_modules",
                "components",
                "bin",
                "demo",
                "doc",
                "test",
                "index.html",
                "package.json",
                "mode/*/*test.js",
                "mode/*/*.html"
            ]
        },
        "installation-source": "dist"
    },
    {
        "name": "germanigortcev/yii2-summernote-widget",
        "version": "dev-master",
        "version_normalized": "9999999-dev",
        "source": {
            "type": "git",
            "url": "https://github.com/germanigortcev/yii2-summernote-widget.git",
            "reference": "ece4486f4da67e822655003bab9ea3625a21e79c"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/germanigortcev/yii2-summernote-widget/zipball/ece4486f4da67e822655003bab9ea3625a21e79c",
            "reference": "ece4486f4da67e822655003bab9ea3625a21e79c",
            "shasum": ""
        },
        "require": {
            "bower-asset/codemirror": "@stable",
            "bower-asset/font-awesome": "~4@stable",
            "bower-asset/summernote-0.6.16": "0.6.16",
            "yiisoft/yii2": "~2"
        },
        "time": "2015-12-14T03:25:49+00:00",
        "type": "yii2-extension",
        "extra": {
            "asset-installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
        "installation-source": "source",
        "autoload": {
            "psr-4": {
                "Zelenin\\yii\\widgets\\Summernote\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Aleksandr Zelenin",
                "email": "aleksandr@zelenin.me",
                "homepage": "http://zelenin.me",
                "role": "Developer"
            }
        ],
        "description": "Yii2 Summernote widget. Super simple WYSIWYG editor on Bootstrap",
        "homepage": "https://github.com/zelenin/yii2-summernote-widget",
        "keywords": [
            "summernote",
            "widget",
            "wysiwyg",
            "yii2"
        ]
    },
    {
        "name": "kartik-v/yii2-krajee-base",
        "version": "1.8.5",
        "version_normalized": "1.8.5.0",
        "source": {
            "type": "git",
            "url": "https://github.com/kartik-v/yii2-krajee-base.git",
            "reference": "7f7a45ffe193fe673f72b9effc01b08499f2a454"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/7f7a45ffe193fe673f72b9effc01b08499f2a454",
            "reference": "7f7a45ffe193fe673f72b9effc01b08499f2a454",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2-bootstrap": "@dev"
        },
        "time": "2016-05-07T19:45:52+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "1.8.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "kartik\\base\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Kartik Visweswaran",
                "email": "kartikv2@gmail.com",
                "homepage": "http://www.krajee.com/"
            }
        ],
        "description": "Base library and foundation components for all Yii2 Krajee extensions.",
        "homepage": "https://github.com/kartik-v/yii2-krajee-base",
        "keywords": [
            "base",
            "extension",
            "foundation",
            "krajee",
            "widget",
            "yii2"
        ]
    },
    {
        "name": "kartik-v/yii2-sortable",
        "version": "v1.2.0",
        "version_normalized": "1.2.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/kartik-v/yii2-sortable.git",
            "reference": "650dfd6876115fbb996eb6eb8f1d5d13ddb69285"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/kartik-v/yii2-sortable/zipball/650dfd6876115fbb996eb6eb8f1d5d13ddb69285",
            "reference": "650dfd6876115fbb996eb6eb8f1d5d13ddb69285",
            "shasum": ""
        },
        "require": {
            "kartik-v/yii2-krajee-base": "~1.7"
        },
        "time": "2015-06-17T17:34:48+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "kartik\\sortable\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Kartik Visweswaran",
                "email": "kartikv2@gmail.com",
                "homepage": "http://www.krajee.com/"
            }
        ],
        "description": "Create sortable lists and grids using HTML5 drag and drop API for Yii 2.0.",
        "homepage": "https://github.com/kartik-v/yii2-sortable",
        "keywords": [
            "bootstrap",
            "extension",
            "jquery",
            "range",
            "sortable",
            "widget",
            "yii2"
        ]
    },
    {
        "name": "kartik-v/yii2-sortable-input",
        "version": "v1.1.0",
        "version_normalized": "1.1.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/kartik-v/yii2-sortable-input.git",
            "reference": "6868d927e296758b8b884f6656889420477d5453"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/kartik-v/yii2-sortable-input/zipball/6868d927e296758b8b884f6656889420477d5453",
            "reference": "6868d927e296758b8b884f6656889420477d5453",
            "shasum": ""
        },
        "require": {
            "kartik-v/yii2-sortable": "*"
        },
        "time": "2014-11-10T18:47:06+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "kartik\\sortinput\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD 3-Clause"
        ],
        "authors": [
            {
                "name": "Kartik Visweswaran",
                "email": "kartikv2@gmail.com",
                "homepage": "http://www.krajee.com/"
            }
        ],
        "description": "Sortable input widget based on yii2-sortable extension.",
        "homepage": "https://github.com/kartik-v/yii2-sortable-input",
        "keywords": [
            "bootstrap",
            "extension",
            "input",
            "jquery",
            "range",
            "sortable",
            "widget",
            "yii2"
        ]
    },
    {
        "name": "kartik-v/bootstrap-fileinput",
        "version": "v4.3.3",
        "version_normalized": "4.3.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/kartik-v/bootstrap-fileinput.git",
            "reference": "8c14423e41cfe6c6e0c1935a6c31a1136240d5d9"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/kartik-v/bootstrap-fileinput/zipball/8c14423e41cfe6c6e0c1935a6c31a1136240d5d9",
            "reference": "8c14423e41cfe6c6e0c1935a6c31a1136240d5d9",
            "shasum": ""
        },
        "time": "2016-07-09T12:56:05+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "4.3.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "kartik\\plugins\\fileinput\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Kartik Visweswaran",
                "email": "kartikv2@gmail.com",
                "homepage": "http://www.krajee.com/"
            }
        ],
        "description": "An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.",
        "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
        "keywords": [
            "ajax",
            "bootstrap",
            "delete",
            "file",
            "image",
            "input",
            "jquery",
            "multiple",
            "preview",
            "progress",
            "upload"
        ]
    },
    {
        "name": "kartik-v/yii2-widget-fileinput",
        "version": "dev-master",
        "version_normalized": "9999999-dev",
        "source": {
            "type": "git",
            "url": "https://github.com/kartik-v/yii2-widget-fileinput.git",
            "reference": "6fc8922716bf0b3638c67ff0895a9ff688b6c027"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/kartik-v/yii2-widget-fileinput/zipball/6fc8922716bf0b3638c67ff0895a9ff688b6c027",
            "reference": "6fc8922716bf0b3638c67ff0895a9ff688b6c027",
            "shasum": ""
        },
        "require": {
            "kartik-v/bootstrap-fileinput": "~4.2",
            "kartik-v/yii2-krajee-base": "~1.7"
        },
        "time": "2016-07-23T15:30:48+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "1.0.x-dev"
            }
        },
        "installation-source": "source",
        "autoload": {
            "psr-4": {
                "kartik\\file\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Kartik Visweswaran",
                "email": "kartikv2@gmail.com",
                "homepage": "http://www.krajee.com/"
            }
        ],
        "description": "An enhanced FileInput widget for Bootstrap 3.x with file preview, multiple selection, and more features (sub repo split from yii2-widgets)",
        "homepage": "https://github.com/kartik-v/yii2-widget-fileinput",
        "keywords": [
            "extension",
            "file",
            "form",
            "input",
            "jquery",
            "plugin",
            "upload",
            "widget",
            "yii2"
        ]
    },
    {
        "name": "mikehaertl/php-shellcommand",
        "version": "1.2.2",
        "version_normalized": "1.2.2.0",
        "source": {
            "type": "git",
            "url": "https://github.com/mikehaertl/php-shellcommand.git",
            "reference": "0de4e2cce17936ec7cef60a62c722a4aaa56c18c"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/0de4e2cce17936ec7cef60a62c722a4aaa56c18c",
            "reference": "0de4e2cce17936ec7cef60a62c722a4aaa56c18c",
            "shasum": ""
        },
        "time": "2016-07-16T09:42:31+00:00",
        "type": "library",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "mikehaertl\\shellcommand\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Michael Härtl",
                "email": "haertl.mike@gmail.com"
            }
        ],
        "description": "An object oriented interface to shell commands",
        "keywords": [
            "shell"
        ]
    },
    {
        "name": "phpspec/php-diff",
        "version": "v1.1.0",
        "version_normalized": "1.1.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/phpspec/php-diff.git",
            "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
            "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
            "shasum": ""
        },
        "time": "2016-04-07T12:29:16+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "Diff": "lib/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Chris Boulton",
                "homepage": "http://github.com/chrisboulton"
            }
        ],
        "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays)."
    },
    {
        "name": "bower-asset/typeahead.js",
        "version": "v0.11.1",
        "version_normalized": "0.11.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/twitter/typeahead.js.git",
            "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
            "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
            "shasum": ""
        },
        "require": {
            "bower-asset/jquery": ">=1.7"
        },
        "require-dev": {
            "bower-asset/jasmine-ajax": "~1.3.1",
            "bower-asset/jasmine-jquery": "~1.5.2",
            "bower-asset/jquery": "~1.7"
        },
        "type": "bower-asset-library",
        "extra": {
            "bower-asset-main": "dist/typeahead.bundle.js"
        },
        "installation-source": "dist"
    },
    {
        "name": "yiisoft/yii2-gii",
        "version": "2.0.5",
        "version_normalized": "2.0.5.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-gii.git",
            "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
            "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
            "shasum": ""
        },
        "require": {
            "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
            "phpspec/php-diff": ">=1.0.2",
            "yiisoft/yii2": ">=2.0.4",
            "yiisoft/yii2-bootstrap": "~2.0"
        },
        "time": "2016-03-18T14:09:46+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            },
            "asset-installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\gii\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Qiang Xue",
                "email": "qiang.xue@gmail.com"
            }
        ],
        "description": "The Gii extension for the Yii framework",
        "keywords": [
            "code generator",
            "gii",
            "yii2"
        ]
    },
    {
        "name": "symfony/stopwatch",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/stopwatch.git",
            "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/stopwatch/zipball/bb42806b12c5f89db4ebf64af6741afe6d8457e1",
            "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9"
        },
        "time": "2016-06-29T05:41:56+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\Stopwatch\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony Stopwatch Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "symfony/process",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/process.git",
            "reference": "04c2dfaae4ec56a5c677b0c69fac34637d815758"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/process/zipball/04c2dfaae4ec56a5c677b0c69fac34637d815758",
            "reference": "04c2dfaae4ec56a5c677b0c69fac34637d815758",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9"
        },
        "time": "2016-07-28T11:13:48+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\Process\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony Process Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "symfony/finder",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/finder.git",
            "reference": "8201978de88a9fa0923e18601bb17f1df9c721e7"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/finder/zipball/8201978de88a9fa0923e18601bb17f1df9c721e7",
            "reference": "8201978de88a9fa0923e18601bb17f1df9c721e7",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9"
        },
        "time": "2016-06-29T05:41:56+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\Finder\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony Finder Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "symfony/filesystem",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/filesystem.git",
            "reference": "bb29adceb552d202b6416ede373529338136e84f"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb29adceb552d202b6416ede373529338136e84f",
            "reference": "bb29adceb552d202b6416ede373529338136e84f",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9"
        },
        "time": "2016-07-20T05:44:26+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\Filesystem\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony Filesystem Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "symfony/event-dispatcher",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/event-dispatcher.git",
            "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c0c00c80b3a69132c4e55c3e7db32b4a387615e5",
            "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9"
        },
        "require-dev": {
            "psr/log": "~1.0",
            "symfony/config": "~2.8|~3.0",
            "symfony/dependency-injection": "~2.8|~3.0",
            "symfony/expression-language": "~2.8|~3.0",
            "symfony/stopwatch": "~2.8|~3.0"
        },
        "suggest": {
            "symfony/dependency-injection": "",
            "symfony/http-kernel": ""
        },
        "time": "2016-07-19T10:45:57+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\EventDispatcher\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony EventDispatcher Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "symfony/polyfill-mbstring",
        "version": "v1.2.0",
        "version_normalized": "1.2.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/polyfill-mbstring.git",
            "reference": "dff51f72b0706335131b00a7f49606168c582594"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594",
            "reference": "dff51f72b0706335131b00a7f49606168c582594",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.3"
        },
        "suggest": {
            "ext-mbstring": "For best performance"
        },
        "time": "2016-05-18T14:26:46+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.2-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Polyfill\\Mbstring\\": ""
            },
            "files": [
                "bootstrap.php"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Nicolas Grekas",
                "email": "p@tchwork.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony polyfill for the Mbstring extension",
        "homepage": "https://symfony.com",
        "keywords": [
            "compatibility",
            "mbstring",
            "polyfill",
            "portable",
            "shim"
        ]
    },
    {
        "name": "symfony/console",
        "version": "v3.1.3",
        "version_normalized": "3.1.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/symfony/console.git",
            "reference": "f9e638e8149e9e41b570ff092f8007c477ef0ce5"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/symfony/console/zipball/f9e638e8149e9e41b570ff092f8007c477ef0ce5",
            "reference": "f9e638e8149e9e41b570ff092f8007c477ef0ce5",
            "shasum": ""
        },
        "require": {
            "php": ">=5.5.9",
            "symfony/polyfill-mbstring": "~1.0"
        },
        "require-dev": {
            "psr/log": "~1.0",
            "symfony/event-dispatcher": "~2.8|~3.0",
            "symfony/process": "~2.8|~3.0"
        },
        "suggest": {
            "psr/log": "For using the console logger",
            "symfony/event-dispatcher": "",
            "symfony/process": ""
        },
        "time": "2016-07-26T08:04:17+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "3.1-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\Component\\Console\\": ""
            },
            "exclude-from-classmap": [
                "/Tests/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            },
            {
                "name": "Symfony Community",
                "homepage": "https://symfony.com/contributors"
            }
        ],
        "description": "Symfony Console Component",
        "homepage": "https://symfony.com"
    },
    {
        "name": "sebastian/diff",
        "version": "1.4.1",
        "version_normalized": "1.4.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/sebastianbergmann/diff.git",
            "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
            "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.3"
        },
        "require-dev": {
            "phpunit/phpunit": "~4.8"
        },
        "time": "2015-12-08T07:14:41+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "1.4-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "classmap": [
                "src/"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Kore Nordmann",
                "email": "mail@kore-nordmann.de"
            },
            {
                "name": "Sebastian Bergmann",
                "email": "sebastian@phpunit.de"
            }
        ],
        "description": "Diff implementation",
        "homepage": "https://github.com/sebastianbergmann/diff",
        "keywords": [
            "diff"
        ]
    },
    {
        "name": "friendsofphp/php-cs-fixer",
        "version": "v1.11.6",
        "version_normalized": "1.11.6.0",
        "source": {
            "type": "git",
            "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
            "reference": "41dc93abd2937a85a3889e28765231d574d2bac8"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/41dc93abd2937a85a3889e28765231d574d2bac8",
            "reference": "41dc93abd2937a85a3889e28765231d574d2bac8",
            "shasum": ""
        },
        "require": {
            "ext-tokenizer": "*",
            "php": ">=5.3.6",
            "sebastian/diff": "~1.1",
            "symfony/console": "~2.3|~3.0",
            "symfony/event-dispatcher": "~2.1|~3.0",
            "symfony/filesystem": "~2.1|~3.0",
            "symfony/finder": "~2.1|~3.0",
            "symfony/process": "~2.3|~3.0",
            "symfony/stopwatch": "~2.5|~3.0"
        },
        "conflict": {
            "hhvm": "<3.9"
        },
        "require-dev": {
            "phpunit/phpunit": "^4.5|^5",
            "satooshi/php-coveralls": "^0.7.1"
        },
        "time": "2016-07-22T06:46:28+00:00",
        "bin": [
            "php-cs-fixer"
        ],
        "type": "application",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Symfony\\CS\\": "Symfony/CS/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Dariusz Rumiński",
                "email": "dariusz.ruminski@gmail.com"
            },
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            }
        ],
        "description": "A tool to automatically fix PHP code style"
    },
    {
        "name": "dmstr/yii2-helpers",
        "version": "0.4.0",
        "version_normalized": "0.4.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/dmstr/yii2-helpers.git",
            "reference": "5ca0584e6be20e2539cdd511636347a6b84eef60"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/dmstr/yii2-helpers/zipball/5ca0584e6be20e2539cdd511636347a6b84eef60",
            "reference": "5ca0584e6be20e2539cdd511636347a6b84eef60",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2": "*"
        },
        "time": "2016-05-10T17:16:40+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "dmstr\\helpers\\": "src/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Sergej Kunz",
                "email": "s.kunz@herzogkommunikation.de"
            },
            {
                "name": "Tobias Munk",
                "email": "t.munk@herzogkommunikation.de"
            }
        ],
        "description": "Yii2 Helpers",
        "keywords": [
            "extension",
            "yii2"
        ]
    },
    {
        "name": "dmstr/yii2-db",
        "version": "0.7.4",
        "version_normalized": "0.7.4.0",
        "source": {
            "type": "git",
            "url": "https://github.com/dmstr/yii2-db.git",
            "reference": "4132d8a55bb486ebbfe0d5dd7b999653bae31278"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/dmstr/yii2-db/zipball/4132d8a55bb486ebbfe0d5dd7b999653bae31278",
            "reference": "4132d8a55bb486ebbfe0d5dd7b999653bae31278",
            "shasum": ""
        },
        "require": {
            "mikehaertl/php-shellcommand": "1.*",
            "yiisoft/yii2": "2.*"
        },
        "time": "2016-07-06T01:00:38+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "dmstr\\db\\": "db/",
                "dmstr\\db\\tests\\": "db/tests/",
                "dmstr\\console\\": "console/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Tobias Munk",
                "email": "tobias@diemeisterei.de"
            }
        ],
        "description": "Database extensions",
        "keywords": [
            "database",
            "db",
            "extension",
            "yii2"
        ]
    },
    {
        "name": "dmstr/yii2-bootstrap",
        "version": "0.2.0",
        "version_normalized": "0.2.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/dmstr/yii2-bootstrap.git",
            "reference": "df2afef6509390e6d754c16b72f3c5a980169e19"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/dmstr/yii2-bootstrap/zipball/df2afef6509390e6d754c16b72f3c5a980169e19",
            "reference": "df2afef6509390e6d754c16b72f3c5a980169e19",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2-bootstrap": "^2.0.6"
        },
        "time": "2016-04-22T18:33:17+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "dmstr\\bootstrap\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Christopher Stebe",
                "email": "c.stebe@herzogkommunikation.de"
            }
        ],
        "description": "yii2 bootstrap components and extensions from diemeisterei GmbH",
        "keywords": [
            "bootstrap",
            "extension",
            "yii2"
        ]
    },
    {
        "name": "cmrcx/phptidy",
        "version": "v2.16",
        "version_normalized": "2.16.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/cmrcx/phptidy.git",
            "reference": "7c84e830163e81cd4ac39ddb160cb0c20f89bd1f"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/cmrcx/phptidy/zipball/7c84e830163e81cd4ac39ddb160cb0c20f89bd1f",
            "reference": "7c84e830163e81cd4ac39ddb160cb0c20f89bd1f",
            "shasum": ""
        },
        "require": {
            "ext-tokenizer": "*",
            "php": ">=5.0"
        },
        "suggest": {
            "ext-mbstring": "*"
        },
        "time": "2015-10-27T09:29:21+00:00",
        "bin": [
            "phptidy"
        ],
        "type": "library",
        "installation-source": "dist",
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "GPL-2.0+"
        ],
        "authors": [
            {
                "name": "Magnus Rosenbaum",
                "email": "phptidy@cmr.cx",
                "homepage": "http://cmr.cx",
                "role": "Developer"
            }
        ],
        "description": "PHP code formatter",
        "homepage": "https://github.com/cmrcx/phptidy"
    },
    {
        "name": "schmunk42/yii2-giiant",
        "version": "0.8.4",
        "version_normalized": "0.8.4.0",
        "source": {
            "type": "git",
            "url": "https://github.com/schmunk42/yii2-giiant.git",
            "reference": "24b3d1c2035287741cb93a9420e1efdfb382c008"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/schmunk42/yii2-giiant/zipball/24b3d1c2035287741cb93a9420e1efdfb382c008",
            "reference": "24b3d1c2035287741cb93a9420e1efdfb382c008",
            "shasum": ""
        },
        "require": {
            "cmrcx/phptidy": "2.*",
            "dmstr/yii2-bootstrap": "^0.1.2 || ~0.2",
            "dmstr/yii2-db": "*",
            "dmstr/yii2-helpers": "*",
            "friendsofphp/php-cs-fixer": "1.* || 2.*",
            "yiisoft/yii2": "~2.0.4",
            "yiisoft/yii2-gii": "~2.0.4"
        },
        "time": "2016-07-29T09:54:41+00:00",
        "type": "yii2-extension",
        "extra": {
            "bootstrap": "schmunk42\\giiant\\Bootstrap",
            "asset-installer-paths": {
                "npm-asset-library": "vendor/npm",
                "bower-asset-library": "vendor/bower"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "schmunk42\\giiant\\": "src"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Tobias Munk",
                "email": "schmunk@usrbin.de",
                "homepage": "http://www.usrbin.de"
            }
        ],
        "description": "Gii CRUD generator for Yii 2 Framework",
        "homepage": "https://github.com/schmunk42/yii2-giiant",
        "keywords": [
            "crud",
            "gii",
            "yii2"
        ]
    },
    {
        "name": "swiftmailer/swiftmailer",
        "version": "v5.4.3",
        "version_normalized": "5.4.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/swiftmailer/swiftmailer.git",
            "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
            "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.3"
        },
        "require-dev": {
            "mockery/mockery": "~0.9.1"
        },
        "time": "2016-07-08T11:51:25+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-master": "5.4-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "files": [
                "lib/swift_required.php"
            ]
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Chris Corbyn"
            },
            {
                "name": "Fabien Potencier",
                "email": "fabien@symfony.com"
            }
        ],
        "description": "Swiftmailer, free feature-rich PHP mailer",
        "homepage": "http://swiftmailer.org",
        "keywords": [
            "email",
            "mail",
            "mailer"
        ]
    },
    {
        "name": "yiisoft/yii2-swiftmailer",
        "version": "2.0.5",
        "version_normalized": "2.0.5.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
            "reference": "e2c6315caff30a9271a7afad4d684627721dc69a"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/e2c6315caff30a9271a7afad4d684627721dc69a",
            "reference": "e2c6315caff30a9271a7afad4d684627721dc69a",
            "shasum": ""
        },
        "require": {
            "swiftmailer/swiftmailer": "~5.0",
            "yiisoft/yii2": ">=2.0.4"
        },
        "time": "2016-03-17T03:58:49+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\swiftmailer\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Paul Klimov",
                "email": "klimov.paul@gmail.com"
            }
        ],
        "description": "The SwiftMailer integration for the Yii framework",
        "keywords": [
            "email",
            "mail",
            "mailer",
            "swift",
            "swiftmailer",
            "yii2"
        ]
    },
    {
        "name": "yiisoft/yii2-codeception",
        "version": "2.0.5",
        "version_normalized": "2.0.5.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-codeception.git",
            "reference": "c916a36d09fc128b05a374e7922bc56854334d56"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c916a36d09fc128b05a374e7922bc56854334d56",
            "reference": "c916a36d09fc128b05a374e7922bc56854334d56",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2": ">=2.0.4"
        },
        "time": "2016-03-17T03:41:26+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\codeception\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Mark Jebri",
                "email": "mark.github@yandex.ru"
            }
        ],
        "description": "The Codeception integration for the Yii framework",
        "keywords": [
            "codeception",
            "yii2"
        ]
    },
    {
        "name": "yiisoft/yii2-debug",
        "version": "2.0.6",
        "version_normalized": "2.0.6.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-debug.git",
            "reference": "55ed2e853ed8050a34415f63a4da84f88a56f895"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/55ed2e853ed8050a34415f63a4da84f88a56f895",
            "reference": "55ed2e853ed8050a34415f63a4da84f88a56f895",
            "shasum": ""
        },
        "require": {
            "yiisoft/yii2": ">=2.0.4",
            "yiisoft/yii2-bootstrap": "*"
        },
        "time": "2016-03-17T03:50:19+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\debug\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Qiang Xue",
                "email": "qiang.xue@gmail.com"
            }
        ],
        "description": "The debugger extension for the Yii framework",
        "keywords": [
            "debug",
            "debugger",
            "yii2"
        ]
    },
    {
        "name": "fzaninotto/faker",
        "version": "v1.6.0",
        "version_normalized": "1.6.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/fzaninotto/Faker.git",
            "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123",
            "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
            "shasum": ""
        },
        "require": {
            "php": "^5.3.3|^7.0"
        },
        "require-dev": {
            "ext-intl": "*",
            "phpunit/phpunit": "~4.0",
            "squizlabs/php_codesniffer": "~1.5"
        },
        "time": "2016-04-29T12:21:54+00:00",
        "type": "library",
        "extra": {
            "branch-alias": []
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "Faker\\": "src/Faker/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "François Zaninotto"
            }
        ],
        "description": "Faker is a PHP library that generates fake data for you.",
        "keywords": [
            "data",
            "faker",
            "fixtures"
        ]
    },
    {
        "name": "yiisoft/yii2-faker",
        "version": "2.0.3",
        "version_normalized": "2.0.3.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-faker.git",
            "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
            "reference": "b88ca69ee226a3610b2c26c026c3203d7ac50f6c",
            "shasum": ""
        },
        "require": {
            "fzaninotto/faker": "*",
            "yiisoft/yii2": "*"
        },
        "time": "2015-03-01T06:22:44+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\faker\\": ""
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Mark Jebri",
                "email": "mark.github@yandex.ru"
            }
        ],
        "description": "Fixture generator. The Faker integration for the Yii framework.",
        "keywords": [
            "Fixture",
            "faker",
            "yii2"
        ]
    },
    {
        "name": "kolyunya/yii2-map-input-widget",
        "version": "v1.2.0",
        "version_normalized": "1.2.0.0",
        "source": {
            "type": "git",
            "url": "https://github.com/Kolyunya/yii2-map-input-widget.git",
            "reference": "32b642d9fb188a00886ff54e222240a4b2eb0411"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/Kolyunya/yii2-map-input-widget/zipball/32b642d9fb188a00886ff54e222240a4b2eb0411",
            "reference": "32b642d9fb188a00886ff54e222240a4b2eb0411",
            "shasum": ""
        },
        "time": "2018-01-10T14:26:57+00:00",
        "type": "yii2-extension",
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "kolyunya\\yii2\\": "sources"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "GNU GPL v3.0"
        ],
        "authors": [
            {
                "name": "Oleynikov Nikolay",
                "email": "OleynikovNY@mail.ru",
                "homepage": "http://github.com/Kolyunya/"
            }
        ],
        "description": "Yii2 map input widget. Allows you to select geographcal coordinates via a human-friendly inteface.",
        "homepage": "https://github.com/Kolyunya/yii2-map-input-widget",
        "keywords": [
            "coordinates",
            "extension",
            "geo-coordinates",
            "geocoding",
            "input",
            "map",
            "widget",
            "yii2"
        ]
    },
    {
        "name": "imagine/imagine",
        "version": "v0.7.1",
        "version_normalized": "0.7.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/avalanche123/Imagine.git",
            "reference": "a9a702a946073cbca166718f1b02a1e72d742daa"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/a9a702a946073cbca166718f1b02a1e72d742daa",
            "reference": "a9a702a946073cbca166718f1b02a1e72d742daa",
            "shasum": ""
        },
        "require": {
            "php": ">=5.3.2"
        },
        "require-dev": {
            "sami/sami": "^3.3",
            "symfony/phpunit-bridge": "^3.2"
        },
        "suggest": {
            "ext-gd": "to use the GD implementation",
            "ext-gmagick": "to use the Gmagick implementation",
            "ext-imagick": "to use the Imagick implementation"
        },
        "time": "2017-05-16T10:31:22+00:00",
        "type": "library",
        "extra": {
            "branch-alias": {
                "dev-develop": "0.7-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-0": {
                "Imagine": "lib/"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "MIT"
        ],
        "authors": [
            {
                "name": "Bulat Shakirzyanov",
                "email": "mallluhuct@gmail.com",
                "homepage": "http://avalanche123.com"
            }
        ],
        "description": "Image processing for PHP 5.3",
        "homepage": "http://imagine.readthedocs.org/",
        "keywords": [
            "drawing",
            "graphics",
            "image manipulation",
            "image processing"
        ]
    },
    {
        "name": "yiisoft/yii2-imagine",
        "version": "2.1.1",
        "version_normalized": "2.1.1.0",
        "source": {
            "type": "git",
            "url": "https://github.com/yiisoft/yii2-imagine.git",
            "reference": "a8a1a068862a86e3395e665bc86e63d5c9b60841"
        },
        "dist": {
            "type": "zip",
            "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/a8a1a068862a86e3395e665bc86e63d5c9b60841",
            "reference": "a8a1a068862a86e3395e665bc86e63d5c9b60841",
            "shasum": ""
        },
        "require": {
            "imagine/imagine": "~0.6.0 | ~0.7.1",
            "yiisoft/yii2": "~2.0.0"
        },
        "time": "2018-02-22T11:57:06+00:00",
        "type": "yii2-extension",
        "extra": {
            "branch-alias": {
                "dev-master": "2.0.x-dev"
            }
        },
        "installation-source": "dist",
        "autoload": {
            "psr-4": {
                "yii\\imagine\\": "src"
            }
        },
        "notification-url": "https://packagist.org/downloads/",
        "license": [
            "BSD-3-Clause"
        ],
        "authors": [
            {
                "name": "Antonio Ramirez",
                "email": "amigo.cobos@gmail.com"
            }
        ],
        "description": "The Imagine integration for the Yii framework",
        "keywords": [
            "helper",
            "image",
            "imagine",
            "yii2"
        ]
    }
]
autoload_files.php000066600000000716151456236510010267 0ustar00<?php

// autoload_files.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
    '2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
    '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php',
);
autoload_static.php000066600000021741151456236510010455 0ustar00<?php

// autoload_static.php @generated by Composer

namespace Composer\Autoload;

class ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811
{
    public static $files = array (
        '2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
        '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
        '2c102faa651ef8ea5874edb585946bce' => __DIR__ . '/..' . '/swiftmailer/swiftmailer/lib/swift_required.php',
    );

    public static $prefixLengthsPsr4 = array (
        'y' => 
        array (
            'yii\\swiftmailer\\' => 16,
            'yii\\imagine\\' => 12,
            'yii\\gii\\' => 8,
            'yii\\faker\\' => 10,
            'yii\\debug\\' => 10,
            'yii\\composer\\' => 13,
            'yii\\codeception\\' => 16,
            'yii\\bootstrap\\' => 14,
            'yii\\' => 4,
        ),
        's' => 
        array (
            'schmunk42\\giiant\\' => 17,
        ),
        'r' => 
        array (
            'rmrevin\\yii\\fontawesome\\' => 24,
        ),
        'm' => 
        array (
            'mikehaertl\\shellcommand\\' => 24,
        ),
        'k' => 
        array (
            'kolyunya\\yii2\\' => 14,
            'kartik\\sortinput\\' => 17,
            'kartik\\sortable\\' => 16,
            'kartik\\plugins\\fileinput\\' => 25,
            'kartik\\file\\' => 12,
            'kartik\\base\\' => 12,
        ),
        'd' => 
        array (
            'dmstr\\helpers\\' => 14,
            'dmstr\\db\\tests\\' => 15,
            'dmstr\\db\\' => 9,
            'dmstr\\console\\' => 14,
            'dmstr\\bootstrap\\' => 16,
            'dmstr\\' => 6,
        ),
        'c' => 
        array (
            'cebe\\markdown\\' => 14,
        ),
        'Z' => 
        array (
            'Zelenin\\yii\\widgets\\Summernote\\' => 31,
        ),
        'S' => 
        array (
            'Symfony\\Polyfill\\Mbstring\\' => 26,
            'Symfony\\Component\\Stopwatch\\' => 28,
            'Symfony\\Component\\Process\\' => 26,
            'Symfony\\Component\\Finder\\' => 25,
            'Symfony\\Component\\Filesystem\\' => 29,
            'Symfony\\Component\\EventDispatcher\\' => 34,
            'Symfony\\Component\\Console\\' => 26,
            'Symfony\\CS\\' => 11,
        ),
        'F' => 
        array (
            'Faker\\' => 6,
        ),
    );

    public static $prefixDirsPsr4 = array (
        'yii\\swiftmailer\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-swiftmailer',
        ),
        'yii\\imagine\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-imagine/src',
        ),
        'yii\\gii\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-gii',
        ),
        'yii\\faker\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-faker',
        ),
        'yii\\debug\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-debug',
        ),
        'yii\\composer\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-composer',
        ),
        'yii\\codeception\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-codeception',
        ),
        'yii\\bootstrap\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2-bootstrap',
        ),
        'yii\\' => 
        array (
            0 => __DIR__ . '/..' . '/yiisoft/yii2',
        ),
        'schmunk42\\giiant\\' => 
        array (
            0 => __DIR__ . '/..' . '/schmunk42/yii2-giiant/src',
        ),
        'rmrevin\\yii\\fontawesome\\' => 
        array (
            0 => __DIR__ . '/..' . '/rmrevin/yii2-fontawesome',
        ),
        'mikehaertl\\shellcommand\\' => 
        array (
            0 => __DIR__ . '/..' . '/mikehaertl/php-shellcommand/src',
        ),
        'kolyunya\\yii2\\' => 
        array (
            0 => __DIR__ . '/..' . '/kolyunya/yii2-map-input-widget/sources',
        ),
        'kartik\\sortinput\\' => 
        array (
            0 => __DIR__ . '/..' . '/kartik-v/yii2-sortable-input',
        ),
        'kartik\\sortable\\' => 
        array (
            0 => __DIR__ . '/..' . '/kartik-v/yii2-sortable',
        ),
        'kartik\\plugins\\fileinput\\' => 
        array (
            0 => __DIR__ . '/..' . '/kartik-v/bootstrap-fileinput',
        ),
        'kartik\\file\\' => 
        array (
            0 => __DIR__ . '/..' . '/kartik-v/yii2-widget-fileinput',
        ),
        'kartik\\base\\' => 
        array (
            0 => __DIR__ . '/..' . '/kartik-v/yii2-krajee-base',
        ),
        'dmstr\\helpers\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-helpers/src',
        ),
        'dmstr\\db\\tests\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-db/db/tests',
        ),
        'dmstr\\db\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-db/db',
        ),
        'dmstr\\console\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-db/console',
        ),
        'dmstr\\bootstrap\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-bootstrap',
        ),
        'dmstr\\' => 
        array (
            0 => __DIR__ . '/..' . '/dmstr/yii2-adminlte-asset',
        ),
        'cebe\\markdown\\' => 
        array (
            0 => __DIR__ . '/..' . '/cebe/markdown',
        ),
        'Zelenin\\yii\\widgets\\Summernote\\' => 
        array (
            0 => __DIR__ . '/..' . '/germanigortcev/yii2-summernote-widget',
        ),
        'Symfony\\Polyfill\\Mbstring\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
        ),
        'Symfony\\Component\\Stopwatch\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/stopwatch',
        ),
        'Symfony\\Component\\Process\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/process',
        ),
        'Symfony\\Component\\Finder\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/finder',
        ),
        'Symfony\\Component\\Filesystem\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/filesystem',
        ),
        'Symfony\\Component\\EventDispatcher\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/event-dispatcher',
        ),
        'Symfony\\Component\\Console\\' => 
        array (
            0 => __DIR__ . '/..' . '/symfony/console',
        ),
        'Symfony\\CS\\' => 
        array (
            0 => __DIR__ . '/..' . '/friendsofphp/php-cs-fixer/Symfony/CS',
        ),
        'Faker\\' => 
        array (
            0 => __DIR__ . '/..' . '/fzaninotto/faker/src/Faker',
        ),
    );

    public static $prefixesPsr0 = array (
        'c' => 
        array (
            'cebe\\gravatar\\' => 
            array (
                0 => __DIR__ . '/..' . '/cebe/yii2-gravatar',
            ),
        ),
        'I' => 
        array (
            'Imagine' => 
            array (
                0 => __DIR__ . '/..' . '/imagine/imagine/lib',
            ),
        ),
        'H' => 
        array (
            'HTMLPurifier' => 
            array (
                0 => __DIR__ . '/..' . '/ezyang/htmlpurifier/library',
            ),
        ),
        'D' => 
        array (
            'Diff' => 
            array (
                0 => __DIR__ . '/..' . '/phpspec/php-diff/lib',
            ),
        ),
    );

    public static $classMap = array (
        'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php',
        'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php',
        'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php',
        'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
        'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
        'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
        'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php',
        'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php',
    );

    public static function getInitializer(ClassLoader $loader)
    {
        return \Closure::bind(function () use ($loader) {
            $loader->prefixLengthsPsr4 = ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::$prefixLengthsPsr4;
            $loader->prefixDirsPsr4 = ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::$prefixDirsPsr4;
            $loader->prefixesPsr0 = ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::$prefixesPsr0;
            $loader->classMap = ComposerStaticInit3a43c62ad7cc7b7968a03affe0837811::$classMap;

        }, null, ClassLoader::class);
    }
}
var/www/vhosts/oinversion.com/.phpenv/shims/composer000075500000000643151456477350016760 0ustar00#!/usr/bin/env bash
set -e
[ -n "$PHPENV_DEBUG" ] && set -x

program="${0##*/}"
if [ "$program" = "php" ]; then
  for arg; do
    case "$arg" in
    -e* | -- ) break ;;
    */* )
      if [ -f "$arg" ]; then
        export PHPENV_DIR="${arg%/*}"
        break
      fi
      ;;
    esac
  done
fi

export PHPENV_ROOT="/var/www/vhosts/oinversion.com/.phpenv"
exec "/opt/plesk/phpenv/libexec/phpenv" exec "$program" "$@"

Anon7 - 2022
AnonSec Team