Plugin Directory

Changeset 2626794


Ignore:
Timestamp:
11/09/2021 03:34:11 PM (4 years ago)
Author:
cocolis
Message:

Changelog

1.0.11

  • Urgent bug fixes
Location:
cocolis
Files:
121 added
8 deleted
12 edited

Legend:

Unmodified
Added
Removed
  • cocolis/trunk/class/wc-cocolis-payment.php

    r2624127 r2626794  
    213213
    214214                if (strpos($order->get_shipping_method(), "with insurance") !== false || strpos($order->get_shipping_method(), "avec assurance") !== false) {
    215                     $birthday = Carbon::parse($order_birthdate)->format(DateTime::ISO8601);
     215                    $birthday = new DateTime($order_birthdate);
     216                    $birthday = $birthday->format(DateTime::ISO8601);
    216217
    217218                    $params = [
     
    227228                        "to_is_flexible" => false,
    228229                        "to_need_help" => true,
    229                         "content_value" => floatval($order->get_subtotal_to_display(true)) * 100,
     230                        "content_value" => ($order->get_total() - $order->get_total_shipping() - $order->get_shipping_tax()) * 100,
    230231                        "with_insurance" => true,
    231232                        "to_pickup_date" => $to_date,
     
    373374    {
    374375        $post_id = isset($_GET['post']) ? $_GET['post'] : false;
    375         $order = wc_get_order($post_id);
    376 
    377         if ($order->has_shipping_method('cocolis')) {
    378             add_meta_box(
    379                 'custom_order_meta_box',
    380                 __('Manage my delivery with Cocolis', 'cocolis'),
    381                 array($this, 'custom_metabox_content'),
    382                 'shop_order',
    383                 'normal',
    384                 'default'
    385             );
     376        if ($post_id) {
     377            $order = wc_get_order($post_id);
     378            if ($order) {
     379                if ($order->has_shipping_method('cocolis')) {
     380                    add_meta_box(
     381                        'custom_order_meta_box',
     382                        __('Manage my delivery with Cocolis', 'cocolis'),
     383                        array($this, 'custom_metabox_content'),
     384                        'shop_order',
     385                        'normal',
     386                        'default'
     387                    );
     388                }
     389            }
    386390        }
    387391    }
  • cocolis/trunk/readme.txt

    r2624127 r2626794  
    22Contributors: cocolis
    33Tags: woocommerce, delivery, cocolis, livraison
    4 Stable tag: 1.0.10
     4Stable tag: 1.0.11
    55Requires at least: 4.7
    66Tested up to: 5.6.2
     
    5555
    5656== Changelog ==
     57= 1.0.11 =
     58* Urgent bug fixes
     59
    5760= 1.0.10 =
    5861* Important bug fixes
  • cocolis/trunk/vendor/composer/ClassLoader.php

    r2624245 r2626794  
    3838 * @author Fabien Potencier <fabien@symfony.com>
    3939 * @author Jordi Boggiano <j.boggiano@seld.be>
    40  * @see    http://www.php-fig.org/psr/psr-0/
    41  * @see    http://www.php-fig.org/psr/psr-4/
     40 * @see    https://www.php-fig.org/psr/psr-0/
     41 * @see    https://www.php-fig.org/psr/psr-4/
    4242 */
    4343class ClassLoader
    4444{
     45    private $vendorDir;
     46
    4547    // PSR-4
    4648    private $prefixLengthsPsr4 = array();
     
    5759    private $missingClasses = array();
    5860    private $apcuPrefix;
     61
     62    private static $registeredLoaders = array();
     63
     64    public function __construct($vendorDir = null)
     65    {
     66        $this->vendorDir = $vendorDir;
     67    }
    5968
    6069    public function getPrefixes()
     
    301310    {
    302311        spl_autoload_register(array($this, 'loadClass'), true, $prepend);
     312
     313        if (null === $this->vendorDir) {
     314            return;
     315        }
     316
     317        if ($prepend) {
     318            self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
     319        } else {
     320            unset(self::$registeredLoaders[$this->vendorDir]);
     321            self::$registeredLoaders[$this->vendorDir] = $this;
     322        }
    303323    }
    304324
     
    309329    {
    310330        spl_autoload_unregister(array($this, 'loadClass'));
     331
     332        if (null !== $this->vendorDir) {
     333            unset(self::$registeredLoaders[$this->vendorDir]);
     334        }
    311335    }
    312336
     
    315339     *
    316340     * @param  string    $class The name of the class
    317      * @return bool|null True if loaded, null otherwise
     341     * @return true|null True if loaded, null otherwise
    318342     */
    319343    public function loadClass($class)
     
    324348            return true;
    325349        }
     350
     351        return null;
    326352    }
    327353
     
    366392
    367393        return $file;
     394    }
     395
     396    /**
     397     * Returns the currently registered loaders indexed by their corresponding vendor directories.
     398     *
     399     * @return self[]
     400     */
     401    public static function getRegisteredLoaders()
     402    {
     403        return self::$registeredLoaders;
    368404    }
    369405
  • cocolis/trunk/vendor/composer/autoload_classmap.php

    r2624245 r2626794  
    77
    88return array(
     9    'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
    910);
  • cocolis/trunk/vendor/composer/autoload_namespaces.php

    r2624245 r2626794  
    77
    88return array(
    9     'UpdateHelper\\' => array($vendorDir . '/kylekatarnls/update-helper/src'),
    109);
  • cocolis/trunk/vendor/composer/autoload_psr4.php

    r2624245 r2626794  
    77
    88return array(
    9     'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
    10     'Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'),
    119    'PrestaShop\\Module\\Cocolis\\' => array($baseDir . '/src'),
    1210    'Cocolis\\Api\\' => array($vendorDir . '/cocolis/php/src'),
    13     '' => array($vendorDir . '/nesbot/carbon/src'),
    1411);
  • cocolis/trunk/vendor/composer/autoload_real.php

    r2624245 r2626794  
    2323        }
    2424
     25        require __DIR__ . '/platform_check.php';
     26
    2527        spl_autoload_register(array('ComposerAutoloaderInit322f102fd9e3e13154594cc51287238b', 'loadClassLoader'), true, true);
    26         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
     28        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    2729        spl_autoload_unregister(array('ComposerAutoloaderInit322f102fd9e3e13154594cc51287238b', 'loadClassLoader'));
    2830
    2931        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
    3032        if ($useStaticLoader) {
    31             require_once __DIR__ . '/autoload_static.php';
     33            require __DIR__ . '/autoload_static.php';
    3234
    3335            call_user_func(\Composer\Autoload\ComposerStaticInit322f102fd9e3e13154594cc51287238b::getInitializer($loader));
     
    5153        $loader->register(true);
    5254
    53         if ($useStaticLoader) {
    54             $includeFiles = Composer\Autoload\ComposerStaticInit322f102fd9e3e13154594cc51287238b::$files;
    55         } else {
    56             $includeFiles = require __DIR__ . '/autoload_files.php';
    57         }
    58         foreach ($includeFiles as $fileIdentifier => $file) {
    59             composerRequire322f102fd9e3e13154594cc51287238b($fileIdentifier, $file);
    60         }
    61 
    6255        return $loader;
    6356    }
    6457}
    65 
    66 function composerRequire322f102fd9e3e13154594cc51287238b($fileIdentifier, $file)
    67 {
    68     if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
    69         require $file;
    70 
    71         $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
    72     }
    73 }
  • cocolis/trunk/vendor/composer/autoload_static.php

    r2624245 r2626794  
    77class ComposerStaticInit322f102fd9e3e13154594cc51287238b
    88{
    9     public static $files = array (
    10         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    11     );
    12 
    139    public static $prefixLengthsPsr4 = array (
    14         'S' =>
    15         array (
    16             'Symfony\\Polyfill\\Mbstring\\' => 26,
    17             'Symfony\\Component\\Translation\\' => 30,
    18         ),
    1910        'P' =>
    2011        array (
     
    2819
    2920    public static $prefixDirsPsr4 = array (
    30         'Symfony\\Polyfill\\Mbstring\\' =>
    31         array (
    32             0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
    33         ),
    34         'Symfony\\Component\\Translation\\' =>
    35         array (
    36             0 => __DIR__ . '/..' . '/symfony/translation',
    37         ),
    3821        'PrestaShop\\Module\\Cocolis\\' =>
    3922        array (
     
    4629    );
    4730
    48     public static $fallbackDirsPsr4 = array (
    49         0 => __DIR__ . '/..' . '/nesbot/carbon/src',
    50     );
    51 
    52     public static $prefixesPsr0 = array (
    53         'U' =>
    54         array (
    55             'UpdateHelper\\' =>
    56             array (
    57                 0 => __DIR__ . '/..' . '/kylekatarnls/update-helper/src',
    58             ),
    59         ),
     31    public static $classMap = array (
     32        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
    6033    );
    6134
     
    6538            $loader->prefixLengthsPsr4 = ComposerStaticInit322f102fd9e3e13154594cc51287238b::$prefixLengthsPsr4;
    6639            $loader->prefixDirsPsr4 = ComposerStaticInit322f102fd9e3e13154594cc51287238b::$prefixDirsPsr4;
    67             $loader->fallbackDirsPsr4 = ComposerStaticInit322f102fd9e3e13154594cc51287238b::$fallbackDirsPsr4;
    68             $loader->prefixesPsr0 = ComposerStaticInit322f102fd9e3e13154594cc51287238b::$prefixesPsr0;
     40            $loader->classMap = ComposerStaticInit322f102fd9e3e13154594cc51287238b::$classMap;
    6941
    7042        }, null, ClassLoader::class);
  • cocolis/trunk/vendor/composer/installed.json

    r2624245 r2626794  
    1 [
    2     {
    3         "name": "cocolis/php",
    4         "version": "dev-develop",
    5         "version_normalized": "dev-develop",
    6         "source": {
    7             "type": "git",
    8             "url": "https://github.com/Cocolis-1/cocolis-php.git",
    9             "reference": "94098bda9003d423ff6cb9ba68e56f383c09fbc0"
    10         },
    11         "dist": {
    12             "type": "zip",
    13             "url": "https://api.github.com/repos/Cocolis-1/cocolis-php/zipball/94098bda9003d423ff6cb9ba68e56f383c09fbc0",
    14             "reference": "94098bda9003d423ff6cb9ba68e56f383c09fbc0",
    15             "shasum": ""
    16         },
    17         "require": {
    18             "php": ">=5.3.0"
    19         },
    20         "require-dev": {
    21             "friendsofphp/php-cs-fixer": "^2.17@dev",
    22             "kint-php/kint": "dev-master",
    23             "php-vcr/php-vcr": "dev-master",
    24             "phpunit/php-code-coverage": "^9.2",
    25             "phpunit/phpunit": "^9.4"
    26         },
    27         "time": "2021-09-16T06:43:59+00:00",
    28         "type": "package",
    29         "installation-source": "source",
    30         "autoload": {
    31             "psr-4": {
    32                 "Cocolis\\Api\\": "src/"
    33             }
    34         },
    35         "notification-url": "https://packagist.org/downloads/",
    36         "license": [
    37             "MIT"
    38         ],
    39         "authors": [
    40             {
    41                 "name": "Sébastien Fieloux",
    42                 "email": "sebastien.fieloux@gmail.com",
    43                 "homepage": "https://www.sebfie.com",
    44                 "role": "Developer"
     1{
     2    "packages": [
     3        {
     4            "name": "cocolis/php",
     5            "version": "dev-develop",
     6            "version_normalized": "dev-develop",
     7            "source": {
     8                "type": "git",
     9                "url": "https://github.com/Cocolis-1/cocolis-php.git",
     10                "reference": "94098bda9003d423ff6cb9ba68e56f383c09fbc0"
    4511            },
    46             {
    47                 "name": "Alexandre Bettan",
    48                 "email": "contact@alexandre.business",
    49                 "role": "Developer"
    50             }
    51         ],
    52         "description": "PHP library to use Cocolis.fr API",
    53         "homepage": "https://www.cocolis.fr",
    54         "keywords": [
    55             "cocolis",
    56             "php"
    57         ],
    58         "support": {
    59             "issues": "https://github.com/Cocolis-1/cocolis-php/issues",
    60             "source": "https://github.com/Cocolis-1/cocolis-php/tree/develop"
     12            "dist": {
     13                "type": "zip",
     14                "url": "https://api.github.com/repos/Cocolis-1/cocolis-php/zipball/94098bda9003d423ff6cb9ba68e56f383c09fbc0",
     15                "reference": "94098bda9003d423ff6cb9ba68e56f383c09fbc0",
     16                "shasum": ""
     17            },
     18            "require": {
     19                "php": ">=5.3.0"
     20            },
     21            "require-dev": {
     22                "friendsofphp/php-cs-fixer": "^2.17@dev",
     23                "kint-php/kint": "dev-master",
     24                "php-vcr/php-vcr": "dev-master",
     25                "phpunit/php-code-coverage": "^9.2",
     26                "phpunit/phpunit": "^9.4"
     27            },
     28            "time": "2021-09-16T06:43:59+00:00",
     29            "type": "package",
     30            "installation-source": "source",
     31            "autoload": {
     32                "psr-4": {
     33                    "Cocolis\\Api\\": "src/"
     34                }
     35            },
     36            "notification-url": "https://packagist.org/downloads/",
     37            "license": [
     38                "MIT"
     39            ],
     40            "authors": [
     41                {
     42                    "name": "Sébastien Fieloux",
     43                    "email": "sebastien.fieloux@gmail.com",
     44                    "homepage": "https://www.sebfie.com",
     45                    "role": "Developer"
     46                },
     47                {
     48                    "name": "Alexandre Bettan",
     49                    "email": "contact@alexandre.business",
     50                    "role": "Developer"
     51                }
     52            ],
     53            "description": "PHP library to use Cocolis.fr API",
     54            "homepage": "https://www.cocolis.fr",
     55            "keywords": [
     56                "cocolis",
     57                "php"
     58            ],
     59            "support": {
     60                "issues": "https://github.com/Cocolis-1/cocolis-php/issues",
     61                "source": "https://github.com/Cocolis-1/cocolis-php/tree/develop"
     62            },
     63            "install-path": "../cocolis/php"
    6164        }
    62     },
    63     {
    64         "name": "kylekatarnls/update-helper",
    65         "version": "1.2.1",
    66         "version_normalized": "1.2.1.0",
    67         "source": {
    68             "type": "git",
    69             "url": "https://github.com/kylekatarnls/update-helper.git",
    70             "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
    71         },
    72         "dist": {
    73             "type": "zip",
    74             "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
    75             "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
    76             "shasum": ""
    77         },
    78         "require": {
    79             "composer-plugin-api": "^1.1.0 || ^2.0.0",
    80             "php": ">=5.3.0"
    81         },
    82         "require-dev": {
    83             "codeclimate/php-test-reporter": "dev-master",
    84             "composer/composer": "2.0.x-dev || ^2.0.0-dev",
    85             "phpunit/phpunit": ">=4.8.35 <6.0"
    86         },
    87         "time": "2020-04-07T20:44:10+00:00",
    88         "type": "composer-plugin",
    89         "extra": {
    90             "class": "UpdateHelper\\ComposerPlugin"
    91         },
    92         "installation-source": "dist",
    93         "autoload": {
    94             "psr-0": {
    95                 "UpdateHelper\\": "src/"
    96             }
    97         },
    98         "notification-url": "https://packagist.org/downloads/",
    99         "license": [
    100             "MIT"
    101         ],
    102         "authors": [
    103             {
    104                 "name": "Kyle",
    105                 "email": "kylekatarnls@gmail.com"
    106             }
    107         ],
    108         "description": "Update helper",
    109         "funding": [
    110             {
    111                 "url": "https://github.com/kylekatarnls",
    112                 "type": "github"
    113             },
    114             {
    115                 "url": "https://opencollective.com/Carbon",
    116                 "type": "open_collective"
    117             },
    118             {
    119                 "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
    120                 "type": "tidelift"
    121             }
    122         ]
    123     },
    124     {
    125         "name": "nesbot/carbon",
    126         "version": "1.39.1",
    127         "version_normalized": "1.39.1.0",
    128         "source": {
    129             "type": "git",
    130             "url": "https://github.com/briannesbitt/Carbon.git",
    131             "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
    132         },
    133         "dist": {
    134             "type": "zip",
    135             "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
    136             "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
    137             "shasum": ""
    138         },
    139         "require": {
    140             "kylekatarnls/update-helper": "^1.1",
    141             "php": ">=5.3.9",
    142             "symfony/translation": "~2.6 || ~3.0 || ~4.0"
    143         },
    144         "require-dev": {
    145             "composer/composer": "^1.2",
    146             "friendsofphp/php-cs-fixer": "~2",
    147             "phpunit/phpunit": "^4.8.35 || ^5.7"
    148         },
    149         "time": "2019-10-14T05:51:36+00:00",
    150         "bin": [
    151             "bin/upgrade-carbon"
    152         ],
    153         "type": "library",
    154         "extra": {
    155             "update-helper": "Carbon\\Upgrade",
    156             "laravel": {
    157                 "providers": [
    158                     "Carbon\\Laravel\\ServiceProvider"
    159                 ]
    160             }
    161         },
    162         "installation-source": "dist",
    163         "autoload": {
    164             "psr-4": {
    165                 "": "src/"
    166             }
    167         },
    168         "notification-url": "https://packagist.org/downloads/",
    169         "license": [
    170             "MIT"
    171         ],
    172         "authors": [
    173             {
    174                 "name": "Brian Nesbitt",
    175                 "email": "brian@nesbot.com",
    176                 "homepage": "http://nesbot.com"
    177             }
    178         ],
    179         "description": "A simple API extension for DateTime.",
    180         "homepage": "http://carbon.nesbot.com",
    181         "keywords": [
    182             "date",
    183             "datetime",
    184             "time"
    185         ]
    186     },
    187     {
    188         "name": "symfony/polyfill-mbstring",
    189         "version": "v1.19.0",
    190         "version_normalized": "1.19.0.0",
    191         "source": {
    192             "type": "git",
    193             "url": "https://github.com/symfony/polyfill-mbstring.git",
    194             "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce"
    195         },
    196         "dist": {
    197             "type": "zip",
    198             "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b5f7b932ee6fa802fc792eabd77c4c88084517ce",
    199             "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce",
    200             "shasum": ""
    201         },
    202         "require": {
    203             "php": ">=5.3.3"
    204         },
    205         "suggest": {
    206             "ext-mbstring": "For best performance"
    207         },
    208         "time": "2020-10-23T09:01:57+00:00",
    209         "type": "library",
    210         "extra": {
    211             "branch-alias": {
    212                 "dev-main": "1.19-dev"
    213             },
    214             "thanks": {
    215                 "name": "symfony/polyfill",
    216                 "url": "https://github.com/symfony/polyfill"
    217             }
    218         },
    219         "installation-source": "source",
    220         "autoload": {
    221             "psr-4": {
    222                 "Symfony\\Polyfill\\Mbstring\\": ""
    223             },
    224             "files": [
    225                 "bootstrap.php"
    226             ]
    227         },
    228         "notification-url": "https://packagist.org/downloads/",
    229         "license": [
    230             "MIT"
    231         ],
    232         "authors": [
    233             {
    234                 "name": "Nicolas Grekas",
    235                 "email": "p@tchwork.com"
    236             },
    237             {
    238                 "name": "Symfony Community",
    239                 "homepage": "https://symfony.com/contributors"
    240             }
    241         ],
    242         "description": "Symfony polyfill for the Mbstring extension",
    243         "homepage": "https://symfony.com",
    244         "keywords": [
    245             "compatibility",
    246             "mbstring",
    247             "polyfill",
    248             "portable",
    249             "shim"
    250         ],
    251         "funding": [
    252             {
    253                 "url": "https://symfony.com/sponsor",
    254                 "type": "custom"
    255             },
    256             {
    257                 "url": "https://github.com/fabpot",
    258                 "type": "github"
    259             },
    260             {
    261                 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    262                 "type": "tidelift"
    263             }
    264         ]
    265     },
    266     {
    267         "name": "symfony/translation",
    268         "version": "3.4.x-dev",
    269         "version_normalized": "3.4.9999999.9999999-dev",
    270         "source": {
    271             "type": "git",
    272             "url": "https://github.com/symfony/translation.git",
    273             "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88"
    274         },
    275         "dist": {
    276             "type": "zip",
    277             "url": "https://api.github.com/repos/symfony/translation/zipball/be83ee6c065cb32becdb306ba61160d598b1ce88",
    278             "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88",
    279             "shasum": ""
    280         },
    281         "require": {
    282             "php": "^5.5.9|>=7.0.8",
    283             "symfony/polyfill-mbstring": "~1.0"
    284         },
    285         "conflict": {
    286             "symfony/config": "<2.8",
    287             "symfony/dependency-injection": "<3.4",
    288             "symfony/yaml": "<3.4"
    289         },
    290         "require-dev": {
    291             "psr/log": "~1.0",
    292             "symfony/config": "~2.8|~3.0|~4.0",
    293             "symfony/dependency-injection": "~3.4|~4.0",
    294             "symfony/finder": "~2.8|~3.0|~4.0",
    295             "symfony/http-kernel": "~3.4|~4.0",
    296             "symfony/intl": "^2.8.18|^3.2.5|~4.0",
    297             "symfony/var-dumper": "~3.4|~4.0",
    298             "symfony/yaml": "~3.4|~4.0"
    299         },
    300         "suggest": {
    301             "psr/log-implementation": "To use logging capability in translator",
    302             "symfony/config": "",
    303             "symfony/yaml": ""
    304         },
    305         "time": "2020-10-24T10:57:07+00:00",
    306         "type": "library",
    307         "installation-source": "source",
    308         "autoload": {
    309             "psr-4": {
    310                 "Symfony\\Component\\Translation\\": ""
    311             },
    312             "exclude-from-classmap": [
    313                 "/Tests/"
    314             ]
    315         },
    316         "notification-url": "https://packagist.org/downloads/",
    317         "license": [
    318             "MIT"
    319         ],
    320         "authors": [
    321             {
    322                 "name": "Fabien Potencier",
    323                 "email": "fabien@symfony.com"
    324             },
    325             {
    326                 "name": "Symfony Community",
    327                 "homepage": "https://symfony.com/contributors"
    328             }
    329         ],
    330         "description": "Symfony Translation Component",
    331         "homepage": "https://symfony.com",
    332         "funding": [
    333             {
    334                 "url": "https://symfony.com/sponsor",
    335                 "type": "custom"
    336             },
    337             {
    338                 "url": "https://github.com/fabpot",
    339                 "type": "github"
    340             },
    341             {
    342                 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
    343                 "type": "tidelift"
    344             }
    345         ]
    346     }
    347 ]
     65    ],
     66    "dev": true,
     67    "dev-package-names": []
     68}
  • cocolis/trunk/vendor/composer/installed.php

    r2624127 r2626794  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '1.0.10',
    4         'version' => '1.0.10.0',
     3        'pretty_version' => '1.0.11',
     4        'version' => '1.0.11.0',
    55        'type' => 'wordpress-plugin',
    66        'install_path' => __DIR__ . '/../../../',
     
    1616            'type' => 'package',
    1717            'install_path' => __DIR__ . '/../cocolis/php',
    18             'aliases' => array(
    19                 0 => '9999999-dev',
    20             ),
     18            'aliases' => array(),
    2119            'reference' => '94098bda9003d423ff6cb9ba68e56f383c09fbc0',
    2220            'dev_requirement' => false,
    2321        ),
    2422        'cocolis/woocommerce' => array(
    25             'pretty_version' => '1.0.10',
    26             'version' => '1.0.10.0',
     23            'pretty_version' => '1.0.11',
     24            'version' => '1.0.11.0',
    2725            'type' => 'wordpress-plugin',
    2826            'install_path' => __DIR__ . '/../../../',
     
    3129            'dev_requirement' => false,
    3230        ),
    33         'nesbot/carbon' => array(
    34             'pretty_version' => 'dev-master',
    35             'version' => 'dev-master',
    36             'type' => 'library',
    37             'install_path' => __DIR__ . '/../nesbot/carbon',
    38             'aliases' => array(
    39                 0 => '2.x-dev',
    40             ),
    41             'reference' => '2d363e8ae89bde9c7625c9ec108cf7aa65921bed',
    42             'dev_requirement' => false,
    43         ),
    44         'symfony/deprecation-contracts' => array(
    45             'pretty_version' => 'dev-main',
    46             'version' => 'dev-main',
    47             'type' => 'library',
    48             'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
    49             'aliases' => array(
    50                 0 => '2.5.x-dev',
    51             ),
    52             'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8',
    53             'dev_requirement' => false,
    54         ),
    55         'symfony/polyfill-mbstring' => array(
    56             'pretty_version' => 'dev-main',
    57             'version' => 'dev-main',
    58             'type' => 'library',
    59             'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
    60             'aliases' => array(
    61                 0 => '1.23.x-dev',
    62             ),
    63             'reference' => '344e456152e22a1bce3048c6c311059ea14bde47',
    64             'dev_requirement' => false,
    65         ),
    66         'symfony/polyfill-php80' => array(
    67             'pretty_version' => 'dev-main',
    68             'version' => 'dev-main',
    69             'type' => 'library',
    70             'install_path' => __DIR__ . '/../symfony/polyfill-php80',
    71             'aliases' => array(
    72                 0 => '1.23.x-dev',
    73             ),
    74             'reference' => '57b712b08eddb97c762a8caa32c84e037892d2e9',
    75             'dev_requirement' => false,
    76         ),
    77         'symfony/translation' => array(
    78             'pretty_version' => '5.4.x-dev',
    79             'version' => '5.4.9999999.9999999-dev',
    80             'type' => 'library',
    81             'install_path' => __DIR__ . '/../symfony/translation',
    82             'aliases' => array(),
    83             'reference' => '815ec5d1c49358e253bb7160b0584d4f9db9ea5f',
    84             'dev_requirement' => false,
    85         ),
    86         'symfony/translation-contracts' => array(
    87             'pretty_version' => '2.5.x-dev',
    88             'version' => '2.5.9999999.9999999-dev',
    89             'type' => 'library',
    90             'install_path' => __DIR__ . '/../symfony/translation-contracts',
    91             'aliases' => array(),
    92             'reference' => '6e2aa82901f45c38761ba61c1082584ae6f5dbda',
    93             'dev_requirement' => false,
    94         ),
    95         'symfony/translation-implementation' => array(
    96             'dev_requirement' => false,
    97             'provided' => array(
    98                 0 => '2.3',
    99             ),
    100         ),
    10131    ),
    10232);
  • cocolis/trunk/vendor/composer/platform_check.php

    r2624127 r2626794  
    55$issues = array();
    66
    7 if (!(PHP_VERSION_ID >= 70205)) {
    8     $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.';
     7if (!(PHP_VERSION_ID >= 50300)) {
     8    $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.';
    99}
    1010
  • cocolis/trunk/wc-cocolis-shipping.php

    r2624127 r2626794  
    77 * Author:  Cocolis.fr
    88 * Author URI: https://www.cocolis.fr
    9  * Version: 1.0.10
     9 * Version: 1.0.11
    1010 * Developer: Alexandre BETTAN, Sebastien FIELOUX
    1111 * Developer URI: https://github.com/btnalexandre, https://github.com/sebfie
Note: See TracChangeset for help on using the changeset viewer.