wp-studio 1.7.8-beta1 → 1.7.8-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/assets/demo.gif +0 -0
- package/dist/cli/{_events-CpYnL6aL.mjs → _events-C60cNJ1W.mjs} +1 -1
- package/dist/cli/{index-COE3YuBZ.mjs → index-D9syEMMz.mjs} +8 -4
- package/dist/cli/{index-DcwE-uHJ.mjs → index-Ru6CUP6w.mjs} +24 -12
- package/dist/cli/{login-BG1fj9WI.mjs → login-C3QlGVbr.mjs} +1 -1
- package/dist/cli/{logout-ZvmdeOCk.mjs → logout-B63eZwJZ.mjs} +1 -1
- package/dist/cli/main.mjs +2 -1
- package/dist/cli/{resume-DAqOqbu7.mjs → resume-DQT_MK6A.mjs} +1 -1
- package/dist/cli/{set-DUft5oIC.mjs → set-C805heQS.mjs} +1 -1
- package/dist/cli/{set-JSHvPScL.mjs → set-CjTbueyB.mjs} +1 -1
- package/dist/cli/{status-PM6pdsVD.mjs → status-SnKm1rRP.mjs} +1 -1
- package/dist/cli/{wp-BzITd9Ic.mjs → wp-D0HZdudM.mjs} +1 -1
- package/dist/cli/wp-files/sqlite-command/composer.json +4 -3
- package/dist/cli/wp-files/sqlite-command/composer.lock +132 -80
- package/dist/cli/wp-files/sqlite-command/vendor/autoload.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/composer/autoload_classmap.php +58 -70
- package/dist/cli/wp-files/sqlite-command/vendor/composer/autoload_namespaces.php +1 -0
- package/dist/cli/wp-files/sqlite-command/vendor/composer/autoload_psr4.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/composer/autoload_real.php +5 -5
- package/dist/cli/wp-files/sqlite-command/vendor/composer/autoload_static.php +78 -80
- package/dist/cli/wp-files/sqlite-command/vendor/composer/installed.json +104 -49
- package/dist/cli/wp-files/sqlite-command/vendor/composer/installed.php +29 -16
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/CHANGELOG.md +103 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Comparator/Comparator.php +62 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Comparator/DateComparator.php +50 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Comparator/NumberComparator.php +78 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Exception/AccessDeniedException.php +19 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Exception/DirectoryNotFoundException.php +19 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Finder.php +851 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Gitignore.php +91 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Glob.php +116 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/CustomFilterIterator.php +61 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php +58 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php +48 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php +110 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php +51 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php +58 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/FilenameFilterIterator.php +45 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/LazyIterator.php +32 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php +107 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/PathFilterIterator.php +56 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php +134 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php +57 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/SortableIterator.php +115 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/Iterator/VcsIgnoredFilterIterator.php +173 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/LICENSE +19 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/README.md +14 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/SplFileInfo.php +80 -0
- package/dist/cli/wp-files/sqlite-command/vendor/symfony/finder/composer.json +31 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/mustache/.gitattributes +8 -0
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache → wp-cli}/mustache/LICENSE +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/mustache/README.md +76 -0
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache → wp-cli}/mustache/composer.json +6 -16
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/mustache/src/Mustache/Autoloader.php +88 -0
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Cache/AbstractCache.php +7 -15
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Cache/FilesystemCache.php +15 -20
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Cache/NoopCache.php +4 -8
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Cache.php +7 -10
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Compiler.php +87 -144
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Context.php +19 -23
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Engine.php +134 -251
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/InvalidArgumentException.php +2 -6
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/LogicException.php +2 -6
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/RuntimeException.php +2 -6
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/SyntaxException.php +8 -7
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/UnknownFilterException.php +7 -7
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/UnknownHelperException.php +7 -7
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception/UnknownTemplateException.php +7 -7
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Exception.php +5 -4
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/HelperCollection.php +17 -22
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/LambdaHelper.php +8 -28
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/ArrayLoader.php +9 -12
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/CascadingLoader.php +15 -18
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/FilesystemLoader.php +18 -24
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/InlineLoader.php +13 -19
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/MutableLoader.php +7 -4
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/ProductionFilesystemLoader.php +16 -23
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader/StringLoader.php +4 -8
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Loader.php +7 -8
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Logger/AbstractLogger.php +26 -22
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Logger/StreamLogger.php +20 -25
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Logger.php +37 -13
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Parser.php +93 -100
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Source/FilesystemSource.php +7 -11
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Source.php +5 -4
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Template.php +32 -39
- package/dist/cli/wp-files/sqlite-command/vendor/{mustache/mustache/src → wp-cli/mustache/src/Mustache}/Tokenizer.php +29 -33
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/.actrc +3 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/.gitattributes +6 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/.mailmap +234 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/README.md +4 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/VERSION +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/CHANGELOG.md +0 -65
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/README.md +1 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/certificates/cacert.pem +372 -315
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/certificates/cacert.pem.sha256 +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/composer.json +5 -7
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Iri.php +18 -20
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Requests.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Response/Headers.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport/Curl.php +1 -5
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport/Fsockopen.php +0 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility/CaseInsensitiveDictionary.php +0 -12
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility/FilteredIterator.php +2 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/composer.json +13 -30
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/dependencies.yml +6 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/manifest.json +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Autoloader.php +2 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php +1 -10
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/CheckRoot.php +2 -20
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php +3 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php +4 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php +3 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php +0 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php +3 -6
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/{RegisterShutdownHandler.php → LoadDispatcher.php} +4 -6
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php +5 -9
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php +0 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Completions.php +6 -149
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Configurator.php +49 -202
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php +21 -113
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php +1 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php +1 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php +26 -63
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php +9 -19
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php +19 -284
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/DocParser.php +5 -17
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Exception/NonExistentKeyException.php +3 -6
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Extractor.php +54 -30
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php +3 -7
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php +2 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php +3 -8
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Signup.php +1 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php +4 -12
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php +1 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/FileCache.php +33 -135
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Formatter.php +57 -221
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Inflector.php +4 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php +1 -6
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php +1 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php +1 -7
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php +0 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php +0 -15
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php +3 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php +3 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/NoOp.php +0 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Process.php +7 -40
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php +1 -4
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php +234 -795
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php +26 -116
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Traverser/RecursiveDataStructureTraverser.php +26 -69
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php +5 -67
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php +3 -3
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/boot-fs.php +2 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/bootstrap.php +2 -5
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/class-wp-cli.php +62 -311
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/commands/src/CLI_Alias_Command.php +60 -292
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/commands/src/CLI_Cache_Command.php +1 -1
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/commands/src/CLI_Command.php +31 -191
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/commands/src/Help_Command.php +35 -177
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/config-spec.php +4 -28
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/utils-wp.php +47 -81
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/utils.php +200 -512
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/wp-cli.php +2 -2
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/wp-settings-cli.php +465 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/templates/man-params.mustache +4 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/templates/man.mustache +0 -8
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/ArgValidationTest.php +74 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/CommandFactoryTest.php +420 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/ConfiguratorTest.php +87 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/DocParserTest.php +213 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/ExtractorTest.php +293 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/FileCacheTest.php +207 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/HelpTest.php +119 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/InflectorTest.php +37 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/LoggingTest.php +124 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/ProcessTest.php +30 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/SynopsisParserTest.php +194 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/UtilsTest.php +1092 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/WPCLITest.php +16 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/WP_CLI/Iterators/CSVTest.php +109 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/WP_CLI/Traversers/RecursiveDataStructureTraverserTest.php +151 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/WP_CLI/WpOrgApiTest.php +166 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/WpVersionCompareTest.php +78 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/bootstrap.php +17 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/commandfactory-doc_comment-class-win.php +70 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/commandfactory-doc_comment-class.php +70 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/commandfactory-doc_comment-function-win.php +19 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/commandfactory-doc_comment-function.php +19 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/bar.ab2 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/baz.ab1 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/baz.ac1 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/baz.efg2 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.ab1 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.ab2 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.efg1 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.efg2 +0 -0
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/mock-requests-transport.php +34 -0
- package/dist/cli/wp-files/sqlite-command/version +1 -1
- package/package.json +4 -3
- package/dist/cli/wp-files/sqlite-command/vendor/mustache/mustache/.php-cs-fixer.php +0 -20
- package/dist/cli/wp-files/sqlite-command/vendor/mustache/mustache/README.md +0 -94
- package/dist/cli/wp-files/sqlite-command/vendor/mustache/mustache/src/RenderedString.php +0 -51
- package/dist/cli/wp-files/sqlite-command/vendor/mustache/mustache/src/compat.php +0 -282
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/.typos.toml +0 -14
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/AGENTS.md +0 -121
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/scripts/proxy/proxy.py +0 -5
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/scripts/proxy/start.sh +0 -19
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/scripts/proxy/stop.sh +0 -10
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/Path.php +0 -260
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/php/WP_CLI/ShutdownHandler.php +0 -329
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/schemas/wp-cli-config.json +0 -218
- package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/schemas/wp-cli.example.yml +0 -55
- /package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/{codecov.yml → tests/data/expand_globs/bar.ab1} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { input } from "@inquirer/prompts";
|
|
2
2
|
import { z as PROTOCOL_PREFIX, B as CLIENT_ID, d as Logger, L as LoggerError, E as DEFAULT_TOKEN_LIFETIME_MS } from "./well-known-paths-d6uuOzUp.mjs";
|
|
3
3
|
import { A as AUTH_EVENTS } from "./certificate-manager-Dd4zv2_k.mjs";
|
|
4
|
-
import { r as readAuthToken, A as AuthCommandLoggerAction, m as getAppLocale, o as openBrowser, g as getUserInfo, u as updateSharedConfig, n as emitCliEvent } from "./index-
|
|
4
|
+
import { r as readAuthToken, A as AuthCommandLoggerAction, m as getAppLocale, o as openBrowser, g as getUserInfo, u as updateSharedConfig, n as emitCliEvent } from "./index-Ru6CUP6w.mjs";
|
|
5
5
|
import { __, sprintf } from "@wordpress/i18n";
|
|
6
6
|
const SCOPES = "global";
|
|
7
7
|
const REDIRECT_URI = `${PROTOCOL_PREFIX}://auth`;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { A as AUTH_EVENTS } from "./certificate-manager-Dd4zv2_k.mjs";
|
|
2
|
-
import { A as AuthCommandLoggerAction, r as readAuthToken, p as revokeAuthToken, u as updateSharedConfig, n as emitCliEvent } from "./index-
|
|
2
|
+
import { A as AuthCommandLoggerAction, r as readAuthToken, p as revokeAuthToken, u as updateSharedConfig, n as emitCliEvent } from "./index-Ru6CUP6w.mjs";
|
|
3
3
|
import { __ } from "@wordpress/i18n";
|
|
4
4
|
import { d as Logger, L as LoggerError } from "./well-known-paths-d6uuOzUp.mjs";
|
|
5
5
|
async function runCommand() {
|
package/dist/cli/main.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __ } from "@wordpress/i18n";
|
|
2
2
|
import { c as chooseSessionForAction, l as listAiSessions, b as loadAiSession } from "./helpers-B-e5rgsh.mjs";
|
|
3
|
-
import { runCommand as runCommand$1 } from "./index-
|
|
3
|
+
import { runCommand as runCommand$1 } from "./index-D9syEMMz.mjs";
|
|
4
4
|
import { L as LoggerError, d as Logger } from "./well-known-paths-d6uuOzUp.mjs";
|
|
5
5
|
const logger = new Logger();
|
|
6
6
|
async function runCommand(sessionIdOrPrefix, options = {}) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { S as SNAPSHOT_EVENTS } from "./certificate-manager-Dd4zv2_k.mjs";
|
|
2
|
-
import { q as normalizeHostname, P as PreviewCommandLoggerAction, s as setSnapshotInConfig, n as emitCliEvent } from "./index-
|
|
2
|
+
import { q as normalizeHostname, P as PreviewCommandLoggerAction, s as setSnapshotInConfig, n as emitCliEvent } from "./index-Ru6CUP6w.mjs";
|
|
3
3
|
import { __ } from "@wordpress/i18n";
|
|
4
4
|
import { L as LoggerError, d as Logger } from "./well-known-paths-d6uuOzUp.mjs";
|
|
5
5
|
async function runCommand(host, options) {
|
|
@@ -46,7 +46,7 @@ var __callDispose = (stack, error, hasError) => {
|
|
|
46
46
|
import { SupportedPHPVersions } from "@php-wasm/universal";
|
|
47
47
|
import { L as LoggerError, d as Logger, M as MINIMUM_WORDPRESS_VERSION, q as DEFAULT_WORDPRESS_VERSION } from "./well-known-paths-d6uuOzUp.mjs";
|
|
48
48
|
import { r as readCliConfig, l as lockCliConfig, s as saveCliConfig, u as unlockCliConfig, g as generateSiteCertificate, e as SITE_EVENTS } from "./certificate-manager-Dd4zv2_k.mjs";
|
|
49
|
-
import { V as ValidationError, t as SiteCommandLoggerAction, v as getSiteByFolder, w as getDomainNameValidationError, x as updateDomainInHosts, y as connectToDaemon, z as isServerRunning, B as stopWordPressServer, C as validatePhpVersion, D as runWpCliCommand, E as setupCustomDomain, F as startWordPressServer, G as updateSiteLatestCliPid, n as emitCliEvent, H as disconnectFromDaemon } from "./index-
|
|
49
|
+
import { V as ValidationError, t as SiteCommandLoggerAction, v as getSiteByFolder, w as getDomainNameValidationError, x as updateDomainInHosts, y as connectToDaemon, z as isServerRunning, B as stopWordPressServer, C as validatePhpVersion, D as runWpCliCommand, E as setupCustomDomain, F as startWordPressServer, G as updateSiteLatestCliPid, n as emitCliEvent, H as disconnectFromDaemon } from "./index-Ru6CUP6w.mjs";
|
|
50
50
|
import { B as isValidWordPressVersion, C as isWordPressVersionAtLeast, x as validateAdminUsername, y as validateAdminEmail, a as arePathsEqual, z as encodePassword, b as getWordPressVersionUrl } from "./rewrite-wp-cli-post-content-CWC1GEL6.mjs";
|
|
51
51
|
import { __, sprintf } from "@wordpress/i18n";
|
|
52
52
|
function siteNeedsRestart(changes) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as AuthCommandLoggerAction, r as readAuthToken, g as getUserInfo } from "./index-
|
|
1
|
+
import { A as AuthCommandLoggerAction, r as readAuthToken, g as getUserInfo } from "./index-Ru6CUP6w.mjs";
|
|
2
2
|
import { __, sprintf } from "@wordpress/i18n";
|
|
3
3
|
import { d as Logger, L as LoggerError } from "./well-known-paths-d6uuOzUp.mjs";
|
|
4
4
|
async function runCommand() {
|
|
@@ -45,7 +45,7 @@ var __callDispose = (stack, error, hasError) => {
|
|
|
45
45
|
};
|
|
46
46
|
import { __ } from "@wordpress/i18n";
|
|
47
47
|
import yargsParser from "yargs-parser";
|
|
48
|
-
import { I as runGlobalWpCliCommand, v as getSiteByFolder, C as validatePhpVersion, H as disconnectFromDaemon, y as connectToDaemon, z as isServerRunning, J as sendWpCliCommand, D as runWpCliCommand } from "./index-
|
|
48
|
+
import { I as runGlobalWpCliCommand, v as getSiteByFolder, C as validatePhpVersion, H as disconnectFromDaemon, y as connectToDaemon, z as isServerRunning, J as sendWpCliCommand, D as runWpCliCommand } from "./index-Ru6CUP6w.mjs";
|
|
49
49
|
import { L as LoggerError, d as Logger } from "./well-known-paths-d6uuOzUp.mjs";
|
|
50
50
|
const logger = new Logger();
|
|
51
51
|
async function pipePHPResponse(response) {
|
|
@@ -23,11 +23,9 @@
|
|
|
23
23
|
"email": "jeroen.pfeil@automattic.com"
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
|
-
"minimum-stability": "dev",
|
|
27
|
-
"prefer-stable": true,
|
|
28
26
|
"require": {
|
|
29
27
|
"php": ">=7.4",
|
|
30
|
-
"wp-cli/wp-cli": "^2.
|
|
28
|
+
"wp-cli/wp-cli": "^2.12"
|
|
31
29
|
},
|
|
32
30
|
"require-dev": {
|
|
33
31
|
"wp-cli/wp-cli-tests": "^5.0",
|
|
@@ -54,6 +52,9 @@
|
|
|
54
52
|
"allow-plugins": {
|
|
55
53
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
56
54
|
"phpstan/extension-installer": true
|
|
55
|
+
},
|
|
56
|
+
"platform": {
|
|
57
|
+
"php": "7.4"
|
|
57
58
|
}
|
|
58
59
|
}
|
|
59
60
|
}
|
|
@@ -4,42 +4,110 @@
|
|
|
4
4
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
5
5
|
"This file is @generated automatically"
|
|
6
6
|
],
|
|
7
|
-
"content-hash": "
|
|
7
|
+
"content-hash": "c56c04befe8c04d9e4134b330ff62011",
|
|
8
8
|
"packages": [
|
|
9
9
|
{
|
|
10
|
-
"name": "
|
|
11
|
-
"version": "
|
|
10
|
+
"name": "symfony/finder",
|
|
11
|
+
"version": "v8.0.8",
|
|
12
12
|
"source": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/
|
|
15
|
-
"reference": "
|
|
14
|
+
"url": "https://github.com/symfony/finder.git",
|
|
15
|
+
"reference": "8da41214757b87d97f181e3d14a4179286151007"
|
|
16
16
|
},
|
|
17
17
|
"dist": {
|
|
18
18
|
"type": "zip",
|
|
19
|
-
"url": "https://api.github.com/repos/
|
|
20
|
-
"reference": "
|
|
19
|
+
"url": "https://api.github.com/repos/symfony/finder/zipball/8da41214757b87d97f181e3d14a4179286151007",
|
|
20
|
+
"reference": "8da41214757b87d97f181e3d14a4179286151007",
|
|
21
21
|
"shasum": ""
|
|
22
22
|
},
|
|
23
23
|
"require": {
|
|
24
|
-
"php": ">=
|
|
24
|
+
"php": ">=8.4"
|
|
25
25
|
},
|
|
26
26
|
"require-dev": {
|
|
27
|
-
"
|
|
28
|
-
"yoast/phpunit-polyfills": "^2.0"
|
|
27
|
+
"symfony/filesystem": "^7.4|^8.0"
|
|
29
28
|
},
|
|
30
29
|
"type": "library",
|
|
31
30
|
"autoload": {
|
|
32
31
|
"psr-4": {
|
|
33
|
-
"
|
|
32
|
+
"Symfony\\Component\\Finder\\": ""
|
|
34
33
|
},
|
|
35
|
-
"classmap": [
|
|
36
|
-
"
|
|
34
|
+
"exclude-from-classmap": [
|
|
35
|
+
"/Tests/"
|
|
37
36
|
]
|
|
38
37
|
},
|
|
39
38
|
"notification-url": "https://packagist.org/downloads/",
|
|
40
39
|
"license": [
|
|
41
40
|
"MIT"
|
|
42
41
|
],
|
|
42
|
+
"authors": [
|
|
43
|
+
{
|
|
44
|
+
"name": "Fabien Potencier",
|
|
45
|
+
"email": "fabien@symfony.com"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Symfony Community",
|
|
49
|
+
"homepage": "https://symfony.com/contributors"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"description": "Finds files and directories via an intuitive fluent interface",
|
|
53
|
+
"homepage": "https://symfony.com",
|
|
54
|
+
"support": {
|
|
55
|
+
"source": "https://github.com/symfony/finder/tree/v8.0.8"
|
|
56
|
+
},
|
|
57
|
+
"funding": [
|
|
58
|
+
{
|
|
59
|
+
"url": "https://symfony.com/sponsor",
|
|
60
|
+
"type": "custom"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"url": "https://github.com/fabpot",
|
|
64
|
+
"type": "github"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"url": "https://github.com/nicolas-grekas",
|
|
68
|
+
"type": "github"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
72
|
+
"type": "tidelift"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"time": "2026-03-30T15:14:47+00:00"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "wp-cli/mustache",
|
|
79
|
+
"version": "v2.14.99",
|
|
80
|
+
"source": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "https://github.com/wp-cli/mustache.php.git",
|
|
83
|
+
"reference": "ca23b97ac35fbe01c160549eb634396183d04a59"
|
|
84
|
+
},
|
|
85
|
+
"dist": {
|
|
86
|
+
"type": "zip",
|
|
87
|
+
"url": "https://api.github.com/repos/wp-cli/mustache.php/zipball/ca23b97ac35fbe01c160549eb634396183d04a59",
|
|
88
|
+
"reference": "ca23b97ac35fbe01c160549eb634396183d04a59",
|
|
89
|
+
"shasum": ""
|
|
90
|
+
},
|
|
91
|
+
"require": {
|
|
92
|
+
"php": ">=5.6"
|
|
93
|
+
},
|
|
94
|
+
"replace": {
|
|
95
|
+
"mustache/mustache": "^2.14.2"
|
|
96
|
+
},
|
|
97
|
+
"require-dev": {
|
|
98
|
+
"friendsofphp/php-cs-fixer": "~2.19.3",
|
|
99
|
+
"yoast/phpunit-polyfills": "^2.0"
|
|
100
|
+
},
|
|
101
|
+
"type": "library",
|
|
102
|
+
"autoload": {
|
|
103
|
+
"psr-0": {
|
|
104
|
+
"Mustache": "src/"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"notification-url": "https://packagist.org/downloads/",
|
|
108
|
+
"license": [
|
|
109
|
+
"MIT"
|
|
110
|
+
],
|
|
43
111
|
"authors": [
|
|
44
112
|
{
|
|
45
113
|
"name": "Justin Hileman",
|
|
@@ -54,10 +122,9 @@
|
|
|
54
122
|
"templating"
|
|
55
123
|
],
|
|
56
124
|
"support": {
|
|
57
|
-
"
|
|
58
|
-
"source": "https://github.com/bobthecow/mustache.php/tree/v3.0.0"
|
|
125
|
+
"source": "https://github.com/wp-cli/mustache.php/tree/v2.14.99"
|
|
59
126
|
},
|
|
60
|
-
"time": "2025-
|
|
127
|
+
"time": "2025-05-06T16:15:37+00:00"
|
|
61
128
|
},
|
|
62
129
|
{
|
|
63
130
|
"name": "wp-cli/mustangostang-spyc",
|
|
@@ -175,60 +242,45 @@
|
|
|
175
242
|
},
|
|
176
243
|
{
|
|
177
244
|
"name": "wp-cli/wp-cli",
|
|
178
|
-
"version": "
|
|
245
|
+
"version": "v2.12.0",
|
|
179
246
|
"source": {
|
|
180
247
|
"type": "git",
|
|
181
248
|
"url": "https://github.com/wp-cli/wp-cli.git",
|
|
182
|
-
"reference": "
|
|
249
|
+
"reference": "03d30d4138d12b4bffd8b507b82e56e129e0523f"
|
|
183
250
|
},
|
|
184
251
|
"dist": {
|
|
185
252
|
"type": "zip",
|
|
186
|
-
"url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/
|
|
187
|
-
"reference": "
|
|
253
|
+
"url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/03d30d4138d12b4bffd8b507b82e56e129e0523f",
|
|
254
|
+
"reference": "03d30d4138d12b4bffd8b507b82e56e129e0523f",
|
|
188
255
|
"shasum": ""
|
|
189
256
|
},
|
|
190
257
|
"require": {
|
|
191
|
-
"
|
|
192
|
-
"php": "
|
|
258
|
+
"ext-curl": "*",
|
|
259
|
+
"php": "^5.6 || ^7.0 || ^8.0",
|
|
260
|
+
"symfony/finder": ">2.7",
|
|
261
|
+
"wp-cli/mustache": "^2.14.99",
|
|
193
262
|
"wp-cli/mustangostang-spyc": "^0.6.3",
|
|
194
|
-
"wp-cli/php-cli-tools": "~0.12.
|
|
263
|
+
"wp-cli/php-cli-tools": "~0.12.4"
|
|
195
264
|
},
|
|
196
265
|
"require-dev": {
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"wp-cli/
|
|
200
|
-
"wp-cli/
|
|
201
|
-
"wp-cli/
|
|
202
|
-
"wp-cli/package-command": "^2",
|
|
203
|
-
"wp-cli/wp-cli-tests": "^5"
|
|
266
|
+
"wp-cli/db-command": "^1.3 || ^2",
|
|
267
|
+
"wp-cli/entity-command": "^1.2 || ^2",
|
|
268
|
+
"wp-cli/extension-command": "^1.1 || ^2",
|
|
269
|
+
"wp-cli/package-command": "^1 || ^2",
|
|
270
|
+
"wp-cli/wp-cli-tests": "^4.3.10"
|
|
204
271
|
},
|
|
205
272
|
"suggest": {
|
|
206
|
-
"ext-curl": "For better performance when making HTTP requests",
|
|
207
273
|
"ext-readline": "Include for a better --prompt implementation",
|
|
208
274
|
"ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates"
|
|
209
275
|
},
|
|
210
|
-
"default-branch": true,
|
|
211
276
|
"bin": [
|
|
212
277
|
"bin/wp",
|
|
213
278
|
"bin/wp.bat"
|
|
214
279
|
],
|
|
215
280
|
"type": "library",
|
|
216
281
|
"extra": {
|
|
217
|
-
"commands": [
|
|
218
|
-
"cli",
|
|
219
|
-
"cli alias",
|
|
220
|
-
"cli cache",
|
|
221
|
-
"cli check-update",
|
|
222
|
-
"cli cmd-dump",
|
|
223
|
-
"cli completions",
|
|
224
|
-
"cli has-command",
|
|
225
|
-
"cli info",
|
|
226
|
-
"cli param-dump",
|
|
227
|
-
"cli update",
|
|
228
|
-
"cli version"
|
|
229
|
-
],
|
|
230
282
|
"branch-alias": {
|
|
231
|
-
"dev-main": "2.
|
|
283
|
+
"dev-main": "2.12.x-dev"
|
|
232
284
|
}
|
|
233
285
|
},
|
|
234
286
|
"autoload": {
|
|
@@ -255,7 +307,7 @@
|
|
|
255
307
|
"issues": "https://github.com/wp-cli/wp-cli/issues",
|
|
256
308
|
"source": "https://github.com/wp-cli/wp-cli"
|
|
257
309
|
},
|
|
258
|
-
"time": "
|
|
310
|
+
"time": "2025-05-07T01:16:12+00:00"
|
|
259
311
|
}
|
|
260
312
|
],
|
|
261
313
|
"packages-dev": [
|
|
@@ -5042,20 +5094,20 @@
|
|
|
5042
5094
|
},
|
|
5043
5095
|
{
|
|
5044
5096
|
"name": "wp-cli/config-command",
|
|
5045
|
-
"version": "v2.
|
|
5097
|
+
"version": "v2.4.0",
|
|
5046
5098
|
"source": {
|
|
5047
5099
|
"type": "git",
|
|
5048
5100
|
"url": "https://github.com/wp-cli/config-command.git",
|
|
5049
|
-
"reference": "
|
|
5101
|
+
"reference": "a17b0459c3564903ee2b7cd05df2ee372a13ae82"
|
|
5050
5102
|
},
|
|
5051
5103
|
"dist": {
|
|
5052
5104
|
"type": "zip",
|
|
5053
|
-
"url": "https://api.github.com/repos/wp-cli/config-command/zipball/
|
|
5054
|
-
"reference": "
|
|
5105
|
+
"url": "https://api.github.com/repos/wp-cli/config-command/zipball/a17b0459c3564903ee2b7cd05df2ee372a13ae82",
|
|
5106
|
+
"reference": "a17b0459c3564903ee2b7cd05df2ee372a13ae82",
|
|
5055
5107
|
"shasum": ""
|
|
5056
5108
|
},
|
|
5057
5109
|
"require": {
|
|
5058
|
-
"wp-cli/wp-cli": "^2.
|
|
5110
|
+
"wp-cli/wp-cli": "^2.12",
|
|
5059
5111
|
"wp-cli/wp-config-transformer": "^1.4.0"
|
|
5060
5112
|
},
|
|
5061
5113
|
"require-dev": {
|
|
@@ -5067,7 +5119,6 @@
|
|
|
5067
5119
|
"bundled": true,
|
|
5068
5120
|
"commands": [
|
|
5069
5121
|
"config",
|
|
5070
|
-
"config add",
|
|
5071
5122
|
"config edit",
|
|
5072
5123
|
"config delete",
|
|
5073
5124
|
"config create",
|
|
@@ -5077,8 +5128,7 @@
|
|
|
5077
5128
|
"config list",
|
|
5078
5129
|
"config path",
|
|
5079
5130
|
"config set",
|
|
5080
|
-
"config shuffle-salts"
|
|
5081
|
-
"config update"
|
|
5131
|
+
"config shuffle-salts"
|
|
5082
5132
|
],
|
|
5083
5133
|
"branch-alias": {
|
|
5084
5134
|
"dev-main": "2.x-dev"
|
|
@@ -5112,27 +5162,27 @@
|
|
|
5112
5162
|
"homepage": "https://github.com/wp-cli/config-command",
|
|
5113
5163
|
"support": {
|
|
5114
5164
|
"issues": "https://github.com/wp-cli/config-command/issues",
|
|
5115
|
-
"source": "https://github.com/wp-cli/config-command/tree/v2.
|
|
5165
|
+
"source": "https://github.com/wp-cli/config-command/tree/v2.4.0"
|
|
5116
5166
|
},
|
|
5117
|
-
"time": "
|
|
5167
|
+
"time": "2025-11-11T13:30:41+00:00"
|
|
5118
5168
|
},
|
|
5119
5169
|
{
|
|
5120
5170
|
"name": "wp-cli/core-command",
|
|
5121
|
-
"version": "v2.1.
|
|
5171
|
+
"version": "v2.1.23",
|
|
5122
5172
|
"source": {
|
|
5123
5173
|
"type": "git",
|
|
5124
5174
|
"url": "https://github.com/wp-cli/core-command.git",
|
|
5125
|
-
"reference": "
|
|
5175
|
+
"reference": "89449979e86bd320d7a18587bb91ad3b531ba4c9"
|
|
5126
5176
|
},
|
|
5127
5177
|
"dist": {
|
|
5128
5178
|
"type": "zip",
|
|
5129
|
-
"url": "https://api.github.com/repos/wp-cli/core-command/zipball/
|
|
5130
|
-
"reference": "
|
|
5179
|
+
"url": "https://api.github.com/repos/wp-cli/core-command/zipball/89449979e86bd320d7a18587bb91ad3b531ba4c9",
|
|
5180
|
+
"reference": "89449979e86bd320d7a18587bb91ad3b531ba4c9",
|
|
5131
5181
|
"shasum": ""
|
|
5132
5182
|
},
|
|
5133
5183
|
"require": {
|
|
5134
5184
|
"composer/semver": "^1.4 || ^2 || ^3",
|
|
5135
|
-
"wp-cli/wp-cli": "^2.
|
|
5185
|
+
"wp-cli/wp-cli": "^2.12"
|
|
5136
5186
|
},
|
|
5137
5187
|
"require-dev": {
|
|
5138
5188
|
"wp-cli/checksum-command": "^1 || ^2",
|
|
@@ -5147,7 +5197,6 @@
|
|
|
5147
5197
|
"commands": [
|
|
5148
5198
|
"core",
|
|
5149
5199
|
"core check-update",
|
|
5150
|
-
"core check-update-db",
|
|
5151
5200
|
"core download",
|
|
5152
5201
|
"core install",
|
|
5153
5202
|
"core is-installed",
|
|
@@ -5184,26 +5233,26 @@
|
|
|
5184
5233
|
"homepage": "https://github.com/wp-cli/core-command",
|
|
5185
5234
|
"support": {
|
|
5186
5235
|
"issues": "https://github.com/wp-cli/core-command/issues",
|
|
5187
|
-
"source": "https://github.com/wp-cli/core-command/tree/v2.1.
|
|
5236
|
+
"source": "https://github.com/wp-cli/core-command/tree/v2.1.23"
|
|
5188
5237
|
},
|
|
5189
|
-
"time": "2026-
|
|
5238
|
+
"time": "2026-01-10T09:57:36+00:00"
|
|
5190
5239
|
},
|
|
5191
5240
|
{
|
|
5192
5241
|
"name": "wp-cli/eval-command",
|
|
5193
|
-
"version": "v2.2.
|
|
5242
|
+
"version": "v2.2.9",
|
|
5194
5243
|
"source": {
|
|
5195
5244
|
"type": "git",
|
|
5196
5245
|
"url": "https://github.com/wp-cli/eval-command.git",
|
|
5197
|
-
"reference": "
|
|
5246
|
+
"reference": "827c7208c74ebd6ab81c6051f515381d4f276e32"
|
|
5198
5247
|
},
|
|
5199
5248
|
"dist": {
|
|
5200
5249
|
"type": "zip",
|
|
5201
|
-
"url": "https://api.github.com/repos/wp-cli/eval-command/zipball/
|
|
5202
|
-
"reference": "
|
|
5250
|
+
"url": "https://api.github.com/repos/wp-cli/eval-command/zipball/827c7208c74ebd6ab81c6051f515381d4f276e32",
|
|
5251
|
+
"reference": "827c7208c74ebd6ab81c6051f515381d4f276e32",
|
|
5203
5252
|
"shasum": ""
|
|
5204
5253
|
},
|
|
5205
5254
|
"require": {
|
|
5206
|
-
"wp-cli/wp-cli": "^2.
|
|
5255
|
+
"wp-cli/wp-cli": "^2.12"
|
|
5207
5256
|
},
|
|
5208
5257
|
"require-dev": {
|
|
5209
5258
|
"wp-cli/wp-cli-tests": "^5"
|
|
@@ -5242,22 +5291,22 @@
|
|
|
5242
5291
|
"homepage": "https://github.com/wp-cli/eval-command",
|
|
5243
5292
|
"support": {
|
|
5244
5293
|
"issues": "https://github.com/wp-cli/eval-command/issues",
|
|
5245
|
-
"source": "https://github.com/wp-cli/eval-command/tree/v2.2.
|
|
5294
|
+
"source": "https://github.com/wp-cli/eval-command/tree/v2.2.9"
|
|
5246
5295
|
},
|
|
5247
|
-
"time": "2026-03-
|
|
5296
|
+
"time": "2026-03-18T09:03:46+00:00"
|
|
5248
5297
|
},
|
|
5249
5298
|
{
|
|
5250
5299
|
"name": "wp-cli/wp-cli-tests",
|
|
5251
|
-
"version": "v5.
|
|
5300
|
+
"version": "v5.0.11",
|
|
5252
5301
|
"source": {
|
|
5253
5302
|
"type": "git",
|
|
5254
5303
|
"url": "https://github.com/wp-cli/wp-cli-tests.git",
|
|
5255
|
-
"reference": "
|
|
5304
|
+
"reference": "79ab34586cea37b5117197967a91ffb6f714cf22"
|
|
5256
5305
|
},
|
|
5257
5306
|
"dist": {
|
|
5258
5307
|
"type": "zip",
|
|
5259
|
-
"url": "https://api.github.com/repos/wp-cli/wp-cli-tests/zipball/
|
|
5260
|
-
"reference": "
|
|
5308
|
+
"url": "https://api.github.com/repos/wp-cli/wp-cli-tests/zipball/79ab34586cea37b5117197967a91ffb6f714cf22",
|
|
5309
|
+
"reference": "79ab34586cea37b5117197967a91ffb6f714cf22",
|
|
5261
5310
|
"shasum": ""
|
|
5262
5311
|
},
|
|
5263
5312
|
"require": {
|
|
@@ -5278,7 +5327,7 @@
|
|
|
5278
5327
|
"wp-cli/config-command": "^1 || ^2",
|
|
5279
5328
|
"wp-cli/core-command": "^1 || ^2",
|
|
5280
5329
|
"wp-cli/eval-command": "^1 || ^2",
|
|
5281
|
-
"wp-cli/wp-cli": "^2.
|
|
5330
|
+
"wp-cli/wp-cli": "^2.12",
|
|
5282
5331
|
"wp-coding-standards/wpcs": "dev-develop",
|
|
5283
5332
|
"yoast/phpunit-polyfills": "^1.0 || ^2.0 || ^3.0 || ^4.0"
|
|
5284
5333
|
},
|
|
@@ -5337,7 +5386,7 @@
|
|
|
5337
5386
|
"issues": "https://github.com/wp-cli/wp-cli-tests/issues",
|
|
5338
5387
|
"source": "https://github.com/wp-cli/wp-cli-tests"
|
|
5339
5388
|
},
|
|
5340
|
-
"time": "2026-03-
|
|
5389
|
+
"time": "2026-03-16T14:05:36+00:00"
|
|
5341
5390
|
},
|
|
5342
5391
|
{
|
|
5343
5392
|
"name": "wp-cli/wp-config-transformer",
|
|
@@ -5520,16 +5569,19 @@
|
|
|
5520
5569
|
}
|
|
5521
5570
|
],
|
|
5522
5571
|
"aliases": [],
|
|
5523
|
-
"minimum-stability": "
|
|
5572
|
+
"minimum-stability": "stable",
|
|
5524
5573
|
"stability-flags": {
|
|
5525
5574
|
"phpcompatibility/php-compatibility": 15,
|
|
5526
5575
|
"wp-coding-standards/wpcs": 20
|
|
5527
5576
|
},
|
|
5528
|
-
"prefer-stable":
|
|
5577
|
+
"prefer-stable": false,
|
|
5529
5578
|
"prefer-lowest": false,
|
|
5530
5579
|
"platform": {
|
|
5531
5580
|
"php": ">=7.4"
|
|
5532
5581
|
},
|
|
5533
5582
|
"platform-dev": {},
|
|
5583
|
+
"platform-overrides": {
|
|
5584
|
+
"php": "7.4"
|
|
5585
|
+
},
|
|
5534
5586
|
"plugin-api-version": "2.9.0"
|
|
5535
5587
|
}
|