Plugin Directory

Changeset 2659670


Ignore:
Timestamp:
01/18/2022 11:31:45 PM (4 years ago)
Author:
asadkn
Message:

Update to version 1.1.7 from GitHub

Location:
debloat
Files:
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • debloat/tags/1.1.7/debloat.php

    r2639582 r2659670  
    77 * Plugin Name:       Debloat
    88 * Description:       Remove Unused CSS, Optimize CSS, Optimize JS and speed up your site.
    9  * Version:           1.1.6
     9 * Version:           1.1.7
    1010 * Author:            asadkn
    1111 * Author URI:        https://profiles.wordpress.org/asadkn/
  • debloat/tags/1.1.7/inc/admin/options-data.php

    r2587948 r2659670  
    282282            'id'      => 'defer_js',
    283283            'name'    => esc_html__('Defer Javascript', 'debloat'),
    284             'desc'    => esc_html__('Delay JS execution till HTML is laoded to fix Render-Blocking JS issues. ', 'debloat'),
     284            'desc'    => esc_html__('Delay JS execution till HTML is loaded to fix Render-Blocking JS issues.', 'debloat'),
    285285            'type'    => 'checkbox',
    286286            'default' => 0,
     
    297297
    298298        $options[] = [
     299            'id'      => 'defer_js_inline',
     300            'name'    => esc_html__('Defer Inline JS', 'debloat'),
     301            'desc'    => sprintf(
     302                '%s<p><strong>%s</strong> %s</p>',
     303                esc_html__('Defer all inline JS.', 'debloat'),
     304                esc_html__('Note:', 'debloat'),
     305                esc_html__('Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions.', 'debloat')
     306            ),
     307            'type'    => 'checkbox',
     308            'default' => 0,
     309            'attributes' => ['data-conditional-id' => 'defer_js'],
     310        ];
     311
     312        $options[] = [
    299313            'id'      => 'minify_js',
    300314            'name'    => esc_html__('Minify Javascript', 'debloat'),
    301             'desc'    => esc_html__('Minify all the deferred or delayed JS file.', 'debloat'),
     315            'desc'    => esc_html__('Minify all the deferred or delayed JS files.', 'debloat'),
    302316            'type'    => 'checkbox',
    303317            'default' => 0,
     
    389403                <br /><code>my-theme/js-file.js</code>
    390404                <br /><code>wp-content/themes/my-theme/*</code>: All theme JS files.
     405                <br /><code>someStringInJs</code>: Exclude by some text in inline JS tag.
    391406                ',
    392407            'type'    => 'textarea_small',
     
    421436        return $options;
    422437    }
    423 
    424438
    425439    public static function get_all()
  • debloat/tags/1.1.7/inc/optimize-js/optimize-js.php

    r2639582 r2659670  
    158158                if (
    159159                    !$script->url &&
    160                     in_array('jquery-core-js', $script->deps) &&
     160                    !in_array('jquery-core-js', $script->deps) &&
    161161                    strpos($script->content, 'jQuery') !== false
    162162                ) {
     
    265265        // For inline scripts: By default not deferred, unless child of a deferred.
    266266        if (!$script->url) {
     267            if (Plugin::options()->defer_js_inline) {
     268                return true;
     269            }
     270
    267271            if ($this->check_dependency($script, $this->done_defer)) {
    268272                $this->done_defer[$script->id] = true;
  • debloat/tags/1.1.7/inc/plugin.php

    r2639582 r2659670  
    2323     * Plugin version
    2424     */
    25     const VERSION = '1.1.6';
     25    const VERSION = '1.1.7';
    2626
    2727    public static $instance;
  • debloat/tags/1.1.7/languages/debloat.pot

    r2587948 r2659670  
    1 # Copyright (C) 2021 debloat
     1# Copyright (C) 2022 debloat
    22# This file is distributed under the same license as the debloat package.
    33msgid ""
     
    130130msgstr ""
    131131
    132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:308
     132#: inc/admin/options-data.php:88, inc/admin/options-data.php:322
    133133msgid "Enable Plugin Integrations"
    134134msgstr ""
     
    243243
    244244#: inc/admin/options-data.php:284
    245 msgid "Delay JS execution till HTML is laoded to fix Render-Blocking JS issues. "
    246 msgstr ""
    247 
    248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:385
     245msgid "Delay JS execution till HTML is loaded to fix Render-Blocking JS issues."
     246msgstr ""
     247
     248#: inc/admin/options-data.php:291, inc/admin/options-data.php:399
    249249msgid "Exclude Scripts"
    250250msgstr ""
     
    255255
    256256#: inc/admin/options-data.php:300
     257msgid "Defer Inline JS"
     258msgstr ""
     259
     260#: inc/admin/options-data.php:303
     261msgid "Defer all inline JS."
     262msgstr ""
     263
     264#: inc/admin/options-data.php:304
     265msgid "Note:"
     266msgstr ""
     267
     268#: inc/admin/options-data.php:305
     269msgid "Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions."
     270msgstr ""
     271
     272#: inc/admin/options-data.php:314
    257273msgid "Minify Javascript"
    258274msgstr ""
    259275
    260 #: inc/admin/options-data.php:301
    261 msgid "Minify all the deferred or delayed JS file."
    262 msgstr ""
    263 
    264 #: inc/admin/options-data.php:309
     276#: inc/admin/options-data.php:315
     277msgid "Minify all the deferred or delayed JS files."
     278msgstr ""
     279
     280#: inc/admin/options-data.php:323
    265281msgid "Special pre-made rules for javascript, specific to plugins, are applied if enabled."
    266282msgstr ""
    267283
    268 #: inc/admin/options-data.php:323
     284#: inc/admin/options-data.php:337
    269285msgid "Delay Load JS"
    270286msgstr ""
    271287
    272 #: inc/admin/options-data.php:331
     288#: inc/admin/options-data.php:345
    273289msgid "Delay Javascript"
    274290msgstr ""
    275291
    276 #: inc/admin/options-data.php:332
     292#: inc/admin/options-data.php:346
    277293msgid "Delay execution of the targeted JS files until user interaction."
    278294msgstr ""
    279295
    280 #: inc/admin/options-data.php:339
     296#: inc/admin/options-data.php:353
    281297msgid "Maximum Delay (in seconds)"
    282298msgstr ""
    283299
    284 #: inc/admin/options-data.php:340
     300#: inc/admin/options-data.php:354
    285301msgid "Max seconds to wait for interaction until delayed JS is loaded anyways."
    286302msgstr ""
    287303
    288 #: inc/admin/options-data.php:352
     304#: inc/admin/options-data.php:366
    289305msgid "Delay All Scripts"
    290306msgstr ""
    291307
    292 #: inc/admin/options-data.php:353
     308#: inc/admin/options-data.php:367
    293309msgid "CAREFUL. Delays all JS files. Its better to target scripts manually below. If there are scripts that setup sliders/carousels, animations, or other similar things, these won't be setup until the first user interaction."
    294310msgstr ""
    295311
    296 #: inc/admin/options-data.php:361
     312#: inc/admin/options-data.php:375
    297313msgid "Target Scripts"
    298314msgstr ""
    299315
    300 #: inc/admin/options-data.php:363
     316#: inc/admin/options-data.php:377
    301317msgid "Will delay from these scripts. You may use an ID, part of the URL, or any code for inline scripts. One per line. Examples:"
    302318msgstr ""
    303319
    304 #: inc/admin/options-data.php:387
     320#: inc/admin/options-data.php:401
    305321msgid "Enter one per line to exclude certain scripts from this optimizations. Examples:"
    306322msgstr ""
    307323
    308 #: inc/admin/options-data.php:399
     324#: inc/admin/options-data.php:414
    309325msgid "Delay Google Ads"
    310326msgstr ""
    311327
    312 #: inc/admin/options-data.php:400
     328#: inc/admin/options-data.php:415
    313329msgid "Delay Google Adsense until first interaction. Note: This may not be ideal if you have ads that are in header."
    314330msgstr ""
    315331
    316 #: inc/admin/options-data.php:414
     332#: inc/admin/options-data.php:429
    317333msgid "Disable for Admins"
    318334msgstr ""
    319335
    320 #: inc/admin/options-data.php:415
     336#: inc/admin/options-data.php:430
    321337msgid "Disable processing for logged in admin users or any user with capability \"manage_options\". (Useful if using a pagebuilder that conflicts)"
    322338msgstr ""
  • debloat/tags/1.1.7/readme.txt

    r2639582 r2659670  
    55Tested up to: 5.8
    66Requires PHP: 7.1
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.7
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.1.7 =
     46* Added: Option to defer inline scripts - useful if some dependent inline scripts not registered using WordPress enqueues.
     47* Fixed: Defer inline scripts with jQuery if jquery-core is deferred.
     48
    4549= 1.1.6 =
    4650* Fixed: Delay/defer only replacing one instance with duplicated <script> tags of the same URL and id.
  • debloat/tags/1.1.7/vendor/autoload.php

    r2639582 r2659670  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67::getLoader();
     7return ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9::getLoader();
  • debloat/tags/1.1.7/vendor/composer/ClassLoader.php

    r2622044 r2659670  
    150150    /**
    151151     * @return string[] Array of classname => path
    152      * @psalm-var array<string, string>
     152     * @psalm-return array<string, string>
    153153     */
    154154    public function getClassMap()
  • debloat/tags/1.1.7/vendor/composer/autoload_real.php

    r2639582 r2659670  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67
     5class ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
  • debloat/tags/1.1.7/vendor/composer/autoload_static.php

    r2639582 r2659670  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67
     7class ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    8989    {
    9090        return \Closure::bind(function () use ($loader) {
    91             $loader->prefixLengthsPsr4 = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$prefixLengthsPsr4;
    92             $loader->prefixDirsPsr4 = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$prefixDirsPsr4;
    93             $loader->classMap = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$classMap;
     91            $loader->prefixLengthsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixLengthsPsr4;
     92            $loader->prefixDirsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixDirsPsr4;
     93            $loader->classMap = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$classMap;
    9494
    9595        }, null, ClassLoader::class);
  • debloat/tags/1.1.7/vendor/composer/installed.php

    r2639582 r2659670  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '1.1.6',
    4         'version' => '1.1.6.0',
     3        'pretty_version' => '1.1.7',
     4        'version' => '1.1.7.0',
    55        'type' => 'library',
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => '51ecd33cdfb221e9defa42dcf974f831994dd97f',
     8        'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21',
    99        'name' => '__root__',
    1010        'dev' => true,
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '1.1.6',
    15             'version' => '1.1.6.0',
     14            'pretty_version' => '1.1.7',
     15            'version' => '1.1.7.0',
    1616            'type' => 'library',
    1717            'install_path' => __DIR__ . '/../../',
    1818            'aliases' => array(),
    19             'reference' => '51ecd33cdfb221e9defa42dcf974f831994dd97f',
     19            'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21',
    2020            'dev_requirement' => false,
    2121        ),
  • debloat/trunk/debloat.php

    r2639582 r2659670  
    77 * Plugin Name:       Debloat
    88 * Description:       Remove Unused CSS, Optimize CSS, Optimize JS and speed up your site.
    9  * Version:           1.1.6
     9 * Version:           1.1.7
    1010 * Author:            asadkn
    1111 * Author URI:        https://profiles.wordpress.org/asadkn/
  • debloat/trunk/inc/admin/options-data.php

    r2587948 r2659670  
    282282            'id'      => 'defer_js',
    283283            'name'    => esc_html__('Defer Javascript', 'debloat'),
    284             'desc'    => esc_html__('Delay JS execution till HTML is laoded to fix Render-Blocking JS issues. ', 'debloat'),
     284            'desc'    => esc_html__('Delay JS execution till HTML is loaded to fix Render-Blocking JS issues.', 'debloat'),
    285285            'type'    => 'checkbox',
    286286            'default' => 0,
     
    297297
    298298        $options[] = [
     299            'id'      => 'defer_js_inline',
     300            'name'    => esc_html__('Defer Inline JS', 'debloat'),
     301            'desc'    => sprintf(
     302                '%s<p><strong>%s</strong> %s</p>',
     303                esc_html__('Defer all inline JS.', 'debloat'),
     304                esc_html__('Note:', 'debloat'),
     305                esc_html__('Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions.', 'debloat')
     306            ),
     307            'type'    => 'checkbox',
     308            'default' => 0,
     309            'attributes' => ['data-conditional-id' => 'defer_js'],
     310        ];
     311
     312        $options[] = [
    299313            'id'      => 'minify_js',
    300314            'name'    => esc_html__('Minify Javascript', 'debloat'),
    301             'desc'    => esc_html__('Minify all the deferred or delayed JS file.', 'debloat'),
     315            'desc'    => esc_html__('Minify all the deferred or delayed JS files.', 'debloat'),
    302316            'type'    => 'checkbox',
    303317            'default' => 0,
     
    389403                <br /><code>my-theme/js-file.js</code>
    390404                <br /><code>wp-content/themes/my-theme/*</code>: All theme JS files.
     405                <br /><code>someStringInJs</code>: Exclude by some text in inline JS tag.
    391406                ',
    392407            'type'    => 'textarea_small',
     
    421436        return $options;
    422437    }
    423 
    424438
    425439    public static function get_all()
  • debloat/trunk/inc/optimize-js/optimize-js.php

    r2639582 r2659670  
    158158                if (
    159159                    !$script->url &&
    160                     in_array('jquery-core-js', $script->deps) &&
     160                    !in_array('jquery-core-js', $script->deps) &&
    161161                    strpos($script->content, 'jQuery') !== false
    162162                ) {
     
    265265        // For inline scripts: By default not deferred, unless child of a deferred.
    266266        if (!$script->url) {
     267            if (Plugin::options()->defer_js_inline) {
     268                return true;
     269            }
     270
    267271            if ($this->check_dependency($script, $this->done_defer)) {
    268272                $this->done_defer[$script->id] = true;
  • debloat/trunk/inc/plugin.php

    r2639582 r2659670  
    2323     * Plugin version
    2424     */
    25     const VERSION = '1.1.6';
     25    const VERSION = '1.1.7';
    2626
    2727    public static $instance;
  • debloat/trunk/languages/debloat.pot

    r2587948 r2659670  
    1 # Copyright (C) 2021 debloat
     1# Copyright (C) 2022 debloat
    22# This file is distributed under the same license as the debloat package.
    33msgid ""
     
    130130msgstr ""
    131131
    132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:308
     132#: inc/admin/options-data.php:88, inc/admin/options-data.php:322
    133133msgid "Enable Plugin Integrations"
    134134msgstr ""
     
    243243
    244244#: inc/admin/options-data.php:284
    245 msgid "Delay JS execution till HTML is laoded to fix Render-Blocking JS issues. "
    246 msgstr ""
    247 
    248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:385
     245msgid "Delay JS execution till HTML is loaded to fix Render-Blocking JS issues."
     246msgstr ""
     247
     248#: inc/admin/options-data.php:291, inc/admin/options-data.php:399
    249249msgid "Exclude Scripts"
    250250msgstr ""
     
    255255
    256256#: inc/admin/options-data.php:300
     257msgid "Defer Inline JS"
     258msgstr ""
     259
     260#: inc/admin/options-data.php:303
     261msgid "Defer all inline JS."
     262msgstr ""
     263
     264#: inc/admin/options-data.php:304
     265msgid "Note:"
     266msgstr ""
     267
     268#: inc/admin/options-data.php:305
     269msgid "Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions."
     270msgstr ""
     271
     272#: inc/admin/options-data.php:314
    257273msgid "Minify Javascript"
    258274msgstr ""
    259275
    260 #: inc/admin/options-data.php:301
    261 msgid "Minify all the deferred or delayed JS file."
    262 msgstr ""
    263 
    264 #: inc/admin/options-data.php:309
     276#: inc/admin/options-data.php:315
     277msgid "Minify all the deferred or delayed JS files."
     278msgstr ""
     279
     280#: inc/admin/options-data.php:323
    265281msgid "Special pre-made rules for javascript, specific to plugins, are applied if enabled."
    266282msgstr ""
    267283
    268 #: inc/admin/options-data.php:323
     284#: inc/admin/options-data.php:337
    269285msgid "Delay Load JS"
    270286msgstr ""
    271287
    272 #: inc/admin/options-data.php:331
     288#: inc/admin/options-data.php:345
    273289msgid "Delay Javascript"
    274290msgstr ""
    275291
    276 #: inc/admin/options-data.php:332
     292#: inc/admin/options-data.php:346
    277293msgid "Delay execution of the targeted JS files until user interaction."
    278294msgstr ""
    279295
    280 #: inc/admin/options-data.php:339
     296#: inc/admin/options-data.php:353
    281297msgid "Maximum Delay (in seconds)"
    282298msgstr ""
    283299
    284 #: inc/admin/options-data.php:340
     300#: inc/admin/options-data.php:354
    285301msgid "Max seconds to wait for interaction until delayed JS is loaded anyways."
    286302msgstr ""
    287303
    288 #: inc/admin/options-data.php:352
     304#: inc/admin/options-data.php:366
    289305msgid "Delay All Scripts"
    290306msgstr ""
    291307
    292 #: inc/admin/options-data.php:353
     308#: inc/admin/options-data.php:367
    293309msgid "CAREFUL. Delays all JS files. Its better to target scripts manually below. If there are scripts that setup sliders/carousels, animations, or other similar things, these won't be setup until the first user interaction."
    294310msgstr ""
    295311
    296 #: inc/admin/options-data.php:361
     312#: inc/admin/options-data.php:375
    297313msgid "Target Scripts"
    298314msgstr ""
    299315
    300 #: inc/admin/options-data.php:363
     316#: inc/admin/options-data.php:377
    301317msgid "Will delay from these scripts. You may use an ID, part of the URL, or any code for inline scripts. One per line. Examples:"
    302318msgstr ""
    303319
    304 #: inc/admin/options-data.php:387
     320#: inc/admin/options-data.php:401
    305321msgid "Enter one per line to exclude certain scripts from this optimizations. Examples:"
    306322msgstr ""
    307323
    308 #: inc/admin/options-data.php:399
     324#: inc/admin/options-data.php:414
    309325msgid "Delay Google Ads"
    310326msgstr ""
    311327
    312 #: inc/admin/options-data.php:400
     328#: inc/admin/options-data.php:415
    313329msgid "Delay Google Adsense until first interaction. Note: This may not be ideal if you have ads that are in header."
    314330msgstr ""
    315331
    316 #: inc/admin/options-data.php:414
     332#: inc/admin/options-data.php:429
    317333msgid "Disable for Admins"
    318334msgstr ""
    319335
    320 #: inc/admin/options-data.php:415
     336#: inc/admin/options-data.php:430
    321337msgid "Disable processing for logged in admin users or any user with capability \"manage_options\". (Useful if using a pagebuilder that conflicts)"
    322338msgstr ""
  • debloat/trunk/readme.txt

    r2639582 r2659670  
    55Tested up to: 5.8
    66Requires PHP: 7.1
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.7
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.1.7 =
     46* Added: Option to defer inline scripts - useful if some dependent inline scripts not registered using WordPress enqueues.
     47* Fixed: Defer inline scripts with jQuery if jquery-core is deferred.
     48
    4549= 1.1.6 =
    4650* Fixed: Delay/defer only replacing one instance with duplicated <script> tags of the same URL and id.
  • debloat/trunk/vendor/autoload.php

    r2639582 r2659670  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67::getLoader();
     7return ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9::getLoader();
  • debloat/trunk/vendor/composer/ClassLoader.php

    r2622044 r2659670  
    150150    /**
    151151     * @return string[] Array of classname => path
    152      * @psalm-var array<string, string>
     152     * @psalm-return array<string, string>
    153153     */
    154154    public function getClassMap()
  • debloat/trunk/vendor/composer/autoload_real.php

    r2639582 r2659670  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67
     5class ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInite072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
  • debloat/trunk/vendor/composer/autoload_static.php

    r2639582 r2659670  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67
     7class ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    8989    {
    9090        return \Closure::bind(function () use ($loader) {
    91             $loader->prefixLengthsPsr4 = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$prefixLengthsPsr4;
    92             $loader->prefixDirsPsr4 = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$prefixDirsPsr4;
    93             $loader->classMap = ComposerStaticInite072c566a9c557109e61f0f1e4fa8c67::$classMap;
     91            $loader->prefixLengthsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixLengthsPsr4;
     92            $loader->prefixDirsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixDirsPsr4;
     93            $loader->classMap = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$classMap;
    9494
    9595        }, null, ClassLoader::class);
  • debloat/trunk/vendor/composer/installed.php

    r2639582 r2659670  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '1.1.6',
    4         'version' => '1.1.6.0',
     3        'pretty_version' => '1.1.7',
     4        'version' => '1.1.7.0',
    55        'type' => 'library',
    66        'install_path' => __DIR__ . '/../../',
    77        'aliases' => array(),
    8         'reference' => '51ecd33cdfb221e9defa42dcf974f831994dd97f',
     8        'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21',
    99        'name' => '__root__',
    1010        'dev' => true,
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '1.1.6',
    15             'version' => '1.1.6.0',
     14            'pretty_version' => '1.1.7',
     15            'version' => '1.1.7.0',
    1616            'type' => 'library',
    1717            'install_path' => __DIR__ . '/../../',
    1818            'aliases' => array(),
    19             'reference' => '51ecd33cdfb221e9defa42dcf974f831994dd97f',
     19            'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21',
    2020            'dev_requirement' => false,
    2121        ),
Note: See TracChangeset for help on using the changeset viewer.