Changeset 3200400
- Timestamp:
- 12/01/2024 09:13:00 PM (13 months ago)
- Location:
- simple-website-redirect
- Files:
-
- 12 deleted
- 28 edited
- 1 copied
-
assets/icon-128x128.png (modified) (1 prop) (previous)
-
assets/icon-256x256.png (modified) (1 prop) (previous)
-
assets/screenshot-1.png (modified) (1 prop) (previous)
-
assets/screenshot-2.png (modified) (1 prop) (previous)
-
tags/1.3.0 (copied) (copied from simple-website-redirect/trunk)
-
tags/1.3.0/.husky (deleted)
-
tags/1.3.0/SimpleWebsiteRedirect.php (modified) (6 diffs)
-
tags/1.3.0/languages/simple-website-redirect.pot (modified) (1 diff)
-
tags/1.3.0/readme.txt (modified) (2 diffs)
-
tags/1.3.0/vendor/autoload.php (modified) (1 diff)
-
tags/1.3.0/vendor/bin (deleted)
-
tags/1.3.0/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.3.0/vendor/composer/autoload_files.php (deleted)
-
tags/1.3.0/vendor/composer/autoload_namespaces.php (modified) (1 diff)
-
tags/1.3.0/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
tags/1.3.0/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/1.3.0/vendor/composer/autoload_static.php (modified) (3 diffs)
-
tags/1.3.0/vendor/composer/installed.json (modified) (2 diffs)
-
tags/1.3.0/vendor/composer/installed.php (modified) (3 diffs)
-
tags/1.3.0/vendor/mustache (deleted)
-
tags/1.3.0/vendor/symfony (deleted)
-
tags/1.3.0/vendor/wp-cli (deleted)
-
tags/1.3.0/vendor/wpscholar/url/Url.php (modified) (2 diffs)
-
trunk/.husky (deleted)
-
trunk/SimpleWebsiteRedirect.php (modified) (6 diffs)
-
trunk/languages/simple-website-redirect.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/bin (deleted)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_files.php (deleted)
-
trunk/vendor/composer/autoload_namespaces.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_psr4.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (3 diffs)
-
trunk/vendor/composer/installed.json (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (3 diffs)
-
trunk/vendor/mustache (deleted)
-
trunk/vendor/symfony (deleted)
-
trunk/vendor/wp-cli (deleted)
-
trunk/vendor/wpscholar/url/Url.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-website-redirect/assets/icon-128x128.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
simple-website-redirect/assets/icon-256x256.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
simple-website-redirect/assets/screenshot-1.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
simple-website-redirect/assets/screenshot-2.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
simple-website-redirect/tags/1.3.0/SimpleWebsiteRedirect.php
r3128446 r3200400 12 12 * Plugin URI: https://wpscholar.com/wordpress-plugins/simple-website-redirect/ 13 13 * Description: A simple plugin designed to redirect an entire website (except the WordPress admin) to another website. 14 * Version: 1. 2.914 * Version: 1.3.0 15 15 * Requires PHP: 7.4 16 16 * Requires at least: 4.7 … … 142 142 143 143 /** 144 * Get a collection of excluded paths.144 * Get excluded paths as provided by the user. 145 145 * 146 146 * @return array … … 151 151 152 152 /** 153 * Get a collection of excluded query parameters.153 * Get excluded query parameters as provided by the user. 154 154 * 155 155 * @return array … … 233 233 'elementor-preview', // Allows editing via Elementor 234 234 'preview_id', // Allows previewing in WordPress 235 'rest_route', // Allows REST API requests 235 236 ) 236 237 ); 237 238 $query_params = self::$url->getQueryVars(); 238 foreach ( $excluded_params as $name => $value) {239 foreach ( $excluded_params as $name ) { 239 240 if ( array_key_exists( $name, $query_params ) ) { 240 if ( empty( $value ) ) { 241 $should_redirect = false; 242 break; 243 } elseif ( $query_params[ $name ] === $value ) { 244 $should_redirect = false; 245 break; 246 } 241 $should_redirect = false; 242 break; 247 243 } 248 244 } … … 258 254 * @return array 259 255 */ 260 public static function filter_excluded_paths( $excluded_paths ) {256 public static function filter_excluded_paths( array $excluded_paths ) { 261 257 return array_merge( 262 258 array( … … 664 660 } 665 661 666 SimpleWebsiteRedirect::initialize();662 add_action( 'plugins_loaded', array( 'SimpleWebsiteRedirect', 'initialize' ) ); -
simple-website-redirect/tags/1.3.0/languages/simple-website-redirect.pot
r3128446 r3200400 12 12 "POT-Creation-Date: \n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1 0.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: simple-website-redirect\n" 16 16 -
simple-website-redirect/tags/1.3.0/readme.txt
r3128446 r3200400 2 2 Contributors: wpscholar 3 3 Donate link: https://www.paypal.me/wpscholar 4 Tags: site,website, redirect, redirection, forward, forwarding4 Tags: website, redirect, redirection, forward, forwarding 5 5 Requires at least: 4.7 6 Tested up to: 6. 67 Stable tag: 1. 2.96 Tested up to: 6.7 7 Stable tag: 1.3.0 8 8 Requires PHP: 7.4 9 9 License: GPL V2 or later … … 58 58 59 59 == Changelog == 60 61 = 1.3.0 = 62 * Fix issue where query params weren't properly being checked. 63 * Allow all REST API calls to work without being redirected (allows WP editor and other page builders to work in the admin area). 60 64 61 65 = 1.2.9 = -
simple-website-redirect/tags/1.3.0/vendor/autoload.php
r3128446 r3200400 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd::getLoader();25 return ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46::getLoader(); -
simple-website-redirect/tags/1.3.0/vendor/composer/autoload_classmap.php
r3128446 r3200400 7 7 8 8 return array( 9 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',10 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php',11 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php',12 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 13 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php',14 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php',15 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php',16 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php',17 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php',18 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php',19 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php',20 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php',21 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php',22 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php',23 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php',24 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php',25 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php',26 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php',27 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php',28 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php',29 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php',30 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php',31 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php',32 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php',33 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php',34 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php',35 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php',36 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php',37 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php',38 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php',39 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php',40 'Mustache_Loader_ProductionFilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php',41 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php',42 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php',43 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php',44 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php',45 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php',46 'Mustache_Source' => $vendorDir . '/mustache/mustache/src/Mustache/Source.php',47 'Mustache_Source_FilesystemSource' => $vendorDir . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php',48 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php',49 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php',50 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php',51 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php',52 'Network_Namespace' => $vendorDir . '/wp-cli/entity-command/src/Network_Namespace.php',53 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php',54 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',55 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php',56 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php',57 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php',58 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php',59 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php',60 'Site_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Meta_Command.php',61 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php',62 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',63 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php',64 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php',65 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php',66 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php',67 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => $vendorDir . '/symfony/finder/Exception/DirectoryNotFoundException.php',68 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php',69 'Symfony\\Component\\Finder\\Gitignore' => $vendorDir . '/symfony/finder/Gitignore.php',70 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php',71 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php',72 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php',73 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php',74 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',75 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php',76 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php',77 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php',78 'Symfony\\Component\\Finder\\Iterator\\LazyIterator' => $vendorDir . '/symfony/finder/Iterator/LazyIterator.php',79 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php',80 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php',81 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php',82 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php',83 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php',84 'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => $vendorDir . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',85 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php',86 'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',87 'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',88 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php',89 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php',90 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php',91 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',92 'User_Application_Password_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Application_Password_Command.php',93 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php',94 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php',95 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php',96 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php',97 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',98 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php',99 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php',100 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php',101 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php',102 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php',103 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php',104 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php',105 'WP_CLI\\Bootstrap\\DeclareFallbackFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareFallbackFunctions.php',106 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php',107 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php',108 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php',109 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php',110 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php',111 'WP_CLI\\Bootstrap\\IncludeRequestsAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php',112 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php',113 'WP_CLI\\Bootstrap\\InitializeContexts' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php',114 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php',115 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php',116 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php',117 'WP_CLI\\Bootstrap\\LoadExecCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadExecCommand.php',118 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php',119 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php',120 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php',121 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php',122 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php',123 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php',124 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php',125 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php',126 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php',127 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php',128 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php',129 'WP_CLI\\Context' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context.php',130 'WP_CLI\\ContextManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ContextManager.php',131 'WP_CLI\\Context\\Admin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php',132 'WP_CLI\\Context\\Auto' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php',133 'WP_CLI\\Context\\Cli' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php',134 'WP_CLI\\Context\\Frontend' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php',135 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php',136 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php',137 'WP_CLI\\Dispatcher\\CommandNamespace' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php',138 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php',139 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php',140 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php',141 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php',142 'WP_CLI\\Exception\\NonExistentKeyException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Exception/NonExistentKeyException.php',143 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php',144 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php',145 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php',146 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php',147 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php',148 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php',149 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php',150 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php',151 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php',152 'WP_CLI\\Inflector' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php',153 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php',154 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php',155 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php',156 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php',157 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php',158 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php',159 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php',160 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php',161 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php',162 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php',163 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php',164 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php',165 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php',166 'WP_CLI\\RequestsLibrary' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php',167 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php',168 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php',169 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php',170 'WP_CLI\\Traverser\\RecursiveDataStructureTraverser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Traverser/RecursiveDataStructureTraverser.php',171 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php',172 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php',173 'WP_CLI\\WpOrgApi' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php',174 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php',175 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php',176 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php',177 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php',178 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php',179 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php',180 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php',181 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php',182 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php',183 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php',184 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php',185 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php',186 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php',187 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php',188 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php',189 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php',190 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php',191 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php',192 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php',193 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php',194 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php',195 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php',196 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php',197 10 'wpscholar\\Url' => $vendorDir . '/wpscholar/url/Url.php', 198 11 ); -
simple-website-redirect/tags/1.3.0/vendor/composer/autoload_namespaces.php
r3128446 r3200400 7 7 8 8 return array( 9 'cli' => array($vendorDir . '/wp-cli/php-cli-tools/lib'),10 'WP_CLI\\' => array($vendorDir . '/wp-cli/wp-cli/php'),11 'Mustache' => array($vendorDir . '/mustache/mustache/src'),12 9 ); -
simple-website-redirect/tags/1.3.0/vendor/composer/autoload_psr4.php
r3128446 r3200400 8 8 return array( 9 9 'wpscholar\\' => array($vendorDir . '/wpscholar/url'), 10 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),11 'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),12 'Mustangostang\\' => array($vendorDir . '/wp-cli/mustangostang-spyc/src'),13 10 ); -
simple-website-redirect/tags/1.3.0/vendor/composer/autoload_real.php
r3128446 r3200400 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd5 class ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 693a8af134a3b951d493656bc2d2d8cd::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$files;37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {39 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;40 41 require $file;42 }43 }, null, null);44 foreach ($filesToLoad as $fileIdentifier => $file) {45 $requireFile($fileIdentifier, $file);46 }47 35 48 36 return $loader; -
simple-website-redirect/tags/1.3.0/vendor/composer/autoload_static.php
r3128446 r3200400 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 693a8af134a3b951d493656bc2d2d8cd7 class ComposerStaticInit7387a277d1209dff8496fc5ad8379c46 8 8 { 9 public static $files = array (10 '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',11 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',12 '3937806105cc8e221b8fa8db5b70d2f2' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/includes/functions.php',13 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php',14 'f3f0199a3ecd9f501d0a3b361bd2f61c' => __DIR__ . '/..' . '/wp-cli/entity-command/entity-command.php',15 );16 17 9 public static $prefixLengthsPsr4 = array ( 18 10 'w' => 19 11 array ( 20 12 'wpscholar\\' => 10, 21 ),22 'S' =>23 array (24 'Symfony\\Polyfill\\Php80\\' => 23,25 'Symfony\\Component\\Finder\\' => 25,26 ),27 'M' =>28 array (29 'Mustangostang\\' => 14,30 13 ), 31 14 ); … … 36 19 0 => __DIR__ . '/..' . '/wpscholar/url', 37 20 ), 38 'Symfony\\Polyfill\\Php80\\' =>39 array (40 0 => __DIR__ . '/..' . '/symfony/polyfill-php80',41 ),42 'Symfony\\Component\\Finder\\' =>43 array (44 0 => __DIR__ . '/..' . '/symfony/finder',45 ),46 'Mustangostang\\' =>47 array (48 0 => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src',49 ),50 );51 52 public static $prefixesPsr0 = array (53 'c' =>54 array (55 'cli' =>56 array (57 0 => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib',58 ),59 ),60 'W' =>61 array (62 'WP_CLI\\' =>63 array (64 0 => __DIR__ . '/..' . '/wp-cli/wp-cli/php',65 ),66 ),67 'M' =>68 array (69 'Mustache' =>70 array (71 0 => __DIR__ . '/..' . '/mustache/mustache/src',72 ),73 ),74 21 ); 75 22 76 23 public static $classMap = array ( 77 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',78 'Comment_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Command.php',79 'Comment_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Meta_Command.php',80 24 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 81 'Menu_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Command.php',82 'Menu_Item_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Item_Command.php',83 'Menu_Location_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Location_Command.php',84 'Mustache_Autoloader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Autoloader.php',85 'Mustache_Cache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache.php',86 'Mustache_Cache_AbstractCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php',87 'Mustache_Cache_FilesystemCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php',88 'Mustache_Cache_NoopCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/NoopCache.php',89 'Mustache_Compiler' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Compiler.php',90 'Mustache_Context' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Context.php',91 'Mustache_Engine' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Engine.php',92 'Mustache_Exception' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception.php',93 'Mustache_Exception_InvalidArgumentException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php',94 'Mustache_Exception_LogicException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/LogicException.php',95 'Mustache_Exception_RuntimeException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php',96 'Mustache_Exception_SyntaxException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php',97 'Mustache_Exception_UnknownFilterException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php',98 'Mustache_Exception_UnknownHelperException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php',99 'Mustache_Exception_UnknownTemplateException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php',100 'Mustache_HelperCollection' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/HelperCollection.php',101 'Mustache_LambdaHelper' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/LambdaHelper.php',102 'Mustache_Loader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader.php',103 'Mustache_Loader_ArrayLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php',104 'Mustache_Loader_CascadingLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php',105 'Mustache_Loader_FilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php',106 'Mustache_Loader_InlineLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php',107 'Mustache_Loader_MutableLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php',108 'Mustache_Loader_ProductionFilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php',109 'Mustache_Loader_StringLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/StringLoader.php',110 'Mustache_Logger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger.php',111 'Mustache_Logger_AbstractLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php',112 'Mustache_Logger_StreamLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php',113 'Mustache_Parser' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Parser.php',114 'Mustache_Source' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source.php',115 'Mustache_Source_FilesystemSource' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php',116 'Mustache_Template' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Template.php',117 'Mustache_Tokenizer' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Tokenizer.php',118 'Mustangostang\\Spyc' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src/Spyc.php',119 'Network_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Meta_Command.php',120 'Network_Namespace' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Namespace.php',121 'Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Option_Command.php',122 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',123 'Post_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Command.php',124 'Post_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Meta_Command.php',125 'Post_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Term_Command.php',126 'Post_Type_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Type_Command.php',127 'Site_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Command.php',128 'Site_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Meta_Command.php',129 'Site_Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Option_Command.php',130 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',131 'Symfony\\Component\\Finder\\Comparator\\Comparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/Comparator.php',132 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/DateComparator.php',133 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/NumberComparator.php',134 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/finder/Exception/AccessDeniedException.php',135 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => __DIR__ . '/..' . '/symfony/finder/Exception/DirectoryNotFoundException.php',136 'Symfony\\Component\\Finder\\Finder' => __DIR__ . '/..' . '/symfony/finder/Finder.php',137 'Symfony\\Component\\Finder\\Gitignore' => __DIR__ . '/..' . '/symfony/finder/Gitignore.php',138 'Symfony\\Component\\Finder\\Glob' => __DIR__ . '/..' . '/symfony/finder/Glob.php',139 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/CustomFilterIterator.php',140 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DateRangeFilterIterator.php',141 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DepthRangeFilterIterator.php',142 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',143 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FileTypeFilterIterator.php',144 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilecontentFilterIterator.php',145 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilenameFilterIterator.php',146 'Symfony\\Component\\Finder\\Iterator\\LazyIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/LazyIterator.php',147 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php',148 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/PathFilterIterator.php',149 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php',150 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SizeRangeFilterIterator.php',151 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php',152 'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',153 'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php',154 'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',155 'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',156 'Taxonomy_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Taxonomy_Command.php',157 'Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Command.php',158 'Term_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Meta_Command.php',159 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',160 'User_Application_Password_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Application_Password_Command.php',161 'User_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Command.php',162 'User_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Meta_Command.php',163 'User_Session_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Session_Command.php',164 'User_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Term_Command.php',165 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',166 'WP_CLI' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli.php',167 'WP_CLI\\Autoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php',168 'WP_CLI\\Bootstrap\\AutoloaderStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php',169 'WP_CLI\\Bootstrap\\BootstrapState' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php',170 'WP_CLI\\Bootstrap\\BootstrapStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php',171 'WP_CLI\\Bootstrap\\ConfigureRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php',172 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php',173 'WP_CLI\\Bootstrap\\DeclareFallbackFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareFallbackFunctions.php',174 'WP_CLI\\Bootstrap\\DeclareMainClass' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php',175 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php',176 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php',177 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php',178 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php',179 'WP_CLI\\Bootstrap\\IncludeRequestsAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php',180 'WP_CLI\\Bootstrap\\InitializeColorization' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php',181 'WP_CLI\\Bootstrap\\InitializeContexts' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php',182 'WP_CLI\\Bootstrap\\InitializeLogger' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php',183 'WP_CLI\\Bootstrap\\LaunchRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php',184 'WP_CLI\\Bootstrap\\LoadDispatcher' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php',185 'WP_CLI\\Bootstrap\\LoadExecCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadExecCommand.php',186 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php',187 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php',188 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php',189 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php',190 'WP_CLI\\Bootstrap\\RunnerInstance' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php',191 'WP_CLI\\CommandWithDBObject' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php',192 'WP_CLI\\CommandWithMeta' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php',193 'WP_CLI\\CommandWithTerms' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php',194 'WP_CLI\\Completions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Completions.php',195 'WP_CLI\\ComposerIO' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php',196 'WP_CLI\\Configurator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php',197 'WP_CLI\\Context' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context.php',198 'WP_CLI\\ContextManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ContextManager.php',199 'WP_CLI\\Context\\Admin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php',200 'WP_CLI\\Context\\Auto' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php',201 'WP_CLI\\Context\\Cli' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php',202 'WP_CLI\\Context\\Frontend' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php',203 'WP_CLI\\Dispatcher\\CommandAddition' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php',204 'WP_CLI\\Dispatcher\\CommandFactory' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php',205 'WP_CLI\\Dispatcher\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php',206 'WP_CLI\\Dispatcher\\CompositeCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php',207 'WP_CLI\\Dispatcher\\RootCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php',208 'WP_CLI\\Dispatcher\\Subcommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php',209 'WP_CLI\\DocParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php',210 'WP_CLI\\Exception\\NonExistentKeyException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Exception/NonExistentKeyException.php',211 'WP_CLI\\ExitException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php',212 'WP_CLI\\Extractor' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php',213 'WP_CLI\\Fetchers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php',214 'WP_CLI\\Fetchers\\Comment' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php',215 'WP_CLI\\Fetchers\\Post' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php',216 'WP_CLI\\Fetchers\\Site' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php',217 'WP_CLI\\Fetchers\\User' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php',218 'WP_CLI\\FileCache' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php',219 'WP_CLI\\Formatter' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php',220 'WP_CLI\\Inflector' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php',221 'WP_CLI\\Iterators\\CSV' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php',222 'WP_CLI\\Iterators\\Exception' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php',223 'WP_CLI\\Iterators\\Query' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php',224 'WP_CLI\\Iterators\\Table' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php',225 'WP_CLI\\Iterators\\Transform' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php',226 'WP_CLI\\Loggers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php',227 'WP_CLI\\Loggers\\Execution' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php',228 'WP_CLI\\Loggers\\Quiet' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php',229 'WP_CLI\\Loggers\\Regular' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php',230 'WP_CLI\\NoOp' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php',231 'WP_CLI\\PackageManagerEventSubscriber' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php',232 'WP_CLI\\Process' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Process.php',233 'WP_CLI\\ProcessRun' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php',234 'WP_CLI\\RequestsLibrary' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php',235 'WP_CLI\\Runner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Runner.php',236 'WP_CLI\\SynopsisParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php',237 'WP_CLI\\SynopsisValidator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php',238 'WP_CLI\\Traverser\\RecursiveDataStructureTraverser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Traverser/RecursiveDataStructureTraverser.php',239 'WP_CLI\\UpgraderSkin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php',240 'WP_CLI\\WpHttpCacheManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php',241 'WP_CLI\\WpOrgApi' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php',242 'WP_CLI_Command' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli-command.php',243 'cli\\Arguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Arguments.php',244 'cli\\Colors' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Colors.php',245 'cli\\Memoize' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Memoize.php',246 'cli\\Notify' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Notify.php',247 'cli\\Progress' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Progress.php',248 'cli\\Shell' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Shell.php',249 'cli\\Streams' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Streams.php',250 'cli\\Table' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Table.php',251 'cli\\Tree' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Tree.php',252 'cli\\arguments\\Argument' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php',253 'cli\\arguments\\HelpScreen' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php',254 'cli\\arguments\\InvalidArguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php',255 'cli\\arguments\\Lexer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php',256 'cli\\notify\\Dots' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php',257 'cli\\notify\\Spinner' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php',258 'cli\\progress\\Bar' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php',259 'cli\\table\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php',260 'cli\\table\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php',261 'cli\\table\\Tabular' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php',262 'cli\\tree\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php',263 'cli\\tree\\Markdown' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php',264 'cli\\tree\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php',265 25 'wpscholar\\Url' => __DIR__ . '/..' . '/wpscholar/url/Url.php', 266 26 ); … … 269 29 { 270 30 return \Closure::bind(function () use ($loader) { 271 $loader->prefixLengthsPsr4 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixLengthsPsr4; 272 $loader->prefixDirsPsr4 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixDirsPsr4; 273 $loader->prefixesPsr0 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixesPsr0; 274 $loader->classMap = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$classMap; 31 $loader->prefixLengthsPsr4 = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$prefixLengthsPsr4; 32 $loader->prefixDirsPsr4 = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$prefixDirsPsr4; 33 $loader->classMap = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$classMap; 275 34 276 35 }, null, ClassLoader::class); -
simple-website-redirect/tags/1.3.0/vendor/composer/installed.json
r3128446 r3200400 2 2 "packages": [ 3 3 { 4 "name": " mustache/mustache",5 "version": " v2.14.2",6 "version_normalized": " 2.14.2.0",4 "name": "wpscholar/url", 5 "version": "1.2.3", 6 "version_normalized": "1.2.3.0", 7 7 "source": { 8 8 "type": "git", 9 "url": "https://github.com/ bobthecow/mustache.php.git",10 "reference": " e62b7c3849d22ec55f3ec425507bf7968193a6cb"9 "url": "https://github.com/wpscholar/url.git", 10 "reference": "6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8" 11 11 }, 12 12 "dist": { 13 13 "type": "zip", 14 "url": "https://api.github.com/repos/ bobthecow/mustache.php/zipball/e62b7c3849d22ec55f3ec425507bf7968193a6cb",15 "reference": " e62b7c3849d22ec55f3ec425507bf7968193a6cb",14 "url": "https://api.github.com/repos/wpscholar/url/zipball/6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8", 15 "reference": "6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8", 16 16 "shasum": "" 17 17 }, 18 "require": { 19 "php": ">=5.2.4" 20 }, 21 "require-dev": { 22 "friendsofphp/php-cs-fixer": "~1.11", 23 "phpunit/phpunit": "~3.7|~4.0|~5.0" 24 }, 25 "time": "2022-08-23T13:07:01+00:00", 26 "type": "library", 27 "installation-source": "dist", 28 "autoload": { 29 "psr-0": { 30 "Mustache": "src/" 31 } 32 }, 33 "notification-url": "https://packagist.org/downloads/", 34 "license": [ 35 "MIT" 36 ], 37 "authors": [ 38 { 39 "name": "Justin Hileman", 40 "email": "[email protected]", 41 "homepage": "http://justinhileman.com" 42 } 43 ], 44 "description": "A Mustache implementation in PHP.", 45 "homepage": "https://github.com/bobthecow/mustache.php", 46 "keywords": [ 47 "mustache", 48 "templating" 49 ], 50 "support": { 51 "issues": "https://github.com/bobthecow/mustache.php/issues", 52 "source": "https://github.com/bobthecow/mustache.php/tree/v2.14.2" 53 }, 54 "install-path": "../mustache/mustache" 55 }, 56 { 57 "name": "symfony/deprecation-contracts", 58 "version": "v2.5.3", 59 "version_normalized": "2.5.3.0", 60 "source": { 61 "type": "git", 62 "url": "https://github.com/symfony/deprecation-contracts.git", 63 "reference": "80d075412b557d41002320b96a096ca65aa2c98d" 64 }, 65 "dist": { 66 "type": "zip", 67 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", 68 "reference": "80d075412b557d41002320b96a096ca65aa2c98d", 69 "shasum": "" 70 }, 71 "require": { 72 "php": ">=7.1" 73 }, 74 "time": "2023-01-24T14:02:46+00:00", 75 "type": "library", 76 "extra": { 77 "branch-alias": { 78 "dev-main": "2.5-dev" 79 }, 80 "thanks": { 81 "name": "symfony/contracts", 82 "url": "https://github.com/symfony/contracts" 83 } 84 }, 85 "installation-source": "dist", 86 "autoload": { 87 "files": [ 88 "function.php" 89 ] 90 }, 91 "notification-url": "https://packagist.org/downloads/", 92 "license": [ 93 "MIT" 94 ], 95 "authors": [ 96 { 97 "name": "Nicolas Grekas", 98 "email": "[email protected]" 99 }, 100 { 101 "name": "Symfony Community", 102 "homepage": "https://symfony.com/contributors" 103 } 104 ], 105 "description": "A generic function and convention to trigger deprecation notices", 106 "homepage": "https://symfony.com", 107 "support": { 108 "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" 109 }, 110 "funding": [ 111 { 112 "url": "https://symfony.com/sponsor", 113 "type": "custom" 114 }, 115 { 116 "url": "https://github.com/fabpot", 117 "type": "github" 118 }, 119 { 120 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 121 "type": "tidelift" 122 } 123 ], 124 "install-path": "../symfony/deprecation-contracts" 125 }, 126 { 127 "name": "symfony/finder", 128 "version": "v5.4.42", 129 "version_normalized": "5.4.42.0", 130 "source": { 131 "type": "git", 132 "url": "https://github.com/symfony/finder.git", 133 "reference": "0724c51fa067b198e36506d2864e09a52180998a" 134 }, 135 "dist": { 136 "type": "zip", 137 "url": "https://api.github.com/repos/symfony/finder/zipball/0724c51fa067b198e36506d2864e09a52180998a", 138 "reference": "0724c51fa067b198e36506d2864e09a52180998a", 139 "shasum": "" 140 }, 141 "require": { 142 "php": ">=7.2.5", 143 "symfony/deprecation-contracts": "^2.1|^3", 144 "symfony/polyfill-php80": "^1.16" 145 }, 146 "time": "2024-07-22T08:53:29+00:00", 147 "type": "library", 148 "installation-source": "dist", 149 "autoload": { 150 "psr-4": { 151 "Symfony\\Component\\Finder\\": "" 152 }, 153 "exclude-from-classmap": [ 154 "/Tests/" 155 ] 156 }, 157 "notification-url": "https://packagist.org/downloads/", 158 "license": [ 159 "MIT" 160 ], 161 "authors": [ 162 { 163 "name": "Fabien Potencier", 164 "email": "[email protected]" 165 }, 166 { 167 "name": "Symfony Community", 168 "homepage": "https://symfony.com/contributors" 169 } 170 ], 171 "description": "Finds files and directories via an intuitive fluent interface", 172 "homepage": "https://symfony.com", 173 "support": { 174 "source": "https://github.com/symfony/finder/tree/v5.4.42" 175 }, 176 "funding": [ 177 { 178 "url": "https://symfony.com/sponsor", 179 "type": "custom" 180 }, 181 { 182 "url": "https://github.com/fabpot", 183 "type": "github" 184 }, 185 { 186 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 187 "type": "tidelift" 188 } 189 ], 190 "install-path": "../symfony/finder" 191 }, 192 { 193 "name": "symfony/polyfill-php80", 194 "version": "v1.30.0", 195 "version_normalized": "1.30.0.0", 196 "source": { 197 "type": "git", 198 "url": "https://github.com/symfony/polyfill-php80.git", 199 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" 200 }, 201 "dist": { 202 "type": "zip", 203 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", 204 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", 205 "shasum": "" 206 }, 207 "require": { 208 "php": ">=7.1" 209 }, 210 "time": "2024-05-31T15:07:36+00:00", 211 "type": "library", 212 "extra": { 213 "thanks": { 214 "name": "symfony/polyfill", 215 "url": "https://github.com/symfony/polyfill" 216 } 217 }, 218 "installation-source": "dist", 219 "autoload": { 220 "files": [ 221 "bootstrap.php" 222 ], 223 "psr-4": { 224 "Symfony\\Polyfill\\Php80\\": "" 225 }, 226 "classmap": [ 227 "Resources/stubs" 228 ] 229 }, 230 "notification-url": "https://packagist.org/downloads/", 231 "license": [ 232 "MIT" 233 ], 234 "authors": [ 235 { 236 "name": "Ion Bazan", 237 "email": "[email protected]" 238 }, 239 { 240 "name": "Nicolas Grekas", 241 "email": "[email protected]" 242 }, 243 { 244 "name": "Symfony Community", 245 "homepage": "https://symfony.com/contributors" 246 } 247 ], 248 "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 249 "homepage": "https://symfony.com", 250 "keywords": [ 251 "compatibility", 252 "polyfill", 253 "portable", 254 "shim" 255 ], 256 "support": { 257 "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" 258 }, 259 "funding": [ 260 { 261 "url": "https://symfony.com/sponsor", 262 "type": "custom" 263 }, 264 { 265 "url": "https://github.com/fabpot", 266 "type": "github" 267 }, 268 { 269 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 270 "type": "tidelift" 271 } 272 ], 273 "install-path": "../symfony/polyfill-php80" 274 }, 275 { 276 "name": "wp-cli/entity-command", 277 "version": "v2.7.0", 278 "version_normalized": "2.7.0.0", 279 "source": { 280 "type": "git", 281 "url": "https://github.com/wp-cli/entity-command.git", 282 "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed" 283 }, 284 "dist": { 285 "type": "zip", 286 "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/8110a596db62eb423f7f8e49c99dbacacf01f6ed", 287 "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed", 288 "shasum": "" 289 }, 290 "require": { 291 "wp-cli/wp-cli": "^2.10" 292 }, 293 "require-dev": { 294 "wp-cli/cache-command": "^1 || ^2", 295 "wp-cli/db-command": "^1.3 || ^2", 296 "wp-cli/extension-command": "^1.2 || ^2", 297 "wp-cli/media-command": "^1.1 || ^2", 298 "wp-cli/super-admin-command": "^1 || ^2", 299 "wp-cli/wp-cli-tests": "^4" 300 }, 301 "time": "2024-04-29T07:34:56+00:00", 302 "type": "wp-cli-package", 303 "extra": { 304 "branch-alias": { 305 "dev-main": "2.x-dev" 306 }, 307 "bundled": true, 308 "commands": [ 309 "comment", 310 "comment approve", 311 "comment count", 312 "comment create", 313 "comment delete", 314 "comment exists", 315 "comment generate", 316 "comment get", 317 "comment list", 318 "comment meta", 319 "comment meta add", 320 "comment meta delete", 321 "comment meta get", 322 "comment meta list", 323 "comment meta patch", 324 "comment meta pluck", 325 "comment meta update", 326 "comment recount", 327 "comment spam", 328 "comment status", 329 "comment trash", 330 "comment unapprove", 331 "comment unspam", 332 "comment untrash", 333 "comment update", 334 "menu", 335 "menu create", 336 "menu delete", 337 "menu item", 338 "menu item add-custom", 339 "menu item add-post", 340 "menu item add-term", 341 "menu item delete", 342 "menu item list", 343 "menu item update", 344 "menu list", 345 "menu location", 346 "menu location assign", 347 "menu location list", 348 "menu location remove", 349 "network meta", 350 "network meta add", 351 "network meta delete", 352 "network meta get", 353 "network meta list", 354 "network meta patch", 355 "network meta pluck", 356 "network meta update", 357 "option", 358 "option add", 359 "option delete", 360 "option get", 361 "option list", 362 "option patch", 363 "option pluck", 364 "option update", 365 "option set-autoload", 366 "option get-autoload", 367 "post", 368 "post create", 369 "post delete", 370 "post edit", 371 "post exists", 372 "post generate", 373 "post get", 374 "post list", 375 "post meta", 376 "post meta add", 377 "post meta clean-duplicates", 378 "post meta delete", 379 "post meta get", 380 "post meta list", 381 "post meta patch", 382 "post meta pluck", 383 "post meta update", 384 "post term", 385 "post term add", 386 "post term list", 387 "post term remove", 388 "post term set", 389 "post update", 390 "post url-to-id", 391 "post-type", 392 "post-type get", 393 "post-type list", 394 "site", 395 "site activate", 396 "site archive", 397 "site create", 398 "site deactivate", 399 "site delete", 400 "site empty", 401 "site list", 402 "site mature", 403 "site meta", 404 "site meta add", 405 "site meta delete", 406 "site meta get", 407 "site meta list", 408 "site meta patch", 409 "site meta pluck", 410 "site meta update", 411 "site option", 412 "site private", 413 "site public", 414 "site spam", 415 "site unarchive", 416 "site unmature", 417 "site unspam", 418 "taxonomy", 419 "taxonomy get", 420 "taxonomy list", 421 "term", 422 "term create", 423 "term delete", 424 "term generate", 425 "term get", 426 "term list", 427 "term meta", 428 "term meta add", 429 "term meta delete", 430 "term meta get", 431 "term meta list", 432 "term meta patch", 433 "term meta pluck", 434 "term meta update", 435 "term recount", 436 "term update", 437 "user", 438 "user add-cap", 439 "user add-role", 440 "user application-password", 441 "user application-password create", 442 "user application-password delete", 443 "user application-password exists", 444 "user application-password get", 445 "user application-password list", 446 "user application-password record-usage", 447 "user application-password update", 448 "user create", 449 "user delete", 450 "user exists", 451 "user generate", 452 "user get", 453 "user import-csv", 454 "user list", 455 "user list-caps", 456 "user meta", 457 "user meta add", 458 "user meta delete", 459 "user meta get", 460 "user meta list", 461 "user meta patch", 462 "user meta pluck", 463 "user meta update", 464 "user remove-cap", 465 "user remove-role", 466 "user reset-password", 467 "user session", 468 "user session destroy", 469 "user session list", 470 "user set-role", 471 "user spam", 472 "user term", 473 "user term add", 474 "user term list", 475 "user term remove", 476 "user term set", 477 "user unspam", 478 "user update" 479 ] 480 }, 481 "installation-source": "dist", 482 "autoload": { 483 "files": [ 484 "entity-command.php" 485 ], 486 "classmap": [ 487 "src/" 488 ] 489 }, 490 "notification-url": "https://packagist.org/downloads/", 491 "license": [ 492 "MIT" 493 ], 494 "authors": [ 495 { 496 "name": "Daniel Bachhuber", 497 "email": "[email protected]", 498 "homepage": "https://runcommand.io" 499 } 500 ], 501 "description": "Manage WordPress comments, menus, options, posts, sites, terms, and users.", 502 "homepage": "https://github.com/wp-cli/entity-command", 503 "support": { 504 "issues": "https://github.com/wp-cli/entity-command/issues", 505 "source": "https://github.com/wp-cli/entity-command/tree/v2.7.0" 506 }, 507 "install-path": "../wp-cli/entity-command" 508 }, 509 { 510 "name": "wp-cli/mustangostang-spyc", 511 "version": "0.6.3", 512 "version_normalized": "0.6.3.0", 513 "source": { 514 "type": "git", 515 "url": "https://github.com/wp-cli/spyc.git", 516 "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7" 517 }, 518 "dist": { 519 "type": "zip", 520 "url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 521 "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 522 "shasum": "" 523 }, 524 "require": { 525 "php": ">=5.3.1" 526 }, 527 "require-dev": { 528 "phpunit/phpunit": "4.3.*@dev" 529 }, 530 "time": "2017-04-25T11:26:20+00:00", 531 "type": "library", 532 "extra": { 533 "branch-alias": { 534 "dev-master": "0.5.x-dev" 535 } 536 }, 537 "installation-source": "dist", 538 "autoload": { 539 "files": [ 540 "includes/functions.php" 541 ], 542 "psr-4": { 543 "Mustangostang\\": "src/" 544 } 545 }, 546 "notification-url": "https://packagist.org/downloads/", 547 "license": [ 548 "MIT" 549 ], 550 "authors": [ 551 { 552 "name": "mustangostang", 553 "email": "[email protected]" 554 } 555 ], 556 "description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)", 557 "homepage": "https://github.com/mustangostang/spyc/", 558 "support": { 559 "source": "https://github.com/wp-cli/spyc/tree/autoload" 560 }, 561 "install-path": "../wp-cli/mustangostang-spyc" 562 }, 563 { 564 "name": "wp-cli/php-cli-tools", 565 "version": "v0.11.22", 566 "version_normalized": "0.11.22.0", 567 "source": { 568 "type": "git", 569 "url": "https://github.com/wp-cli/php-cli-tools.git", 570 "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51" 571 }, 572 "dist": { 573 "type": "zip", 574 "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/a6bb94664ca36d0962f9c2ff25591c315a550c51", 575 "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51", 576 "shasum": "" 577 }, 578 "require": { 579 "php": ">= 5.3.0" 580 }, 581 "require-dev": { 582 "roave/security-advisories": "dev-latest", 583 "wp-cli/wp-cli-tests": "^4" 584 }, 585 "time": "2023-12-03T19:25:05+00:00", 586 "type": "library", 587 "extra": { 588 "branch-alias": { 589 "dev-master": "0.11.x-dev" 590 } 591 }, 592 "installation-source": "dist", 593 "autoload": { 594 "files": [ 595 "lib/cli/cli.php" 596 ], 597 "psr-0": { 598 "cli": "lib/" 599 } 600 }, 601 "notification-url": "https://packagist.org/downloads/", 602 "license": [ 603 "MIT" 604 ], 605 "authors": [ 606 { 607 "name": "Daniel Bachhuber", 608 "email": "[email protected]", 609 "role": "Maintainer" 610 }, 611 { 612 "name": "James Logsdon", 613 "email": "[email protected]", 614 "role": "Developer" 615 } 616 ], 617 "description": "Console utilities for PHP", 618 "homepage": "http://github.com/wp-cli/php-cli-tools", 619 "keywords": [ 620 "cli", 621 "console" 622 ], 623 "support": { 624 "issues": "https://github.com/wp-cli/php-cli-tools/issues", 625 "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.22" 626 }, 627 "install-path": "../wp-cli/php-cli-tools" 628 }, 629 { 630 "name": "wp-cli/wp-cli", 631 "version": "v2.10.0", 632 "version_normalized": "2.10.0.0", 633 "source": { 634 "type": "git", 635 "url": "https://github.com/wp-cli/wp-cli.git", 636 "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685" 637 }, 638 "dist": { 639 "type": "zip", 640 "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/a339dca576df73c31af4b4d8054efc2dab9a0685", 641 "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685", 642 "shasum": "" 643 }, 644 "require": { 645 "ext-curl": "*", 646 "mustache/mustache": "^2.14.1", 647 "php": "^5.6 || ^7.0 || ^8.0", 648 "symfony/finder": ">2.7", 649 "wp-cli/mustangostang-spyc": "^0.6.3", 650 "wp-cli/php-cli-tools": "~0.11.2" 651 }, 652 "require-dev": { 653 "roave/security-advisories": "dev-latest", 654 "wp-cli/db-command": "^1.3 || ^2", 655 "wp-cli/entity-command": "^1.2 || ^2", 656 "wp-cli/extension-command": "^1.1 || ^2", 657 "wp-cli/package-command": "^1 || ^2", 658 "wp-cli/wp-cli-tests": "^4.0.1" 659 }, 660 "suggest": { 661 "ext-readline": "Include for a better --prompt implementation", 662 "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates" 663 }, 664 "time": "2024-02-08T16:52:43+00:00", 665 "bin": [ 666 "bin/wp", 667 "bin/wp.bat" 668 ], 669 "type": "library", 670 "extra": { 671 "branch-alias": { 672 "dev-main": "2.10.x-dev" 673 } 674 }, 675 "installation-source": "dist", 676 "autoload": { 677 "psr-0": { 678 "WP_CLI\\": "php/" 679 }, 680 "classmap": [ 681 "php/class-wp-cli.php", 682 "php/class-wp-cli-command.php" 683 ] 684 }, 685 "notification-url": "https://packagist.org/downloads/", 686 "license": [ 687 "MIT" 688 ], 689 "description": "WP-CLI framework", 690 "homepage": "https://wp-cli.org", 691 "keywords": [ 692 "cli", 693 "wordpress" 694 ], 695 "support": { 696 "docs": "https://make.wordpress.org/cli/handbook/", 697 "issues": "https://github.com/wp-cli/wp-cli/issues", 698 "source": "https://github.com/wp-cli/wp-cli" 699 }, 700 "install-path": "../wp-cli/wp-cli" 701 }, 702 { 703 "name": "wpscholar/url", 704 "version": "1.2.2", 705 "version_normalized": "1.2.2.0", 706 "source": { 707 "type": "git", 708 "url": "https://github.com/wpscholar/url.git", 709 "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0" 710 }, 711 "dist": { 712 "type": "zip", 713 "url": "https://api.github.com/repos/wpscholar/url/zipball/c339972ed8e6876f1cfacbc512c6205db63645d0", 714 "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0", 715 "shasum": "" 716 }, 717 "time": "2020-10-27T20:10:04+00:00", 18 "time": "2024-12-01T20:43:41+00:00", 718 19 "type": "library", 719 20 "installation-source": "dist", … … 737 38 "support": { 738 39 "issues": "https://github.com/wpscholar/url/issues", 739 "source": "https://github.com/wpscholar/url/tree/1.2. 2"40 "source": "https://github.com/wpscholar/url/tree/1.2.3" 740 41 }, 741 42 "install-path": "../wpscholar/url" -
simple-website-redirect/tags/1.3.0/vendor/composer/installed.php
r3128446 r3200400 2 2 'root' => array( 3 3 'name' => 'wpscholar/simple-website-redirect', 4 'pretty_version' => '1. 2.9',5 'version' => '1. 2.9.0',6 'reference' => ' b090f8c2e56d4d98cf97a659e51ba17ecb6bd848',4 'pretty_version' => '1.3.0', 5 'version' => '1.3.0.0', 6 'reference' => '0641989e03bcc645d41c6d1e5e893752a2a3ccaf', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 11 11 ), 12 12 'versions' => array( 13 'mustache/mustache' => array(14 'pretty_version' => 'v2.14.2',15 'version' => '2.14.2.0',16 'reference' => 'e62b7c3849d22ec55f3ec425507bf7968193a6cb',17 'type' => 'library',18 'install_path' => __DIR__ . '/../mustache/mustache',19 'aliases' => array(),20 'dev_requirement' => false,21 ),22 'symfony/deprecation-contracts' => array(23 'pretty_version' => 'v2.5.3',24 'version' => '2.5.3.0',25 'reference' => '80d075412b557d41002320b96a096ca65aa2c98d',26 'type' => 'library',27 'install_path' => __DIR__ . '/../symfony/deprecation-contracts',28 'aliases' => array(),29 'dev_requirement' => false,30 ),31 'symfony/finder' => array(32 'pretty_version' => 'v5.4.42',33 'version' => '5.4.42.0',34 'reference' => '0724c51fa067b198e36506d2864e09a52180998a',35 'type' => 'library',36 'install_path' => __DIR__ . '/../symfony/finder',37 'aliases' => array(),38 'dev_requirement' => false,39 ),40 'symfony/polyfill-php80' => array(41 'pretty_version' => 'v1.30.0',42 'version' => '1.30.0.0',43 'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433',44 'type' => 'library',45 'install_path' => __DIR__ . '/../symfony/polyfill-php80',46 'aliases' => array(),47 'dev_requirement' => false,48 ),49 'wp-cli/entity-command' => array(50 'pretty_version' => 'v2.7.0',51 'version' => '2.7.0.0',52 'reference' => '8110a596db62eb423f7f8e49c99dbacacf01f6ed',53 'type' => 'wp-cli-package',54 'install_path' => __DIR__ . '/../wp-cli/entity-command',55 'aliases' => array(),56 'dev_requirement' => false,57 ),58 'wp-cli/mustangostang-spyc' => array(59 'pretty_version' => '0.6.3',60 'version' => '0.6.3.0',61 'reference' => '6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7',62 'type' => 'library',63 'install_path' => __DIR__ . '/../wp-cli/mustangostang-spyc',64 'aliases' => array(),65 'dev_requirement' => false,66 ),67 'wp-cli/php-cli-tools' => array(68 'pretty_version' => 'v0.11.22',69 'version' => '0.11.22.0',70 'reference' => 'a6bb94664ca36d0962f9c2ff25591c315a550c51',71 'type' => 'library',72 'install_path' => __DIR__ . '/../wp-cli/php-cli-tools',73 'aliases' => array(),74 'dev_requirement' => false,75 ),76 'wp-cli/wp-cli' => array(77 'pretty_version' => 'v2.10.0',78 'version' => '2.10.0.0',79 'reference' => 'a339dca576df73c31af4b4d8054efc2dab9a0685',80 'type' => 'library',81 'install_path' => __DIR__ . '/../wp-cli/wp-cli',82 'aliases' => array(),83 'dev_requirement' => false,84 ),85 13 'wpscholar/simple-website-redirect' => array( 86 'pretty_version' => '1. 2.9',87 'version' => '1. 2.9.0',88 'reference' => ' b090f8c2e56d4d98cf97a659e51ba17ecb6bd848',14 'pretty_version' => '1.3.0', 15 'version' => '1.3.0.0', 16 'reference' => '0641989e03bcc645d41c6d1e5e893752a2a3ccaf', 89 17 'type' => 'wordpress-plugin', 90 18 'install_path' => __DIR__ . '/../../', … … 93 21 ), 94 22 'wpscholar/url' => array( 95 'pretty_version' => '1.2. 2',96 'version' => '1.2. 2.0',97 'reference' => ' c339972ed8e6876f1cfacbc512c6205db63645d0',23 'pretty_version' => '1.2.3', 24 'version' => '1.2.3.0', 25 'reference' => '6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8', 98 26 'type' => 'library', 99 27 'install_path' => __DIR__ . '/../wpscholar/url', -
simple-website-redirect/tags/1.3.0/vendor/wpscholar/url/Url.php
r2438442 r3200400 87 87 */ 88 88 public static function getCurrentUrl() { 89 return self::getCurrentScheme() . '://' . getenv( 'HTTP_HOST' ) . getenv( 'REQUEST_URI' );89 return self::getCurrentScheme() . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; 90 90 } 91 91 … … 96 96 */ 97 97 public static function getCurrentScheme() { 98 $is_ssl = (boolean) getenv( 'HTTPS' ) || '443' === getenv( 'SERVER_PORT' ) || 'https' === getenv( 'HTTP_X_FORWARDED_PROTO' );98 $is_ssl = (boolean) $_SERVER['HTTPS'] || '443' === $_SERVER['SERVER_PORT'] || 'https' === $_SERVER['HTTP_X_FORWARDED_PROTO']; 99 99 $scheme = $is_ssl ? 'https' : 'http'; 100 100 -
simple-website-redirect/trunk/SimpleWebsiteRedirect.php
r3128446 r3200400 12 12 * Plugin URI: https://wpscholar.com/wordpress-plugins/simple-website-redirect/ 13 13 * Description: A simple plugin designed to redirect an entire website (except the WordPress admin) to another website. 14 * Version: 1. 2.914 * Version: 1.3.0 15 15 * Requires PHP: 7.4 16 16 * Requires at least: 4.7 … … 142 142 143 143 /** 144 * Get a collection of excluded paths.144 * Get excluded paths as provided by the user. 145 145 * 146 146 * @return array … … 151 151 152 152 /** 153 * Get a collection of excluded query parameters.153 * Get excluded query parameters as provided by the user. 154 154 * 155 155 * @return array … … 233 233 'elementor-preview', // Allows editing via Elementor 234 234 'preview_id', // Allows previewing in WordPress 235 'rest_route', // Allows REST API requests 235 236 ) 236 237 ); 237 238 $query_params = self::$url->getQueryVars(); 238 foreach ( $excluded_params as $name => $value) {239 foreach ( $excluded_params as $name ) { 239 240 if ( array_key_exists( $name, $query_params ) ) { 240 if ( empty( $value ) ) { 241 $should_redirect = false; 242 break; 243 } elseif ( $query_params[ $name ] === $value ) { 244 $should_redirect = false; 245 break; 246 } 241 $should_redirect = false; 242 break; 247 243 } 248 244 } … … 258 254 * @return array 259 255 */ 260 public static function filter_excluded_paths( $excluded_paths ) {256 public static function filter_excluded_paths( array $excluded_paths ) { 261 257 return array_merge( 262 258 array( … … 664 660 } 665 661 666 SimpleWebsiteRedirect::initialize();662 add_action( 'plugins_loaded', array( 'SimpleWebsiteRedirect', 'initialize' ) ); -
simple-website-redirect/trunk/languages/simple-website-redirect.pot
r3128446 r3200400 12 12 "POT-Creation-Date: \n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1 0.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: simple-website-redirect\n" 16 16 -
simple-website-redirect/trunk/readme.txt
r3128446 r3200400 2 2 Contributors: wpscholar 3 3 Donate link: https://www.paypal.me/wpscholar 4 Tags: site,website, redirect, redirection, forward, forwarding4 Tags: website, redirect, redirection, forward, forwarding 5 5 Requires at least: 4.7 6 Tested up to: 6. 67 Stable tag: 1. 2.96 Tested up to: 6.7 7 Stable tag: 1.3.0 8 8 Requires PHP: 7.4 9 9 License: GPL V2 or later … … 58 58 59 59 == Changelog == 60 61 = 1.3.0 = 62 * Fix issue where query params weren't properly being checked. 63 * Allow all REST API calls to work without being redirected (allows WP editor and other page builders to work in the admin area). 60 64 61 65 = 1.2.9 = -
simple-website-redirect/trunk/vendor/autoload.php
r3128446 r3200400 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd::getLoader();25 return ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46::getLoader(); -
simple-website-redirect/trunk/vendor/composer/autoload_classmap.php
r3128446 r3200400 7 7 8 8 return array( 9 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',10 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php',11 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php',12 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 13 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php',14 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php',15 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php',16 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php',17 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php',18 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php',19 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php',20 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php',21 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php',22 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php',23 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php',24 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php',25 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php',26 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php',27 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php',28 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php',29 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php',30 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php',31 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php',32 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php',33 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php',34 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php',35 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php',36 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php',37 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php',38 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php',39 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php',40 'Mustache_Loader_ProductionFilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php',41 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php',42 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php',43 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php',44 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php',45 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php',46 'Mustache_Source' => $vendorDir . '/mustache/mustache/src/Mustache/Source.php',47 'Mustache_Source_FilesystemSource' => $vendorDir . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php',48 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php',49 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php',50 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php',51 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php',52 'Network_Namespace' => $vendorDir . '/wp-cli/entity-command/src/Network_Namespace.php',53 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php',54 'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',55 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php',56 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php',57 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php',58 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php',59 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php',60 'Site_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Meta_Command.php',61 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php',62 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',63 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php',64 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php',65 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php',66 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php',67 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => $vendorDir . '/symfony/finder/Exception/DirectoryNotFoundException.php',68 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php',69 'Symfony\\Component\\Finder\\Gitignore' => $vendorDir . '/symfony/finder/Gitignore.php',70 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php',71 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php',72 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php',73 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php',74 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',75 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php',76 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php',77 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php',78 'Symfony\\Component\\Finder\\Iterator\\LazyIterator' => $vendorDir . '/symfony/finder/Iterator/LazyIterator.php',79 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php',80 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php',81 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php',82 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php',83 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php',84 'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => $vendorDir . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',85 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php',86 'Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',87 'Symfony\\Polyfill\\Php80\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/PhpToken.php',88 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php',89 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php',90 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php',91 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',92 'User_Application_Password_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Application_Password_Command.php',93 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php',94 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php',95 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php',96 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php',97 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',98 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php',99 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php',100 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php',101 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php',102 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php',103 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php',104 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php',105 'WP_CLI\\Bootstrap\\DeclareFallbackFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareFallbackFunctions.php',106 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php',107 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php',108 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php',109 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php',110 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php',111 'WP_CLI\\Bootstrap\\IncludeRequestsAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php',112 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php',113 'WP_CLI\\Bootstrap\\InitializeContexts' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php',114 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php',115 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php',116 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php',117 'WP_CLI\\Bootstrap\\LoadExecCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadExecCommand.php',118 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php',119 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php',120 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php',121 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php',122 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php',123 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php',124 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php',125 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php',126 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php',127 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php',128 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php',129 'WP_CLI\\Context' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context.php',130 'WP_CLI\\ContextManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ContextManager.php',131 'WP_CLI\\Context\\Admin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php',132 'WP_CLI\\Context\\Auto' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php',133 'WP_CLI\\Context\\Cli' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php',134 'WP_CLI\\Context\\Frontend' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php',135 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php',136 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php',137 'WP_CLI\\Dispatcher\\CommandNamespace' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php',138 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php',139 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php',140 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php',141 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php',142 'WP_CLI\\Exception\\NonExistentKeyException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Exception/NonExistentKeyException.php',143 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php',144 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php',145 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php',146 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php',147 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php',148 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php',149 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php',150 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php',151 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php',152 'WP_CLI\\Inflector' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php',153 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php',154 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php',155 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php',156 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php',157 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php',158 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php',159 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php',160 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php',161 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php',162 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php',163 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php',164 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php',165 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php',166 'WP_CLI\\RequestsLibrary' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php',167 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php',168 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php',169 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php',170 'WP_CLI\\Traverser\\RecursiveDataStructureTraverser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Traverser/RecursiveDataStructureTraverser.php',171 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php',172 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php',173 'WP_CLI\\WpOrgApi' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php',174 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php',175 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php',176 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php',177 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php',178 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php',179 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php',180 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php',181 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php',182 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php',183 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php',184 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php',185 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php',186 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php',187 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php',188 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php',189 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php',190 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php',191 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php',192 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php',193 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php',194 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php',195 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php',196 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php',197 10 'wpscholar\\Url' => $vendorDir . '/wpscholar/url/Url.php', 198 11 ); -
simple-website-redirect/trunk/vendor/composer/autoload_namespaces.php
r3128446 r3200400 7 7 8 8 return array( 9 'cli' => array($vendorDir . '/wp-cli/php-cli-tools/lib'),10 'WP_CLI\\' => array($vendorDir . '/wp-cli/wp-cli/php'),11 'Mustache' => array($vendorDir . '/mustache/mustache/src'),12 9 ); -
simple-website-redirect/trunk/vendor/composer/autoload_psr4.php
r3128446 r3200400 8 8 return array( 9 9 'wpscholar\\' => array($vendorDir . '/wpscholar/url'), 10 'Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),11 'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),12 'Mustangostang\\' => array($vendorDir . '/wp-cli/mustangostang-spyc/src'),13 10 ); -
simple-website-redirect/trunk/vendor/composer/autoload_real.php
r3128446 r3200400 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd5 class ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 693a8af134a3b951d493656bc2d2d8cd', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit7387a277d1209dff8496fc5ad8379c46', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 693a8af134a3b951d493656bc2d2d8cd::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::getInitializer($loader)); 33 33 34 34 $loader->register(true); 35 36 $filesToLoad = \Composer\Autoload\ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$files;37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {39 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;40 41 require $file;42 }43 }, null, null);44 foreach ($filesToLoad as $fileIdentifier => $file) {45 $requireFile($fileIdentifier, $file);46 }47 35 48 36 return $loader; -
simple-website-redirect/trunk/vendor/composer/autoload_static.php
r3128446 r3200400 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 693a8af134a3b951d493656bc2d2d8cd7 class ComposerStaticInit7387a277d1209dff8496fc5ad8379c46 8 8 { 9 public static $files = array (10 '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',11 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',12 '3937806105cc8e221b8fa8db5b70d2f2' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/includes/functions.php',13 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php',14 'f3f0199a3ecd9f501d0a3b361bd2f61c' => __DIR__ . '/..' . '/wp-cli/entity-command/entity-command.php',15 );16 17 9 public static $prefixLengthsPsr4 = array ( 18 10 'w' => 19 11 array ( 20 12 'wpscholar\\' => 10, 21 ),22 'S' =>23 array (24 'Symfony\\Polyfill\\Php80\\' => 23,25 'Symfony\\Component\\Finder\\' => 25,26 ),27 'M' =>28 array (29 'Mustangostang\\' => 14,30 13 ), 31 14 ); … … 36 19 0 => __DIR__ . '/..' . '/wpscholar/url', 37 20 ), 38 'Symfony\\Polyfill\\Php80\\' =>39 array (40 0 => __DIR__ . '/..' . '/symfony/polyfill-php80',41 ),42 'Symfony\\Component\\Finder\\' =>43 array (44 0 => __DIR__ . '/..' . '/symfony/finder',45 ),46 'Mustangostang\\' =>47 array (48 0 => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src',49 ),50 );51 52 public static $prefixesPsr0 = array (53 'c' =>54 array (55 'cli' =>56 array (57 0 => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib',58 ),59 ),60 'W' =>61 array (62 'WP_CLI\\' =>63 array (64 0 => __DIR__ . '/..' . '/wp-cli/wp-cli/php',65 ),66 ),67 'M' =>68 array (69 'Mustache' =>70 array (71 0 => __DIR__ . '/..' . '/mustache/mustache/src',72 ),73 ),74 21 ); 75 22 76 23 public static $classMap = array ( 77 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',78 'Comment_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Command.php',79 'Comment_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Meta_Command.php',80 24 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 81 'Menu_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Command.php',82 'Menu_Item_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Item_Command.php',83 'Menu_Location_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Location_Command.php',84 'Mustache_Autoloader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Autoloader.php',85 'Mustache_Cache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache.php',86 'Mustache_Cache_AbstractCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php',87 'Mustache_Cache_FilesystemCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php',88 'Mustache_Cache_NoopCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/NoopCache.php',89 'Mustache_Compiler' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Compiler.php',90 'Mustache_Context' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Context.php',91 'Mustache_Engine' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Engine.php',92 'Mustache_Exception' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception.php',93 'Mustache_Exception_InvalidArgumentException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php',94 'Mustache_Exception_LogicException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/LogicException.php',95 'Mustache_Exception_RuntimeException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php',96 'Mustache_Exception_SyntaxException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php',97 'Mustache_Exception_UnknownFilterException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php',98 'Mustache_Exception_UnknownHelperException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php',99 'Mustache_Exception_UnknownTemplateException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php',100 'Mustache_HelperCollection' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/HelperCollection.php',101 'Mustache_LambdaHelper' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/LambdaHelper.php',102 'Mustache_Loader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader.php',103 'Mustache_Loader_ArrayLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php',104 'Mustache_Loader_CascadingLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php',105 'Mustache_Loader_FilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php',106 'Mustache_Loader_InlineLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php',107 'Mustache_Loader_MutableLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php',108 'Mustache_Loader_ProductionFilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php',109 'Mustache_Loader_StringLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/StringLoader.php',110 'Mustache_Logger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger.php',111 'Mustache_Logger_AbstractLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php',112 'Mustache_Logger_StreamLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php',113 'Mustache_Parser' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Parser.php',114 'Mustache_Source' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source.php',115 'Mustache_Source_FilesystemSource' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php',116 'Mustache_Template' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Template.php',117 'Mustache_Tokenizer' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Tokenizer.php',118 'Mustangostang\\Spyc' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src/Spyc.php',119 'Network_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Meta_Command.php',120 'Network_Namespace' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Namespace.php',121 'Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Option_Command.php',122 'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',123 'Post_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Command.php',124 'Post_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Meta_Command.php',125 'Post_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Term_Command.php',126 'Post_Type_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Type_Command.php',127 'Site_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Command.php',128 'Site_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Meta_Command.php',129 'Site_Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Option_Command.php',130 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php',131 'Symfony\\Component\\Finder\\Comparator\\Comparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/Comparator.php',132 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/DateComparator.php',133 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/NumberComparator.php',134 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/finder/Exception/AccessDeniedException.php',135 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => __DIR__ . '/..' . '/symfony/finder/Exception/DirectoryNotFoundException.php',136 'Symfony\\Component\\Finder\\Finder' => __DIR__ . '/..' . '/symfony/finder/Finder.php',137 'Symfony\\Component\\Finder\\Gitignore' => __DIR__ . '/..' . '/symfony/finder/Gitignore.php',138 'Symfony\\Component\\Finder\\Glob' => __DIR__ . '/..' . '/symfony/finder/Glob.php',139 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/CustomFilterIterator.php',140 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DateRangeFilterIterator.php',141 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DepthRangeFilterIterator.php',142 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',143 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FileTypeFilterIterator.php',144 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilecontentFilterIterator.php',145 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilenameFilterIterator.php',146 'Symfony\\Component\\Finder\\Iterator\\LazyIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/LazyIterator.php',147 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php',148 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/PathFilterIterator.php',149 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php',150 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SizeRangeFilterIterator.php',151 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php',152 'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',153 'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php',154 'Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',155 'Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/PhpToken.php',156 'Taxonomy_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Taxonomy_Command.php',157 'Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Command.php',158 'Term_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Meta_Command.php',159 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',160 'User_Application_Password_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Application_Password_Command.php',161 'User_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Command.php',162 'User_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Meta_Command.php',163 'User_Session_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Session_Command.php',164 'User_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Term_Command.php',165 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php',166 'WP_CLI' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli.php',167 'WP_CLI\\Autoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php',168 'WP_CLI\\Bootstrap\\AutoloaderStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php',169 'WP_CLI\\Bootstrap\\BootstrapState' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php',170 'WP_CLI\\Bootstrap\\BootstrapStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php',171 'WP_CLI\\Bootstrap\\ConfigureRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php',172 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php',173 'WP_CLI\\Bootstrap\\DeclareFallbackFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareFallbackFunctions.php',174 'WP_CLI\\Bootstrap\\DeclareMainClass' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php',175 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php',176 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php',177 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php',178 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php',179 'WP_CLI\\Bootstrap\\IncludeRequestsAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php',180 'WP_CLI\\Bootstrap\\InitializeColorization' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php',181 'WP_CLI\\Bootstrap\\InitializeContexts' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php',182 'WP_CLI\\Bootstrap\\InitializeLogger' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php',183 'WP_CLI\\Bootstrap\\LaunchRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php',184 'WP_CLI\\Bootstrap\\LoadDispatcher' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php',185 'WP_CLI\\Bootstrap\\LoadExecCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadExecCommand.php',186 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php',187 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php',188 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php',189 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php',190 'WP_CLI\\Bootstrap\\RunnerInstance' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php',191 'WP_CLI\\CommandWithDBObject' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php',192 'WP_CLI\\CommandWithMeta' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php',193 'WP_CLI\\CommandWithTerms' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php',194 'WP_CLI\\Completions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Completions.php',195 'WP_CLI\\ComposerIO' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php',196 'WP_CLI\\Configurator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php',197 'WP_CLI\\Context' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context.php',198 'WP_CLI\\ContextManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ContextManager.php',199 'WP_CLI\\Context\\Admin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php',200 'WP_CLI\\Context\\Auto' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php',201 'WP_CLI\\Context\\Cli' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php',202 'WP_CLI\\Context\\Frontend' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php',203 'WP_CLI\\Dispatcher\\CommandAddition' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php',204 'WP_CLI\\Dispatcher\\CommandFactory' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php',205 'WP_CLI\\Dispatcher\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php',206 'WP_CLI\\Dispatcher\\CompositeCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php',207 'WP_CLI\\Dispatcher\\RootCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php',208 'WP_CLI\\Dispatcher\\Subcommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php',209 'WP_CLI\\DocParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php',210 'WP_CLI\\Exception\\NonExistentKeyException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Exception/NonExistentKeyException.php',211 'WP_CLI\\ExitException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php',212 'WP_CLI\\Extractor' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php',213 'WP_CLI\\Fetchers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php',214 'WP_CLI\\Fetchers\\Comment' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php',215 'WP_CLI\\Fetchers\\Post' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php',216 'WP_CLI\\Fetchers\\Site' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php',217 'WP_CLI\\Fetchers\\User' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php',218 'WP_CLI\\FileCache' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php',219 'WP_CLI\\Formatter' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php',220 'WP_CLI\\Inflector' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php',221 'WP_CLI\\Iterators\\CSV' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php',222 'WP_CLI\\Iterators\\Exception' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php',223 'WP_CLI\\Iterators\\Query' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php',224 'WP_CLI\\Iterators\\Table' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php',225 'WP_CLI\\Iterators\\Transform' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php',226 'WP_CLI\\Loggers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php',227 'WP_CLI\\Loggers\\Execution' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php',228 'WP_CLI\\Loggers\\Quiet' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php',229 'WP_CLI\\Loggers\\Regular' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php',230 'WP_CLI\\NoOp' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php',231 'WP_CLI\\PackageManagerEventSubscriber' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php',232 'WP_CLI\\Process' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Process.php',233 'WP_CLI\\ProcessRun' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php',234 'WP_CLI\\RequestsLibrary' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php',235 'WP_CLI\\Runner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Runner.php',236 'WP_CLI\\SynopsisParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php',237 'WP_CLI\\SynopsisValidator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php',238 'WP_CLI\\Traverser\\RecursiveDataStructureTraverser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Traverser/RecursiveDataStructureTraverser.php',239 'WP_CLI\\UpgraderSkin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php',240 'WP_CLI\\WpHttpCacheManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php',241 'WP_CLI\\WpOrgApi' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php',242 'WP_CLI_Command' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli-command.php',243 'cli\\Arguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Arguments.php',244 'cli\\Colors' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Colors.php',245 'cli\\Memoize' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Memoize.php',246 'cli\\Notify' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Notify.php',247 'cli\\Progress' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Progress.php',248 'cli\\Shell' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Shell.php',249 'cli\\Streams' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Streams.php',250 'cli\\Table' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Table.php',251 'cli\\Tree' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Tree.php',252 'cli\\arguments\\Argument' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php',253 'cli\\arguments\\HelpScreen' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php',254 'cli\\arguments\\InvalidArguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php',255 'cli\\arguments\\Lexer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php',256 'cli\\notify\\Dots' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php',257 'cli\\notify\\Spinner' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php',258 'cli\\progress\\Bar' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php',259 'cli\\table\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php',260 'cli\\table\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php',261 'cli\\table\\Tabular' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php',262 'cli\\tree\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php',263 'cli\\tree\\Markdown' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php',264 'cli\\tree\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php',265 25 'wpscholar\\Url' => __DIR__ . '/..' . '/wpscholar/url/Url.php', 266 26 ); … … 269 29 { 270 30 return \Closure::bind(function () use ($loader) { 271 $loader->prefixLengthsPsr4 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixLengthsPsr4; 272 $loader->prefixDirsPsr4 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixDirsPsr4; 273 $loader->prefixesPsr0 = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$prefixesPsr0; 274 $loader->classMap = ComposerStaticInit693a8af134a3b951d493656bc2d2d8cd::$classMap; 31 $loader->prefixLengthsPsr4 = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$prefixLengthsPsr4; 32 $loader->prefixDirsPsr4 = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$prefixDirsPsr4; 33 $loader->classMap = ComposerStaticInit7387a277d1209dff8496fc5ad8379c46::$classMap; 275 34 276 35 }, null, ClassLoader::class); -
simple-website-redirect/trunk/vendor/composer/installed.json
r3128446 r3200400 2 2 "packages": [ 3 3 { 4 "name": " mustache/mustache",5 "version": " v2.14.2",6 "version_normalized": " 2.14.2.0",4 "name": "wpscholar/url", 5 "version": "1.2.3", 6 "version_normalized": "1.2.3.0", 7 7 "source": { 8 8 "type": "git", 9 "url": "https://github.com/ bobthecow/mustache.php.git",10 "reference": " e62b7c3849d22ec55f3ec425507bf7968193a6cb"9 "url": "https://github.com/wpscholar/url.git", 10 "reference": "6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8" 11 11 }, 12 12 "dist": { 13 13 "type": "zip", 14 "url": "https://api.github.com/repos/ bobthecow/mustache.php/zipball/e62b7c3849d22ec55f3ec425507bf7968193a6cb",15 "reference": " e62b7c3849d22ec55f3ec425507bf7968193a6cb",14 "url": "https://api.github.com/repos/wpscholar/url/zipball/6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8", 15 "reference": "6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8", 16 16 "shasum": "" 17 17 }, 18 "require": { 19 "php": ">=5.2.4" 20 }, 21 "require-dev": { 22 "friendsofphp/php-cs-fixer": "~1.11", 23 "phpunit/phpunit": "~3.7|~4.0|~5.0" 24 }, 25 "time": "2022-08-23T13:07:01+00:00", 26 "type": "library", 27 "installation-source": "dist", 28 "autoload": { 29 "psr-0": { 30 "Mustache": "src/" 31 } 32 }, 33 "notification-url": "https://packagist.org/downloads/", 34 "license": [ 35 "MIT" 36 ], 37 "authors": [ 38 { 39 "name": "Justin Hileman", 40 "email": "[email protected]", 41 "homepage": "http://justinhileman.com" 42 } 43 ], 44 "description": "A Mustache implementation in PHP.", 45 "homepage": "https://github.com/bobthecow/mustache.php", 46 "keywords": [ 47 "mustache", 48 "templating" 49 ], 50 "support": { 51 "issues": "https://github.com/bobthecow/mustache.php/issues", 52 "source": "https://github.com/bobthecow/mustache.php/tree/v2.14.2" 53 }, 54 "install-path": "../mustache/mustache" 55 }, 56 { 57 "name": "symfony/deprecation-contracts", 58 "version": "v2.5.3", 59 "version_normalized": "2.5.3.0", 60 "source": { 61 "type": "git", 62 "url": "https://github.com/symfony/deprecation-contracts.git", 63 "reference": "80d075412b557d41002320b96a096ca65aa2c98d" 64 }, 65 "dist": { 66 "type": "zip", 67 "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d", 68 "reference": "80d075412b557d41002320b96a096ca65aa2c98d", 69 "shasum": "" 70 }, 71 "require": { 72 "php": ">=7.1" 73 }, 74 "time": "2023-01-24T14:02:46+00:00", 75 "type": "library", 76 "extra": { 77 "branch-alias": { 78 "dev-main": "2.5-dev" 79 }, 80 "thanks": { 81 "name": "symfony/contracts", 82 "url": "https://github.com/symfony/contracts" 83 } 84 }, 85 "installation-source": "dist", 86 "autoload": { 87 "files": [ 88 "function.php" 89 ] 90 }, 91 "notification-url": "https://packagist.org/downloads/", 92 "license": [ 93 "MIT" 94 ], 95 "authors": [ 96 { 97 "name": "Nicolas Grekas", 98 "email": "[email protected]" 99 }, 100 { 101 "name": "Symfony Community", 102 "homepage": "https://symfony.com/contributors" 103 } 104 ], 105 "description": "A generic function and convention to trigger deprecation notices", 106 "homepage": "https://symfony.com", 107 "support": { 108 "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3" 109 }, 110 "funding": [ 111 { 112 "url": "https://symfony.com/sponsor", 113 "type": "custom" 114 }, 115 { 116 "url": "https://github.com/fabpot", 117 "type": "github" 118 }, 119 { 120 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 121 "type": "tidelift" 122 } 123 ], 124 "install-path": "../symfony/deprecation-contracts" 125 }, 126 { 127 "name": "symfony/finder", 128 "version": "v5.4.42", 129 "version_normalized": "5.4.42.0", 130 "source": { 131 "type": "git", 132 "url": "https://github.com/symfony/finder.git", 133 "reference": "0724c51fa067b198e36506d2864e09a52180998a" 134 }, 135 "dist": { 136 "type": "zip", 137 "url": "https://api.github.com/repos/symfony/finder/zipball/0724c51fa067b198e36506d2864e09a52180998a", 138 "reference": "0724c51fa067b198e36506d2864e09a52180998a", 139 "shasum": "" 140 }, 141 "require": { 142 "php": ">=7.2.5", 143 "symfony/deprecation-contracts": "^2.1|^3", 144 "symfony/polyfill-php80": "^1.16" 145 }, 146 "time": "2024-07-22T08:53:29+00:00", 147 "type": "library", 148 "installation-source": "dist", 149 "autoload": { 150 "psr-4": { 151 "Symfony\\Component\\Finder\\": "" 152 }, 153 "exclude-from-classmap": [ 154 "/Tests/" 155 ] 156 }, 157 "notification-url": "https://packagist.org/downloads/", 158 "license": [ 159 "MIT" 160 ], 161 "authors": [ 162 { 163 "name": "Fabien Potencier", 164 "email": "[email protected]" 165 }, 166 { 167 "name": "Symfony Community", 168 "homepage": "https://symfony.com/contributors" 169 } 170 ], 171 "description": "Finds files and directories via an intuitive fluent interface", 172 "homepage": "https://symfony.com", 173 "support": { 174 "source": "https://github.com/symfony/finder/tree/v5.4.42" 175 }, 176 "funding": [ 177 { 178 "url": "https://symfony.com/sponsor", 179 "type": "custom" 180 }, 181 { 182 "url": "https://github.com/fabpot", 183 "type": "github" 184 }, 185 { 186 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 187 "type": "tidelift" 188 } 189 ], 190 "install-path": "../symfony/finder" 191 }, 192 { 193 "name": "symfony/polyfill-php80", 194 "version": "v1.30.0", 195 "version_normalized": "1.30.0.0", 196 "source": { 197 "type": "git", 198 "url": "https://github.com/symfony/polyfill-php80.git", 199 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" 200 }, 201 "dist": { 202 "type": "zip", 203 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", 204 "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", 205 "shasum": "" 206 }, 207 "require": { 208 "php": ">=7.1" 209 }, 210 "time": "2024-05-31T15:07:36+00:00", 211 "type": "library", 212 "extra": { 213 "thanks": { 214 "name": "symfony/polyfill", 215 "url": "https://github.com/symfony/polyfill" 216 } 217 }, 218 "installation-source": "dist", 219 "autoload": { 220 "files": [ 221 "bootstrap.php" 222 ], 223 "psr-4": { 224 "Symfony\\Polyfill\\Php80\\": "" 225 }, 226 "classmap": [ 227 "Resources/stubs" 228 ] 229 }, 230 "notification-url": "https://packagist.org/downloads/", 231 "license": [ 232 "MIT" 233 ], 234 "authors": [ 235 { 236 "name": "Ion Bazan", 237 "email": "[email protected]" 238 }, 239 { 240 "name": "Nicolas Grekas", 241 "email": "[email protected]" 242 }, 243 { 244 "name": "Symfony Community", 245 "homepage": "https://symfony.com/contributors" 246 } 247 ], 248 "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 249 "homepage": "https://symfony.com", 250 "keywords": [ 251 "compatibility", 252 "polyfill", 253 "portable", 254 "shim" 255 ], 256 "support": { 257 "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" 258 }, 259 "funding": [ 260 { 261 "url": "https://symfony.com/sponsor", 262 "type": "custom" 263 }, 264 { 265 "url": "https://github.com/fabpot", 266 "type": "github" 267 }, 268 { 269 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 270 "type": "tidelift" 271 } 272 ], 273 "install-path": "../symfony/polyfill-php80" 274 }, 275 { 276 "name": "wp-cli/entity-command", 277 "version": "v2.7.0", 278 "version_normalized": "2.7.0.0", 279 "source": { 280 "type": "git", 281 "url": "https://github.com/wp-cli/entity-command.git", 282 "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed" 283 }, 284 "dist": { 285 "type": "zip", 286 "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/8110a596db62eb423f7f8e49c99dbacacf01f6ed", 287 "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed", 288 "shasum": "" 289 }, 290 "require": { 291 "wp-cli/wp-cli": "^2.10" 292 }, 293 "require-dev": { 294 "wp-cli/cache-command": "^1 || ^2", 295 "wp-cli/db-command": "^1.3 || ^2", 296 "wp-cli/extension-command": "^1.2 || ^2", 297 "wp-cli/media-command": "^1.1 || ^2", 298 "wp-cli/super-admin-command": "^1 || ^2", 299 "wp-cli/wp-cli-tests": "^4" 300 }, 301 "time": "2024-04-29T07:34:56+00:00", 302 "type": "wp-cli-package", 303 "extra": { 304 "branch-alias": { 305 "dev-main": "2.x-dev" 306 }, 307 "bundled": true, 308 "commands": [ 309 "comment", 310 "comment approve", 311 "comment count", 312 "comment create", 313 "comment delete", 314 "comment exists", 315 "comment generate", 316 "comment get", 317 "comment list", 318 "comment meta", 319 "comment meta add", 320 "comment meta delete", 321 "comment meta get", 322 "comment meta list", 323 "comment meta patch", 324 "comment meta pluck", 325 "comment meta update", 326 "comment recount", 327 "comment spam", 328 "comment status", 329 "comment trash", 330 "comment unapprove", 331 "comment unspam", 332 "comment untrash", 333 "comment update", 334 "menu", 335 "menu create", 336 "menu delete", 337 "menu item", 338 "menu item add-custom", 339 "menu item add-post", 340 "menu item add-term", 341 "menu item delete", 342 "menu item list", 343 "menu item update", 344 "menu list", 345 "menu location", 346 "menu location assign", 347 "menu location list", 348 "menu location remove", 349 "network meta", 350 "network meta add", 351 "network meta delete", 352 "network meta get", 353 "network meta list", 354 "network meta patch", 355 "network meta pluck", 356 "network meta update", 357 "option", 358 "option add", 359 "option delete", 360 "option get", 361 "option list", 362 "option patch", 363 "option pluck", 364 "option update", 365 "option set-autoload", 366 "option get-autoload", 367 "post", 368 "post create", 369 "post delete", 370 "post edit", 371 "post exists", 372 "post generate", 373 "post get", 374 "post list", 375 "post meta", 376 "post meta add", 377 "post meta clean-duplicates", 378 "post meta delete", 379 "post meta get", 380 "post meta list", 381 "post meta patch", 382 "post meta pluck", 383 "post meta update", 384 "post term", 385 "post term add", 386 "post term list", 387 "post term remove", 388 "post term set", 389 "post update", 390 "post url-to-id", 391 "post-type", 392 "post-type get", 393 "post-type list", 394 "site", 395 "site activate", 396 "site archive", 397 "site create", 398 "site deactivate", 399 "site delete", 400 "site empty", 401 "site list", 402 "site mature", 403 "site meta", 404 "site meta add", 405 "site meta delete", 406 "site meta get", 407 "site meta list", 408 "site meta patch", 409 "site meta pluck", 410 "site meta update", 411 "site option", 412 "site private", 413 "site public", 414 "site spam", 415 "site unarchive", 416 "site unmature", 417 "site unspam", 418 "taxonomy", 419 "taxonomy get", 420 "taxonomy list", 421 "term", 422 "term create", 423 "term delete", 424 "term generate", 425 "term get", 426 "term list", 427 "term meta", 428 "term meta add", 429 "term meta delete", 430 "term meta get", 431 "term meta list", 432 "term meta patch", 433 "term meta pluck", 434 "term meta update", 435 "term recount", 436 "term update", 437 "user", 438 "user add-cap", 439 "user add-role", 440 "user application-password", 441 "user application-password create", 442 "user application-password delete", 443 "user application-password exists", 444 "user application-password get", 445 "user application-password list", 446 "user application-password record-usage", 447 "user application-password update", 448 "user create", 449 "user delete", 450 "user exists", 451 "user generate", 452 "user get", 453 "user import-csv", 454 "user list", 455 "user list-caps", 456 "user meta", 457 "user meta add", 458 "user meta delete", 459 "user meta get", 460 "user meta list", 461 "user meta patch", 462 "user meta pluck", 463 "user meta update", 464 "user remove-cap", 465 "user remove-role", 466 "user reset-password", 467 "user session", 468 "user session destroy", 469 "user session list", 470 "user set-role", 471 "user spam", 472 "user term", 473 "user term add", 474 "user term list", 475 "user term remove", 476 "user term set", 477 "user unspam", 478 "user update" 479 ] 480 }, 481 "installation-source": "dist", 482 "autoload": { 483 "files": [ 484 "entity-command.php" 485 ], 486 "classmap": [ 487 "src/" 488 ] 489 }, 490 "notification-url": "https://packagist.org/downloads/", 491 "license": [ 492 "MIT" 493 ], 494 "authors": [ 495 { 496 "name": "Daniel Bachhuber", 497 "email": "[email protected]", 498 "homepage": "https://runcommand.io" 499 } 500 ], 501 "description": "Manage WordPress comments, menus, options, posts, sites, terms, and users.", 502 "homepage": "https://github.com/wp-cli/entity-command", 503 "support": { 504 "issues": "https://github.com/wp-cli/entity-command/issues", 505 "source": "https://github.com/wp-cli/entity-command/tree/v2.7.0" 506 }, 507 "install-path": "../wp-cli/entity-command" 508 }, 509 { 510 "name": "wp-cli/mustangostang-spyc", 511 "version": "0.6.3", 512 "version_normalized": "0.6.3.0", 513 "source": { 514 "type": "git", 515 "url": "https://github.com/wp-cli/spyc.git", 516 "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7" 517 }, 518 "dist": { 519 "type": "zip", 520 "url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 521 "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 522 "shasum": "" 523 }, 524 "require": { 525 "php": ">=5.3.1" 526 }, 527 "require-dev": { 528 "phpunit/phpunit": "4.3.*@dev" 529 }, 530 "time": "2017-04-25T11:26:20+00:00", 531 "type": "library", 532 "extra": { 533 "branch-alias": { 534 "dev-master": "0.5.x-dev" 535 } 536 }, 537 "installation-source": "dist", 538 "autoload": { 539 "files": [ 540 "includes/functions.php" 541 ], 542 "psr-4": { 543 "Mustangostang\\": "src/" 544 } 545 }, 546 "notification-url": "https://packagist.org/downloads/", 547 "license": [ 548 "MIT" 549 ], 550 "authors": [ 551 { 552 "name": "mustangostang", 553 "email": "[email protected]" 554 } 555 ], 556 "description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)", 557 "homepage": "https://github.com/mustangostang/spyc/", 558 "support": { 559 "source": "https://github.com/wp-cli/spyc/tree/autoload" 560 }, 561 "install-path": "../wp-cli/mustangostang-spyc" 562 }, 563 { 564 "name": "wp-cli/php-cli-tools", 565 "version": "v0.11.22", 566 "version_normalized": "0.11.22.0", 567 "source": { 568 "type": "git", 569 "url": "https://github.com/wp-cli/php-cli-tools.git", 570 "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51" 571 }, 572 "dist": { 573 "type": "zip", 574 "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/a6bb94664ca36d0962f9c2ff25591c315a550c51", 575 "reference": "a6bb94664ca36d0962f9c2ff25591c315a550c51", 576 "shasum": "" 577 }, 578 "require": { 579 "php": ">= 5.3.0" 580 }, 581 "require-dev": { 582 "roave/security-advisories": "dev-latest", 583 "wp-cli/wp-cli-tests": "^4" 584 }, 585 "time": "2023-12-03T19:25:05+00:00", 586 "type": "library", 587 "extra": { 588 "branch-alias": { 589 "dev-master": "0.11.x-dev" 590 } 591 }, 592 "installation-source": "dist", 593 "autoload": { 594 "files": [ 595 "lib/cli/cli.php" 596 ], 597 "psr-0": { 598 "cli": "lib/" 599 } 600 }, 601 "notification-url": "https://packagist.org/downloads/", 602 "license": [ 603 "MIT" 604 ], 605 "authors": [ 606 { 607 "name": "Daniel Bachhuber", 608 "email": "[email protected]", 609 "role": "Maintainer" 610 }, 611 { 612 "name": "James Logsdon", 613 "email": "[email protected]", 614 "role": "Developer" 615 } 616 ], 617 "description": "Console utilities for PHP", 618 "homepage": "http://github.com/wp-cli/php-cli-tools", 619 "keywords": [ 620 "cli", 621 "console" 622 ], 623 "support": { 624 "issues": "https://github.com/wp-cli/php-cli-tools/issues", 625 "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.22" 626 }, 627 "install-path": "../wp-cli/php-cli-tools" 628 }, 629 { 630 "name": "wp-cli/wp-cli", 631 "version": "v2.10.0", 632 "version_normalized": "2.10.0.0", 633 "source": { 634 "type": "git", 635 "url": "https://github.com/wp-cli/wp-cli.git", 636 "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685" 637 }, 638 "dist": { 639 "type": "zip", 640 "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/a339dca576df73c31af4b4d8054efc2dab9a0685", 641 "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685", 642 "shasum": "" 643 }, 644 "require": { 645 "ext-curl": "*", 646 "mustache/mustache": "^2.14.1", 647 "php": "^5.6 || ^7.0 || ^8.0", 648 "symfony/finder": ">2.7", 649 "wp-cli/mustangostang-spyc": "^0.6.3", 650 "wp-cli/php-cli-tools": "~0.11.2" 651 }, 652 "require-dev": { 653 "roave/security-advisories": "dev-latest", 654 "wp-cli/db-command": "^1.3 || ^2", 655 "wp-cli/entity-command": "^1.2 || ^2", 656 "wp-cli/extension-command": "^1.1 || ^2", 657 "wp-cli/package-command": "^1 || ^2", 658 "wp-cli/wp-cli-tests": "^4.0.1" 659 }, 660 "suggest": { 661 "ext-readline": "Include for a better --prompt implementation", 662 "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates" 663 }, 664 "time": "2024-02-08T16:52:43+00:00", 665 "bin": [ 666 "bin/wp", 667 "bin/wp.bat" 668 ], 669 "type": "library", 670 "extra": { 671 "branch-alias": { 672 "dev-main": "2.10.x-dev" 673 } 674 }, 675 "installation-source": "dist", 676 "autoload": { 677 "psr-0": { 678 "WP_CLI\\": "php/" 679 }, 680 "classmap": [ 681 "php/class-wp-cli.php", 682 "php/class-wp-cli-command.php" 683 ] 684 }, 685 "notification-url": "https://packagist.org/downloads/", 686 "license": [ 687 "MIT" 688 ], 689 "description": "WP-CLI framework", 690 "homepage": "https://wp-cli.org", 691 "keywords": [ 692 "cli", 693 "wordpress" 694 ], 695 "support": { 696 "docs": "https://make.wordpress.org/cli/handbook/", 697 "issues": "https://github.com/wp-cli/wp-cli/issues", 698 "source": "https://github.com/wp-cli/wp-cli" 699 }, 700 "install-path": "../wp-cli/wp-cli" 701 }, 702 { 703 "name": "wpscholar/url", 704 "version": "1.2.2", 705 "version_normalized": "1.2.2.0", 706 "source": { 707 "type": "git", 708 "url": "https://github.com/wpscholar/url.git", 709 "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0" 710 }, 711 "dist": { 712 "type": "zip", 713 "url": "https://api.github.com/repos/wpscholar/url/zipball/c339972ed8e6876f1cfacbc512c6205db63645d0", 714 "reference": "c339972ed8e6876f1cfacbc512c6205db63645d0", 715 "shasum": "" 716 }, 717 "time": "2020-10-27T20:10:04+00:00", 18 "time": "2024-12-01T20:43:41+00:00", 718 19 "type": "library", 719 20 "installation-source": "dist", … … 737 38 "support": { 738 39 "issues": "https://github.com/wpscholar/url/issues", 739 "source": "https://github.com/wpscholar/url/tree/1.2. 2"40 "source": "https://github.com/wpscholar/url/tree/1.2.3" 740 41 }, 741 42 "install-path": "../wpscholar/url" -
simple-website-redirect/trunk/vendor/composer/installed.php
r3128446 r3200400 2 2 'root' => array( 3 3 'name' => 'wpscholar/simple-website-redirect', 4 'pretty_version' => '1. 2.9',5 'version' => '1. 2.9.0',6 'reference' => ' b090f8c2e56d4d98cf97a659e51ba17ecb6bd848',4 'pretty_version' => '1.3.0', 5 'version' => '1.3.0.0', 6 'reference' => '0641989e03bcc645d41c6d1e5e893752a2a3ccaf', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 11 11 ), 12 12 'versions' => array( 13 'mustache/mustache' => array(14 'pretty_version' => 'v2.14.2',15 'version' => '2.14.2.0',16 'reference' => 'e62b7c3849d22ec55f3ec425507bf7968193a6cb',17 'type' => 'library',18 'install_path' => __DIR__ . '/../mustache/mustache',19 'aliases' => array(),20 'dev_requirement' => false,21 ),22 'symfony/deprecation-contracts' => array(23 'pretty_version' => 'v2.5.3',24 'version' => '2.5.3.0',25 'reference' => '80d075412b557d41002320b96a096ca65aa2c98d',26 'type' => 'library',27 'install_path' => __DIR__ . '/../symfony/deprecation-contracts',28 'aliases' => array(),29 'dev_requirement' => false,30 ),31 'symfony/finder' => array(32 'pretty_version' => 'v5.4.42',33 'version' => '5.4.42.0',34 'reference' => '0724c51fa067b198e36506d2864e09a52180998a',35 'type' => 'library',36 'install_path' => __DIR__ . '/../symfony/finder',37 'aliases' => array(),38 'dev_requirement' => false,39 ),40 'symfony/polyfill-php80' => array(41 'pretty_version' => 'v1.30.0',42 'version' => '1.30.0.0',43 'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433',44 'type' => 'library',45 'install_path' => __DIR__ . '/../symfony/polyfill-php80',46 'aliases' => array(),47 'dev_requirement' => false,48 ),49 'wp-cli/entity-command' => array(50 'pretty_version' => 'v2.7.0',51 'version' => '2.7.0.0',52 'reference' => '8110a596db62eb423f7f8e49c99dbacacf01f6ed',53 'type' => 'wp-cli-package',54 'install_path' => __DIR__ . '/../wp-cli/entity-command',55 'aliases' => array(),56 'dev_requirement' => false,57 ),58 'wp-cli/mustangostang-spyc' => array(59 'pretty_version' => '0.6.3',60 'version' => '0.6.3.0',61 'reference' => '6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7',62 'type' => 'library',63 'install_path' => __DIR__ . '/../wp-cli/mustangostang-spyc',64 'aliases' => array(),65 'dev_requirement' => false,66 ),67 'wp-cli/php-cli-tools' => array(68 'pretty_version' => 'v0.11.22',69 'version' => '0.11.22.0',70 'reference' => 'a6bb94664ca36d0962f9c2ff25591c315a550c51',71 'type' => 'library',72 'install_path' => __DIR__ . '/../wp-cli/php-cli-tools',73 'aliases' => array(),74 'dev_requirement' => false,75 ),76 'wp-cli/wp-cli' => array(77 'pretty_version' => 'v2.10.0',78 'version' => '2.10.0.0',79 'reference' => 'a339dca576df73c31af4b4d8054efc2dab9a0685',80 'type' => 'library',81 'install_path' => __DIR__ . '/../wp-cli/wp-cli',82 'aliases' => array(),83 'dev_requirement' => false,84 ),85 13 'wpscholar/simple-website-redirect' => array( 86 'pretty_version' => '1. 2.9',87 'version' => '1. 2.9.0',88 'reference' => ' b090f8c2e56d4d98cf97a659e51ba17ecb6bd848',14 'pretty_version' => '1.3.0', 15 'version' => '1.3.0.0', 16 'reference' => '0641989e03bcc645d41c6d1e5e893752a2a3ccaf', 89 17 'type' => 'wordpress-plugin', 90 18 'install_path' => __DIR__ . '/../../', … … 93 21 ), 94 22 'wpscholar/url' => array( 95 'pretty_version' => '1.2. 2',96 'version' => '1.2. 2.0',97 'reference' => ' c339972ed8e6876f1cfacbc512c6205db63645d0',23 'pretty_version' => '1.2.3', 24 'version' => '1.2.3.0', 25 'reference' => '6e97376a1cf3a9f4d0f0ae976cece6123d1bd4b8', 98 26 'type' => 'library', 99 27 'install_path' => __DIR__ . '/../wpscholar/url', -
simple-website-redirect/trunk/vendor/wpscholar/url/Url.php
r2438442 r3200400 87 87 */ 88 88 public static function getCurrentUrl() { 89 return self::getCurrentScheme() . '://' . getenv( 'HTTP_HOST' ) . getenv( 'REQUEST_URI' );89 return self::getCurrentScheme() . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; 90 90 } 91 91 … … 96 96 */ 97 97 public static function getCurrentScheme() { 98 $is_ssl = (boolean) getenv( 'HTTPS' ) || '443' === getenv( 'SERVER_PORT' ) || 'https' === getenv( 'HTTP_X_FORWARDED_PROTO' );98 $is_ssl = (boolean) $_SERVER['HTTPS'] || '443' === $_SERVER['SERVER_PORT'] || 'https' === $_SERVER['HTTP_X_FORWARDED_PROTO']; 99 99 $scheme = $is_ssl ? 'https' : 'http'; 100 100
Note: See TracChangeset
for help on using the changeset viewer.