Plugin Directory

Changeset 2928016

Timestamp:
06/19/2023 02:16:32 PM (13 months ago)
Author:
joanrodas
Message:

Update to version 1.0.1 from GitHub

Location:
asin-smart-links
Files:
34 deleted
28 edited
1 copied

Legend:

Unmodified
Added
Removed
  • asin-smart-links/tags/1.0.1/Includes/Loader.php

    r2911530 r2928016  
    3535    public function load_plugin_textdomain()
    3636    {
    37         load_plugin_textdomain('asin-smart-links', false, ASINSMARTINTERNATIONALLINKS_BASENAME . '/languages/');
     37        load_plugin_textdomain('asin-smart-links', false, . '/languages/');
    3838    }
    3939
  • asin-smart-links/tags/1.0.1/README.txt

    r2911530 r2928016  
    11=== ASIN Smart Links ===
    2 Contributors: joanrodas
     2Contributors: joanrodas
    33Donate link: https://sirvelia.com/
    44Tags: asin, amazon, international link, isbn, affiliate
     
    3939== Changelog ==
    4040
     41
     42
     43
    4144= 1.0.0 =
    4245* Initial release.
  • asin-smart-links/tags/1.0.1/asin-smart-links.php

    r2911530 r2928016  
    66 * Plugin Name:       ASIN Smart Links
    77 * Description:       Generate Amazon universal links to redirect users to the Amazon site of their country.
    8  * Version:           1.0.0
     8 * Version:           1.0.
    99 * Author:            Sirvelia
    1010 * Author URI:        https://sirvelia.com/
     
    2020}
    2121
    22 define('ASINSMARTINTERNATIONALLINKS_VERSION', '1.0.0');
     22define('ASINSMARTINTERNATIONALLINKS_VERSION', '1.0.');
    2323define('ASINSMARTINTERNATIONALLINKS_PATH', plugin_dir_path(__FILE__));
    2424define('ASINSMARTINTERNATIONALLINKS_BASENAME', plugin_basename(__FILE__));
  • asin-smart-links/tags/1.0.1/vendor/autoload.php

    r2911530 r2928016  
    33// autoload.php @generated by Composer
    44
     5
     6
     7
     8
     9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
    523require_once __DIR__ . '/composer/autoload_real.php';
    624
    7 return ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3::getLoader();
     25return ComposerAutoloaderInit::getLoader();
  • asin-smart-links/tags/1.0.1/vendor/bin/carbon

    r2911530 r2928016  
    113113        || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
    114114    ) {
    115         include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
    116         exit(0);
     115        return include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
    117116    }
    118117}
    119118
    120 include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';
     119include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';
  • asin-smart-links/tags/1.0.1/vendor/composer/ClassLoader.php

    r2911530 r2928016  
    4343class ClassLoader
    4444{
    45     /** @var ?string */
     45    /** @var \Closure(string):void */
     46    private static $includeFile;
     47
     48    /** @var string|null */
    4649    private $vendorDir;
    4750
    4851    // PSR-4
    4952    /**
    50      * @var array[]
    51      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5254     */
    5355    private $prefixLengthsPsr4 = array();
    5456    /**
    55      * @var array[]
    56      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    5758     */
    5859    private $prefixDirsPsr4 = array();
    5960    /**
    60      * @var array[]
    61      * @psalm-var array<string, string>
     61     * @var list<string>
    6262     */
    6363    private $fallbackDirsPsr4 = array();
     
    6565    // PSR-0
    6666    /**
    67      * @var array[]
    68      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    6972     */
    7073    private $prefixesPsr0 = array();
    7174    /**
    72      * @var array[]
    73      * @psalm-var array<string, string>
     75     * @var list<string>
    7476     */
    7577    private $fallbackDirsPsr0 = array();
     
    7981
    8082    /**
    81      * @var string[]
    82      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8384     */
    8485    private $classMap = array();
     
    8889
    8990    /**
    90      * @var bool[]
    91      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9292     */
    9393    private $missingClasses = array();
    9494
    95     /** @var ?string */
     95    /** @var */
    9696    private $apcuPrefix;
    9797
    9898    /**
    99      * @var self[]
     99     * @var
    100100     */
    101101    private static $registeredLoaders = array();
    102102
    103103    /**
    104      * @param ?string $vendorDir
     104     * @param $vendorDir
    105105     */
    106106    public function __construct($vendorDir = null)
    107107    {
    108108        $this->vendorDir = $vendorDir;
    109     }
    110 
    111     /**
    112      * @return string[]
     109        self::initializeIncludeClosure();
     110    }
     111
     112    /**
     113     * @return array<string, list<string>>
    113114     */
    114115    public function getPrefixes()
     
    122123
    123124    /**
    124      * @return array[]
    125      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    126126     */
    127127    public function getPrefixesPsr4()
     
    131131
    132132    /**
    133      * @return array[]
    134      * @psalm-return array<string, string>
     133     * @return list<string>
    135134     */
    136135    public function getFallbackDirs()
     
    140139
    141140    /**
    142      * @return array[]
    143      * @psalm-return array<string, string>
     141     * @return list<string>
    144142     */
    145143    public function getFallbackDirsPsr4()
     
    149147
    150148    /**
    151      * @return string[] Array of classname => path
    152      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    153150     */
    154151    public function getClassMap()
     
    158155
    159156    /**
    160      * @param string[] $classMap Class to filename map
    161      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    162158     *
    163159     * @return void
     
    176172     * appending or prepending to the ones previously set for this prefix.
    177173     *
    178      * @param string          $prefix  The prefix
    179      * @param string[]|string $paths   The PSR-0 root directories
    180      * @param bool            $prepend Whether to prepend the directories
     174     * @param string          $prefix  The prefix
     175     * @param |string $paths   The PSR-0 root directories
     176     * @param bool            $prepend Whether to prepend the directories
    181177     *
    182178     * @return void
     
    184180    public function add($prefix, $paths, $prepend = false)
    185181    {
     182
    186183        if (!$prefix) {
    187184            if ($prepend) {
    188185                $this->fallbackDirsPsr0 = array_merge(
    189                     (array) $paths,
     186                    $paths,
    190187                    $this->fallbackDirsPsr0
    191188                );
     
    193190                $this->fallbackDirsPsr0 = array_merge(
    194191                    $this->fallbackDirsPsr0,
    195                     (array) $paths
     192                    $paths
    196193                );
    197194            }
     
    202199        $first = $prefix[0];
    203200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    204             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    205202
    206203            return;
     
    208205        if ($prepend) {
    209206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    210                 (array) $paths,
     207                $paths,
    211208                $this->prefixesPsr0[$first][$prefix]
    212209            );
     
    214211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    215212                $this->prefixesPsr0[$first][$prefix],
    216                 (array) $paths
     213                $paths
    217214            );
    218215        }
     
    223220     * appending or prepending to the ones previously set for this namespace.
    224221     *
    225      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    226      * @param string[]|string $paths   The PSR-4 base directories
    227      * @param bool            $prepend Whether to prepend the directories
     222     * @param string          $prefix  The prefix/namespace, with trailing '\\'
     223     * @param |string $paths   The PSR-4 base directories
     224     * @param bool            $prepend Whether to prepend the directories
    228225     *
    229226     * @throws \InvalidArgumentException
     
    233230    public function addPsr4($prefix, $paths, $prepend = false)
    234231    {
     232
    235233        if (!$prefix) {
    236234            // Register directories for the root namespace.
    237235            if ($prepend) {
    238236                $this->fallbackDirsPsr4 = array_merge(
    239                     (array) $paths,
     237                    $paths,
    240238                    $this->fallbackDirsPsr4
    241239                );
     
    243241                $this->fallbackDirsPsr4 = array_merge(
    244242                    $this->fallbackDirsPsr4,
    245                     (array) $paths
     243                    $paths
    246244                );
    247245            }
     
    253251            }
    254252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    255             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    256254        } elseif ($prepend) {
    257255            // Prepend directories for an already registered namespace.
    258256            $this->prefixDirsPsr4[$prefix] = array_merge(
    259                 (array) $paths,
     257                $paths,
    260258                $this->prefixDirsPsr4[$prefix]
    261259            );
     
    264262            $this->prefixDirsPsr4[$prefix] = array_merge(
    265263                $this->prefixDirsPsr4[$prefix],
    266                 (array) $paths
     264                $paths
    267265            );
    268266        }
     
    273271     * replacing any others previously set for this prefix.
    274272     *
    275      * @param string          $prefix The prefix
    276      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string          $prefix The prefix
     274     * @param |string $paths  The PSR-0 base directories
    277275     *
    278276     * @return void
     
    291289     * replacing any others previously set for this namespace.
    292290     *
    293      * @param string          $prefix The prefix/namespace, with trailing '\\'
    294      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string          $prefix The prefix/namespace, with trailing '\\'
     292     * @param |string $paths  The PSR-4 base directories
    295293     *
    296294     * @throws \InvalidArgumentException
     
    426424    {
    427425        if ($file = $this->findFile($class)) {
    428             includeFile($file);
     426            $includeFile = self::$includeFile;
     427            $includeFile($file);
    429428
    430429            return true;
     
    477476
    478477    /**
    479      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    480      *
    481      * @return self[]
     478     * Returns the currently registered loaders ed by their corresponding vendor directories.
     479     *
     480     * @return
    482481     */
    483482    public static function getRegisteredLoaders()
     
    556555        return false;
    557556    }
     557
     558
     559
     560
     561
     562
     563
     564
     565
     566
     567
     568
     569
     570
     571
     572
     573
     574
     575
     576
     577
     578
    558579}
    559 
    560 /**
    561  * Scope isolated include.
    562  *
    563  * Prevents access to $this/self from included files.
    564  *
    565  * @param  string $file
    566  * @return void
    567  * @private
    568  */
    569 function includeFile($file)
    570 {
    571     include $file;
    572 }
  • asin-smart-links/tags/1.0.1/vendor/composer/InstalledVersions.php

    r2911530 r2928016  
    2222 *
    2323 * To require its presence, you can require `composer-runtime-api ^2.0`
     24
     25
    2426 */
    2527class InstalledVersions
     
    2729    /**
    2830     * @var mixed[]|null
    29      * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
     31     * @psalm-var array{root: array{name: string, }>}|array{}|null
    3032     */
    3133    private static $installed;
     
    3840    /**
    3941     * @var array[]
    40      * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     42     * @psalm-var array<string, array{root: array{name: string, }>}>
    4143     */
    4244    private static $installedByVendor = array();
     
    9799        foreach (self::getInstalled() as $installed) {
    98100            if (isset($installed['versions'][$packageName])) {
    99                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || ;
    100102            }
    101103        }
     
    118120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    119121    {
    120         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints($constraint);
    121123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    122124
     
    242244    /**
    243245     * @return array
    244      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
     246     * @psalm-return array{name: string, }
    245247     */
    246248    public static function getRootPackage()
     
    256258     * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
    257259     * @return array[]
    258      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
     260     * @psalm-return array{root: array{name: string, }>}
    259261     */
    260262    public static function getRawData()
     
    279281     *
    280282     * @return array[]
    281      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     283     * @psalm-return list<array{root: array{name: string, }>}>
    282284     */
    283285    public static function getAllRawData()
     
    302304     * @return void
    303305     *
    304      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
     306     * @psalm-param array{root: array{name: string, }>} $data
    305307     */
    306308    public static function reload($data)
     
    312314    /**
    313315     * @return array[]
    314      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     316     * @psalm-return list<array{root: array{name: string, }>}>
    315317     */
    316318    private static function getInstalled()
     
    327329                    $installed[] = self::$installedByVendor[$vendorDir];
    328330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    329                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    330334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    331335                        self::$installed = $installed[count($installed) - 1];
     
    339343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    340344            if (substr(__DIR__, -8, 1) !== 'C') {
    341                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    342348            } else {
    343349                self::$installed = array();
    344350            }
    345351        }
    346         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    347356
    348357        return $installed;
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_classmap.php

    r2911530 r2928016  
    33// autoload_classmap.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_files.php

    r2911530 r2928016  
    33// autoload_files.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
     
    1414    '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php',
    1515    'ef65a1626449d89d0811cf9befce46f0' => $vendorDir . '/illuminate/events/functions.php',
    16     '28cd8f460261615c0915396719f9e5aa' => $baseDir . '/Utils/dev.php',
    17     '93c05233cdc31acae58d99252e919f26' => $baseDir . '/Utils/functions.php',
     16    '' => $baseDir . '/Utils/dev.php',
     17    '' => $baseDir . '/Utils/functions.php',
    1818);
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_namespaces.php

    r2911530 r2928016  
    33// autoload_namespaces.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_psr4.php

    r2911530 r2928016  
    33// autoload_psr4.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
     
    1818    'Jenssegers\\Blade\\' => array($vendorDir . '/jenssegers/blade/src'),
    1919    'Illuminate\\View\\' => array($vendorDir . '/illuminate/view'),
    20     'Illuminate\\Support\\' => array($vendorDir . '/illuminate/collections', $vendorDir . '/illuminate/macroable', $vendorDir . '/illuminate/support'),
     20    'Illuminate\\Support\\' => array($vendorDir . '/illuminate/', $vendorDir . '/illuminate/support'),
    2121    'Illuminate\\Pipeline\\' => array($vendorDir . '/illuminate/pipeline'),
    2222    'Illuminate\\Filesystem\\' => array($vendorDir . '/illuminate/filesystem'),
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_real.php

    r2911530 r2928016  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3
     5class ComposerAutoloaderInit
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3', 'loadClassLoader'), true, true);
    28         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3', 'loadClassLoader'));
     27        spl_autoload_register(array('ComposerAutoloaderInit', 'loadClassLoader'), true, true);
     28        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname());
     29        spl_autoload_unregister(array('ComposerAutoloaderInit', 'loadClassLoader'));
    3030
    31         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    32         if ($useStaticLoader) {
    33             require __DIR__ . '/autoload_static.php';
    34 
    35             call_user_func(\Composer\Autoload\ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::getInitializer($loader));
    36         } else {
    37             $map = require __DIR__ . '/autoload_namespaces.php';
    38             foreach ($map as $namespace => $path) {
    39                 $loader->set($namespace, $path);
    40             }
    41 
    42             $map = require __DIR__ . '/autoload_psr4.php';
    43             foreach ($map as $namespace => $path) {
    44                 $loader->setPsr4($namespace, $path);
    45             }
    46 
    47             $classMap = require __DIR__ . '/autoload_classmap.php';
    48             if ($classMap) {
    49                 $loader->addClassMap($classMap);
    50             }
    51         }
     31        require __DIR__ . '/autoload_static.php';
     32        call_user_func(\Composer\Autoload\ComposerStaticInitd753b489e0db09e602bf922b7f37353f::getInitializer($loader));
    5233
    5334        $loader->register(true);
    5435
    55         if ($useStaticLoader) {
    56             $includeFiles = Composer\Autoload\ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$files;
    57         } else {
    58             $includeFiles = require __DIR__ . '/autoload_files.php';
    59         }
    60         foreach ($includeFiles as $fileIdentifier => $file) {
    61             composerRequire2333652b5ec3b5cdf3b8126057099db3($fileIdentifier, $file);
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInitd753b489e0db09e602bf922b7f37353f::$files;
     37        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
     38            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
     39                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
     40
     41                require $file;
     42            }
     43        }, null, null);
     44        foreach ($filesToLoad as $fileIdentifier => $file) {
     45            $requireFile($fileIdentifier, $file);
    6246        }
    6347
     
    6549    }
    6650}
    67 
    68 /**
    69  * @param string $fileIdentifier
    70  * @param string $file
    71  * @return void
    72  */
    73 function composerRequire2333652b5ec3b5cdf3b8126057099db3($fileIdentifier, $file)
    74 {
    75     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
    76         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    77 
    78         require $file;
    79     }
    80 }
  • asin-smart-links/tags/1.0.1/vendor/composer/autoload_static.php

    r2911530 r2928016  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3
     7class ComposerStaticInit
    88{
    99    public static $files = array (
     
    1515        '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
    1616        'ef65a1626449d89d0811cf9befce46f0' => __DIR__ . '/..' . '/illuminate/events/functions.php',
    17         '28cd8f460261615c0915396719f9e5aa' => __DIR__ . '/../..' . '/Utils/dev.php',
    18         '93c05233cdc31acae58d99252e919f26' => __DIR__ . '/../..' . '/Utils/functions.php',
     17        '' => __DIR__ . '/../..' . '/Utils/dev.php',
     18        '' => __DIR__ . '/../..' . '/Utils/functions.php',
    1919    );
    2020
     
    115115        'Illuminate\\Support\\' =>
    116116        array (
    117             0 => __DIR__ . '/..' . '/illuminate/collections',
    118             1 => __DIR__ . '/..' . '/illuminate/macroable',
     117            0 => __DIR__ . '/..' . '/illuminate/',
     118            1 => __DIR__ . '/..' . '/illuminate/',
    119119            2 => __DIR__ . '/..' . '/illuminate/support',
    120120        ),
     
    173173    {
    174174        return \Closure::bind(function () use ($loader) {
    175             $loader->prefixLengthsPsr4 = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$prefixLengthsPsr4;
    176             $loader->prefixDirsPsr4 = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$prefixDirsPsr4;
    177             $loader->classMap = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$classMap;
     175            $loader->prefixLengthsPsr4 = ComposerStaticInit::$prefixLengthsPsr4;
     176            $loader->prefixDirsPsr4 = ComposerStaticInit::$prefixDirsPsr4;
     177            $loader->classMap = ComposerStaticInit::$classMap;
    178178
    179179        }, null, ClassLoader::class);
  • asin-smart-links/tags/1.0.1/vendor/composer/installed.php

    r2911530 r2928016  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => 'dev-main',
    4         'version' => 'dev-main',
    5         'type' => 'template',
     3        'name' => 'sirvelia-labs/asin-smart-links',
     4        'pretty_version' => 'v1.0.1',
     5        'version' => '1.0.1.0',
     6        'reference' => 'd123464435a125c0aee966f04e361bec920bef98',
     7        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../',
    79        'aliases' => array(),
    8         'reference' => '94dc4ba53589381ee968cfe193f04b0fddc096b2',
    9         'name' => 'sirvelia-labs/asin-smart-international-links',
    1010        'dev' => true,
    1111    ),
     
    1414            'pretty_version' => '2.0.6',
    1515            'version' => '2.0.6.0',
     16
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../doctrine/inflector',
    1819            'aliases' => array(),
    19             'reference' => 'd9d313a36c872fd6ee06d9a6cbcf713eaa40f024',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => 'v3.5.3',
    2424            'version' => '3.5.3.0',
     25
    2526            'type' => 'library',
    2627            'install_path' => __DIR__ . '/../htmlburger/carbon-fields',
    2728            'aliases' => array(),
    28             'reference' => 'fe95143dc8db6b9b0f17b1a0c4d28aab98008470',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => 'v8.83.27',
    3333            'version' => '8.83.27.0',
     34
    3435            'type' => 'library',
    3536            'install_path' => __DIR__ . '/../illuminate/bus',
    3637            'aliases' => array(),
    37             'reference' => 'd2a8ae4bfd881086e55455e470776358eab27eae',
    3838            'dev_requirement' => false,
    3939        ),
     
    4141            'pretty_version' => 'v8.83.27',
    4242            'version' => '8.83.27.0',
     43
    4344            'type' => 'library',
    4445            'install_path' => __DIR__ . '/../illuminate/collections',
    4546            'aliases' => array(),
    46             'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4',
    4747            'dev_requirement' => false,
    4848        ),
     
    5050            'pretty_version' => 'v8.83.27',
    5151            'version' => '8.83.27.0',
     52
    5253            'type' => 'library',
    5354            'install_path' => __DIR__ . '/../illuminate/container',
    5455            'aliases' => array(),
    55             'reference' => '14062628d05f75047c5a1360b9350028427d568e',
    5656            'dev_requirement' => false,
    5757        ),
     
    5959            'pretty_version' => 'v8.83.27',
    6060            'version' => '8.83.27.0',
     61
    6162            'type' => 'library',
    6263            'install_path' => __DIR__ . '/../illuminate/contracts',
    6364            'aliases' => array(),
    64             'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d',
    6565            'dev_requirement' => false,
    6666        ),
     
    6868            'pretty_version' => 'v8.83.27',
    6969            'version' => '8.83.27.0',
     70
    7071            'type' => 'library',
    7172            'install_path' => __DIR__ . '/../illuminate/events',
    7273            'aliases' => array(),
    73             'reference' => 'b7f06cafb6c09581617f2ca05d69e9b159e5a35d',
    7474            'dev_requirement' => false,
    7575        ),
     
    7777            'pretty_version' => 'v8.83.27',
    7878            'version' => '8.83.27.0',
     79
    7980            'type' => 'library',
    8081            'install_path' => __DIR__ . '/../illuminate/filesystem',
    8182            'aliases' => array(),
    82             'reference' => '73db3e9a233ed587ba54f52ab8580f3c7bc872b2',
    8383            'dev_requirement' => false,
    8484        ),
     
    8686            'pretty_version' => 'v8.83.27',
    8787            'version' => '8.83.27.0',
     88
    8889            'type' => 'library',
    8990            'install_path' => __DIR__ . '/../illuminate/macroable',
    9091            'aliases' => array(),
    91             'reference' => 'aed81891a6e046fdee72edd497f822190f61c162',
    9292            'dev_requirement' => false,
    9393        ),
     
    9595            'pretty_version' => 'v8.83.27',
    9696            'version' => '8.83.27.0',
     97
    9798            'type' => 'library',
    9899            'install_path' => __DIR__ . '/../illuminate/pipeline',
    99100            'aliases' => array(),
    100             'reference' => '23aeff5b26ae4aee3f370835c76bd0f4e93f71d2',
    101101            'dev_requirement' => false,
    102102        ),
     
    104104            'pretty_version' => 'v8.83.27',
    105105            'version' => '8.83.27.0',
     106
    106107            'type' => 'library',
    107108            'install_path' => __DIR__ . '/../illuminate/support',
    108109            'aliases' => array(),
    109             'reference' => '1c79242468d3bbd9a0f7477df34f9647dde2a09b',
    110110            'dev_requirement' => false,
    111111        ),
     
    113113            'pretty_version' => 'v8.83.27',
    114114            'version' => '8.83.27.0',
     115
    115116            'type' => 'library',
    116117            'install_path' => __DIR__ . '/../illuminate/view',
    117118            'aliases' => array(),
    118             'reference' => '5e73eef48d9242532f81fadc14c816a01bfb1388',
    119119            'dev_requirement' => false,
    120120        ),
     
    122122            'pretty_version' => 'v1.4.0',
    123123            'version' => '1.4.0.0',
     124
    124125            'type' => 'library',
    125126            'install_path' => __DIR__ . '/../jenssegers/blade',
    126127            'aliases' => array(),
    127             'reference' => '22a3700e9fc469c19dd1c5e5bd1b9138195e421f',
    128128            'dev_requirement' => false,
    129129        ),
     
    131131            'pretty_version' => 'v0.5.5',
    132132            'version' => '0.5.5.0',
     133
    133134            'type' => 'library',
    134135            'install_path' => __DIR__ . '/../joanrodas/plubo-routes',
    135136            'aliases' => array(),
    136             'reference' => 'd72fa54c4c9545ef3ab5123f76847cd1c5daac43',
    137137            'dev_requirement' => false,
    138138        ),
     
    140140            'pretty_version' => '2.66.0',
    141141            'version' => '2.66.0.0',
     142
    142143            'type' => 'library',
    143144            'install_path' => __DIR__ . '/../nesbot/carbon',
    144145            'aliases' => array(),
    145             'reference' => '496712849902241f04902033b0441b269effe001',
    146146            'dev_requirement' => false,
    147147        ),
     
    149149            'pretty_version' => '1.1.2',
    150150            'version' => '1.1.2.0',
     151
    151152            'type' => 'library',
    152153            'install_path' => __DIR__ . '/../psr/container',
    153154            'aliases' => array(),
    154             'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
    155155            'dev_requirement' => false,
    156156        ),
     
    164164            'pretty_version' => '1.0.1',
    165165            'version' => '1.0.1.0',
     166
    166167            'type' => 'library',
    167168            'install_path' => __DIR__ . '/../psr/simple-cache',
    168169            'aliases' => array(),
    169             'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b',
    170             'dev_requirement' => false,
    171         ),
    172         'sirvelia-labs/asin-smart-international-links' => array(
    173             'pretty_version' => 'dev-main',
    174             'version' => 'dev-main',
    175             'type' => 'template',
     170            ',
     171        ,
     172       
     173       
     174            '',
     175            '',
     176            'type' => '',
    176177            'install_path' => __DIR__ . '/../../',
    177178            'aliases' => array(),
    178             'reference' => '94dc4ba53589381ee968cfe193f04b0fddc096b2',
    179179            'dev_requirement' => false,
    180180        ),
     
    182182            'pretty_version' => 'v2.5.2',
    183183            'version' => '2.5.2.0',
     184
    184185            'type' => 'library',
    185186            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
    186187            'aliases' => array(),
    187             'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
    188188            'dev_requirement' => false,
    189189        ),
     
    191191            'pretty_version' => 'v5.4.21',
    192192            'version' => '5.4.21.0',
     193
    193194            'type' => 'library',
    194195            'install_path' => __DIR__ . '/../symfony/finder',
    195196            'aliases' => array(),
    196             'reference' => '078e9a5e1871fcfe6a5ce421b539344c21afef19',
    197197            'dev_requirement' => false,
    198198        ),
     
    200200            'pretty_version' => 'v1.27.0',
    201201            'version' => '1.27.0.0',
     202
    202203            'type' => 'library',
    203204            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    204205            'aliases' => array(),
    205             'reference' => '8ad114f6b39e2c98a8b0e3bd907732c207c2b534',
    206206            'dev_requirement' => false,
    207207        ),
     
    209209            'pretty_version' => 'v1.27.0',
    210210            'version' => '1.27.0.0',
     211
    211212            'type' => 'library',
    212213            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
    213214            'aliases' => array(),
    214             'reference' => '7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936',
    215215            'dev_requirement' => false,
    216216        ),
     
    218218            'pretty_version' => 'v5.4.22',
    219219            'version' => '5.4.22.0',
     220
    220221            'type' => 'library',
    221222            'install_path' => __DIR__ . '/../symfony/translation',
    222223            'aliases' => array(),
    223             'reference' => '9a401392f01bc385aa42760eff481d213a0cc2ba',
    224224            'dev_requirement' => false,
    225225        ),
     
    227227            'pretty_version' => 'v2.5.2',
    228228            'version' => '2.5.2.0',
     229
    229230            'type' => 'library',
    230231            'install_path' => __DIR__ . '/../symfony/translation-contracts',
    231232            'aliases' => array(),
    232             'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe',
    233233            'dev_requirement' => false,
    234234        ),
     
    242242            'pretty_version' => '1.6.1',
    243243            'version' => '1.6.1.0',
     244
    244245            'type' => 'library',
    245246            'install_path' => __DIR__ . '/../voku/portable-ascii',
    246247            'aliases' => array(),
    247             'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a',
    248248            'dev_requirement' => false,
    249249        ),
  • asin-smart-links/trunk/Includes/Loader.php

    r2911530 r2928016  
    3535    public function load_plugin_textdomain()
    3636    {
    37         load_plugin_textdomain('asin-smart-links', false, ASINSMARTINTERNATIONALLINKS_BASENAME . '/languages/');
     37        load_plugin_textdomain('asin-smart-links', false, . '/languages/');
    3838    }
    3939
  • asin-smart-links/trunk/README.txt

    r2911530 r2928016  
    11=== ASIN Smart Links ===
    2 Contributors: joanrodas
     2Contributors: joanrodas
    33Donate link: https://sirvelia.com/
    44Tags: asin, amazon, international link, isbn, affiliate
     
    3939== Changelog ==
    4040
     41
     42
     43
    4144= 1.0.0 =
    4245* Initial release.
  • asin-smart-links/trunk/asin-smart-links.php

    r2911530 r2928016  
    66 * Plugin Name:       ASIN Smart Links
    77 * Description:       Generate Amazon universal links to redirect users to the Amazon site of their country.
    8  * Version:           1.0.0
     8 * Version:           1.0.
    99 * Author:            Sirvelia
    1010 * Author URI:        https://sirvelia.com/
     
    2020}
    2121
    22 define('ASINSMARTINTERNATIONALLINKS_VERSION', '1.0.0');
     22define('ASINSMARTINTERNATIONALLINKS_VERSION', '1.0.');
    2323define('ASINSMARTINTERNATIONALLINKS_PATH', plugin_dir_path(__FILE__));
    2424define('ASINSMARTINTERNATIONALLINKS_BASENAME', plugin_basename(__FILE__));
  • asin-smart-links/trunk/vendor/autoload.php

    r2911530 r2928016  
    33// autoload.php @generated by Composer
    44
     5
     6
     7
     8
     9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
    523require_once __DIR__ . '/composer/autoload_real.php';
    624
    7 return ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3::getLoader();
     25return ComposerAutoloaderInit::getLoader();
  • asin-smart-links/trunk/vendor/bin/carbon

    r2911530 r2928016  
    113113        || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
    114114    ) {
    115         include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
    116         exit(0);
     115        return include("phpvfscomposer://" . __DIR__ . '/..'.'/nesbot/carbon/bin/carbon');
    117116    }
    118117}
    119118
    120 include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';
     119include __DIR__ . '/..'.'/nesbot/carbon/bin/carbon';
  • asin-smart-links/trunk/vendor/composer/ClassLoader.php

    r2911530 r2928016  
    4343class ClassLoader
    4444{
    45     /** @var ?string */
     45    /** @var \Closure(string):void */
     46    private static $includeFile;
     47
     48    /** @var string|null */
    4649    private $vendorDir;
    4750
    4851    // PSR-4
    4952    /**
    50      * @var array[]
    51      * @psalm-var array<string, array<string, int>>
     53     * @var array<string, array<string, int>>
    5254     */
    5355    private $prefixLengthsPsr4 = array();
    5456    /**
    55      * @var array[]
    56      * @psalm-var array<string, array<int, string>>
     57     * @var array<string, list<string>>
    5758     */
    5859    private $prefixDirsPsr4 = array();
    5960    /**
    60      * @var array[]
    61      * @psalm-var array<string, string>
     61     * @var list<string>
    6262     */
    6363    private $fallbackDirsPsr4 = array();
     
    6565    // PSR-0
    6666    /**
    67      * @var array[]
    68      * @psalm-var array<string, array<string, string[]>>
     67     * List of PSR-0 prefixes
     68     *
     69     * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
     70     *
     71     * @var array<string, array<string, list<string>>>
    6972     */
    7073    private $prefixesPsr0 = array();
    7174    /**
    72      * @var array[]
    73      * @psalm-var array<string, string>
     75     * @var list<string>
    7476     */
    7577    private $fallbackDirsPsr0 = array();
     
    7981
    8082    /**
    81      * @var string[]
    82      * @psalm-var array<string, string>
     83     * @var array<string, string>
    8384     */
    8485    private $classMap = array();
     
    8889
    8990    /**
    90      * @var bool[]
    91      * @psalm-var array<string, bool>
     91     * @var array<string, bool>
    9292     */
    9393    private $missingClasses = array();
    9494
    95     /** @var ?string */
     95    /** @var */
    9696    private $apcuPrefix;
    9797
    9898    /**
    99      * @var self[]
     99     * @var
    100100     */
    101101    private static $registeredLoaders = array();
    102102
    103103    /**
    104      * @param ?string $vendorDir
     104     * @param $vendorDir
    105105     */
    106106    public function __construct($vendorDir = null)
    107107    {
    108108        $this->vendorDir = $vendorDir;
    109     }
    110 
    111     /**
    112      * @return string[]
     109        self::initializeIncludeClosure();
     110    }
     111
     112    /**
     113     * @return array<string, list<string>>
    113114     */
    114115    public function getPrefixes()
     
    122123
    123124    /**
    124      * @return array[]
    125      * @psalm-return array<string, array<int, string>>
     125     * @return array<string, list<string>>
    126126     */
    127127    public function getPrefixesPsr4()
     
    131131
    132132    /**
    133      * @return array[]
    134      * @psalm-return array<string, string>
     133     * @return list<string>
    135134     */
    136135    public function getFallbackDirs()
     
    140139
    141140    /**
    142      * @return array[]
    143      * @psalm-return array<string, string>
     141     * @return list<string>
    144142     */
    145143    public function getFallbackDirsPsr4()
     
    149147
    150148    /**
    151      * @return string[] Array of classname => path
    152      * @psalm-return array<string, string>
     149     * @return array<string, string> Array of classname => path
    153150     */
    154151    public function getClassMap()
     
    158155
    159156    /**
    160      * @param string[] $classMap Class to filename map
    161      * @psalm-param array<string, string> $classMap
     157     * @param array<string, string> $classMap Class to filename map
    162158     *
    163159     * @return void
     
    176172     * appending or prepending to the ones previously set for this prefix.
    177173     *
    178      * @param string          $prefix  The prefix
    179      * @param string[]|string $paths   The PSR-0 root directories
    180      * @param bool            $prepend Whether to prepend the directories
     174     * @param string          $prefix  The prefix
     175     * @param |string $paths   The PSR-0 root directories
     176     * @param bool            $prepend Whether to prepend the directories
    181177     *
    182178     * @return void
     
    184180    public function add($prefix, $paths, $prepend = false)
    185181    {
     182
    186183        if (!$prefix) {
    187184            if ($prepend) {
    188185                $this->fallbackDirsPsr0 = array_merge(
    189                     (array) $paths,
     186                    $paths,
    190187                    $this->fallbackDirsPsr0
    191188                );
     
    193190                $this->fallbackDirsPsr0 = array_merge(
    194191                    $this->fallbackDirsPsr0,
    195                     (array) $paths
     192                    $paths
    196193                );
    197194            }
     
    202199        $first = $prefix[0];
    203200        if (!isset($this->prefixesPsr0[$first][$prefix])) {
    204             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
     201            $this->prefixesPsr0[$first][$prefix] = $paths;
    205202
    206203            return;
     
    208205        if ($prepend) {
    209206            $this->prefixesPsr0[$first][$prefix] = array_merge(
    210                 (array) $paths,
     207                $paths,
    211208                $this->prefixesPsr0[$first][$prefix]
    212209            );
     
    214211            $this->prefixesPsr0[$first][$prefix] = array_merge(
    215212                $this->prefixesPsr0[$first][$prefix],
    216                 (array) $paths
     213                $paths
    217214            );
    218215        }
     
    223220     * appending or prepending to the ones previously set for this namespace.
    224221     *
    225      * @param string          $prefix  The prefix/namespace, with trailing '\\'
    226      * @param string[]|string $paths   The PSR-4 base directories
    227      * @param bool            $prepend Whether to prepend the directories
     222     * @param string          $prefix  The prefix/namespace, with trailing '\\'
     223     * @param |string $paths   The PSR-4 base directories
     224     * @param bool            $prepend Whether to prepend the directories
    228225     *
    229226     * @throws \InvalidArgumentException
     
    233230    public function addPsr4($prefix, $paths, $prepend = false)
    234231    {
     232
    235233        if (!$prefix) {
    236234            // Register directories for the root namespace.
    237235            if ($prepend) {
    238236                $this->fallbackDirsPsr4 = array_merge(
    239                     (array) $paths,
     237                    $paths,
    240238                    $this->fallbackDirsPsr4
    241239                );
     
    243241                $this->fallbackDirsPsr4 = array_merge(
    244242                    $this->fallbackDirsPsr4,
    245                     (array) $paths
     243                    $paths
    246244                );
    247245            }
     
    253251            }
    254252            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
    255             $this->prefixDirsPsr4[$prefix] = (array) $paths;
     253            $this->prefixDirsPsr4[$prefix] = $paths;
    256254        } elseif ($prepend) {
    257255            // Prepend directories for an already registered namespace.
    258256            $this->prefixDirsPsr4[$prefix] = array_merge(
    259                 (array) $paths,
     257                $paths,
    260258                $this->prefixDirsPsr4[$prefix]
    261259            );
     
    264262            $this->prefixDirsPsr4[$prefix] = array_merge(
    265263                $this->prefixDirsPsr4[$prefix],
    266                 (array) $paths
     264                $paths
    267265            );
    268266        }
     
    273271     * replacing any others previously set for this prefix.
    274272     *
    275      * @param string          $prefix The prefix
    276      * @param string[]|string $paths  The PSR-0 base directories
     273     * @param string          $prefix The prefix
     274     * @param |string $paths  The PSR-0 base directories
    277275     *
    278276     * @return void
     
    291289     * replacing any others previously set for this namespace.
    292290     *
    293      * @param string          $prefix The prefix/namespace, with trailing '\\'
    294      * @param string[]|string $paths  The PSR-4 base directories
     291     * @param string          $prefix The prefix/namespace, with trailing '\\'
     292     * @param |string $paths  The PSR-4 base directories
    295293     *
    296294     * @throws \InvalidArgumentException
     
    426424    {
    427425        if ($file = $this->findFile($class)) {
    428             includeFile($file);
     426            $includeFile = self::$includeFile;
     427            $includeFile($file);
    429428
    430429            return true;
     
    477476
    478477    /**
    479      * Returns the currently registered loaders indexed by their corresponding vendor directories.
    480      *
    481      * @return self[]
     478     * Returns the currently registered loaders ed by their corresponding vendor directories.
     479     *
     480     * @return
    482481     */
    483482    public static function getRegisteredLoaders()
     
    556555        return false;
    557556    }
     557
     558
     559
     560
     561
     562
     563
     564
     565
     566
     567
     568
     569
     570
     571
     572
     573
     574
     575
     576
     577
     578
    558579}
    559 
    560 /**
    561  * Scope isolated include.
    562  *
    563  * Prevents access to $this/self from included files.
    564  *
    565  * @param  string $file
    566  * @return void
    567  * @private
    568  */
    569 function includeFile($file)
    570 {
    571     include $file;
    572 }
  • asin-smart-links/trunk/vendor/composer/InstalledVersions.php

    r2911530 r2928016  
    2222 *
    2323 * To require its presence, you can require `composer-runtime-api ^2.0`
     24
     25
    2426 */
    2527class InstalledVersions
     
    2729    /**
    2830     * @var mixed[]|null
    29      * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
     31     * @psalm-var array{root: array{name: string, }>}|array{}|null
    3032     */
    3133    private static $installed;
     
    3840    /**
    3941     * @var array[]
    40      * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     42     * @psalm-var array<string, array{root: array{name: string, }>}>
    4143     */
    4244    private static $installedByVendor = array();
     
    9799        foreach (self::getInstalled() as $installed) {
    98100            if (isset($installed['versions'][$packageName])) {
    99                 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
     101                return $includeDevRequirements || ;
    100102            }
    101103        }
     
    118120    public static function satisfies(VersionParser $parser, $packageName, $constraint)
    119121    {
    120         $constraint = $parser->parseConstraints($constraint);
     122        $constraint = $parser->parseConstraints($constraint);
    121123        $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
    122124
     
    242244    /**
    243245     * @return array
    244      * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
     246     * @psalm-return array{name: string, }
    245247     */
    246248    public static function getRootPackage()
     
    256258     * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
    257259     * @return array[]
    258      * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
     260     * @psalm-return array{root: array{name: string, }>}
    259261     */
    260262    public static function getRawData()
     
    279281     *
    280282     * @return array[]
    281      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     283     * @psalm-return list<array{root: array{name: string, }>}>
    282284     */
    283285    public static function getAllRawData()
     
    302304     * @return void
    303305     *
    304      * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
     306     * @psalm-param array{root: array{name: string, }>} $data
    305307     */
    306308    public static function reload($data)
     
    312314    /**
    313315     * @return array[]
    314      * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
     316     * @psalm-return list<array{root: array{name: string, }>}>
    315317     */
    316318    private static function getInstalled()
     
    327329                    $installed[] = self::$installedByVendor[$vendorDir];
    328330                } elseif (is_file($vendorDir.'/composer/installed.php')) {
    329                     $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
     331                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     332                    $required = require $vendorDir.'/composer/installed.php';
     333                    $installed[] = self::$installedByVendor[$vendorDir] = $required;
    330334                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    331335                        self::$installed = $installed[count($installed) - 1];
     
    339343            // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
    340344            if (substr(__DIR__, -8, 1) !== 'C') {
    341                 self::$installed = require __DIR__ . '/installed.php';
     345                /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
     346                $required = require __DIR__ . '/installed.php';
     347                self::$installed = $required;
    342348            } else {
    343349                self::$installed = array();
    344350            }
    345351        }
    346         $installed[] = self::$installed;
     352
     353        if (self::$installed !== array()) {
     354            $installed[] = self::$installed;
     355        }
    347356
    348357        return $installed;
  • asin-smart-links/trunk/vendor/composer/autoload_classmap.php

    r2911530 r2928016  
    33// autoload_classmap.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
  • asin-smart-links/trunk/vendor/composer/autoload_files.php

    r2911530 r2928016  
    33// autoload_files.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
     
    1414    '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php',
    1515    'ef65a1626449d89d0811cf9befce46f0' => $vendorDir . '/illuminate/events/functions.php',
    16     '28cd8f460261615c0915396719f9e5aa' => $baseDir . '/Utils/dev.php',
    17     '93c05233cdc31acae58d99252e919f26' => $baseDir . '/Utils/functions.php',
     16    '' => $baseDir . '/Utils/dev.php',
     17    '' => $baseDir . '/Utils/functions.php',
    1818);
  • asin-smart-links/trunk/vendor/composer/autoload_namespaces.php

    r2911530 r2928016  
    33// autoload_namespaces.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
  • asin-smart-links/trunk/vendor/composer/autoload_psr4.php

    r2911530 r2928016  
    33// autoload_psr4.php @generated by Composer
    44
    5 $vendorDir = dirname(dirname(__FILE__));
     5$vendorDir = dirname();
    66$baseDir = dirname($vendorDir);
    77
     
    1818    'Jenssegers\\Blade\\' => array($vendorDir . '/jenssegers/blade/src'),
    1919    'Illuminate\\View\\' => array($vendorDir . '/illuminate/view'),
    20     'Illuminate\\Support\\' => array($vendorDir . '/illuminate/collections', $vendorDir . '/illuminate/macroable', $vendorDir . '/illuminate/support'),
     20    'Illuminate\\Support\\' => array($vendorDir . '/illuminate/', $vendorDir . '/illuminate/support'),
    2121    'Illuminate\\Pipeline\\' => array($vendorDir . '/illuminate/pipeline'),
    2222    'Illuminate\\Filesystem\\' => array($vendorDir . '/illuminate/filesystem'),
  • asin-smart-links/trunk/vendor/composer/autoload_real.php

    r2911530 r2928016  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3
     5class ComposerAutoloaderInit
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3', 'loadClassLoader'), true, true);
    28         self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit2333652b5ec3b5cdf3b8126057099db3', 'loadClassLoader'));
     27        spl_autoload_register(array('ComposerAutoloaderInit', 'loadClassLoader'), true, true);
     28        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname());
     29        spl_autoload_unregister(array('ComposerAutoloaderInit', 'loadClassLoader'));
    3030
    31         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    32         if ($useStaticLoader) {
    33             require __DIR__ . '/autoload_static.php';
    34 
    35             call_user_func(\Composer\Autoload\ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::getInitializer($loader));
    36         } else {
    37             $map = require __DIR__ . '/autoload_namespaces.php';
    38             foreach ($map as $namespace => $path) {
    39                 $loader->set($namespace, $path);
    40             }
    41 
    42             $map = require __DIR__ . '/autoload_psr4.php';
    43             foreach ($map as $namespace => $path) {
    44                 $loader->setPsr4($namespace, $path);
    45             }
    46 
    47             $classMap = require __DIR__ . '/autoload_classmap.php';
    48             if ($classMap) {
    49                 $loader->addClassMap($classMap);
    50             }
    51         }
     31        require __DIR__ . '/autoload_static.php';
     32        call_user_func(\Composer\Autoload\ComposerStaticInitd753b489e0db09e602bf922b7f37353f::getInitializer($loader));
    5233
    5334        $loader->register(true);
    5435
    55         if ($useStaticLoader) {
    56             $includeFiles = Composer\Autoload\ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$files;
    57         } else {
    58             $includeFiles = require __DIR__ . '/autoload_files.php';
    59         }
    60         foreach ($includeFiles as $fileIdentifier => $file) {
    61             composerRequire2333652b5ec3b5cdf3b8126057099db3($fileIdentifier, $file);
     36        $filesToLoad = \Composer\Autoload\ComposerStaticInitd753b489e0db09e602bf922b7f37353f::$files;
     37        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
     38            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
     39                $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
     40
     41                require $file;
     42            }
     43        }, null, null);
     44        foreach ($filesToLoad as $fileIdentifier => $file) {
     45            $requireFile($fileIdentifier, $file);
    6246        }
    6347
     
    6549    }
    6650}
    67 
    68 /**
    69  * @param string $fileIdentifier
    70  * @param string $file
    71  * @return void
    72  */
    73 function composerRequire2333652b5ec3b5cdf3b8126057099db3($fileIdentifier, $file)
    74 {
    75     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
    76         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    77 
    78         require $file;
    79     }
    80 }
  • asin-smart-links/trunk/vendor/composer/autoload_static.php

    r2911530 r2928016  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3
     7class ComposerStaticInit
    88{
    99    public static $files = array (
     
    1515        '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php',
    1616        'ef65a1626449d89d0811cf9befce46f0' => __DIR__ . '/..' . '/illuminate/events/functions.php',
    17         '28cd8f460261615c0915396719f9e5aa' => __DIR__ . '/../..' . '/Utils/dev.php',
    18         '93c05233cdc31acae58d99252e919f26' => __DIR__ . '/../..' . '/Utils/functions.php',
     17        '' => __DIR__ . '/../..' . '/Utils/dev.php',
     18        '' => __DIR__ . '/../..' . '/Utils/functions.php',
    1919    );
    2020
     
    115115        'Illuminate\\Support\\' =>
    116116        array (
    117             0 => __DIR__ . '/..' . '/illuminate/collections',
    118             1 => __DIR__ . '/..' . '/illuminate/macroable',
     117            0 => __DIR__ . '/..' . '/illuminate/',
     118            1 => __DIR__ . '/..' . '/illuminate/',
    119119            2 => __DIR__ . '/..' . '/illuminate/support',
    120120        ),
     
    173173    {
    174174        return \Closure::bind(function () use ($loader) {
    175             $loader->prefixLengthsPsr4 = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$prefixLengthsPsr4;
    176             $loader->prefixDirsPsr4 = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$prefixDirsPsr4;
    177             $loader->classMap = ComposerStaticInit2333652b5ec3b5cdf3b8126057099db3::$classMap;
     175            $loader->prefixLengthsPsr4 = ComposerStaticInit::$prefixLengthsPsr4;
     176            $loader->prefixDirsPsr4 = ComposerStaticInit::$prefixDirsPsr4;
     177            $loader->classMap = ComposerStaticInit::$classMap;
    178178
    179179        }, null, ClassLoader::class);
  • asin-smart-links/trunk/vendor/composer/installed.php

    r2911530 r2928016  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => 'dev-main',
    4         'version' => 'dev-main',
    5         'type' => 'template',
     3        'name' => 'sirvelia-labs/asin-smart-links',
     4        'pretty_version' => 'v1.0.1',
     5        'version' => '1.0.1.0',
     6        'reference' => 'd123464435a125c0aee966f04e361bec920bef98',
     7        'type' => 'wordpress-plugin',
    68        'install_path' => __DIR__ . '/../../',
    79        'aliases' => array(),
    8         'reference' => '94dc4ba53589381ee968cfe193f04b0fddc096b2',
    9         'name' => 'sirvelia-labs/asin-smart-international-links',
    1010        'dev' => true,
    1111    ),
     
    1414            'pretty_version' => '2.0.6',
    1515            'version' => '2.0.6.0',
     16
    1617            'type' => 'library',
    1718            'install_path' => __DIR__ . '/../doctrine/inflector',
    1819            'aliases' => array(),
    19             'reference' => 'd9d313a36c872fd6ee06d9a6cbcf713eaa40f024',
    2020            'dev_requirement' => false,
    2121        ),
     
    2323            'pretty_version' => 'v3.5.3',
    2424            'version' => '3.5.3.0',
     25
    2526            'type' => 'library',
    2627            'install_path' => __DIR__ . '/../htmlburger/carbon-fields',
    2728            'aliases' => array(),
    28             'reference' => 'fe95143dc8db6b9b0f17b1a0c4d28aab98008470',
    2929            'dev_requirement' => false,
    3030        ),
     
    3232            'pretty_version' => 'v8.83.27',
    3333            'version' => '8.83.27.0',
     34
    3435            'type' => 'library',
    3536            'install_path' => __DIR__ . '/../illuminate/bus',
    3637            'aliases' => array(),
    37             'reference' => 'd2a8ae4bfd881086e55455e470776358eab27eae',
    3838            'dev_requirement' => false,
    3939        ),
     
    4141            'pretty_version' => 'v8.83.27',
    4242            'version' => '8.83.27.0',
     43
    4344            'type' => 'library',
    4445            'install_path' => __DIR__ . '/../illuminate/collections',
    4546            'aliases' => array(),
    46             'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4',
    4747            'dev_requirement' => false,
    4848        ),
     
    5050            'pretty_version' => 'v8.83.27',
    5151            'version' => '8.83.27.0',
     52
    5253            'type' => 'library',
    5354            'install_path' => __DIR__ . '/../illuminate/container',
    5455            'aliases' => array(),
    55             'reference' => '14062628d05f75047c5a1360b9350028427d568e',
    5656            'dev_requirement' => false,
    5757        ),
     
    5959            'pretty_version' => 'v8.83.27',
    6060            'version' => '8.83.27.0',
     61
    6162            'type' => 'library',
    6263            'install_path' => __DIR__ . '/../illuminate/contracts',
    6364            'aliases' => array(),
    64             'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d',
    6565            'dev_requirement' => false,
    6666        ),
     
    6868            'pretty_version' => 'v8.83.27',
    6969            'version' => '8.83.27.0',
     70
    7071            'type' => 'library',
    7172            'install_path' => __DIR__ . '/../illuminate/events',
    7273            'aliases' => array(),
    73             'reference' => 'b7f06cafb6c09581617f2ca05d69e9b159e5a35d',
    7474            'dev_requirement' => false,
    7575        ),
     
    7777            'pretty_version' => 'v8.83.27',
    7878            'version' => '8.83.27.0',
     79
    7980            'type' => 'library',
    8081            'install_path' => __DIR__ . '/../illuminate/filesystem',
    8182            'aliases' => array(),
    82             'reference' => '73db3e9a233ed587ba54f52ab8580f3c7bc872b2',
    8383            'dev_requirement' => false,
    8484        ),
     
    8686            'pretty_version' => 'v8.83.27',
    8787            'version' => '8.83.27.0',
     88
    8889            'type' => 'library',
    8990            'install_path' => __DIR__ . '/../illuminate/macroable',
    9091            'aliases' => array(),
    91             'reference' => 'aed81891a6e046fdee72edd497f822190f61c162',
    9292            'dev_requirement' => false,
    9393        ),
     
    9595            'pretty_version' => 'v8.83.27',
    9696            'version' => '8.83.27.0',
     97
    9798            'type' => 'library',
    9899            'install_path' => __DIR__ . '/../illuminate/pipeline',
    99100            'aliases' => array(),
    100             'reference' => '23aeff5b26ae4aee3f370835c76bd0f4e93f71d2',
    101101            'dev_requirement' => false,
    102102        ),
     
    104104            'pretty_version' => 'v8.83.27',
    105105            'version' => '8.83.27.0',
     106
    106107            'type' => 'library',
    107108            'install_path' => __DIR__ . '/../illuminate/support',
    108109            'aliases' => array(),
    109             'reference' => '1c79242468d3bbd9a0f7477df34f9647dde2a09b',
    110110            'dev_requirement' => false,
    111111        ),
     
    113113            'pretty_version' => 'v8.83.27',
    114114            'version' => '8.83.27.0',
     115
    115116            'type' => 'library',
    116117            'install_path' => __DIR__ . '/../illuminate/view',
    117118            'aliases' => array(),
    118             'reference' => '5e73eef48d9242532f81fadc14c816a01bfb1388',
    119119            'dev_requirement' => false,
    120120        ),
     
    122122            'pretty_version' => 'v1.4.0',
    123123            'version' => '1.4.0.0',
     124
    124125            'type' => 'library',
    125126            'install_path' => __DIR__ . '/../jenssegers/blade',
    126127            'aliases' => array(),
    127             'reference' => '22a3700e9fc469c19dd1c5e5bd1b9138195e421f',
    128128            'dev_requirement' => false,
    129129        ),
     
    131131            'pretty_version' => 'v0.5.5',
    132132            'version' => '0.5.5.0',
     133
    133134            'type' => 'library',
    134135            'install_path' => __DIR__ . '/../joanrodas/plubo-routes',
    135136            'aliases' => array(),
    136             'reference' => 'd72fa54c4c9545ef3ab5123f76847cd1c5daac43',
    137137            'dev_requirement' => false,
    138138        ),
     
    140140            'pretty_version' => '2.66.0',
    141141            'version' => '2.66.0.0',
     142
    142143            'type' => 'library',
    143144            'install_path' => __DIR__ . '/../nesbot/carbon',
    144145            'aliases' => array(),
    145             'reference' => '496712849902241f04902033b0441b269effe001',
    146146            'dev_requirement' => false,
    147147        ),
     
    149149            'pretty_version' => '1.1.2',
    150150            'version' => '1.1.2.0',
     151
    151152            'type' => 'library',
    152153            'install_path' => __DIR__ . '/../psr/container',
    153154            'aliases' => array(),
    154             'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea',
    155155            'dev_requirement' => false,
    156156        ),
     
    164164            'pretty_version' => '1.0.1',
    165165            'version' => '1.0.1.0',
     166
    166167            'type' => 'library',
    167168            'install_path' => __DIR__ . '/../psr/simple-cache',
    168169            'aliases' => array(),
    169             'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b',
    170             'dev_requirement' => false,
    171         ),
    172         'sirvelia-labs/asin-smart-international-links' => array(
    173             'pretty_version' => 'dev-main',
    174             'version' => 'dev-main',
    175             'type' => 'template',
     170            ',
     171        ,
     172       
     173       
     174            '',
     175            '',
     176            'type' => '',
    176177            'install_path' => __DIR__ . '/../../',
    177178            'aliases' => array(),
    178             'reference' => '94dc4ba53589381ee968cfe193f04b0fddc096b2',
    179179            'dev_requirement' => false,
    180180        ),
     
    182182            'pretty_version' => 'v2.5.2',
    183183            'version' => '2.5.2.0',
     184
    184185            'type' => 'library',
    185186            'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
    186187            'aliases' => array(),
    187             'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
    188188            'dev_requirement' => false,
    189189        ),
     
    191191            'pretty_version' => 'v5.4.21',
    192192            'version' => '5.4.21.0',
     193
    193194            'type' => 'library',
    194195            'install_path' => __DIR__ . '/../symfony/finder',
    195196            'aliases' => array(),
    196             'reference' => '078e9a5e1871fcfe6a5ce421b539344c21afef19',
    197197            'dev_requirement' => false,
    198198        ),
     
    200200            'pretty_version' => 'v1.27.0',
    201201            'version' => '1.27.0.0',
     202
    202203            'type' => 'library',
    203204            'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    204205            'aliases' => array(),
    205             'reference' => '8ad114f6b39e2c98a8b0e3bd907732c207c2b534',
    206206            'dev_requirement' => false,
    207207        ),
     
    209209            'pretty_version' => 'v1.27.0',
    210210            'version' => '1.27.0.0',
     211
    211212            'type' => 'library',
    212213            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
    213214            'aliases' => array(),
    214             'reference' => '7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936',
    215215            'dev_requirement' => false,
    216216        ),
     
    218218            'pretty_version' => 'v5.4.22',
    219219            'version' => '5.4.22.0',
     220
    220221            'type' => 'library',
    221222            'install_path' => __DIR__ . '/../symfony/translation',
    222223            'aliases' => array(),
    223             'reference' => '9a401392f01bc385aa42760eff481d213a0cc2ba',
    224224            'dev_requirement' => false,
    225225        ),
     
    227227            'pretty_version' => 'v2.5.2',
    228228            'version' => '2.5.2.0',
     229
    229230            'type' => 'library',
    230231            'install_path' => __DIR__ . '/../symfony/translation-contracts',
    231232            'aliases' => array(),
    232             'reference' => '136b19dd05cdf0709db6537d058bcab6dd6e2dbe',
    233233            'dev_requirement' => false,
    234234        ),
     
    242242            'pretty_version' => '1.6.1',
    243243            'version' => '1.6.1.0',
     244
    244245            'type' => 'library',
    245246            'install_path' => __DIR__ . '/../voku/portable-ascii',
    246247            'aliases' => array(),
    247             'reference' => '87337c91b9dfacee02452244ee14ab3c43bc485a',
    248248            'dev_requirement' => false,
    249249        ),
Note: See TracChangeset for help on using the changeset viewer.