diff options
Diffstat (limited to 'admin/survey/minify/vendor/composer')
-rw-r--r-- | admin/survey/minify/vendor/composer/ClassLoader.php | 445 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/LICENSE | 21 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/autoload_classmap.php | 59 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/autoload_namespaces.php | 12 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/autoload_psr4.php | 15 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/autoload_real.php | 52 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/autoload_static.php | 142 | ||||
-rw-r--r-- | admin/survey/minify/vendor/composer/installed.json | 485 |
8 files changed, 1231 insertions, 0 deletions
diff --git a/admin/survey/minify/vendor/composer/ClassLoader.php b/admin/survey/minify/vendor/composer/ClassLoader.php new file mode 100644 index 0000000..003f7fe --- /dev/null +++ b/admin/survey/minify/vendor/composer/ClassLoader.php @@ -0,0 +1,445 @@ +<?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;
+}
diff --git a/admin/survey/minify/vendor/composer/LICENSE b/admin/survey/minify/vendor/composer/LICENSE new file mode 100644 index 0000000..6256709 --- /dev/null +++ b/admin/survey/minify/vendor/composer/LICENSE @@ -0,0 +1,21 @@ +
+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.
+
diff --git a/admin/survey/minify/vendor/composer/autoload_classmap.php b/admin/survey/minify/vendor/composer/autoload_classmap.php new file mode 100644 index 0000000..45f28fd --- /dev/null +++ b/admin/survey/minify/vendor/composer/autoload_classmap.php @@ -0,0 +1,59 @@ +<?php
+
+// autoload_classmap.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+ 'HTTP_ConditionalGet' => $baseDir . '/lib/HTTP/ConditionalGet.php',
+ 'HTTP_Encoder' => $baseDir . '/lib/HTTP/Encoder.php',
+ 'Minify' => $baseDir . '/lib/Minify.php',
+ 'Minify\\App' => $baseDir . '/lib/Minify/App.php',
+ 'Minify\\Config' => $baseDir . '/lib/Minify/Config.php',
+ 'Minify\\JS\\JShrink' => $baseDir . '/lib/Minify/JS/JShrink.php',
+ 'Minify\\Logger\\LegacyHandler' => $baseDir . '/lib/Minify/Logger/LegacyHandler.php',
+ 'Minify_Build' => $baseDir . '/lib/Minify/Build.php',
+ 'Minify_CSS' => $baseDir . '/lib/Minify/CSS.php',
+ 'Minify_CSS_Compressor' => $baseDir . '/lib/Minify/CSS/Compressor.php',
+ 'Minify_CSS_UriRewriter' => $baseDir . '/lib/Minify/CSS/UriRewriter.php',
+ 'Minify_CSSmin' => $baseDir . '/lib/Minify/CSSmin.php',
+ 'Minify_CacheInterface' => $baseDir . '/lib/Minify/CacheInterface.php',
+ 'Minify_Cache_APC' => $baseDir . '/lib/Minify/Cache/APC.php',
+ 'Minify_Cache_File' => $baseDir . '/lib/Minify/Cache/File.php',
+ 'Minify_Cache_Memcache' => $baseDir . '/lib/Minify/Cache/Memcache.php',
+ 'Minify_Cache_Null' => $baseDir . '/lib/Minify/Cache/Null.php',
+ 'Minify_Cache_WinCache' => $baseDir . '/lib/Minify/Cache/WinCache.php',
+ 'Minify_Cache_XCache' => $baseDir . '/lib/Minify/Cache/XCache.php',
+ 'Minify_Cache_ZendPlatform' => $baseDir . '/lib/Minify/Cache/ZendPlatform.php',
+ 'Minify_ClosureCompiler' => $baseDir . '/lib/Minify/ClosureCompiler.php',
+ 'Minify_ClosureCompiler_Exception' => $baseDir . '/lib/Minify/ClosureCompiler.php',
+ 'Minify_CommentPreserver' => $baseDir . '/lib/Minify/CommentPreserver.php',
+ 'Minify_ControllerInterface' => $baseDir . '/lib/Minify/ControllerInterface.php',
+ 'Minify_Controller_Base' => $baseDir . '/lib/Minify/Controller/Base.php',
+ 'Minify_Controller_Files' => $baseDir . '/lib/Minify/Controller/Files.php',
+ 'Minify_Controller_Groups' => $baseDir . '/lib/Minify/Controller/Groups.php',
+ 'Minify_Controller_MinApp' => $baseDir . '/lib/Minify/Controller/MinApp.php',
+ 'Minify_Controller_Page' => $baseDir . '/lib/Minify/Controller/Page.php',
+ 'Minify_DebugDetector' => $baseDir . '/lib/Minify/DebugDetector.php',
+ 'Minify_Env' => $baseDir . '/lib/Minify/Env.php',
+ 'Minify_HTML' => $baseDir . '/lib/Minify/HTML.php',
+ 'Minify_HTML_Helper' => $baseDir . '/lib/Minify/HTML/Helper.php',
+ 'Minify_ImportProcessor' => $baseDir . '/lib/Minify/ImportProcessor.php',
+ 'Minify_JS_ClosureCompiler' => $baseDir . '/lib/Minify/JS/ClosureCompiler.php',
+ 'Minify_JS_ClosureCompiler_Exception' => $baseDir . '/lib/Minify/JS/ClosureCompiler.php',
+ 'Minify_LessCssSource' => $baseDir . '/lib/Minify/LessCssSource.php',
+ 'Minify_Lines' => $baseDir . '/lib/Minify/Lines.php',
+ 'Minify_NailgunClosureCompiler' => $baseDir . '/lib/Minify/NailgunClosureCompiler.php',
+ 'Minify_Packer' => $baseDir . '/lib/Minify/Packer.php',
+ 'Minify_ScssCssSource' => $baseDir . '/lib/Minify/ScssCssSource.php',
+ 'Minify_ServeConfiguration' => $baseDir . '/lib/Minify/ServeConfiguration.php',
+ 'Minify_Source' => $baseDir . '/lib/Minify/Source.php',
+ 'Minify_SourceInterface' => $baseDir . '/lib/Minify/SourceInterface.php',
+ 'Minify_SourceSet' => $baseDir . '/lib/Minify/SourceSet.php',
+ 'Minify_Source_Factory' => $baseDir . '/lib/Minify/Source/Factory.php',
+ 'Minify_Source_FactoryException' => $baseDir . '/lib/Minify/Source/FactoryException.php',
+ 'Minify_YUICompressor' => $baseDir . '/lib/Minify/YUICompressor.php',
+ 'MrClay\\Cli' => $baseDir . '/lib/MrClay/Cli.php',
+ 'MrClay\\Cli\\Arg' => $baseDir . '/lib/MrClay/Cli/Arg.php',
+);
diff --git a/admin/survey/minify/vendor/composer/autoload_namespaces.php b/admin/survey/minify/vendor/composer/autoload_namespaces.php new file mode 100644 index 0000000..e2d69e7 --- /dev/null +++ b/admin/survey/minify/vendor/composer/autoload_namespaces.php @@ -0,0 +1,12 @@ +<?php
+
+// autoload_namespaces.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+ 'Props\\' => array($vendorDir . '/mrclay/props-dic/src', $vendorDir . '/mrclay/props-dic/test'),
+ 'Pimple' => array($vendorDir . '/pimple/pimple/src'),
+ 'JSMin\\' => array($vendorDir . '/mrclay/jsmin-php/src'),
+);
diff --git a/admin/survey/minify/vendor/composer/autoload_psr4.php b/admin/survey/minify/vendor/composer/autoload_psr4.php new file mode 100644 index 0000000..21a7a82 --- /dev/null +++ b/admin/survey/minify/vendor/composer/autoload_psr4.php @@ -0,0 +1,15 @@ +<?php
+
+// autoload_psr4.php @generated by Composer
+
+$vendorDir = dirname(dirname(__FILE__));
+$baseDir = dirname($vendorDir);
+
+return array(
+ 'tubalmartin\\CssMin\\' => array($vendorDir . '/tubalmartin/cssmin/src'),
+ 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
+ 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
+ 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
+ 'Intervention\\Httpauth\\' => array($vendorDir . '/intervention/httpauth/src/Intervention/Httpauth'),
+ 'Interop\\Container\\' => array($vendorDir . '/container-interop/container-interop/src/Interop/Container'),
+);
diff --git a/admin/survey/minify/vendor/composer/autoload_real.php b/admin/survey/minify/vendor/composer/autoload_real.php new file mode 100644 index 0000000..6f5c9cf --- /dev/null +++ b/admin/survey/minify/vendor/composer/autoload_real.php @@ -0,0 +1,52 @@ +<?php
+
+// autoload_real.php @generated by Composer
+
+class ComposerAutoloaderInite67f9495ee4d57806f236874186e3477
+{
+ 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('ComposerAutoloaderInite67f9495ee4d57806f236874186e3477', 'loadClassLoader'), true, true);
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader();
+ spl_autoload_unregister(array('ComposerAutoloaderInite67f9495ee4d57806f236874186e3477', '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\ComposerStaticInite67f9495ee4d57806f236874186e3477::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);
+
+ return $loader;
+ }
+}
diff --git a/admin/survey/minify/vendor/composer/autoload_static.php b/admin/survey/minify/vendor/composer/autoload_static.php new file mode 100644 index 0000000..e27e512 --- /dev/null +++ b/admin/survey/minify/vendor/composer/autoload_static.php @@ -0,0 +1,142 @@ +<?php
+
+// autoload_static.php @generated by Composer
+
+namespace Composer\Autoload;
+
+class ComposerStaticInite67f9495ee4d57806f236874186e3477
+{
+ public static $prefixLengthsPsr4 = array (
+ 't' =>
+ array (
+ 'tubalmartin\\CssMin\\' => 19,
+ ),
+ 'P' =>
+ array (
+ 'Psr\\Log\\' => 8,
+ 'Psr\\Container\\' => 14,
+ ),
+ 'M' =>
+ array (
+ 'Monolog\\' => 8,
+ ),
+ 'I' =>
+ array (
+ 'Intervention\\Httpauth\\' => 22,
+ 'Interop\\Container\\' => 18,
+ ),
+ );
+
+ public static $prefixDirsPsr4 = array (
+ 'tubalmartin\\CssMin\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/tubalmartin/cssmin/src',
+ ),
+ 'Psr\\Log\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
+ ),
+ 'Psr\\Container\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/psr/container/src',
+ ),
+ 'Monolog\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
+ ),
+ 'Intervention\\Httpauth\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/intervention/httpauth/src/Intervention/Httpauth',
+ ),
+ 'Interop\\Container\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/container-interop/container-interop/src/Interop/Container',
+ ),
+ );
+
+ public static $prefixesPsr0 = array (
+ 'P' =>
+ array (
+ 'Props\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/mrclay/props-dic/src',
+ 1 => __DIR__ . '/..' . '/mrclay/props-dic/test',
+ ),
+ 'Pimple' =>
+ array (
+ 0 => __DIR__ . '/..' . '/pimple/pimple/src',
+ ),
+ ),
+ 'J' =>
+ array (
+ 'JSMin\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/mrclay/jsmin-php/src',
+ ),
+ ),
+ );
+
+ public static $classMap = array (
+ 'HTTP_ConditionalGet' => __DIR__ . '/../..' . '/lib/HTTP/ConditionalGet.php',
+ 'HTTP_Encoder' => __DIR__ . '/../..' . '/lib/HTTP/Encoder.php',
+ 'Minify' => __DIR__ . '/../..' . '/lib/Minify.php',
+ 'Minify\\App' => __DIR__ . '/../..' . '/lib/Minify/App.php',
+ 'Minify\\Config' => __DIR__ . '/../..' . '/lib/Minify/Config.php',
+ 'Minify\\JS\\JShrink' => __DIR__ . '/../..' . '/lib/Minify/JS/JShrink.php',
+ 'Minify\\Logger\\LegacyHandler' => __DIR__ . '/../..' . '/lib/Minify/Logger/LegacyHandler.php',
+ 'Minify_Build' => __DIR__ . '/../..' . '/lib/Minify/Build.php',
+ 'Minify_CSS' => __DIR__ . '/../..' . '/lib/Minify/CSS.php',
+ 'Minify_CSS_Compressor' => __DIR__ . '/../..' . '/lib/Minify/CSS/Compressor.php',
+ 'Minify_CSS_UriRewriter' => __DIR__ . '/../..' . '/lib/Minify/CSS/UriRewriter.php',
+ 'Minify_CSSmin' => __DIR__ . '/../..' . '/lib/Minify/CSSmin.php',
+ 'Minify_CacheInterface' => __DIR__ . '/../..' . '/lib/Minify/CacheInterface.php',
+ 'Minify_Cache_APC' => __DIR__ . '/../..' . '/lib/Minify/Cache/APC.php',
+ 'Minify_Cache_File' => __DIR__ . '/../..' . '/lib/Minify/Cache/File.php',
+ 'Minify_Cache_Memcache' => __DIR__ . '/../..' . '/lib/Minify/Cache/Memcache.php',
+ 'Minify_Cache_Null' => __DIR__ . '/../..' . '/lib/Minify/Cache/Null.php',
+ 'Minify_Cache_WinCache' => __DIR__ . '/../..' . '/lib/Minify/Cache/WinCache.php',
+ 'Minify_Cache_XCache' => __DIR__ . '/../..' . '/lib/Minify/Cache/XCache.php',
+ 'Minify_Cache_ZendPlatform' => __DIR__ . '/../..' . '/lib/Minify/Cache/ZendPlatform.php',
+ 'Minify_ClosureCompiler' => __DIR__ . '/../..' . '/lib/Minify/ClosureCompiler.php',
+ 'Minify_ClosureCompiler_Exception' => __DIR__ . '/../..' . '/lib/Minify/ClosureCompiler.php',
+ 'Minify_CommentPreserver' => __DIR__ . '/../..' . '/lib/Minify/CommentPreserver.php',
+ 'Minify_ControllerInterface' => __DIR__ . '/../..' . '/lib/Minify/ControllerInterface.php',
+ 'Minify_Controller_Base' => __DIR__ . '/../..' . '/lib/Minify/Controller/Base.php',
+ 'Minify_Controller_Files' => __DIR__ . '/../..' . '/lib/Minify/Controller/Files.php',
+ 'Minify_Controller_Groups' => __DIR__ . '/../..' . '/lib/Minify/Controller/Groups.php',
+ 'Minify_Controller_MinApp' => __DIR__ . '/../..' . '/lib/Minify/Controller/MinApp.php',
+ 'Minify_Controller_Page' => __DIR__ . '/../..' . '/lib/Minify/Controller/Page.php',
+ 'Minify_DebugDetector' => __DIR__ . '/../..' . '/lib/Minify/DebugDetector.php',
+ 'Minify_Env' => __DIR__ . '/../..' . '/lib/Minify/Env.php',
+ 'Minify_HTML' => __DIR__ . '/../..' . '/lib/Minify/HTML.php',
+ 'Minify_HTML_Helper' => __DIR__ . '/../..' . '/lib/Minify/HTML/Helper.php',
+ 'Minify_ImportProcessor' => __DIR__ . '/../..' . '/lib/Minify/ImportProcessor.php',
+ 'Minify_JS_ClosureCompiler' => __DIR__ . '/../..' . '/lib/Minify/JS/ClosureCompiler.php',
+ 'Minify_JS_ClosureCompiler_Exception' => __DIR__ . '/../..' . '/lib/Minify/JS/ClosureCompiler.php',
+ 'Minify_LessCssSource' => __DIR__ . '/../..' . '/lib/Minify/LessCssSource.php',
+ 'Minify_Lines' => __DIR__ . '/../..' . '/lib/Minify/Lines.php',
+ 'Minify_NailgunClosureCompiler' => __DIR__ . '/../..' . '/lib/Minify/NailgunClosureCompiler.php',
+ 'Minify_Packer' => __DIR__ . '/../..' . '/lib/Minify/Packer.php',
+ 'Minify_ScssCssSource' => __DIR__ . '/../..' . '/lib/Minify/ScssCssSource.php',
+ 'Minify_ServeConfiguration' => __DIR__ . '/../..' . '/lib/Minify/ServeConfiguration.php',
+ 'Minify_Source' => __DIR__ . '/../..' . '/lib/Minify/Source.php',
+ 'Minify_SourceInterface' => __DIR__ . '/../..' . '/lib/Minify/SourceInterface.php',
+ 'Minify_SourceSet' => __DIR__ . '/../..' . '/lib/Minify/SourceSet.php',
+ 'Minify_Source_Factory' => __DIR__ . '/../..' . '/lib/Minify/Source/Factory.php',
+ 'Minify_Source_FactoryException' => __DIR__ . '/../..' . '/lib/Minify/Source/FactoryException.php',
+ 'Minify_YUICompressor' => __DIR__ . '/../..' . '/lib/Minify/YUICompressor.php',
+ 'MrClay\\Cli' => __DIR__ . '/../..' . '/lib/MrClay/Cli.php',
+ 'MrClay\\Cli\\Arg' => __DIR__ . '/../..' . '/lib/MrClay/Cli/Arg.php',
+ );
+
+ public static function getInitializer(ClassLoader $loader)
+ {
+ return \Closure::bind(function () use ($loader) {
+ $loader->prefixLengthsPsr4 = ComposerStaticInite67f9495ee4d57806f236874186e3477::$prefixLengthsPsr4;
+ $loader->prefixDirsPsr4 = ComposerStaticInite67f9495ee4d57806f236874186e3477::$prefixDirsPsr4;
+ $loader->prefixesPsr0 = ComposerStaticInite67f9495ee4d57806f236874186e3477::$prefixesPsr0;
+ $loader->classMap = ComposerStaticInite67f9495ee4d57806f236874186e3477::$classMap;
+
+ }, null, ClassLoader::class);
+ }
+}
diff --git a/admin/survey/minify/vendor/composer/installed.json b/admin/survey/minify/vendor/composer/installed.json new file mode 100644 index 0000000..6c9565f --- /dev/null +++ b/admin/survey/minify/vendor/composer/installed.json @@ -0,0 +1,485 @@ +[
+ {
+ "name": "psr/container",
+ "version": "1.0.0",
+ "version_normalized": "1.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "time": "2017-02-14T16:28:37+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ]
+ },
+ {
+ "name": "pimple/pimple",
+ "version": "v3.2.3",
+ "version_normalized": "3.2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/silexphp/Pimple.git",
+ "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
+ "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "psr/container": "^1.0"
+ },
+ "require-dev": {
+ "symfony/phpunit-bridge": "^3.2"
+ },
+ "time": "2018-01-21T07:42:36+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.2.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-0": {
+ "Pimple": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ }
+ ],
+ "description": "Pimple, a simple Dependency Injection Container",
+ "homepage": "http://pimple.sensiolabs.org",
+ "keywords": [
+ "container",
+ "dependency injection"
+ ]
+ },
+ {
+ "name": "container-interop/container-interop",
+ "version": "1.2.0",
+ "version_normalized": "1.2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/container-interop/container-interop.git",
+ "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
+ "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
+ "shasum": ""
+ },
+ "require": {
+ "psr/container": "^1.0"
+ },
+ "time": "2017-02-14T19:40:03+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Interop\\Container\\": "src/Interop/Container/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
+ "homepage": "https://github.com/container-interop/container-interop"
+ },
+ {
+ "name": "mrclay/props-dic",
+ "version": "2.2.0",
+ "version_normalized": "2.2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mrclay/Props.git",
+ "reference": "9ed6cf3a027f1eab03abdd134ec209467cf9c77e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mrclay/Props/zipball/9ed6cf3a027f1eab03abdd134ec209467cf9c77e",
+ "reference": "9ed6cf3a027f1eab03abdd134ec209467cf9c77e",
+ "shasum": ""
+ },
+ "require": {
+ "container-interop/container-interop": "^1.1",
+ "php": ">=5.3.3",
+ "pimple/pimple": "~3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.8"
+ },
+ "time": "2016-02-10T18:59:20+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-0": {
+ "Props\\": [
+ "src/",
+ "test/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Steve Clay",
+ "email": "steve@mrclay.org",
+ "homepage": "http://www.mrclay.org/"
+ }
+ ],
+ "description": "Props is a simple DI container that allows retrieving values via custom property and method names",
+ "keywords": [
+ "container",
+ "dependency injection",
+ "dependency injection container",
+ "di",
+ "di container"
+ ]
+ },
+ {
+ "name": "intervention/httpauth",
+ "version": "2.0.3",
+ "version_normalized": "2.0.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Intervention/httpauth.git",
+ "reference": "69d4627c398c2d74b1c70aae7de7121e0b627c17"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Intervention/httpauth/zipball/69d4627c398c2d74b1c70aae7de7121e0b627c17",
+ "reference": "69d4627c398c2d74b1c70aae7de7121e0b627c17",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "time": "2017-06-28T17:37:25+00:00",
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Intervention\\Httpauth\\HttpauthServiceProvider"
+ ],
+ "aliases": {
+ "Httpauth": "Intervention\\Httpauth\\Facades\\Httpauth"
+ }
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Intervention\\Httpauth\\": "src/Intervention/Httpauth"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Oliver Vogel",
+ "email": "oliver@olivervogel.com",
+ "homepage": "http://olivervogel.com/"
+ }
+ ],
+ "description": "HTTP authentication (Basic & Digest) including ServiceProviders for easy Laravel integration",
+ "homepage": "https://github.com/Intervention/httpauth",
+ "keywords": [
+ "Authentication",
+ "http",
+ "laravel"
+ ]
+ },
+ {
+ "name": "psr/log",
+ "version": "1.0.2",
+ "version_normalized": "1.0.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "time": "2016-10-10T12:19:37+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ]
+ },
+ {
+ "name": "monolog/monolog",
+ "version": "1.23.0",
+ "version_normalized": "1.23.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
+ "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "psr/log": "~1.0"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0.0"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "^2.4.9 || ^3.0",
+ "doctrine/couchdb": "~1.0@dev",
+ "graylog2/gelf-php": "~1.0",
+ "jakub-onderka/php-parallel-lint": "0.9",
+ "php-amqplib/php-amqplib": "~2.4",
+ "php-console/php-console": "^3.1.3",
+ "phpunit/phpunit": "~4.5",
+ "phpunit/phpunit-mock-objects": "2.3.0",
+ "ruflin/elastica": ">=0.90 <3.0",
+ "sentry/sentry": "^0.13",
+ "swiftmailer/swiftmailer": "^5.3|^6.0"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+ "ext-mongo": "Allow sending log messages to a MongoDB server",
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+ "php-console/php-console": "Allow sending log messages to Google Chrome",
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
+ "sentry/sentry": "Allow sending log messages to a Sentry server"
+ },
+ "time": "2017-06-19T01:22:40+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Monolog\\": "src/Monolog"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+ "homepage": "http://github.com/Seldaek/monolog",
+ "keywords": [
+ "log",
+ "logging",
+ "psr-3"
+ ]
+ },
+ {
+ "name": "mrclay/jsmin-php",
+ "version": "2.3.2",
+ "version_normalized": "2.3.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mrclay/jsmin-php.git",
+ "reference": "932c9633c35b390beb2cfdea69a41ea7dbc8d759"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mrclay/jsmin-php/zipball/932c9633c35b390beb2cfdea69a41ea7dbc8d759",
+ "reference": "932c9633c35b390beb2cfdea69a41ea7dbc8d759",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.2"
+ },
+ "time": "2015-03-30T15:04:42+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-0": {
+ "JSMin\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Stephen Clay",
+ "email": "steve@mrclay.org",
+ "role": "Developer"
+ },
+ {
+ "name": "Ryan Grove",
+ "email": "ryan@wonko.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "Provides a modified port of Douglas Crockford's jsmin.c, which removes unnecessary whitespace from JavaScript files.",
+ "homepage": "https://github.com/mrclay/jsmin-php/",
+ "keywords": [
+ "compress",
+ "jsmin",
+ "minify"
+ ]
+ },
+ {
+ "name": "tubalmartin/cssmin",
+ "version": "v4.1.1",
+ "version_normalized": "4.1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port.git",
+ "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tubalmartin/YUI-CSS-compressor-PHP-port/zipball/3cbf557f4079d83a06f9c3ff9b957c022d7805cf",
+ "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "cogpowered/finediff": "0.3.*",
+ "phpunit/phpunit": "4.8.*"
+ },
+ "time": "2018-01-15T15:26:51+00:00",
+ "bin": [
+ "cssmin"
+ ],
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "tubalmartin\\CssMin\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Túbal Martín",
+ "homepage": "http://tubalmartin.me/"
+ }
+ ],
+ "description": "A PHP port of the YUI CSS compressor",
+ "homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port",
+ "keywords": [
+ "compress",
+ "compressor",
+ "css",
+ "cssmin",
+ "minify",
+ "yui"
+ ]
+ }
+]
|