wp-studio 1.7.8-beta2 → 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-BRGCap7g.mjs → _events-C60cNJ1W.mjs} +1 -1
- package/dist/cli/{index-9Oz-0bqF.mjs → index-D9syEMMz.mjs} +4 -4
- package/dist/cli/{index-CT4S2538.mjs → index-Ru6CUP6w.mjs} +24 -12
- package/dist/cli/{login-D4E3GoXe.mjs → login-C3QlGVbr.mjs} +1 -1
- package/dist/cli/{logout-DE-RoshK.mjs → logout-B63eZwJZ.mjs} +1 -1
- package/dist/cli/main.mjs +2 -1
- package/dist/cli/{resume-DLoXmzNG.mjs → resume-DQT_MK6A.mjs} +1 -1
- package/dist/cli/{set-B0L-QiXT.mjs → set-C805heQS.mjs} +1 -1
- package/dist/cli/{set-B8YYUENH.mjs → set-CjTbueyB.mjs} +1 -1
- package/dist/cli/{status-DEOAA0yx.mjs → status-SnKm1rRP.mjs} +1 -1
- package/dist/cli/{wp-CobSX6C6.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
|
@@ -3,23 +3,18 @@
|
|
|
3
3
|
/*
|
|
4
4
|
* This file is part of Mustache.php.
|
|
5
5
|
*
|
|
6
|
-
* (c) 2010-
|
|
6
|
+
* (c) 2010-2017 Justin Hileman
|
|
7
7
|
*
|
|
8
8
|
* For the full copyright and license information, please view the LICENSE
|
|
9
9
|
* file that was distributed with this source code.
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
-
namespace Mustache;
|
|
13
|
-
|
|
14
|
-
use Mustache\Exception\InvalidArgumentException;
|
|
15
|
-
use Mustache\Exception\SyntaxException;
|
|
16
|
-
|
|
17
12
|
/**
|
|
18
13
|
* Mustache Tokenizer class.
|
|
19
14
|
*
|
|
20
15
|
* This class is responsible for turning raw template source into a set of Mustache tokens.
|
|
21
16
|
*/
|
|
22
|
-
class
|
|
17
|
+
class Mustache_Tokenizer
|
|
23
18
|
{
|
|
24
19
|
// Finite state machine states
|
|
25
20
|
const IN_TEXT = 0;
|
|
@@ -43,7 +38,7 @@ class Tokenizer
|
|
|
43
38
|
const T_BLOCK_ARG = '$arg';
|
|
44
39
|
|
|
45
40
|
// Valid token types
|
|
46
|
-
private static $tagTypes =
|
|
41
|
+
private static $tagTypes = array(
|
|
47
42
|
self::T_SECTION => true,
|
|
48
43
|
self::T_INVERTED => true,
|
|
49
44
|
self::T_END_SECTION => true,
|
|
@@ -56,9 +51,9 @@ class Tokenizer
|
|
|
56
51
|
self::T_UNESCAPED_2 => true,
|
|
57
52
|
self::T_PRAGMA => true,
|
|
58
53
|
self::T_BLOCK_VAR => true,
|
|
59
|
-
|
|
54
|
+
);
|
|
60
55
|
|
|
61
|
-
private static $tagNames =
|
|
56
|
+
private static $tagNames = array(
|
|
62
57
|
self::T_SECTION => 'section',
|
|
63
58
|
self::T_INVERTED => 'inverted section',
|
|
64
59
|
self::T_END_SECTION => 'section end',
|
|
@@ -72,7 +67,7 @@ class Tokenizer
|
|
|
72
67
|
self::T_PRAGMA => 'pragma',
|
|
73
68
|
self::T_BLOCK_VAR => 'block variable',
|
|
74
69
|
self::T_BLOCK_ARG => 'block variable',
|
|
75
|
-
|
|
70
|
+
);
|
|
76
71
|
|
|
77
72
|
// Token properties
|
|
78
73
|
const TYPE = 'type';
|
|
@@ -106,8 +101,8 @@ class Tokenizer
|
|
|
106
101
|
/**
|
|
107
102
|
* Scan and tokenize template source.
|
|
108
103
|
*
|
|
109
|
-
* @throws
|
|
110
|
-
* @throws
|
|
104
|
+
* @throws Mustache_Exception_SyntaxException when mismatched section tags are encountered
|
|
105
|
+
* @throws Mustache_Exception_InvalidArgumentException when $delimiters string is invalid
|
|
111
106
|
*
|
|
112
107
|
* @param string $text Mustache template source to tokenize
|
|
113
108
|
* @param string $delimiters Optionally, pass initial opening and closing delimiters (default: empty string)
|
|
@@ -134,7 +129,7 @@ class Tokenizer
|
|
|
134
129
|
|
|
135
130
|
$this->reset();
|
|
136
131
|
|
|
137
|
-
if (is_string($delimiters) &&
|
|
132
|
+
if (is_string($delimiters) && $delimiters = trim($delimiters)) {
|
|
138
133
|
$this->setDelimiters($delimiters);
|
|
139
134
|
}
|
|
140
135
|
|
|
@@ -187,14 +182,14 @@ class Tokenizer
|
|
|
187
182
|
$char = $text[$i];
|
|
188
183
|
// Test whether it's time to change tags.
|
|
189
184
|
if ($char === $this->ctagChar && substr($text, $i, $this->ctagLen) === $this->ctag) {
|
|
190
|
-
$token =
|
|
185
|
+
$token = array(
|
|
191
186
|
self::TYPE => $this->tagType,
|
|
192
187
|
self::NAME => trim($this->buffer),
|
|
193
188
|
self::OTAG => $this->otag,
|
|
194
189
|
self::CTAG => $this->ctag,
|
|
195
190
|
self::LINE => $this->line,
|
|
196
191
|
self::INDEX => ($this->tagType === self::T_END_SECTION) ? $this->seenTag - $this->otagLen : $i + $this->ctagLen,
|
|
197
|
-
|
|
192
|
+
);
|
|
198
193
|
|
|
199
194
|
if ($this->tagType === self::T_UNESCAPED) {
|
|
200
195
|
// Clean up `{{{ tripleStache }}}` style tokens.
|
|
@@ -208,7 +203,7 @@ class Tokenizer
|
|
|
208
203
|
$token[self::LINE]
|
|
209
204
|
);
|
|
210
205
|
|
|
211
|
-
throw new
|
|
206
|
+
throw new Mustache_Exception_SyntaxException($msg, $token);
|
|
212
207
|
}
|
|
213
208
|
} else {
|
|
214
209
|
$lastName = $token[self::NAME];
|
|
@@ -221,7 +216,7 @@ class Tokenizer
|
|
|
221
216
|
$token[self::LINE]
|
|
222
217
|
);
|
|
223
218
|
|
|
224
|
-
throw new
|
|
219
|
+
throw new Mustache_Exception_SyntaxException($msg, $token);
|
|
225
220
|
}
|
|
226
221
|
}
|
|
227
222
|
}
|
|
@@ -261,7 +256,7 @@ class Tokenizer
|
|
|
261
256
|
$this->state = self::IN_TEXT;
|
|
262
257
|
$this->tagType = null;
|
|
263
258
|
$this->buffer = '';
|
|
264
|
-
$this->tokens =
|
|
259
|
+
$this->tokens = array();
|
|
265
260
|
$this->seenTag = false;
|
|
266
261
|
$this->line = 0;
|
|
267
262
|
|
|
@@ -280,11 +275,11 @@ class Tokenizer
|
|
|
280
275
|
private function flushBuffer()
|
|
281
276
|
{
|
|
282
277
|
if (strlen($this->buffer) > 0) {
|
|
283
|
-
$this->tokens[] =
|
|
278
|
+
$this->tokens[] = array(
|
|
284
279
|
self::TYPE => self::T_TEXT,
|
|
285
280
|
self::LINE => $this->line,
|
|
286
281
|
self::VALUE => $this->buffer,
|
|
287
|
-
|
|
282
|
+
);
|
|
288
283
|
$this->buffer = '';
|
|
289
284
|
}
|
|
290
285
|
}
|
|
@@ -292,7 +287,7 @@ class Tokenizer
|
|
|
292
287
|
/**
|
|
293
288
|
* Change the current Mustache delimiters. Set new `otag` and `ctag` values.
|
|
294
289
|
*
|
|
295
|
-
* @throws
|
|
290
|
+
* @throws Mustache_Exception_SyntaxException when delimiter string is invalid
|
|
296
291
|
*
|
|
297
292
|
* @param string $text Mustache template source
|
|
298
293
|
* @param int $index Current tokenizer index
|
|
@@ -309,15 +304,15 @@ class Tokenizer
|
|
|
309
304
|
$this->throwUnclosedTagException();
|
|
310
305
|
}
|
|
311
306
|
|
|
312
|
-
$token =
|
|
307
|
+
$token = array(
|
|
313
308
|
self::TYPE => self::T_DELIM_CHANGE,
|
|
314
309
|
self::LINE => $this->line,
|
|
315
|
-
|
|
310
|
+
);
|
|
316
311
|
|
|
317
312
|
try {
|
|
318
313
|
$this->setDelimiters(trim(substr($text, $startIndex, $closeIndex - $startIndex)));
|
|
319
|
-
} catch (
|
|
320
|
-
throw new
|
|
314
|
+
} catch (Mustache_Exception_InvalidArgumentException $e) {
|
|
315
|
+
throw new Mustache_Exception_SyntaxException($e->getMessage(), $token);
|
|
321
316
|
}
|
|
322
317
|
|
|
323
318
|
$this->tokens[] = $token;
|
|
@@ -328,14 +323,14 @@ class Tokenizer
|
|
|
328
323
|
/**
|
|
329
324
|
* Set the current Mustache `otag` and `ctag` delimiters.
|
|
330
325
|
*
|
|
331
|
-
* @throws
|
|
326
|
+
* @throws Mustache_Exception_InvalidArgumentException when delimiter string is invalid
|
|
332
327
|
*
|
|
333
328
|
* @param string $delimiters
|
|
334
329
|
*/
|
|
335
330
|
private function setDelimiters($delimiters)
|
|
336
331
|
{
|
|
337
332
|
if (!preg_match('/^\s*(\S+)\s+(\S+)\s*$/', $delimiters, $matches)) {
|
|
338
|
-
throw new
|
|
333
|
+
throw new Mustache_Exception_InvalidArgumentException(sprintf('Invalid delimiters: %s', $delimiters));
|
|
339
334
|
}
|
|
340
335
|
|
|
341
336
|
list($_, $otag, $ctag) = $matches;
|
|
@@ -370,15 +365,16 @@ class Tokenizer
|
|
|
370
365
|
$pragma = trim(substr($text, $index + 2, $end - $index - 2));
|
|
371
366
|
|
|
372
367
|
// Pragmas are hoisted to the front of the template.
|
|
373
|
-
array_unshift($this->tokens,
|
|
368
|
+
array_unshift($this->tokens, array(
|
|
374
369
|
self::TYPE => self::T_PRAGMA,
|
|
375
370
|
self::NAME => $pragma,
|
|
376
371
|
self::LINE => 0,
|
|
377
|
-
|
|
372
|
+
));
|
|
378
373
|
|
|
379
374
|
return $end + $this->ctagLen - 1;
|
|
380
375
|
}
|
|
381
376
|
|
|
377
|
+
|
|
382
378
|
private function throwUnclosedTagException()
|
|
383
379
|
{
|
|
384
380
|
$name = trim($this->buffer);
|
|
@@ -388,14 +384,14 @@ class Tokenizer
|
|
|
388
384
|
$msg = sprintf('Unclosed tag on line %d', $this->line);
|
|
389
385
|
}
|
|
390
386
|
|
|
391
|
-
throw new
|
|
387
|
+
throw new Mustache_Exception_SyntaxException($msg, array(
|
|
392
388
|
self::TYPE => $this->tagType,
|
|
393
389
|
self::NAME => $name,
|
|
394
390
|
self::OTAG => $this->otag,
|
|
395
391
|
self::CTAG => $this->ctag,
|
|
396
392
|
self::LINE => $this->line,
|
|
397
393
|
self::INDEX => $this->seenTag - $this->otagLen,
|
|
398
|
-
|
|
394
|
+
));
|
|
399
395
|
}
|
|
400
396
|
|
|
401
397
|
/**
|
|
@@ -405,7 +401,7 @@ class Tokenizer
|
|
|
405
401
|
*
|
|
406
402
|
* @return string
|
|
407
403
|
*/
|
|
408
|
-
|
|
404
|
+
static function getTagName($tagType)
|
|
409
405
|
{
|
|
410
406
|
return isset(self::$tagNames[$tagType]) ? self::$tagNames[$tagType] : 'unknown';
|
|
411
407
|
}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
2ndkauboy <bernhard@kau-boys.de>
|
|
2
|
+
Akeda Bagus <admin@gedex.web.id>
|
|
3
|
+
Alex Mills <git@viper007bond.com>
|
|
4
|
+
Anant Shrivastava <anant@anantshri.info>
|
|
5
|
+
Andreas Heigl <andreas@heigl.org>
|
|
6
|
+
andreascreten <andreas@madewithlove.be>
|
|
7
|
+
Andrew Patton <andrew@acusti.ca>
|
|
8
|
+
andyexeter <palmer.andy@gmail.com>
|
|
9
|
+
BA <kau@connecticum.de>
|
|
10
|
+
bartaakos <akos@netpositive.hu>
|
|
11
|
+
bendoh <ben@thinkoomph.com>
|
|
12
|
+
Bernhard Kau <github@kau-boys.de>
|
|
13
|
+
Bobby Walters <bobbymwalters@gmail.com>
|
|
14
|
+
BoiteAWeb <juliobosk@gmail.com>
|
|
15
|
+
boonebgorges <boonebgorges@gmail.com>
|
|
16
|
+
Borek Bernard <borekb@gmail.com>
|
|
17
|
+
borekb <borekb@gmail.com>
|
|
18
|
+
Brad Parbs <brad@bradparbs.com>
|
|
19
|
+
Brandon Kraft <public@brandonkraft.com>
|
|
20
|
+
Brian MacKinney <brian@getpantheon.com>
|
|
21
|
+
builtbylane <lanegoldberg@gmail.com>
|
|
22
|
+
c10b10 <alex.ciobica@gmail.com>
|
|
23
|
+
c10b10 <alex.ciobica@gmail.com>
|
|
24
|
+
Chris Montgomery <chris@montchr.io>
|
|
25
|
+
clemens-tolboom <clemens@build2be.com>
|
|
26
|
+
conatus <alex@recordsonribs.com>
|
|
27
|
+
Corey Worrell <proskater55@gmail.com>
|
|
28
|
+
ctayloroomphinc <ctaylor@thinkoomph.com>
|
|
29
|
+
cyberhobo <dylan.k.kuhn@gmail.com>
|
|
30
|
+
daithi-coombes <webeire@gmail.com>
|
|
31
|
+
dangardner <dan@web.nearest.to>
|
|
32
|
+
Daniel Bachhuber <daniel.bachhuber@fusion.net>
|
|
33
|
+
danielbachhuber <d@danielbachhuber.com>
|
|
34
|
+
danielbachhuber <daniel@handbuilt.co>
|
|
35
|
+
danielbachhuber <danielbachhuber@gmail.com>
|
|
36
|
+
Dave Leach <dave@dmleach.com>
|
|
37
|
+
dd32 <contact-atlassian@dd32.id.au>
|
|
38
|
+
dlh01 <david@alleyinteractive.com>
|
|
39
|
+
drrobotnik <B@Brandons-Mac-Pro-4.local>
|
|
40
|
+
Duncan Brown <duncanjbrown@gmail.com>
|
|
41
|
+
dwightjack <marco.solazzi@gmail.com>
|
|
42
|
+
Eduardo Alencar <ealencar10@gmail.com>
|
|
43
|
+
eliorivero <eliorivero@gmail.com>
|
|
44
|
+
Enrico Sorcinelli <enrico.sorcinelli@italiaonline.it>
|
|
45
|
+
ericandrewlewis <eric.andrew.lewis@gmail.com>
|
|
46
|
+
ericmann <eric@eamann.com>
|
|
47
|
+
ernilambar <nilambar@outlook.com>
|
|
48
|
+
erwanlr <erwan.lr@gmail.com>
|
|
49
|
+
eugeneware <eugene@noblesamurai.com>
|
|
50
|
+
Evan Mattson <me@aaemnnost.tv>
|
|
51
|
+
Fabian Isele <uxdmm@student.kit.edu>
|
|
52
|
+
francescolaffi <francesco.laffi@gmail.com>
|
|
53
|
+
Frank Staude <frank@staude.net>
|
|
54
|
+
Frankie Jarrett <fjarrett@godaddy.com>
|
|
55
|
+
future500 <ramon@future500.nl>
|
|
56
|
+
Gary Jones <gamajo@gamajo.com>
|
|
57
|
+
Geo <geo.artemenko@gmail.com>
|
|
58
|
+
getsource <mike.schroder@dreamhost.com>
|
|
59
|
+
Gilbert Pellegrom <gilbert@pellegrom.me>
|
|
60
|
+
glebis <glebis@gmail.com>
|
|
61
|
+
goldenapples <goldenapplesdesign@gmail.com>
|
|
62
|
+
goldenapples <ntaintor@janrain.com>
|
|
63
|
+
Grant McInnes <grant.mcinnes@eyesopen.ca>
|
|
64
|
+
Greg Anderson <greg.1.anderson@greenknowe.org>
|
|
65
|
+
hideokamoto <kokkoku214@gmail.com>
|
|
66
|
+
Hidetaka Okamoto <kokkoku214@gmail.com>
|
|
67
|
+
hina <hina@hinaloe.net>
|
|
68
|
+
hinoue-work <wpuser@wp-cli-14.04>
|
|
69
|
+
Hiroshi Urabe <mail@torounit.com>
|
|
70
|
+
Ian Dunn <ian@iandunn.name>
|
|
71
|
+
itsananderson <will@itsananderson.com>
|
|
72
|
+
j3lamp <j3lamp@gmail.com>
|
|
73
|
+
jacobischwartz <jacob@schwambell.com>
|
|
74
|
+
Jakub Juszczak <netghost03@gmail.com>
|
|
75
|
+
Jan Voráček <jan@voracek.net>
|
|
76
|
+
Japh <japhie@gmail.com>
|
|
77
|
+
Jeff Gould <jrgould@gmail.com>
|
|
78
|
+
jeichorn <joshua.eichorn@pagely.com>
|
|
79
|
+
Jeremy Pry <jeremy.pry@gmail.com>
|
|
80
|
+
jghazally <jeff@bigfish.co.uk>
|
|
81
|
+
jghazally <jghazally@gmail.com>
|
|
82
|
+
Jim Reevior <jim@thinkoomph.com>
|
|
83
|
+
jmslbam <jmslbam@gmail.com>
|
|
84
|
+
John Blackbourn <john@johnblackbourn.com>
|
|
85
|
+
johnbillion <johnbillion@gmail.com>
|
|
86
|
+
johnpbloch <jbloch@John-Blochs-iMac.local>
|
|
87
|
+
johnpbloch <johnpbloch@gmail.com>
|
|
88
|
+
jonathanbardo <jonathanbardo@users.noreply.github.com>
|
|
89
|
+
Jorge A. Torres <j@jorgetorres.co>
|
|
90
|
+
Josh Eaton <josh@josheaton.org>
|
|
91
|
+
joshbetz <j@joshbetz.com>
|
|
92
|
+
joshlevinson <joshalevinson@gmail.com>
|
|
93
|
+
joshstoik1 <joshstoik@gmail.com>
|
|
94
|
+
Joshua Priddle <jpriddle@me.com>
|
|
95
|
+
JQ <JeyKeu@users.noreply.github.com>
|
|
96
|
+
jtsternberg <me@jtsternberg.com>
|
|
97
|
+
KDoole <dev@Kevins-iMac.local>
|
|
98
|
+
Keanan Koppenhaver <keanan@doejo.com>
|
|
99
|
+
Keith Grennan <keith@nearlyfree.org>
|
|
100
|
+
Kevin Doole <kdoole@farmmedia.com>
|
|
101
|
+
Kevinlearynet <info@kevinleary.net>
|
|
102
|
+
kidfiction <ejdanderson@gmail.com>
|
|
103
|
+
lackingpenguin <benjamin.j.brooks@gmail.com>
|
|
104
|
+
leewillis77 <leewillis77@gmail.com>
|
|
105
|
+
lkwdwrd <woodward.lucas@gmail.com>
|
|
106
|
+
Marc Addeo <marcaddeo@gmail.com>
|
|
107
|
+
Marco <mcastelluccio@mozilla.com>
|
|
108
|
+
marcoceppi <marco@ceppi.net>
|
|
109
|
+
Mark Jaquith <mark.github@txfx.net>
|
|
110
|
+
Mark Kimsal <metrofindings@gmail.com>
|
|
111
|
+
Mark McEver <mark@fastmail.net>
|
|
112
|
+
matiskay <matiskay@gmail.com>
|
|
113
|
+
mattes <matthias.kadenbach@gmail.com>
|
|
114
|
+
mattheu <matthew@matth.eu>
|
|
115
|
+
MattiaG <bots@mattiaghedin.it>
|
|
116
|
+
mbovel <matthieu@bovel.net>
|
|
117
|
+
mboynes <mboynes@alleyinteractive.com>
|
|
118
|
+
mgburns <mgburns@bu.edu>
|
|
119
|
+
mgburns <mike@grady-etc.com>
|
|
120
|
+
Mihail Minkov <Mihail.Minkov.BG@gmail.com>
|
|
121
|
+
Mike Pretzlaw <pretzlaw@gmail.com>
|
|
122
|
+
mikey dubs <mike@herebox.org>
|
|
123
|
+
milesj <mileswjohnson@gmail.com>
|
|
124
|
+
MiteshShah <Mitesh.Shah@rtCamp.com>
|
|
125
|
+
miya0001 <miya@wpist.me>
|
|
126
|
+
Morgan Estes <morgan.estes@gmail.com>
|
|
127
|
+
mpeshev <mario@peshev.net>
|
|
128
|
+
mwilliamson <michael.williamson@red-gate.com>
|
|
129
|
+
mwilliamson <mike@zwobble.org>
|
|
130
|
+
mwithheld <vhmark@gmail.com>
|
|
131
|
+
nacin <andrewnacin@gmail.com>
|
|
132
|
+
Nate Wright <natew@notthisway.com>
|
|
133
|
+
navitronic <adrian@navitronic.co.uk>
|
|
134
|
+
nb <nb@nikolay.bg>
|
|
135
|
+
Ned Zimmerman <ned@bight.ca>
|
|
136
|
+
nickdaugherty <ndaugherty987@gmail.com>
|
|
137
|
+
nikhilc@bsf.io <nikhilc@bsf.io>
|
|
138
|
+
nikolay <nikolay@users.noreply.github.com>
|
|
139
|
+
nikolay <nikolaynkolev@gmail.com>
|
|
140
|
+
Nilambar Sharma <ernilambar@users.noreply.github.com>
|
|
141
|
+
Nilambar Sharma <nilambar@outlook.com>
|
|
142
|
+
nschoenholtz <noah@alleyinteractive.com>
|
|
143
|
+
nullvariable <nullvariable@gmail.com>
|
|
144
|
+
nyordanov <me@nyordanov.com>
|
|
145
|
+
ocean90 <dominikschilling+git@gmail.com>
|
|
146
|
+
oknoway <nate@oknoway.com>
|
|
147
|
+
om4james <james@jamesc.id.au>
|
|
148
|
+
om4james <james@om4.com.au>
|
|
149
|
+
oneumyvakin <oneumyvakin@gmail.com>
|
|
150
|
+
Otto Kekäläinen <otto@seravo.fi>
|
|
151
|
+
ozh <ozh@ozh.org>
|
|
152
|
+
Patrick Karjala <pkarjala@gmail.com>
|
|
153
|
+
Pete Nelson <pete@petenelson.com>
|
|
154
|
+
pete@petenelson.com <petenelson@fortress.local>
|
|
155
|
+
Peter J. Herrel <peterherrel@gmail.com>
|
|
156
|
+
phh <phh@peytz.dk>
|
|
157
|
+
Pippin Williamson <pippin@pippinsplugins.com>
|
|
158
|
+
QWp6t <QWp6t+github@xpdnc.org>
|
|
159
|
+
Rachel Baker <rachel@rachelbaker.me>
|
|
160
|
+
Radu Dan <za_creature@yahoo.com>
|
|
161
|
+
Rahul Prajapati <rahul.prajapati@rtcamp.com>
|
|
162
|
+
Rarst <contact@rarst.net>
|
|
163
|
+
robertboloc <robertboloc@gmail.com>
|
|
164
|
+
Robin Schneider <ypid@riseup.net>
|
|
165
|
+
rodrigoprimo <rodrigo@hacklab.com.br>
|
|
166
|
+
rodrigoprimo <rodrigosprimo@gmail.com>
|
|
167
|
+
Roel Veldhuizen <roel@inesta.nl>
|
|
168
|
+
roelveldhuizen <roel@inesta.nl>
|
|
169
|
+
roelven <roel@soundcloud.com>
|
|
170
|
+
Ross Hattori <rhattori@saymedia.com>
|
|
171
|
+
Ryan Hoover <ryanshoover@gmail.com>
|
|
172
|
+
Ryan McCue <me@ryanmccue.info>
|
|
173
|
+
Ryan Williams <ryrowi@gmail.com>
|
|
174
|
+
ryanduff <ryan@fusionized.com>
|
|
175
|
+
santagada <santagada@gmail.com>
|
|
176
|
+
sboisvert <stephane.boisvert@automattic.com>
|
|
177
|
+
scribu <mail@scribu.net>
|
|
178
|
+
scribu <scribu@gmail.com>
|
|
179
|
+
sebastiaandegeus <sebastiaan@hoppinger.com>
|
|
180
|
+
Shinichi Nishikawa <shinichi.nishikawa@gmail.com>
|
|
181
|
+
sibprogrammer <ayuzhakov@parallels.com>
|
|
182
|
+
simonwheatley <simonw@codeforthepeople.com>
|
|
183
|
+
smhmic <smhmic@gmail.com>
|
|
184
|
+
soulou <leo@soulou.fr>
|
|
185
|
+
spacedmonkey <spacedmonkey2@gmail.com>
|
|
186
|
+
SpikesDivZero <wesley.spikes@gmail.com>
|
|
187
|
+
spuriousdata <spuriousdata@gmail.com>
|
|
188
|
+
Stephen Beemsterboer <balbuf@users.noreply.github.com>
|
|
189
|
+
Stephen Edgar <stephen@netweb.com.au>
|
|
190
|
+
Stephen Harris <contact@stephenharris.info>
|
|
191
|
+
Stephen Harris <Stephen.Harris@gov.scot>
|
|
192
|
+
Stephen Harris <Stephen.Harris@scotland.gsi.gov.uk>
|
|
193
|
+
Steve Grunwell <steve.grunwell@10up.com>
|
|
194
|
+
Steve Grunwell <steve@stevegrunwell.com>
|
|
195
|
+
Steve Grunwell <stevegrunwell@gmail.com>
|
|
196
|
+
Steve Persch <steve.persch@pantheon.io>
|
|
197
|
+
Steven K Word <stevenword@gmail.com>
|
|
198
|
+
stianlik <stianlik@gmail.com>
|
|
199
|
+
Stéphane HULARD <s.hulard@chstudio.fr>
|
|
200
|
+
svaj <chris@chrisbot.(none)>
|
|
201
|
+
Svetoslav Marinov (Slavi) <slavi@orbisius.com>
|
|
202
|
+
szepeviktor <viktor@szepe.net>
|
|
203
|
+
taupecat <tracy@taupecat.com>
|
|
204
|
+
tddewey <td@tddewey.com>
|
|
205
|
+
thisislawatts <luke@thisis.la>
|
|
206
|
+
tiagohillebrandt <tiagohillebrandt@ubuntu.com>
|
|
207
|
+
tlovett1 <admin@taylorlovett.com>
|
|
208
|
+
tolgap <tolga@hoppinger.com>
|
|
209
|
+
tollmanz <tollmanz@gmail.com>
|
|
210
|
+
tollmanz <zack@zackdev.com>
|
|
211
|
+
toszcze <toszcze@gmail.com>
|
|
212
|
+
tott <tott@automattic.com>
|
|
213
|
+
Travis Northcutt <travis@memberup.co>
|
|
214
|
+
trepmal <trepmal@gmail.com>
|
|
215
|
+
Tristan Penman <tristan@tristanpenman.com>
|
|
216
|
+
twisty <tim@brayshaw.com>
|
|
217
|
+
twratajczak <tomasz.ratajczak@espeo.pl>
|
|
218
|
+
Utkarsh Patel <iamutkarsh@live.com>
|
|
219
|
+
Veered <lucashansne@gmail.com>
|
|
220
|
+
veganista <liam@nanothree.net>
|
|
221
|
+
Ville Vuorenmaa <villevuor@gmail.com>
|
|
222
|
+
voldemortensen <voldemortensen@users.noreply.github.com>
|
|
223
|
+
Wendell Júnior <wrnx00@gmail.com>
|
|
224
|
+
Wes Moberly <wesm87@gmail.com>
|
|
225
|
+
Wes Moberly <wesm87@users.noreply.github.com>
|
|
226
|
+
westonruter <weston@x-team.com>
|
|
227
|
+
westonruter <westonruter@gmail.com>
|
|
228
|
+
William Turrell <william@wturrell.co.uk>
|
|
229
|
+
willmot <tom@humanmade.co.uk>
|
|
230
|
+
wojsmol <wojsmol@wp.pl>
|
|
231
|
+
wopr42 <john@zippykid.com>
|
|
232
|
+
yivi <ivan@ojiva.es>
|
|
233
|
+
yivi <ivan@yivoff.com>
|
|
234
|
+
ziz <justin@crowdfavorite.com>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
WP-CLI
|
|
2
2
|
======
|
|
3
3
|
|
|
4
|
-
[WP-CLI](https://wp-cli.org/) is the command-line interface for [WordPress](https://wordpress.org/). You can update plugins, configure multisite installations
|
|
4
|
+
[WP-CLI](https://wp-cli.org/) is the command-line interface for [WordPress](https://wordpress.org/). You can update plugins, configure multisite installations and much more, without using a web browser.
|
|
5
5
|
|
|
6
6
|
Ongoing maintenance is made possible by:
|
|
7
7
|
|
|
@@ -47,13 +47,13 @@ Already feel comfortable with the basics? Jump into the [complete list of comman
|
|
|
47
47
|
|
|
48
48
|
## Installing
|
|
49
49
|
|
|
50
|
-
Downloading the Phar file is
|
|
50
|
+
Downloading the Phar file is our recommended installation method for most users. Should you need, see also our documentation on [alternative installation methods](https://make.wordpress.org/cli/handbook/installing/) ([Composer](https://make.wordpress.org/cli/handbook/installing/#installing-via-composer), [Homebrew](https://make.wordpress.org/cli/handbook/installing/#installing-via-homebrew), [Docker](https://make.wordpress.org/cli/handbook/installing/#installing-via-docker)).
|
|
51
51
|
|
|
52
52
|
Before installing WP-CLI, please make sure your environment meets the minimum requirements:
|
|
53
53
|
|
|
54
54
|
- UNIX-like environment (OS X, Linux, FreeBSD, Cygwin); limited support in Windows environment
|
|
55
|
-
- PHP
|
|
56
|
-
- WordPress
|
|
55
|
+
- PHP 5.6 or later
|
|
56
|
+
- WordPress 3.7 or later. Versions older than the latest WordPress release may have degraded functionality
|
|
57
57
|
|
|
58
58
|
Once you've verified requirements, download the [wp-cli.phar](https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) file using `wget` or `curl`:
|
|
59
59
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.12.0
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/CHANGELOG.md
CHANGED
|
@@ -1,68 +1,6 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
2.0.17
|
|
5
|
-
------
|
|
6
|
-
|
|
7
|
-
### Overview of changes
|
|
8
|
-
- Update bundled certificates as of 2025-12-02. [#1000]
|
|
9
|
-
- General housekeeping.
|
|
10
|
-
|
|
11
|
-
[#1000]: https://github.com/WordPress/Requests/pull/1000
|
|
12
|
-
|
|
13
|
-
2.0.16
|
|
14
|
-
------
|
|
15
|
-
|
|
16
|
-
### Overview of changes
|
|
17
|
-
- Update bundled certificates as of 2025-11-04. [#954]
|
|
18
|
-
- Fixed: PHP 8.5 deprecation notices for `Reflection*::setAccessible()` [#940]
|
|
19
|
-
- Fixed: PHP 8.5 deprecation notices for `curl_close()` [#947] Props [@TobiasBg][gh-TobiasBg]
|
|
20
|
-
- Fixed: PHP 8.5 deprecation notices `Using null as an array offset` [#956]
|
|
21
|
-
- Fixed: Disallow `FilteredIterator` to accept objects (PHP 8.5 deprecation). [#968]
|
|
22
|
-
Note: This is technically a breaking change as this was documented behaviour. However, `FilteredIterator` is an internal class and the only detected use of this behavior was in a test.
|
|
23
|
-
- Fixed: tests for expired and revoked SSL certificates. [#967]
|
|
24
|
-
- Composer: remove `roave/security-advisories` (no longer needed with Composer 2.9+). [#961]
|
|
25
|
-
- README: corrected Python Requests library URL. [#944] Props [@pmbaldha][gh-pmbaldha]
|
|
26
|
-
- General housekeeping.
|
|
27
|
-
|
|
28
|
-
[#940]: https://github.com/WordPress/Requests/pull/940
|
|
29
|
-
[#944]: https://github.com/WordPress/Requests/pull/944
|
|
30
|
-
[#947]: https://github.com/WordPress/Requests/pull/947
|
|
31
|
-
[#954]: https://github.com/WordPress/Requests/pull/954
|
|
32
|
-
[#956]: https://github.com/WordPress/Requests/pull/956
|
|
33
|
-
[#961]: https://github.com/WordPress/Requests/pull/961
|
|
34
|
-
[#967]: https://github.com/WordPress/Requests/pull/967
|
|
35
|
-
[#968]: https://github.com/WordPress/Requests/pull/968
|
|
36
|
-
|
|
37
|
-
2.0.15
|
|
38
|
-
------
|
|
39
|
-
|
|
40
|
-
### Overview of changes
|
|
41
|
-
- Update bundled certificates as of 2024-12-31. [#919]
|
|
42
|
-
- General housekeeping.
|
|
43
|
-
|
|
44
|
-
[#919]: https://github.com/WordPress/Requests/pull/919
|
|
45
|
-
|
|
46
|
-
2.0.14
|
|
47
|
-
------
|
|
48
|
-
|
|
49
|
-
### Overview of changes
|
|
50
|
-
- Update bundled certificates as of 2024-11-26. [#910]
|
|
51
|
-
- Confirmed compatibility with PHP 8.4.
|
|
52
|
-
No new changes were needed, so Request 2.0.11 and higher can be considered compatible with PHP 8.4.
|
|
53
|
-
- Various other general housekeeping.
|
|
54
|
-
|
|
55
|
-
[#910]: https://github.com/WordPress/Requests/pull/910
|
|
56
|
-
|
|
57
|
-
2.0.13
|
|
58
|
-
------
|
|
59
|
-
|
|
60
|
-
### Overview of changes
|
|
61
|
-
- Update bundled certificates as of 2024-09-24. [#900]
|
|
62
|
-
- Various minor documentation improvements and other general housekeeping.
|
|
63
|
-
|
|
64
|
-
[#900]: https://github.com/WordPress/Requests/pull/900
|
|
65
|
-
|
|
66
4
|
2.0.12
|
|
67
5
|
------
|
|
68
6
|
|
|
@@ -1129,7 +1067,6 @@ Initial release!
|
|
|
1129
1067
|
[gh-ozh]: https://github.com/ozh
|
|
1130
1068
|
[gh-patmead]: https://github.com/patmead
|
|
1131
1069
|
[gh-peterwilsoncc]: https://github.com/peterwilsoncc
|
|
1132
|
-
[gh-pmbaldha]: https://github.com/pmbaldha
|
|
1133
1070
|
[gh-qibinghua]: https://github.com/qibinghua
|
|
1134
1071
|
[gh-remik]: https://github.com/remik
|
|
1135
1072
|
[gh-rmccue]: https://github.com/rmccue
|
|
@@ -1143,7 +1080,6 @@ Initial release!
|
|
|
1143
1080
|
[gh-szepeviktor]: https://github.com/szepeviktor
|
|
1144
1081
|
[gh-TimothyBJacobs]: https://github.com/TimothyBJacobs
|
|
1145
1082
|
[gh-tnorthcutt]: https://github.com/tnorthcutt
|
|
1146
|
-
[gh-TobiasBg]: https://github.com/TobiasBg
|
|
1147
1083
|
[gh-todeveni]: https://github.com/todeveni
|
|
1148
1084
|
[gh-tomsommer]: https://github.com/tomsommer
|
|
1149
1085
|
[gh-tonebender]: https://github.com/tonebender
|
|
@@ -1154,4 +1090,3 @@ Initial release!
|
|
|
1154
1090
|
[gh-xknown]: https://github.com/xknown
|
|
1155
1091
|
[gh-Zegnat]: https://github.com/Zegnat
|
|
1156
1092
|
[gh-ZsgsDesign]: https://github.com/ZsgsDesign
|
|
1157
|
-
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/bundle/rmccue/requests/README.md
CHANGED
|
@@ -5,11 +5,10 @@ Requests for PHP
|
|
|
5
5
|
[](https://github.com/WordPress/Requests/actions/workflows/lint.yml)
|
|
6
6
|
[](https://github.com/WordPress/Requests/actions/workflows/test.yml)
|
|
7
7
|
[](https://codecov.io/gh/WordPress/Requests?branch=stable)
|
|
8
|
-
[](https://github.com/WordPress/Requests/blob/stable/LICENSE)
|
|
9
8
|
|
|
10
9
|
Requests is a HTTP library written in PHP, for human beings. It is roughly
|
|
11
10
|
based on the API from the excellent [Requests Python
|
|
12
|
-
library](
|
|
11
|
+
library](http://python-requests.org/). Requests is [ISC
|
|
13
12
|
Licensed](https://github.com/WordPress/Requests/blob/stable/LICENSE) (similar to
|
|
14
13
|
the new BSD license) and has no dependencies, except for PHP 5.6+.
|
|
15
14
|
|