Plugin Directory

Changeset 2816455


Ignore:
Timestamp:
11/11/2022 07:55:53 AM (3 years ago)
Author:
neosit
Message:

Update to version 2.3.5 from GitHub

Location:
next-active-directory-integration
Files:
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • next-active-directory-integration/tags/2.3.5/classes/Core/Encryption.php

    r1756617 r2816455  
    2424    private $logger;
    2525
    26 
    27 
    2826    public function __construct()
    2927    {
     
    3129    }
    3230
     31    /**
     32     * Return `AUTH_SALT` constant or an empty string if not defined.
     33     * This has been added to make NADI compatible with newer PHP versions and WordPress installation in which `AUTH_SALT` is not defined.
     34     *
     35     * @issue #164
     36     * @see https://github.com/NeosIT/active-directory-integration2/issues/164
     37     */
     38    public static function getSalt() {
     39        if (defined('AUTH_SALT')) {
     40            return AUTH_SALT;
     41        }
     42       
     43        return '';
     44    }
     45   
    3346    /**
    3447     * This method will encrypt the $plainText and return the encrypted text.
     
    4053    public function encrypt( $plainText )
    4154    {
    42         $password = 'Next Active Directory Integration' . AUTH_SALT;
     55        $password = 'Next Active Directory Integration' . self::getSalt();
    4356
    4457        try
     
    6578    public function decrypt( $encryptedText )
    6679    {
    67         $password = 'Next Active Directory Integration' . AUTH_SALT;
     80        $password = 'Next Active Directory Integration' . self::getSalt();
    6881
    6982        // do not decrypt empty texts
  • next-active-directory-integration/tags/2.3.5/classes/Migration/MigratePasswordEncryption.php

    r1608780 r2816455  
    104104
    105105        // get key
    106         $key = hash('md5', AUTH_SALT . 'Active Directory Integration');
     106        $key = hash('md5', NextADInt_Core_Encryption::getSalt() . 'Active Directory Integration');
    107107        // decrypt $data
    108108        $data = @mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $encrypted, MCRYPT_MODE_CBC, $iv);
  • next-active-directory-integration/tags/2.3.5/composer.lock

    r2804538 r2816455  
    262262        {
    263263            "name": "symfony/polyfill-ctype",
    264             "version": "v1.26.0",
     264            "version": "v1.27.0",
    265265            "source": {
    266266                "type": "git",
    267267                "url": "https://github.com/symfony/polyfill-ctype.git",
    268                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
    269             },
    270             "dist": {
    271                 "type": "zip",
    272                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
    273                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
     268                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
     269            },
     270            "dist": {
     271                "type": "zip",
     272                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
     273                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
    274274                "shasum": ""
    275275            },
     
    286286            "extra": {
    287287                "branch-alias": {
    288                     "dev-main": "1.26-dev"
     288                    "dev-main": "1.27-dev"
    289289                },
    290290                "thanks": {
     
    324324            ],
    325325            "support": {
    326                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
     326                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
    327327            },
    328328            "funding": [
     
    340340                }
    341341            ],
    342             "time": "2022-05-24T11:49:31+00:00"
     342            "time": "2022-11-03T14:55:06+00:00"
    343343        },
    344344        {
     
    13531353        {
    13541354            "name": "phpunit/php-code-coverage",
    1355             "version": "9.2.17",
     1355            "version": "9.2.18",
    13561356            "source": {
    13571357                "type": "git",
    13581358                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
    1359                 "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
    1360             },
    1361             "dist": {
    1362                 "type": "zip",
    1363                 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
    1364                 "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
     1359                "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a"
     1360            },
     1361            "dist": {
     1362                "type": "zip",
     1363                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
     1364                "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
    13651365                "shasum": ""
    13661366            },
     
    14181418            "support": {
    14191419                "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
    1420                 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
     1420                "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18"
    14211421            },
    14221422            "funding": [
     
    14261426                }
    14271427            ],
    1428             "time": "2022-08-30T12:24:04+00:00"
     1428            "time": "2022-10-27T13:35:33+00:00"
    14291429        },
    14301430        {
     
    27912791        {
    27922792            "name": "symfony/console",
    2793             "version": "v5.4.14",
     2793            "version": "v5.4.15",
    27942794            "source": {
    27952795                "type": "git",
    27962796                "url": "https://github.com/symfony/console.git",
    2797                 "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d"
    2798             },
    2799             "dist": {
    2800                 "type": "zip",
    2801                 "url": "https://api.github.com/repos/symfony/console/zipball/984ea2c0f45f42dfed01d2f3987b187467c4b16d",
    2802                 "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d",
     2797                "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669"
     2798            },
     2799            "dist": {
     2800                "type": "zip",
     2801                "url": "https://api.github.com/repos/symfony/console/zipball/ea59bb0edfaf9f28d18d8791410ee0355f317669",
     2802                "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669",
    28032803                "shasum": ""
    28042804            },
     
    28702870            ],
    28712871            "support": {
    2872                 "source": "https://github.com/symfony/console/tree/v5.4.14"
     2872                "source": "https://github.com/symfony/console/tree/v5.4.15"
    28732873            },
    28742874            "funding": [
     
    28862886                }
    28872887            ],
    2888             "time": "2022-10-07T08:01:20+00:00"
     2888            "time": "2022-10-26T21:41:52+00:00"
    28892889        },
    28902890        {
     
    30203020        {
    30213021            "name": "symfony/polyfill-intl-grapheme",
    3022             "version": "v1.26.0",
     3022            "version": "v1.27.0",
    30233023            "source": {
    30243024                "type": "git",
    30253025                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
    3026                 "reference": "433d05519ce6990bf3530fba6957499d327395c2"
    3027             },
    3028             "dist": {
    3029                 "type": "zip",
    3030                 "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
    3031                 "reference": "433d05519ce6990bf3530fba6957499d327395c2",
     3026                "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
     3027            },
     3028            "dist": {
     3029                "type": "zip",
     3030                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
     3031                "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
    30323032                "shasum": ""
    30333033            },
     
    30413041            "extra": {
    30423042                "branch-alias": {
    3043                     "dev-main": "1.26-dev"
     3043                    "dev-main": "1.27-dev"
    30443044                },
    30453045                "thanks": {
     
    30813081            ],
    30823082            "support": {
    3083                 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
     3083                "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
    30843084            },
    30853085            "funding": [
     
    30973097                }
    30983098            ],
    3099             "time": "2022-05-24T11:49:31+00:00"
     3099            "time": "2022-11-03T14:55:06+00:00"
    31003100        },
    31013101        {
    31023102            "name": "symfony/polyfill-intl-normalizer",
    3103             "version": "v1.26.0",
     3103            "version": "v1.27.0",
    31043104            "source": {
    31053105                "type": "git",
    31063106                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
    3107                 "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
    3108             },
    3109             "dist": {
    3110                 "type": "zip",
    3111                 "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
    3112                 "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
     3107                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
     3108            },
     3109            "dist": {
     3110                "type": "zip",
     3111                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
     3112                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
    31133113                "shasum": ""
    31143114            },
     
    31223122            "extra": {
    31233123                "branch-alias": {
    3124                     "dev-main": "1.26-dev"
     3124                    "dev-main": "1.27-dev"
    31253125                },
    31263126                "thanks": {
     
    31653165            ],
    31663166            "support": {
    3167                 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
     3167                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
    31683168            },
    31693169            "funding": [
     
    31813181                }
    31823182            ],
    3183             "time": "2022-05-24T11:49:31+00:00"
     3183            "time": "2022-11-03T14:55:06+00:00"
    31843184        },
    31853185        {
    31863186            "name": "symfony/polyfill-php73",
    3187             "version": "v1.26.0",
     3187            "version": "v1.27.0",
    31883188            "source": {
    31893189                "type": "git",
    31903190                "url": "https://github.com/symfony/polyfill-php73.git",
    3191                 "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
    3192             },
    3193             "dist": {
    3194                 "type": "zip",
    3195                 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
    3196                 "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
     3191                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
     3192            },
     3193            "dist": {
     3194                "type": "zip",
     3195                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
     3196                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
    31973197                "shasum": ""
    31983198            },
     
    32033203            "extra": {
    32043204                "branch-alias": {
    3205                     "dev-main": "1.26-dev"
     3205                    "dev-main": "1.27-dev"
    32063206                },
    32073207                "thanks": {
     
    32443244            ],
    32453245            "support": {
    3246                 "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
     3246                "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
    32473247            },
    32483248            "funding": [
     
    32603260                }
    32613261            ],
    3262             "time": "2022-05-24T11:49:31+00:00"
     3262            "time": "2022-11-03T14:55:06+00:00"
    32633263        },
    32643264        {
    32653265            "name": "symfony/polyfill-php80",
    3266             "version": "v1.26.0",
     3266            "version": "v1.27.0",
    32673267            "source": {
    32683268                "type": "git",
    32693269                "url": "https://github.com/symfony/polyfill-php80.git",
    3270                 "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
    3271             },
    3272             "dist": {
    3273                 "type": "zip",
    3274                 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
    3275                 "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
     3270                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
     3271            },
     3272            "dist": {
     3273                "type": "zip",
     3274                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
     3275                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
    32763276                "shasum": ""
    32773277            },
     
    32823282            "extra": {
    32833283                "branch-alias": {
    3284                     "dev-main": "1.26-dev"
     3284                    "dev-main": "1.27-dev"
    32853285                },
    32863286                "thanks": {
     
    33273327            ],
    33283328            "support": {
    3329                 "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
     3329                "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
    33303330            },
    33313331            "funding": [
     
    33433343                }
    33443344            ],
    3345             "time": "2022-05-10T07:21:04+00:00"
     3345            "time": "2022-11-03T14:55:06+00:00"
    33463346        },
    33473347        {
     
    34913491        {
    34923492            "name": "symfony/string",
    3493             "version": "v6.0.14",
     3493            "version": "v6.0.15",
    34943494            "source": {
    34953495                "type": "git",
    34963496                "url": "https://github.com/symfony/string.git",
    3497                 "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c"
    3498             },
    3499             "dist": {
    3500                 "type": "zip",
    3501                 "url": "https://api.github.com/repos/symfony/string/zipball/3db7da820a6e4a584b714b3933c34c6a7db4d86c",
    3502                 "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c",
     3497                "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771"
     3498            },
     3499            "dist": {
     3500                "type": "zip",
     3501                "url": "https://api.github.com/repos/symfony/string/zipball/51ac0fa0ccf132a00519b87c97e8f775fa14e771",
     3502                "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771",
    35033503                "shasum": ""
    35043504            },
     
    35563556            ],
    35573557            "support": {
    3558                 "source": "https://github.com/symfony/string/tree/v6.0.14"
     3558                "source": "https://github.com/symfony/string/tree/v6.0.15"
    35593559            },
    35603560            "funding": [
  • next-active-directory-integration/tags/2.3.5/index.php

    r2804538 r2816455  
    44Plugin URI: https://www.active-directory-wp.com
    55Description: Enterprise-ready solution to authenticate, authorize and synchronize your Active Directory users to WordPress. Next Active Directory Authentication supports NTLM and Kerberos for Single Sign On.
    6 Version: 2.3.4
     6Version: 2.3.5
    77Author: active-directory-wp.com
    88Author URI: https://active-directory-wp.com
  • next-active-directory-integration/tags/2.3.5/readme.txt

    r2804538 r2816455  
    44Requires at least: 5.6
    55Tested up to: 6.1
    6 Stable tag: 2.3.4
     6Stable tag: 2.3.5
    77License: GPLv3
    88Donate link: https://active-directory-wp.com
     
    127127For detailed information you can visit the official [GitHub repository of Next Active Directory Integration](https://github.com/NeosIT/active-directory-integration2)
    128128
     129= 2.3.5 =
     130* FIXED: Blank configuration page with PHP >= 8.0 and missing AUTH_SALT constant (#164)
     131
    129132= 2.3.4 =
    130133* CHANGED: twig/twig dependency updated to 3.4.3 (#162)
  • next-active-directory-integration/tags/2.3.5/vendor/autoload.php

    r2804538 r2816455  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b::getLoader();
     25return ComposerAutoloaderInit515739b20b3e474b871da0023cba0384::getLoader();
  • next-active-directory-integration/tags/2.3.5/vendor/composer/autoload_real.php

    r2804538 r2816455  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b
     5class ComposerAutoloaderInit515739b20b3e474b871da0023cba0384
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$files;
     36        $includeFiles = \Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::$files;
    3737        foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequirefc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file);
     38            composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file);
    3939        }
    4040
     
    4848 * @return void
    4949 */
    50 function composerRequirefc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file)
     50function composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file)
    5151{
    5252    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • next-active-directory-integration/tags/2.3.5/vendor/composer/autoload_static.php

    r2804538 r2816455  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b
     7class ComposerStaticInit515739b20b3e474b871da0023cba0384
    88{
    99    public static $files = array (
     
    7777    {
    7878        return \Closure::bind(function () use ($loader) {
    79             $loader->prefixLengthsPsr4 = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$prefixLengthsPsr4;
    80             $loader->prefixDirsPsr4 = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$prefixDirsPsr4;
    81             $loader->classMap = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$classMap;
     79            $loader->prefixLengthsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixLengthsPsr4;
     80            $loader->prefixDirsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixDirsPsr4;
     81            $loader->classMap = ComposerStaticInit515739b20b3e474b871da0023cba0384::$classMap;
    8282
    8383        }, null, ClassLoader::class);
  • next-active-directory-integration/tags/2.3.5/vendor/composer/installed.json

    r2804538 r2816455  
    268268        {
    269269            "name": "symfony/polyfill-ctype",
    270             "version": "v1.26.0",
    271             "version_normalized": "1.26.0.0",
     270            "version": "v1.27.0",
     271            "version_normalized": "1.27.0.0",
    272272            "source": {
    273273                "type": "git",
    274274                "url": "https://github.com/symfony/polyfill-ctype.git",
    275                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
    276             },
    277             "dist": {
    278                 "type": "zip",
    279                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
    280                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
     275                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
     276            },
     277            "dist": {
     278                "type": "zip",
     279                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
     280                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
    281281                "shasum": ""
    282282            },
     
    290290                "ext-ctype": "For best performance"
    291291            },
    292             "time": "2022-05-24T11:49:31+00:00",
     292            "time": "2022-11-03T14:55:06+00:00",
    293293            "type": "library",
    294294            "extra": {
    295295                "branch-alias": {
    296                     "dev-main": "1.26-dev"
     296                    "dev-main": "1.27-dev"
    297297                },
    298298                "thanks": {
     
    333333            ],
    334334            "support": {
    335                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
     335                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
    336336            },
    337337            "funding": [
  • next-active-directory-integration/tags/2.3.5/vendor/composer/installed.php

    r2804538 r2816455  
    22    'root' => array(
    33        'name' => '__root__',
    4         'pretty_version' => '2.3.4',
    5         'version' => '2.3.4.0',
    6         'reference' => '83416338048e134b745df99255e1393162522d41',
     4        'pretty_version' => '2.3.5',
     5        'version' => '2.3.5.0',
     6        'reference' => 'a9bb32ffe0f04a03798d7550e9f3fd6425d6c426',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '2.3.4',
    15             'version' => '2.3.4.0',
    16             'reference' => '83416338048e134b745df99255e1393162522d41',
     14            'pretty_version' => '2.3.5',
     15            'version' => '2.3.5.0',
     16            'reference' => 'a9bb32ffe0f04a03798d7550e9f3fd6425d6c426',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
     
    6363        ),
    6464        'symfony/polyfill-ctype' => array(
    65             'pretty_version' => 'v1.26.0',
    66             'version' => '1.26.0.0',
    67             'reference' => '6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',
     65            'pretty_version' => 'v1.27.0',
     66            'version' => '1.27.0.0',
     67            'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a',
    6868            'type' => 'library',
    6969            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
  • next-active-directory-integration/tags/2.3.5/vendor/symfony/polyfill-ctype/composer.json

    r2804538 r2816455  
    3232    "extra": {
    3333        "branch-alias": {
    34             "dev-main": "1.26-dev"
     34            "dev-main": "1.27-dev"
    3535        },
    3636        "thanks": {
  • next-active-directory-integration/trunk/classes/Core/Encryption.php

    r1756617 r2816455  
    2424    private $logger;
    2525
    26 
    27 
    2826    public function __construct()
    2927    {
     
    3129    }
    3230
     31    /**
     32     * Return `AUTH_SALT` constant or an empty string if not defined.
     33     * This has been added to make NADI compatible with newer PHP versions and WordPress installation in which `AUTH_SALT` is not defined.
     34     *
     35     * @issue #164
     36     * @see https://github.com/NeosIT/active-directory-integration2/issues/164
     37     */
     38    public static function getSalt() {
     39        if (defined('AUTH_SALT')) {
     40            return AUTH_SALT;
     41        }
     42       
     43        return '';
     44    }
     45   
    3346    /**
    3447     * This method will encrypt the $plainText and return the encrypted text.
     
    4053    public function encrypt( $plainText )
    4154    {
    42         $password = 'Next Active Directory Integration' . AUTH_SALT;
     55        $password = 'Next Active Directory Integration' . self::getSalt();
    4356
    4457        try
     
    6578    public function decrypt( $encryptedText )
    6679    {
    67         $password = 'Next Active Directory Integration' . AUTH_SALT;
     80        $password = 'Next Active Directory Integration' . self::getSalt();
    6881
    6982        // do not decrypt empty texts
  • next-active-directory-integration/trunk/classes/Migration/MigratePasswordEncryption.php

    r1608780 r2816455  
    104104
    105105        // get key
    106         $key = hash('md5', AUTH_SALT . 'Active Directory Integration');
     106        $key = hash('md5', NextADInt_Core_Encryption::getSalt() . 'Active Directory Integration');
    107107        // decrypt $data
    108108        $data = @mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $encrypted, MCRYPT_MODE_CBC, $iv);
  • next-active-directory-integration/trunk/composer.lock

    r2804538 r2816455  
    262262        {
    263263            "name": "symfony/polyfill-ctype",
    264             "version": "v1.26.0",
     264            "version": "v1.27.0",
    265265            "source": {
    266266                "type": "git",
    267267                "url": "https://github.com/symfony/polyfill-ctype.git",
    268                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
    269             },
    270             "dist": {
    271                 "type": "zip",
    272                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
    273                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
     268                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
     269            },
     270            "dist": {
     271                "type": "zip",
     272                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
     273                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
    274274                "shasum": ""
    275275            },
     
    286286            "extra": {
    287287                "branch-alias": {
    288                     "dev-main": "1.26-dev"
     288                    "dev-main": "1.27-dev"
    289289                },
    290290                "thanks": {
     
    324324            ],
    325325            "support": {
    326                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
     326                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
    327327            },
    328328            "funding": [
     
    340340                }
    341341            ],
    342             "time": "2022-05-24T11:49:31+00:00"
     342            "time": "2022-11-03T14:55:06+00:00"
    343343        },
    344344        {
     
    13531353        {
    13541354            "name": "phpunit/php-code-coverage",
    1355             "version": "9.2.17",
     1355            "version": "9.2.18",
    13561356            "source": {
    13571357                "type": "git",
    13581358                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
    1359                 "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
    1360             },
    1361             "dist": {
    1362                 "type": "zip",
    1363                 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
    1364                 "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
     1359                "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a"
     1360            },
     1361            "dist": {
     1362                "type": "zip",
     1363                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
     1364                "reference": "12fddc491826940cf9b7e88ad9664cf51f0f6d0a",
    13651365                "shasum": ""
    13661366            },
     
    14181418            "support": {
    14191419                "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
    1420                 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
     1420                "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18"
    14211421            },
    14221422            "funding": [
     
    14261426                }
    14271427            ],
    1428             "time": "2022-08-30T12:24:04+00:00"
     1428            "time": "2022-10-27T13:35:33+00:00"
    14291429        },
    14301430        {
     
    27912791        {
    27922792            "name": "symfony/console",
    2793             "version": "v5.4.14",
     2793            "version": "v5.4.15",
    27942794            "source": {
    27952795                "type": "git",
    27962796                "url": "https://github.com/symfony/console.git",
    2797                 "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d"
    2798             },
    2799             "dist": {
    2800                 "type": "zip",
    2801                 "url": "https://api.github.com/repos/symfony/console/zipball/984ea2c0f45f42dfed01d2f3987b187467c4b16d",
    2802                 "reference": "984ea2c0f45f42dfed01d2f3987b187467c4b16d",
     2797                "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669"
     2798            },
     2799            "dist": {
     2800                "type": "zip",
     2801                "url": "https://api.github.com/repos/symfony/console/zipball/ea59bb0edfaf9f28d18d8791410ee0355f317669",
     2802                "reference": "ea59bb0edfaf9f28d18d8791410ee0355f317669",
    28032803                "shasum": ""
    28042804            },
     
    28702870            ],
    28712871            "support": {
    2872                 "source": "https://github.com/symfony/console/tree/v5.4.14"
     2872                "source": "https://github.com/symfony/console/tree/v5.4.15"
    28732873            },
    28742874            "funding": [
     
    28862886                }
    28872887            ],
    2888             "time": "2022-10-07T08:01:20+00:00"
     2888            "time": "2022-10-26T21:41:52+00:00"
    28892889        },
    28902890        {
     
    30203020        {
    30213021            "name": "symfony/polyfill-intl-grapheme",
    3022             "version": "v1.26.0",
     3022            "version": "v1.27.0",
    30233023            "source": {
    30243024                "type": "git",
    30253025                "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
    3026                 "reference": "433d05519ce6990bf3530fba6957499d327395c2"
    3027             },
    3028             "dist": {
    3029                 "type": "zip",
    3030                 "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
    3031                 "reference": "433d05519ce6990bf3530fba6957499d327395c2",
     3026                "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
     3027            },
     3028            "dist": {
     3029                "type": "zip",
     3030                "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
     3031                "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
    30323032                "shasum": ""
    30333033            },
     
    30413041            "extra": {
    30423042                "branch-alias": {
    3043                     "dev-main": "1.26-dev"
     3043                    "dev-main": "1.27-dev"
    30443044                },
    30453045                "thanks": {
     
    30813081            ],
    30823082            "support": {
    3083                 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
     3083                "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
    30843084            },
    30853085            "funding": [
     
    30973097                }
    30983098            ],
    3099             "time": "2022-05-24T11:49:31+00:00"
     3099            "time": "2022-11-03T14:55:06+00:00"
    31003100        },
    31013101        {
    31023102            "name": "symfony/polyfill-intl-normalizer",
    3103             "version": "v1.26.0",
     3103            "version": "v1.27.0",
    31043104            "source": {
    31053105                "type": "git",
    31063106                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
    3107                 "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
    3108             },
    3109             "dist": {
    3110                 "type": "zip",
    3111                 "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
    3112                 "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
     3107                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
     3108            },
     3109            "dist": {
     3110                "type": "zip",
     3111                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
     3112                "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
    31133113                "shasum": ""
    31143114            },
     
    31223122            "extra": {
    31233123                "branch-alias": {
    3124                     "dev-main": "1.26-dev"
     3124                    "dev-main": "1.27-dev"
    31253125                },
    31263126                "thanks": {
     
    31653165            ],
    31663166            "support": {
    3167                 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
     3167                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
    31683168            },
    31693169            "funding": [
     
    31813181                }
    31823182            ],
    3183             "time": "2022-05-24T11:49:31+00:00"
     3183            "time": "2022-11-03T14:55:06+00:00"
    31843184        },
    31853185        {
    31863186            "name": "symfony/polyfill-php73",
    3187             "version": "v1.26.0",
     3187            "version": "v1.27.0",
    31883188            "source": {
    31893189                "type": "git",
    31903190                "url": "https://github.com/symfony/polyfill-php73.git",
    3191                 "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
    3192             },
    3193             "dist": {
    3194                 "type": "zip",
    3195                 "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
    3196                 "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
     3191                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
     3192            },
     3193            "dist": {
     3194                "type": "zip",
     3195                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
     3196                "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
    31973197                "shasum": ""
    31983198            },
     
    32033203            "extra": {
    32043204                "branch-alias": {
    3205                     "dev-main": "1.26-dev"
     3205                    "dev-main": "1.27-dev"
    32063206                },
    32073207                "thanks": {
     
    32443244            ],
    32453245            "support": {
    3246                 "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
     3246                "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
    32473247            },
    32483248            "funding": [
     
    32603260                }
    32613261            ],
    3262             "time": "2022-05-24T11:49:31+00:00"
     3262            "time": "2022-11-03T14:55:06+00:00"
    32633263        },
    32643264        {
    32653265            "name": "symfony/polyfill-php80",
    3266             "version": "v1.26.0",
     3266            "version": "v1.27.0",
    32673267            "source": {
    32683268                "type": "git",
    32693269                "url": "https://github.com/symfony/polyfill-php80.git",
    3270                 "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
    3271             },
    3272             "dist": {
    3273                 "type": "zip",
    3274                 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
    3275                 "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
     3270                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
     3271            },
     3272            "dist": {
     3273                "type": "zip",
     3274                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
     3275                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
    32763276                "shasum": ""
    32773277            },
     
    32823282            "extra": {
    32833283                "branch-alias": {
    3284                     "dev-main": "1.26-dev"
     3284                    "dev-main": "1.27-dev"
    32853285                },
    32863286                "thanks": {
     
    33273327            ],
    33283328            "support": {
    3329                 "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
     3329                "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
    33303330            },
    33313331            "funding": [
     
    33433343                }
    33443344            ],
    3345             "time": "2022-05-10T07:21:04+00:00"
     3345            "time": "2022-11-03T14:55:06+00:00"
    33463346        },
    33473347        {
     
    34913491        {
    34923492            "name": "symfony/string",
    3493             "version": "v6.0.14",
     3493            "version": "v6.0.15",
    34943494            "source": {
    34953495                "type": "git",
    34963496                "url": "https://github.com/symfony/string.git",
    3497                 "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c"
    3498             },
    3499             "dist": {
    3500                 "type": "zip",
    3501                 "url": "https://api.github.com/repos/symfony/string/zipball/3db7da820a6e4a584b714b3933c34c6a7db4d86c",
    3502                 "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c",
     3497                "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771"
     3498            },
     3499            "dist": {
     3500                "type": "zip",
     3501                "url": "https://api.github.com/repos/symfony/string/zipball/51ac0fa0ccf132a00519b87c97e8f775fa14e771",
     3502                "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771",
    35033503                "shasum": ""
    35043504            },
     
    35563556            ],
    35573557            "support": {
    3558                 "source": "https://github.com/symfony/string/tree/v6.0.14"
     3558                "source": "https://github.com/symfony/string/tree/v6.0.15"
    35593559            },
    35603560            "funding": [
  • next-active-directory-integration/trunk/index.php

    r2804538 r2816455  
    44Plugin URI: https://www.active-directory-wp.com
    55Description: Enterprise-ready solution to authenticate, authorize and synchronize your Active Directory users to WordPress. Next Active Directory Authentication supports NTLM and Kerberos for Single Sign On.
    6 Version: 2.3.4
     6Version: 2.3.5
    77Author: active-directory-wp.com
    88Author URI: https://active-directory-wp.com
  • next-active-directory-integration/trunk/readme.txt

    r2804538 r2816455  
    44Requires at least: 5.6
    55Tested up to: 6.1
    6 Stable tag: 2.3.4
     6Stable tag: 2.3.5
    77License: GPLv3
    88Donate link: https://active-directory-wp.com
     
    127127For detailed information you can visit the official [GitHub repository of Next Active Directory Integration](https://github.com/NeosIT/active-directory-integration2)
    128128
     129= 2.3.5 =
     130* FIXED: Blank configuration page with PHP >= 8.0 and missing AUTH_SALT constant (#164)
     131
    129132= 2.3.4 =
    130133* CHANGED: twig/twig dependency updated to 3.4.3 (#162)
  • next-active-directory-integration/trunk/vendor/autoload.php

    r2804538 r2816455  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b::getLoader();
     25return ComposerAutoloaderInit515739b20b3e474b871da0023cba0384::getLoader();
  • next-active-directory-integration/trunk/vendor/composer/autoload_real.php

    r2804538 r2816455  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b
     5class ComposerAutoloaderInit515739b20b3e474b871da0023cba0384
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitfc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::getInitializer($loader));
    3333
    3434        $loader->register(true);
    3535
    36         $includeFiles = \Composer\Autoload\ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$files;
     36        $includeFiles = \Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::$files;
    3737        foreach ($includeFiles as $fileIdentifier => $file) {
    38             composerRequirefc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file);
     38            composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file);
    3939        }
    4040
     
    4848 * @return void
    4949 */
    50 function composerRequirefc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file)
     50function composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file)
    5151{
    5252    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • next-active-directory-integration/trunk/vendor/composer/autoload_static.php

    r2804538 r2816455  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b
     7class ComposerStaticInit515739b20b3e474b871da0023cba0384
    88{
    99    public static $files = array (
     
    7777    {
    7878        return \Closure::bind(function () use ($loader) {
    79             $loader->prefixLengthsPsr4 = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$prefixLengthsPsr4;
    80             $loader->prefixDirsPsr4 = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$prefixDirsPsr4;
    81             $loader->classMap = ComposerStaticInitfc5fe89df5fe4a9edff4aa9989f1859b::$classMap;
     79            $loader->prefixLengthsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixLengthsPsr4;
     80            $loader->prefixDirsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixDirsPsr4;
     81            $loader->classMap = ComposerStaticInit515739b20b3e474b871da0023cba0384::$classMap;
    8282
    8383        }, null, ClassLoader::class);
  • next-active-directory-integration/trunk/vendor/composer/installed.json

    r2804538 r2816455  
    268268        {
    269269            "name": "symfony/polyfill-ctype",
    270             "version": "v1.26.0",
    271             "version_normalized": "1.26.0.0",
     270            "version": "v1.27.0",
     271            "version_normalized": "1.27.0.0",
    272272            "source": {
    273273                "type": "git",
    274274                "url": "https://github.com/symfony/polyfill-ctype.git",
    275                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
    276             },
    277             "dist": {
    278                 "type": "zip",
    279                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
    280                 "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
     275                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
     276            },
     277            "dist": {
     278                "type": "zip",
     279                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
     280                "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
    281281                "shasum": ""
    282282            },
     
    290290                "ext-ctype": "For best performance"
    291291            },
    292             "time": "2022-05-24T11:49:31+00:00",
     292            "time": "2022-11-03T14:55:06+00:00",
    293293            "type": "library",
    294294            "extra": {
    295295                "branch-alias": {
    296                     "dev-main": "1.26-dev"
     296                    "dev-main": "1.27-dev"
    297297                },
    298298                "thanks": {
     
    333333            ],
    334334            "support": {
    335                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
     335                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
    336336            },
    337337            "funding": [
  • next-active-directory-integration/trunk/vendor/composer/installed.php

    r2804538 r2816455  
    22    'root' => array(
    33        'name' => '__root__',
    4         'pretty_version' => '2.3.4',
    5         'version' => '2.3.4.0',
    6         'reference' => '83416338048e134b745df99255e1393162522d41',
     4        'pretty_version' => '2.3.5',
     5        'version' => '2.3.5.0',
     6        'reference' => 'a9bb32ffe0f04a03798d7550e9f3fd6425d6c426',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '2.3.4',
    15             'version' => '2.3.4.0',
    16             'reference' => '83416338048e134b745df99255e1393162522d41',
     14            'pretty_version' => '2.3.5',
     15            'version' => '2.3.5.0',
     16            'reference' => 'a9bb32ffe0f04a03798d7550e9f3fd6425d6c426',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
     
    6363        ),
    6464        'symfony/polyfill-ctype' => array(
    65             'pretty_version' => 'v1.26.0',
    66             'version' => '1.26.0.0',
    67             'reference' => '6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',
     65            'pretty_version' => 'v1.27.0',
     66            'version' => '1.27.0.0',
     67            'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a',
    6868            'type' => 'library',
    6969            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
  • next-active-directory-integration/trunk/vendor/symfony/polyfill-ctype/composer.json

    r2804538 r2816455  
    3232    "extra": {
    3333        "branch-alias": {
    34             "dev-main": "1.26-dev"
     34            "dev-main": "1.27-dev"
    3535        },
    3636        "thanks": {
Note: See TracChangeset for help on using the changeset viewer.