Changeset 2816455
- Timestamp:
- 11/11/2022 07:55:53 AM (3 years ago)
- Location:
- next-active-directory-integration
- Files:
-
- 22 edited
- 1 copied
-
tags/2.3.5 (copied) (copied from next-active-directory-integration/trunk)
-
tags/2.3.5/classes/Core/Encryption.php (modified) (4 diffs)
-
tags/2.3.5/classes/Migration/MigratePasswordEncryption.php (modified) (1 diff)
-
tags/2.3.5/composer.lock (modified) (25 diffs)
-
tags/2.3.5/index.php (modified) (1 diff)
-
tags/2.3.5/readme.txt (modified) (2 diffs)
-
tags/2.3.5/vendor/autoload.php (modified) (1 diff)
-
tags/2.3.5/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/2.3.5/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.3.5/vendor/composer/installed.json (modified) (3 diffs)
-
tags/2.3.5/vendor/composer/installed.php (modified) (3 diffs)
-
tags/2.3.5/vendor/symfony/polyfill-ctype/composer.json (modified) (1 diff)
-
trunk/classes/Core/Encryption.php (modified) (4 diffs)
-
trunk/classes/Migration/MigratePasswordEncryption.php (modified) (1 diff)
-
trunk/composer.lock (modified) (25 diffs)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (3 diffs)
-
trunk/vendor/composer/installed.php (modified) (3 diffs)
-
trunk/vendor/symfony/polyfill-ctype/composer.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
next-active-directory-integration/tags/2.3.5/classes/Core/Encryption.php
r1756617 r2816455 24 24 private $logger; 25 25 26 27 28 26 public function __construct() 29 27 { … … 31 29 } 32 30 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 33 46 /** 34 47 * This method will encrypt the $plainText and return the encrypted text. … … 40 53 public function encrypt( $plainText ) 41 54 { 42 $password = 'Next Active Directory Integration' . AUTH_SALT;55 $password = 'Next Active Directory Integration' . self::getSalt(); 43 56 44 57 try … … 65 78 public function decrypt( $encryptedText ) 66 79 { 67 $password = 'Next Active Directory Integration' . AUTH_SALT;80 $password = 'Next Active Directory Integration' . self::getSalt(); 68 81 69 82 // do not decrypt empty texts -
next-active-directory-integration/tags/2.3.5/classes/Migration/MigratePasswordEncryption.php
r1608780 r2816455 104 104 105 105 // get key 106 $key = hash('md5', AUTH_SALT. 'Active Directory Integration');106 $key = hash('md5', NextADInt_Core_Encryption::getSalt() . 'Active Directory Integration'); 107 107 // decrypt $data 108 108 $data = @mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $encrypted, MCRYPT_MODE_CBC, $iv); -
next-active-directory-integration/tags/2.3.5/composer.lock
r2804538 r2816455 262 262 { 263 263 "name": "symfony/polyfill-ctype", 264 "version": "v1.2 6.0",264 "version": "v1.27.0", 265 265 "source": { 266 266 "type": "git", 267 267 "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", 274 274 "shasum": "" 275 275 }, … … 286 286 "extra": { 287 287 "branch-alias": { 288 "dev-main": "1.2 6-dev"288 "dev-main": "1.27-dev" 289 289 }, 290 290 "thanks": { … … 324 324 ], 325 325 "support": { 326 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.2 6.0"326 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" 327 327 }, 328 328 "funding": [ … … 340 340 } 341 341 ], 342 "time": "2022- 05-24T11:49:31+00:00"342 "time": "2022-11-03T14:55:06+00:00" 343 343 }, 344 344 { … … 1353 1353 { 1354 1354 "name": "phpunit/php-code-coverage", 1355 "version": "9.2.1 7",1355 "version": "9.2.18", 1356 1356 "source": { 1357 1357 "type": "git", 1358 1358 "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", 1365 1365 "shasum": "" 1366 1366 }, … … 1418 1418 "support": { 1419 1419 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 1420 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.1 7"1420 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18" 1421 1421 }, 1422 1422 "funding": [ … … 1426 1426 } 1427 1427 ], 1428 "time": "2022- 08-30T12:24:04+00:00"1428 "time": "2022-10-27T13:35:33+00:00" 1429 1429 }, 1430 1430 { … … 2791 2791 { 2792 2792 "name": "symfony/console", 2793 "version": "v5.4.1 4",2793 "version": "v5.4.15", 2794 2794 "source": { 2795 2795 "type": "git", 2796 2796 "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", 2803 2803 "shasum": "" 2804 2804 }, … … 2870 2870 ], 2871 2871 "support": { 2872 "source": "https://github.com/symfony/console/tree/v5.4.1 4"2872 "source": "https://github.com/symfony/console/tree/v5.4.15" 2873 2873 }, 2874 2874 "funding": [ … … 2886 2886 } 2887 2887 ], 2888 "time": "2022-10- 07T08:01:20+00:00"2888 "time": "2022-10-26T21:41:52+00:00" 2889 2889 }, 2890 2890 { … … 3020 3020 { 3021 3021 "name": "symfony/polyfill-intl-grapheme", 3022 "version": "v1.2 6.0",3022 "version": "v1.27.0", 3023 3023 "source": { 3024 3024 "type": "git", 3025 3025 "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", 3032 3032 "shasum": "" 3033 3033 }, … … 3041 3041 "extra": { 3042 3042 "branch-alias": { 3043 "dev-main": "1.2 6-dev"3043 "dev-main": "1.27-dev" 3044 3044 }, 3045 3045 "thanks": { … … 3081 3081 ], 3082 3082 "support": { 3083 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.2 6.0"3083 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" 3084 3084 }, 3085 3085 "funding": [ … … 3097 3097 } 3098 3098 ], 3099 "time": "2022- 05-24T11:49:31+00:00"3099 "time": "2022-11-03T14:55:06+00:00" 3100 3100 }, 3101 3101 { 3102 3102 "name": "symfony/polyfill-intl-normalizer", 3103 "version": "v1.2 6.0",3103 "version": "v1.27.0", 3104 3104 "source": { 3105 3105 "type": "git", 3106 3106 "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", 3113 3113 "shasum": "" 3114 3114 }, … … 3122 3122 "extra": { 3123 3123 "branch-alias": { 3124 "dev-main": "1.2 6-dev"3124 "dev-main": "1.27-dev" 3125 3125 }, 3126 3126 "thanks": { … … 3165 3165 ], 3166 3166 "support": { 3167 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.2 6.0"3167 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" 3168 3168 }, 3169 3169 "funding": [ … … 3181 3181 } 3182 3182 ], 3183 "time": "2022- 05-24T11:49:31+00:00"3183 "time": "2022-11-03T14:55:06+00:00" 3184 3184 }, 3185 3185 { 3186 3186 "name": "symfony/polyfill-php73", 3187 "version": "v1.2 6.0",3187 "version": "v1.27.0", 3188 3188 "source": { 3189 3189 "type": "git", 3190 3190 "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", 3197 3197 "shasum": "" 3198 3198 }, … … 3203 3203 "extra": { 3204 3204 "branch-alias": { 3205 "dev-main": "1.2 6-dev"3205 "dev-main": "1.27-dev" 3206 3206 }, 3207 3207 "thanks": { … … 3244 3244 ], 3245 3245 "support": { 3246 "source": "https://github.com/symfony/polyfill-php73/tree/v1.2 6.0"3246 "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" 3247 3247 }, 3248 3248 "funding": [ … … 3260 3260 } 3261 3261 ], 3262 "time": "2022- 05-24T11:49:31+00:00"3262 "time": "2022-11-03T14:55:06+00:00" 3263 3263 }, 3264 3264 { 3265 3265 "name": "symfony/polyfill-php80", 3266 "version": "v1.2 6.0",3266 "version": "v1.27.0", 3267 3267 "source": { 3268 3268 "type": "git", 3269 3269 "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", 3276 3276 "shasum": "" 3277 3277 }, … … 3282 3282 "extra": { 3283 3283 "branch-alias": { 3284 "dev-main": "1.2 6-dev"3284 "dev-main": "1.27-dev" 3285 3285 }, 3286 3286 "thanks": { … … 3327 3327 ], 3328 3328 "support": { 3329 "source": "https://github.com/symfony/polyfill-php80/tree/v1.2 6.0"3329 "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" 3330 3330 }, 3331 3331 "funding": [ … … 3343 3343 } 3344 3344 ], 3345 "time": "2022- 05-10T07:21:04+00:00"3345 "time": "2022-11-03T14:55:06+00:00" 3346 3346 }, 3347 3347 { … … 3491 3491 { 3492 3492 "name": "symfony/string", 3493 "version": "v6.0.1 4",3493 "version": "v6.0.15", 3494 3494 "source": { 3495 3495 "type": "git", 3496 3496 "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", 3503 3503 "shasum": "" 3504 3504 }, … … 3556 3556 ], 3557 3557 "support": { 3558 "source": "https://github.com/symfony/string/tree/v6.0.1 4"3558 "source": "https://github.com/symfony/string/tree/v6.0.15" 3559 3559 }, 3560 3560 "funding": [ -
next-active-directory-integration/tags/2.3.5/index.php
r2804538 r2816455 4 4 Plugin URI: https://www.active-directory-wp.com 5 5 Description: 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. 46 Version: 2.3.5 7 7 Author: active-directory-wp.com 8 8 Author URI: https://active-directory-wp.com -
next-active-directory-integration/tags/2.3.5/readme.txt
r2804538 r2816455 4 4 Requires at least: 5.6 5 5 Tested up to: 6.1 6 Stable tag: 2.3. 46 Stable tag: 2.3.5 7 7 License: GPLv3 8 8 Donate link: https://active-directory-wp.com … … 127 127 For detailed information you can visit the official [GitHub repository of Next Active Directory Integration](https://github.com/NeosIT/active-directory-integration2) 128 128 129 = 2.3.5 = 130 * FIXED: Blank configuration page with PHP >= 8.0 and missing AUTH_SALT constant (#164) 131 129 132 = 2.3.4 = 130 133 * CHANGED: twig/twig dependency updated to 3.4.3 (#162) -
next-active-directory-integration/tags/2.3.5/vendor/autoload.php
r2804538 r2816455 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b::getLoader();25 return ComposerAutoloaderInit515739b20b3e474b871da0023cba0384::getLoader(); -
next-active-directory-integration/tags/2.3.5/vendor/composer/autoload_real.php
r2804538 r2816455 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b5 class ComposerAutoloaderInit515739b20b3e474b871da0023cba0384 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire fc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file);38 composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire fc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file)50 function composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
next-active-directory-integration/tags/2.3.5/vendor/composer/autoload_static.php
r2804538 r2816455 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b7 class ComposerStaticInit515739b20b3e474b871da0023cba0384 8 8 { 9 9 public static $files = array ( … … 77 77 { 78 78 return \Closure::bind(function () use ($loader) { 79 $loader->prefixLengthsPsr4 = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$prefixLengthsPsr4;80 $loader->prefixDirsPsr4 = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$prefixDirsPsr4;81 $loader->classMap = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$classMap;79 $loader->prefixLengthsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixLengthsPsr4; 80 $loader->prefixDirsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixDirsPsr4; 81 $loader->classMap = ComposerStaticInit515739b20b3e474b871da0023cba0384::$classMap; 82 82 83 83 }, null, ClassLoader::class); -
next-active-directory-integration/tags/2.3.5/vendor/composer/installed.json
r2804538 r2816455 268 268 { 269 269 "name": "symfony/polyfill-ctype", 270 "version": "v1.2 6.0",271 "version_normalized": "1.2 6.0.0",270 "version": "v1.27.0", 271 "version_normalized": "1.27.0.0", 272 272 "source": { 273 273 "type": "git", 274 274 "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", 281 281 "shasum": "" 282 282 }, … … 290 290 "ext-ctype": "For best performance" 291 291 }, 292 "time": "2022- 05-24T11:49:31+00:00",292 "time": "2022-11-03T14:55:06+00:00", 293 293 "type": "library", 294 294 "extra": { 295 295 "branch-alias": { 296 "dev-main": "1.2 6-dev"296 "dev-main": "1.27-dev" 297 297 }, 298 298 "thanks": { … … 333 333 ], 334 334 "support": { 335 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.2 6.0"335 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" 336 336 }, 337 337 "funding": [ -
next-active-directory-integration/tags/2.3.5/vendor/composer/installed.php
r2804538 r2816455 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '__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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', … … 63 63 ), 64 64 'symfony/polyfill-ctype' => array( 65 'pretty_version' => 'v1.2 6.0',66 'version' => '1.2 6.0.0',67 'reference' => ' 6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',65 'pretty_version' => 'v1.27.0', 66 'version' => '1.27.0.0', 67 'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a', 68 68 'type' => 'library', 69 69 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', -
next-active-directory-integration/tags/2.3.5/vendor/symfony/polyfill-ctype/composer.json
r2804538 r2816455 32 32 "extra": { 33 33 "branch-alias": { 34 "dev-main": "1.2 6-dev"34 "dev-main": "1.27-dev" 35 35 }, 36 36 "thanks": { -
next-active-directory-integration/trunk/classes/Core/Encryption.php
r1756617 r2816455 24 24 private $logger; 25 25 26 27 28 26 public function __construct() 29 27 { … … 31 29 } 32 30 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 33 46 /** 34 47 * This method will encrypt the $plainText and return the encrypted text. … … 40 53 public function encrypt( $plainText ) 41 54 { 42 $password = 'Next Active Directory Integration' . AUTH_SALT;55 $password = 'Next Active Directory Integration' . self::getSalt(); 43 56 44 57 try … … 65 78 public function decrypt( $encryptedText ) 66 79 { 67 $password = 'Next Active Directory Integration' . AUTH_SALT;80 $password = 'Next Active Directory Integration' . self::getSalt(); 68 81 69 82 // do not decrypt empty texts -
next-active-directory-integration/trunk/classes/Migration/MigratePasswordEncryption.php
r1608780 r2816455 104 104 105 105 // get key 106 $key = hash('md5', AUTH_SALT. 'Active Directory Integration');106 $key = hash('md5', NextADInt_Core_Encryption::getSalt() . 'Active Directory Integration'); 107 107 // decrypt $data 108 108 $data = @mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $encrypted, MCRYPT_MODE_CBC, $iv); -
next-active-directory-integration/trunk/composer.lock
r2804538 r2816455 262 262 { 263 263 "name": "symfony/polyfill-ctype", 264 "version": "v1.2 6.0",264 "version": "v1.27.0", 265 265 "source": { 266 266 "type": "git", 267 267 "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", 274 274 "shasum": "" 275 275 }, … … 286 286 "extra": { 287 287 "branch-alias": { 288 "dev-main": "1.2 6-dev"288 "dev-main": "1.27-dev" 289 289 }, 290 290 "thanks": { … … 324 324 ], 325 325 "support": { 326 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.2 6.0"326 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" 327 327 }, 328 328 "funding": [ … … 340 340 } 341 341 ], 342 "time": "2022- 05-24T11:49:31+00:00"342 "time": "2022-11-03T14:55:06+00:00" 343 343 }, 344 344 { … … 1353 1353 { 1354 1354 "name": "phpunit/php-code-coverage", 1355 "version": "9.2.1 7",1355 "version": "9.2.18", 1356 1356 "source": { 1357 1357 "type": "git", 1358 1358 "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", 1365 1365 "shasum": "" 1366 1366 }, … … 1418 1418 "support": { 1419 1419 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 1420 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.1 7"1420 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.18" 1421 1421 }, 1422 1422 "funding": [ … … 1426 1426 } 1427 1427 ], 1428 "time": "2022- 08-30T12:24:04+00:00"1428 "time": "2022-10-27T13:35:33+00:00" 1429 1429 }, 1430 1430 { … … 2791 2791 { 2792 2792 "name": "symfony/console", 2793 "version": "v5.4.1 4",2793 "version": "v5.4.15", 2794 2794 "source": { 2795 2795 "type": "git", 2796 2796 "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", 2803 2803 "shasum": "" 2804 2804 }, … … 2870 2870 ], 2871 2871 "support": { 2872 "source": "https://github.com/symfony/console/tree/v5.4.1 4"2872 "source": "https://github.com/symfony/console/tree/v5.4.15" 2873 2873 }, 2874 2874 "funding": [ … … 2886 2886 } 2887 2887 ], 2888 "time": "2022-10- 07T08:01:20+00:00"2888 "time": "2022-10-26T21:41:52+00:00" 2889 2889 }, 2890 2890 { … … 3020 3020 { 3021 3021 "name": "symfony/polyfill-intl-grapheme", 3022 "version": "v1.2 6.0",3022 "version": "v1.27.0", 3023 3023 "source": { 3024 3024 "type": "git", 3025 3025 "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", 3032 3032 "shasum": "" 3033 3033 }, … … 3041 3041 "extra": { 3042 3042 "branch-alias": { 3043 "dev-main": "1.2 6-dev"3043 "dev-main": "1.27-dev" 3044 3044 }, 3045 3045 "thanks": { … … 3081 3081 ], 3082 3082 "support": { 3083 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.2 6.0"3083 "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" 3084 3084 }, 3085 3085 "funding": [ … … 3097 3097 } 3098 3098 ], 3099 "time": "2022- 05-24T11:49:31+00:00"3099 "time": "2022-11-03T14:55:06+00:00" 3100 3100 }, 3101 3101 { 3102 3102 "name": "symfony/polyfill-intl-normalizer", 3103 "version": "v1.2 6.0",3103 "version": "v1.27.0", 3104 3104 "source": { 3105 3105 "type": "git", 3106 3106 "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", 3113 3113 "shasum": "" 3114 3114 }, … … 3122 3122 "extra": { 3123 3123 "branch-alias": { 3124 "dev-main": "1.2 6-dev"3124 "dev-main": "1.27-dev" 3125 3125 }, 3126 3126 "thanks": { … … 3165 3165 ], 3166 3166 "support": { 3167 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.2 6.0"3167 "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" 3168 3168 }, 3169 3169 "funding": [ … … 3181 3181 } 3182 3182 ], 3183 "time": "2022- 05-24T11:49:31+00:00"3183 "time": "2022-11-03T14:55:06+00:00" 3184 3184 }, 3185 3185 { 3186 3186 "name": "symfony/polyfill-php73", 3187 "version": "v1.2 6.0",3187 "version": "v1.27.0", 3188 3188 "source": { 3189 3189 "type": "git", 3190 3190 "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", 3197 3197 "shasum": "" 3198 3198 }, … … 3203 3203 "extra": { 3204 3204 "branch-alias": { 3205 "dev-main": "1.2 6-dev"3205 "dev-main": "1.27-dev" 3206 3206 }, 3207 3207 "thanks": { … … 3244 3244 ], 3245 3245 "support": { 3246 "source": "https://github.com/symfony/polyfill-php73/tree/v1.2 6.0"3246 "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" 3247 3247 }, 3248 3248 "funding": [ … … 3260 3260 } 3261 3261 ], 3262 "time": "2022- 05-24T11:49:31+00:00"3262 "time": "2022-11-03T14:55:06+00:00" 3263 3263 }, 3264 3264 { 3265 3265 "name": "symfony/polyfill-php80", 3266 "version": "v1.2 6.0",3266 "version": "v1.27.0", 3267 3267 "source": { 3268 3268 "type": "git", 3269 3269 "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", 3276 3276 "shasum": "" 3277 3277 }, … … 3282 3282 "extra": { 3283 3283 "branch-alias": { 3284 "dev-main": "1.2 6-dev"3284 "dev-main": "1.27-dev" 3285 3285 }, 3286 3286 "thanks": { … … 3327 3327 ], 3328 3328 "support": { 3329 "source": "https://github.com/symfony/polyfill-php80/tree/v1.2 6.0"3329 "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" 3330 3330 }, 3331 3331 "funding": [ … … 3343 3343 } 3344 3344 ], 3345 "time": "2022- 05-10T07:21:04+00:00"3345 "time": "2022-11-03T14:55:06+00:00" 3346 3346 }, 3347 3347 { … … 3491 3491 { 3492 3492 "name": "symfony/string", 3493 "version": "v6.0.1 4",3493 "version": "v6.0.15", 3494 3494 "source": { 3495 3495 "type": "git", 3496 3496 "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", 3503 3503 "shasum": "" 3504 3504 }, … … 3556 3556 ], 3557 3557 "support": { 3558 "source": "https://github.com/symfony/string/tree/v6.0.1 4"3558 "source": "https://github.com/symfony/string/tree/v6.0.15" 3559 3559 }, 3560 3560 "funding": [ -
next-active-directory-integration/trunk/index.php
r2804538 r2816455 4 4 Plugin URI: https://www.active-directory-wp.com 5 5 Description: 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. 46 Version: 2.3.5 7 7 Author: active-directory-wp.com 8 8 Author URI: https://active-directory-wp.com -
next-active-directory-integration/trunk/readme.txt
r2804538 r2816455 4 4 Requires at least: 5.6 5 5 Tested up to: 6.1 6 Stable tag: 2.3. 46 Stable tag: 2.3.5 7 7 License: GPLv3 8 8 Donate link: https://active-directory-wp.com … … 127 127 For detailed information you can visit the official [GitHub repository of Next Active Directory Integration](https://github.com/NeosIT/active-directory-integration2) 128 128 129 = 2.3.5 = 130 * FIXED: Blank configuration page with PHP >= 8.0 and missing AUTH_SALT constant (#164) 131 129 132 = 2.3.4 = 130 133 * CHANGED: twig/twig dependency updated to 3.4.3 (#162) -
next-active-directory-integration/trunk/vendor/autoload.php
r2804538 r2816455 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b::getLoader();25 return ComposerAutoloaderInit515739b20b3e474b871da0023cba0384::getLoader(); -
next-active-directory-integration/trunk/vendor/composer/autoload_real.php
r2804538 r2816455 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b5 class ComposerAutoloaderInit515739b20b3e474b871da0023cba0384 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit fc5fe89df5fe4a9edff4aa9989f1859b', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit515739b20b3e474b871da0023cba0384', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 35 36 $includeFiles = \Composer\Autoload\ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$files;36 $includeFiles = \Composer\Autoload\ComposerStaticInit515739b20b3e474b871da0023cba0384::$files; 37 37 foreach ($includeFiles as $fileIdentifier => $file) { 38 composerRequire fc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file);38 composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file); 39 39 } 40 40 … … 48 48 * @return void 49 49 */ 50 function composerRequire fc5fe89df5fe4a9edff4aa9989f1859b($fileIdentifier, $file)50 function composerRequire515739b20b3e474b871da0023cba0384($fileIdentifier, $file) 51 51 { 52 52 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
next-active-directory-integration/trunk/vendor/composer/autoload_static.php
r2804538 r2816455 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b7 class ComposerStaticInit515739b20b3e474b871da0023cba0384 8 8 { 9 9 public static $files = array ( … … 77 77 { 78 78 return \Closure::bind(function () use ($loader) { 79 $loader->prefixLengthsPsr4 = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$prefixLengthsPsr4;80 $loader->prefixDirsPsr4 = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$prefixDirsPsr4;81 $loader->classMap = ComposerStaticInit fc5fe89df5fe4a9edff4aa9989f1859b::$classMap;79 $loader->prefixLengthsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixLengthsPsr4; 80 $loader->prefixDirsPsr4 = ComposerStaticInit515739b20b3e474b871da0023cba0384::$prefixDirsPsr4; 81 $loader->classMap = ComposerStaticInit515739b20b3e474b871da0023cba0384::$classMap; 82 82 83 83 }, null, ClassLoader::class); -
next-active-directory-integration/trunk/vendor/composer/installed.json
r2804538 r2816455 268 268 { 269 269 "name": "symfony/polyfill-ctype", 270 "version": "v1.2 6.0",271 "version_normalized": "1.2 6.0.0",270 "version": "v1.27.0", 271 "version_normalized": "1.27.0.0", 272 272 "source": { 273 273 "type": "git", 274 274 "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", 281 281 "shasum": "" 282 282 }, … … 290 290 "ext-ctype": "For best performance" 291 291 }, 292 "time": "2022- 05-24T11:49:31+00:00",292 "time": "2022-11-03T14:55:06+00:00", 293 293 "type": "library", 294 294 "extra": { 295 295 "branch-alias": { 296 "dev-main": "1.2 6-dev"296 "dev-main": "1.27-dev" 297 297 }, 298 298 "thanks": { … … 333 333 ], 334 334 "support": { 335 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.2 6.0"335 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" 336 336 }, 337 337 "funding": [ -
next-active-directory-integration/trunk/vendor/composer/installed.php
r2804538 r2816455 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '__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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', … … 63 63 ), 64 64 'symfony/polyfill-ctype' => array( 65 'pretty_version' => 'v1.2 6.0',66 'version' => '1.2 6.0.0',67 'reference' => ' 6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',65 'pretty_version' => 'v1.27.0', 66 'version' => '1.27.0.0', 67 'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a', 68 68 'type' => 'library', 69 69 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', -
next-active-directory-integration/trunk/vendor/symfony/polyfill-ctype/composer.json
r2804538 r2816455 32 32 "extra": { 33 33 "branch-alias": { 34 "dev-main": "1.2 6-dev"34 "dev-main": "1.27-dev" 35 35 }, 36 36 "thanks": {
Note: See TracChangeset
for help on using the changeset viewer.