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
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* foo
|
|
5
|
+
*/
|
|
6
|
+
function commandfactorytests_get_doc_comment_func_1( $function = blah ) {
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* bar
|
|
11
|
+
function*/function commandfactorytests_get_doc_comment_func_2( $function = blah ) {
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* /** baz
|
|
16
|
+
*/$commandfactorytests_get_doc_comment_func_3
|
|
17
|
+
=
|
|
18
|
+
function ( $args ) {
|
|
19
|
+
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/baz.efg2
ADDED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.efg1
ADDED
|
File without changes
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/data/expand_globs/foo.efg2
ADDED
|
File without changes
|
package/dist/cli/wp-files/sqlite-command/vendor/wp-cli/wp-cli/tests/mock-requests-transport.php
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
use WpOrg\Requests\Transport;
|
|
4
|
+
|
|
5
|
+
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
|
|
6
|
+
class Mock_Requests_Transport implements Transport {
|
|
7
|
+
public $requests = [];
|
|
8
|
+
|
|
9
|
+
public function request( $url, $headers = [], $data = [], $options = [] ) {
|
|
10
|
+
// Simulate retrying.
|
|
11
|
+
if (
|
|
12
|
+
isset( $options['insecure'] )
|
|
13
|
+
&& $options['insecure']
|
|
14
|
+
&& isset( $options['verify'] )
|
|
15
|
+
&& false !== strpos( $options['verify'], sys_get_temp_dir() )
|
|
16
|
+
) {
|
|
17
|
+
$options['verify'] = false;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
$this->requests[] = compact( 'url', 'headers', 'data', 'options' );
|
|
21
|
+
|
|
22
|
+
return 'HTTP/1.1 418' . "\r\n"
|
|
23
|
+
. 'Content-Type: water/leaf-infused' . "\r\n"
|
|
24
|
+
. "\r\n\r\n"; // This last line is actually important or the request will error.
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public function request_multiple( $requests, $options ) {
|
|
28
|
+
throw new Exception( 'Method not implemented: ' . __METHOD__ );
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
public static function test( $capabilities = [] ) {
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.1.
|
|
1
|
+
v1.1.7
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wp-studio",
|
|
3
3
|
"author": "Automattic Inc.",
|
|
4
|
-
"version": "1.7.8-
|
|
4
|
+
"version": "1.7.8-beta3",
|
|
5
5
|
"productName": "Studio CLI",
|
|
6
6
|
"description": "WordPress Studio CLI",
|
|
7
7
|
"license": "GPL-2.0-or-later",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"studio": "dist/cli/main.mjs"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
+
"assets/",
|
|
13
14
|
"dist/cli/",
|
|
14
15
|
"patches/",
|
|
15
16
|
"scripts/"
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
"@wp-playground/common": "3.1.18",
|
|
38
39
|
"@wp-playground/storage": "3.1.18",
|
|
39
40
|
"@wp-playground/wordpress": "3.1.18",
|
|
40
|
-
"archiver": "^
|
|
41
|
+
"archiver": "^7.0.1",
|
|
41
42
|
"atomically": "^2.1.1",
|
|
42
43
|
"chalk": "^5.6.2",
|
|
43
44
|
"cli-table3": "^0.6.5",
|
|
@@ -68,7 +69,7 @@
|
|
|
68
69
|
},
|
|
69
70
|
"devDependencies": {
|
|
70
71
|
"@studio/common": "file:../../tools/common",
|
|
71
|
-
"@types/archiver": "^
|
|
72
|
+
"@types/archiver": "^7.0.0",
|
|
72
73
|
"@types/http-proxy": "^1.17.17",
|
|
73
74
|
"@types/node-forge": "^1.3.14",
|
|
74
75
|
"@types/yargs": "^17.0.35",
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
use PhpCsFixer\Config;
|
|
4
|
-
|
|
5
|
-
$config = new Config();
|
|
6
|
-
|
|
7
|
-
$config->setRules([
|
|
8
|
-
'@Symfony' => true,
|
|
9
|
-
'binary_operator_spaces' => false,
|
|
10
|
-
'concat_space' => ['spacing' => 'one'],
|
|
11
|
-
'increment_style' => false,
|
|
12
|
-
'single_line_throw' => false,
|
|
13
|
-
'yoda_style' => false,
|
|
14
|
-
]);
|
|
15
|
-
|
|
16
|
-
$finder = $config->getFinder()
|
|
17
|
-
->in('src')
|
|
18
|
-
->in('test');
|
|
19
|
-
|
|
20
|
-
return $config;
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
# Mustache.php
|
|
2
|
-
|
|
3
|
-
A [Mustache][mustache] implementation in PHP.
|
|
4
|
-
|
|
5
|
-
[][packagist]
|
|
6
|
-
[][packagist]
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
## Installation
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
composer require mustache/mustache
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
A quick example:
|
|
18
|
-
|
|
19
|
-
```php
|
|
20
|
-
<?php
|
|
21
|
-
$m = new \Mustache\Engine(['entity_flags' => ENT_QUOTES]);
|
|
22
|
-
echo $m->render('Hello {{planet}}', ['planet' => 'World!']); // "Hello World!"
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
And a more in-depth example -- this is the canonical Mustache template:
|
|
27
|
-
|
|
28
|
-
```html+jinja
|
|
29
|
-
Hello {{name}}
|
|
30
|
-
You have just won {{value}} dollars!
|
|
31
|
-
{{#in_ca}}
|
|
32
|
-
Well, {{taxed_value}} dollars, after taxes.
|
|
33
|
-
{{/in_ca}}
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Create a view "context" object -- which could also be an associative array, but those don't do functions quite as well:
|
|
38
|
-
|
|
39
|
-
```php
|
|
40
|
-
<?php
|
|
41
|
-
class Chris {
|
|
42
|
-
public $name = "Chris";
|
|
43
|
-
public $value = 10000;
|
|
44
|
-
|
|
45
|
-
public function taxed_value() {
|
|
46
|
-
return $this->value - ($this->value * 0.4);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
public $in_ca = true;
|
|
50
|
-
}
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
And render it:
|
|
55
|
-
|
|
56
|
-
```php
|
|
57
|
-
<?php
|
|
58
|
-
$m = new \Mustache\Engine(['entity_flags' => ENT_QUOTES]);
|
|
59
|
-
$chris = new \Chris;
|
|
60
|
-
echo $m->render($template, $chris);
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
*Note:* we recommend using `ENT_QUOTES` as a default of [entity_flags][entity_flags] to decrease the chance of Cross-site scripting vulnerability.
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## And That's Not All!
|
|
67
|
-
|
|
68
|
-
Read [the Mustache.php documentation][docs] for more information.
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
## Upgrading from v2.x
|
|
72
|
-
_Mustache.php v3.x drops support for PHP 5.2–5.5_, but is otherwise backwards compatible with v2.x.
|
|
73
|
-
|
|
74
|
-
To ease the transition, previous behavior can be preserved via configuration:
|
|
75
|
-
|
|
76
|
-
- The `strict_callables` config option now defaults to `true`. Lambda sections should use closures or callable objects. To continue supporting array-style callables for lambda sections (e.g. `[$this, 'foo']`), set `strict_callables` to `false`.
|
|
77
|
-
- [A context shadowing bug from v2.x has been fixed](https://github.com/bobthecow/mustache.php/commit/66ecb327ce15b9efa0cfcb7026fdc62c6659b27f), but if you depend on the previous buggy behavior you can preserve it via the `buggy_property_shadowing` config option.
|
|
78
|
-
- By default the return value of higher-order sections that are rendered via the lambda helper will no longer be double-rendered. To preserve the previous behavior, set `double_render_lambdas` to `true`. _This is not recommended._
|
|
79
|
-
|
|
80
|
-
In order to maintain a wide PHP version support range, there are minor changes to a few interfaces, which you might need to handle if you extend Mustache (see [c0453be](https://github.com/bobthecow/mustache.php/commit/c0453be5c09e7d988b396982e29218fcb25b7304)).
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
## See Also
|
|
84
|
-
|
|
85
|
-
- [mustache(5)][manpage] man page.
|
|
86
|
-
- [Readme for the Ruby Mustache implementation][ruby].
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
[mustache]: https://mustache.github.io/
|
|
90
|
-
[packagist]: https://packagist.org/packages/mustache/mustache
|
|
91
|
-
[entity_flags]: https://github.com/bobthecow/mustache.php/wiki#entity_flags
|
|
92
|
-
[docs]: https://github.com/bobthecow/mustache.php/wiki/Home
|
|
93
|
-
[manpage]: https://mustache.github.io/mustache.5.html
|
|
94
|
-
[ruby]: https://github.com/mustache/mustache/blob/master/README.md
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* This file is part of Mustache.php.
|
|
5
|
-
*
|
|
6
|
-
* (c) 2010-2025 Justin Hileman
|
|
7
|
-
*
|
|
8
|
-
* For the full copyright and license information, please view the LICENSE
|
|
9
|
-
* file that was distributed with this source code.
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
namespace Mustache;
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* A class representing a rendered string in Mustache.
|
|
16
|
-
*
|
|
17
|
-
* This is primarily used to prevent re-rendering of strings that have already
|
|
18
|
-
* been processed in higher-order sections.
|
|
19
|
-
*
|
|
20
|
-
* @see LambdaHelper::render()
|
|
21
|
-
* @see LambdaHelper::preventRender()
|
|
22
|
-
*/
|
|
23
|
-
class RenderedString
|
|
24
|
-
{
|
|
25
|
-
private $value;
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* RenderedString constructor.
|
|
29
|
-
*
|
|
30
|
-
* @param string $value The rendered string value
|
|
31
|
-
*/
|
|
32
|
-
public function __construct($value)
|
|
33
|
-
{
|
|
34
|
-
$this->value = (string) $value;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
public function __toString()
|
|
38
|
-
{
|
|
39
|
-
return $this->value;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Get the rendered string value.
|
|
44
|
-
*
|
|
45
|
-
* @return string The rendered string value
|
|
46
|
-
*/
|
|
47
|
-
public function getValue()
|
|
48
|
-
{
|
|
49
|
-
return $this->value;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
@@ -1,282 +0,0 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* This file is part of Mustache.php.
|
|
5
|
-
*
|
|
6
|
-
* (c) 2010-2025 Justin Hileman
|
|
7
|
-
*
|
|
8
|
-
* For the full copyright and license information, please view the LICENSE
|
|
9
|
-
* file that was distributed with this source code.
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
class_alias(\Mustache\Cache::class, \Mustache_Cache::class);
|
|
13
|
-
class_alias(\Mustache\Cache\AbstractCache::class, \Mustache_Cache_AbstractCache::class);
|
|
14
|
-
class_alias(\Mustache\Cache\FilesystemCache::class, \Mustache_Cache_FilesystemCache::class);
|
|
15
|
-
class_alias(\Mustache\Cache\NoopCache::class, \Mustache_Cache_NoopCache::class);
|
|
16
|
-
class_alias(\Mustache\Compiler::class, \Mustache_Compiler::class);
|
|
17
|
-
class_alias(\Mustache\Context::class, \Mustache_Context::class);
|
|
18
|
-
class_alias(\Mustache\Engine::class, \Mustache_Engine::class);
|
|
19
|
-
class_alias(\Mustache\Exception::class, \Mustache_Exception::class);
|
|
20
|
-
class_alias(\Mustache\Exception\InvalidArgumentException::class, \Mustache_Exception_InvalidArgumentException::class);
|
|
21
|
-
class_alias(\Mustache\Exception\LogicException::class, \Mustache_Exception_LogicException::class);
|
|
22
|
-
class_alias(\Mustache\Exception\RuntimeException::class, \Mustache_Exception_RuntimeException::class);
|
|
23
|
-
class_alias(\Mustache\Exception\SyntaxException::class, \Mustache_Exception_SyntaxException::class);
|
|
24
|
-
class_alias(\Mustache\Exception\UnknownFilterException::class, \Mustache_Exception_UnknownFilterException::class);
|
|
25
|
-
class_alias(\Mustache\Exception\UnknownHelperException::class, \Mustache_Exception_UnknownHelperException::class);
|
|
26
|
-
class_alias(\Mustache\Exception\UnknownTemplateException::class, \Mustache_Exception_UnknownTemplateException::class);
|
|
27
|
-
class_alias(\Mustache\HelperCollection::class, \Mustache_HelperCollection::class);
|
|
28
|
-
class_alias(\Mustache\LambdaHelper::class, \Mustache_LambdaHelper::class);
|
|
29
|
-
class_alias(\Mustache\Loader::class, \Mustache_Loader::class);
|
|
30
|
-
class_alias(\Mustache\Loader\ArrayLoader::class, \Mustache_Loader_ArrayLoader::class);
|
|
31
|
-
class_alias(\Mustache\Loader\CascadingLoader::class, \Mustache_Loader_CascadingLoader::class);
|
|
32
|
-
class_alias(\Mustache\Loader\FilesystemLoader::class, \Mustache_Loader_FilesystemLoader::class);
|
|
33
|
-
class_alias(\Mustache\Loader\InlineLoader::class, \Mustache_Loader_InlineLoader::class);
|
|
34
|
-
class_alias(\Mustache\Loader\MutableLoader::class, \Mustache_Loader_MutableLoader::class);
|
|
35
|
-
class_alias(\Mustache\Loader\ProductionFilesystemLoader::class, \Mustache_Loader_ProductionFilesystemLoader::class);
|
|
36
|
-
class_alias(\Mustache\Loader\StringLoader::class, \Mustache_Loader_StringLoader::class);
|
|
37
|
-
class_alias(\Mustache\Logger::class, \Mustache_Logger::class);
|
|
38
|
-
class_alias(\Mustache\Logger\AbstractLogger::class, \Mustache_Logger_AbstractLogger::class);
|
|
39
|
-
class_alias(\Mustache\Logger\StreamLogger::class, \Mustache_Logger_StreamLogger::class);
|
|
40
|
-
class_alias(\Mustache\Parser::class, \Mustache_Parser::class);
|
|
41
|
-
class_alias(\Mustache\Source::class, \Mustache_Source::class);
|
|
42
|
-
class_alias(\Mustache\Source\FilesystemSource::class, \Mustache_Source_FilesystemSource::class);
|
|
43
|
-
class_alias(\Mustache\Template::class, \Mustache_Template::class);
|
|
44
|
-
class_alias(\Mustache\Tokenizer::class, \Mustache_Tokenizer::class);
|
|
45
|
-
|
|
46
|
-
if (!class_exists(\Mustache_Engine::class)) {
|
|
47
|
-
/** @deprecated use Mustache\Engine */
|
|
48
|
-
class Mustache_Engine extends \Mustache\Engine
|
|
49
|
-
{
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
if (!interface_exists(\Mustache_Cache::class)) {
|
|
54
|
-
/** @deprecated use Mustache\Cache */
|
|
55
|
-
interface Mustache_Cache extends \Mustache\Cache
|
|
56
|
-
{
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
if (!class_exists(\Mustache_Cache_AbstractCache::class)) {
|
|
61
|
-
/** @deprecated use Mustache\Cache\AbstractCache */
|
|
62
|
-
abstract class Mustache_Cache_AbstractCache extends \Mustache\Cache\AbstractCache
|
|
63
|
-
{
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
if (!class_exists(\Mustache_Cache_FilesystemCache::class)) {
|
|
68
|
-
/** @deprecated use Mustache\Cache\FilesystemCache */
|
|
69
|
-
class Mustache_Cache_FilesystemCache extends \Mustache\Cache\FilesystemCache
|
|
70
|
-
{
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
if (!class_exists(\Mustache_Cache_NoopCache::class)) {
|
|
75
|
-
/** @deprecated use Mustache\Cache\NoopCache */
|
|
76
|
-
class Mustache_Cache_NoopCache extends \Mustache\Cache\NoopCache
|
|
77
|
-
{
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
if (!class_exists(\Mustache_Compiler::class)) {
|
|
82
|
-
/** @deprecated use Mustache\Compiler */
|
|
83
|
-
class Mustache_Compiler extends \Mustache\Compiler
|
|
84
|
-
{
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
if (!class_exists(\Mustache_Context::class)) {
|
|
89
|
-
/** @deprecated use Mustache\Context */
|
|
90
|
-
class Mustache_Context extends \Mustache\Context
|
|
91
|
-
{
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
if (!class_exists(\Mustache_Engine::class)) {
|
|
96
|
-
/** @deprecated use Mustache\Engine */
|
|
97
|
-
class Mustache_Engine extends \Mustache\Engine
|
|
98
|
-
{
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
if (!interface_exists(\Mustache_Exception::class)) {
|
|
103
|
-
/** @deprecated use Mustache\Exception */
|
|
104
|
-
interface Mustache_Exception extends \Mustache\Exception
|
|
105
|
-
{
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
if (!class_exists(\Mustache_Exception_InvalidArgumentException::class)) {
|
|
110
|
-
/** @deprecated use Mustache\Exception\InvalidArgumentException */
|
|
111
|
-
class Mustache_Exception_InvalidArgumentException extends \Mustache\Exception\InvalidArgumentException
|
|
112
|
-
{
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
if (!class_exists(\Mustache_Exception_LogicException::class)) {
|
|
117
|
-
/** @deprecated use Mustache\Exception\LogicException */
|
|
118
|
-
class Mustache_Exception_LogicException extends \Mustache\Exception\LogicException
|
|
119
|
-
{
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
if (!class_exists(\Mustache_Exception_RuntimeException::class)) {
|
|
124
|
-
/** @deprecated use Mustache\Exception\RuntimeException */
|
|
125
|
-
class Mustache_Exception_RuntimeException extends \Mustache\Exception\RuntimeException
|
|
126
|
-
{
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
if (!class_exists(\Mustache_Exception_SyntaxException::class)) {
|
|
131
|
-
/** @deprecated use Mustache\Exception\SyntaxException */
|
|
132
|
-
class Mustache_Exception_SyntaxException extends \Mustache\Exception\SyntaxException
|
|
133
|
-
{
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
if (!class_exists(\Mustache_Exception_UnknownFilterException::class)) {
|
|
138
|
-
/** @deprecated use Mustache\Exception\UnknownFilterException */
|
|
139
|
-
class Mustache_Exception_UnknownFilterException extends \Mustache\Exception\UnknownFilterException
|
|
140
|
-
{
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
if (!class_exists(\Mustache_Exception_UnknownHelperException::class)) {
|
|
145
|
-
/** @deprecated use Mustache\Exception\UnknownHelperException */
|
|
146
|
-
class Mustache_Exception_UnknownHelperException extends \Mustache\Exception\UnknownHelperException
|
|
147
|
-
{
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
if (!class_exists(\Mustache_Exception_UnknownTemplateException::class)) {
|
|
152
|
-
/** @deprecated use Mustache\Exception\UnknownTemplateException */
|
|
153
|
-
class Mustache_Exception_UnknownTemplateException extends \Mustache\Exception\UnknownTemplateException
|
|
154
|
-
{
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
if (!class_exists(\Mustache_HelperCollection::class)) {
|
|
159
|
-
/** @deprecated use Mustache\HelperCollection */
|
|
160
|
-
class Mustache_HelperCollection extends \Mustache\HelperCollection
|
|
161
|
-
{
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
if (!class_exists(\Mustache_LambdaHelper::class)) {
|
|
166
|
-
/** @deprecated use Mustache\LambdaHelper */
|
|
167
|
-
class Mustache_LambdaHelper extends \Mustache\LambdaHelper
|
|
168
|
-
{
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
if (!interface_exists(\Mustache_Loader::class)) {
|
|
173
|
-
/** @deprecated use Mustache\Loader */
|
|
174
|
-
interface Mustache_Loader extends \Mustache\Loader
|
|
175
|
-
{
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
if (!class_exists(\Mustache_Loader_ArrayLoader::class)) {
|
|
180
|
-
/** @deprecated use Mustache\Loader\ArrayLoader */
|
|
181
|
-
class Mustache_Loader_ArrayLoader extends \Mustache\Loader\ArrayLoader
|
|
182
|
-
{
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
if (!class_exists(\Mustache_Loader_CascadingLoader::class)) {
|
|
187
|
-
/** @deprecated use Mustache\Loader\CascadingLoader */
|
|
188
|
-
class Mustache_Loader_CascadingLoader extends \Mustache\Loader\CascadingLoader
|
|
189
|
-
{
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
if (!class_exists(\Mustache_Loader_FilesystemLoader::class)) {
|
|
194
|
-
/** @deprecated use Mustache\Loader\FilesystemLoader */
|
|
195
|
-
class Mustache_Loader_FilesystemLoader extends \Mustache\Loader\FilesystemLoader
|
|
196
|
-
{
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
if (!class_exists(\Mustache_Loader_InlineLoader::class)) {
|
|
201
|
-
/** @deprecated use Mustache\Loader\InlineLoader */
|
|
202
|
-
class Mustache_Loader_InlineLoader extends \Mustache\Loader\InlineLoader
|
|
203
|
-
{
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
if (!interface_exists(\Mustache_Loader_MutableLoader::class)) {
|
|
208
|
-
/** @deprecated use Mustache\Loader\MutableLoader */
|
|
209
|
-
interface Mustache_Loader_MutableLoader extends \Mustache\Loader\MutableLoader
|
|
210
|
-
{
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
if (!class_exists(\Mustache_Loader_ProductionFilesystemLoader::class)) {
|
|
215
|
-
/** @deprecated use Mustache\Loader\ProductionFilesystemLoader */
|
|
216
|
-
class Mustache_Loader_ProductionFilesystemLoader extends \Mustache\Loader\ProductionFilesystemLoader
|
|
217
|
-
{
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
if (!class_exists(\Mustache_Loader_StringLoader::class)) {
|
|
222
|
-
/** @deprecated use Mustache\Loader\StringLoader */
|
|
223
|
-
class Mustache_Loader_StringLoader extends \Mustache\Loader\StringLoader
|
|
224
|
-
{
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
if (!interface_exists(\Mustache_Logger::class)) {
|
|
229
|
-
/** @deprecated use Mustache\Logger */
|
|
230
|
-
interface Mustache_Logger extends \Mustache\Logger
|
|
231
|
-
{
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
if (!class_exists(\Mustache_Logger_AbstractLogger::class)) {
|
|
236
|
-
/** @deprecated use Mustache\Logger\AbstractLogger */
|
|
237
|
-
abstract class Mustache_Logger_AbstractLogger extends \Mustache\Logger\AbstractLogger
|
|
238
|
-
{
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
if (!class_exists(\Mustache_Logger_StreamLogger::class)) {
|
|
243
|
-
/** @deprecated use Mustache\Logger\StreamLogger */
|
|
244
|
-
class Mustache_Logger_StreamLogger extends \Mustache\Logger\StreamLogger
|
|
245
|
-
{
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
if (!class_exists(\Mustache_Parser::class)) {
|
|
250
|
-
/** @deprecated use Mustache\Parser */
|
|
251
|
-
class Mustache_Parser extends \Mustache\Parser
|
|
252
|
-
{
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
if (!interface_exists(\Mustache_Source::class)) {
|
|
257
|
-
/** @deprecated use Mustache\Source */
|
|
258
|
-
interface Mustache_Source extends \Mustache\Source
|
|
259
|
-
{
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
if (!class_exists(\Mustache_Source_FilesystemSource::class)) {
|
|
264
|
-
/** @deprecated use Mustache\Source\FilesystemSource */
|
|
265
|
-
class Mustache_Source_FilesystemSource extends \Mustache\Source\FilesystemSource
|
|
266
|
-
{
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
if (!class_exists(\Mustache_Template::class)) {
|
|
271
|
-
/** @deprecated use Mustache\Template */
|
|
272
|
-
abstract class Mustache_Template extends \Mustache\Template
|
|
273
|
-
{
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
if (!class_exists(\Mustache_Tokenizer::class)) {
|
|
278
|
-
/** @deprecated use Mustache\Tokenizer */
|
|
279
|
-
class Mustache_Tokenizer extends \Mustache\Tokenizer
|
|
280
|
-
{
|
|
281
|
-
}
|
|
282
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
[default]
|
|
2
|
-
extend-ignore-re = [
|
|
3
|
-
"(?Rm)^.*(#|//)\\s*spellchecker:disable-line$",
|
|
4
|
-
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on",
|
|
5
|
-
"(#|//)\\s*spellchecker:ignore-next-line\\n.*"
|
|
6
|
-
]
|
|
7
|
-
|
|
8
|
-
[files]
|
|
9
|
-
extend-exclude = [
|
|
10
|
-
"bundle/*",
|
|
11
|
-
"php/WP_CLI/Inflector.php",
|
|
12
|
-
"tests/*.php",
|
|
13
|
-
"features/*.feature"
|
|
14
|
-
]
|