Project

General

Profile

Bug #3561

Updated by bill-auger 4 months ago

The pkp-cli recipe package consists in the following:


<pre>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Matt Fields (0x6d617474) <aur at 0x6d617474 dot net>

pkgname=wp-cli
_pkgname=$pkgname-bundle
pkgver=2.9.0
pkgrel=1
pkgdesc='A command-line tool for managing WordPress'
url='http://wp-cli.org'
arch=(any)
license=(MIT)
depends=(php)
makedepends=(composer)
_archive="$_pkgname-$pkgver"
source=("https://github.com/wp-cli/wp-cli-bundle/archive/v$pkgver/$_archive.tar.gz")
sha256sums=('f8bbb645d3998d3034dc51ea86a4f573828b2308bc7f9c4884d144177ad93ea9')

build() {
cd "$_archive"
composer install --no-interaction --prefer-dist --no-scripts
php -dphar.readonly=0 utils/make-phar.php wp-cli.phar
}

check() {
cd "$_archive"
composer phpunit
php ./wp-cli.phar --version

}

package() {
cd "$_archive"
install -Dm0755 wp-cli.phar "$pkgdir/usr/bin/wp"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
install -Dm0644 vendor/wp-cli/wp-cli/utils/wp-completion.bash "$pkgdir/usr/share/bash-completion/completions/wp"
}
</pre>

After installing php-cli I can get the source code in this way:

<pre>
# cd $(mktemp -d)
# phar extract -f /usr/bin/wp
# find > wp-cli-files.txt
</pre>

wp-cli-files.txt is attached And this gives the following:
<pre>
usr/
usr/bin
usr/bin/wp
usr/bin/wp/php
usr/bin/wp/php/boot-phar.php
usr/bin/wp/vendor
usr/bin/wp/vendor/autoload.php
usr/bin/wp/vendor/composer
usr/bin/wp/vendor/composer/ClassLoader.php
usr/bin/wp/vendor/composer/InstalledVersions.php
usr/bin/wp/vendor/composer/autoload_classmap.php
usr/bin/wp/vendor/composer/autoload_files.php
usr/bin/wp/vendor/composer/autoload_namespaces.php
usr/bin/wp/vendor/composer/autoload_psr4.php
usr/bin/wp/vendor/composer/autoload_real.php
usr/bin/wp/vendor/composer/autoload_static.php
usr/bin/wp/vendor/composer/ca-bundle
usr/bin/wp/vendor/composer/ca-bundle/src
usr/bin/wp/vendor/composer/ca-bundle/src/CaBundle.php
usr/bin/wp/vendor/composer/composer
usr/bin/wp/vendor/composer/composer/LICENSE
usr/bin/wp/vendor/composer/composer/res
usr/bin/wp/vendor/composer/composer/res/composer-schema.json
usr/bin/wp/vendor/composer/composer/src
usr/bin/wp/vendor/composer/composer/src/Composer
usr/bin/wp/vendor/composer/composer/src/Composer/Autoload
usr/bin/wp/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php
usr/bin/wp/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php
usr/bin/wp/vendor/composer/composer/src/Composer/Autoload/PhpFileCleaner.php
usr/bin/wp/vendor/composer/composer/src/Composer/Cache.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command
usr/bin/wp/vendor/composer/composer/src/Composer/Command/AboutCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/BaseCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ConfigCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/DependsCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ExecCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/FundCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/GlobalCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/HomeCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/InitCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/InstallCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/LicensesCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ReinstallCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/RemoveCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/RequireCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/SearchCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ShowCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/StatusCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/UpdateCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Command/ValidateCommand.php
usr/bin/wp/vendor/composer/composer/src/Composer/Compiler.php
usr/bin/wp/vendor/composer/composer/src/Composer/Composer.php
usr/bin/wp/vendor/composer/composer/src/Composer/Config
usr/bin/wp/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php
usr/bin/wp/vendor/composer/composer/src/Composer/Config.php
usr/bin/wp/vendor/composer/composer/src/Composer/Console
usr/bin/wp/vendor/composer/composer/src/Composer/Console/Application.php
usr/bin/wp/vendor/composer/composer/src/Composer/Console/GithubActionError.php
usr/bin/wp/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/LocalRepoTransaction.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/LockTransaction.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/MultiConflictRule.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/PoolBuilder.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/PoolOptimizer.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Request.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php
usr/bin/wp/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/MaxFileSizeExceededException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/TransportException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/EventDispatcher
usr/bin/wp/vendor/composer/composer/src/Composer/EventDispatcher/Event.php
usr/bin/wp/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php
usr/bin/wp/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Exception
usr/bin/wp/vendor/composer/composer/src/Composer/Exception/IrrecoverableDownloadException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Exception/NoSslException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Factory.php
usr/bin/wp/vendor/composer/composer/src/Composer/Filter
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter/IgnoreAllPlatformRequirementFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter/IgnoreListPlatformRequirementFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter/IgnoreNothingPlatformRequirementFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter/PlatformRequirementFilterFactory.php
usr/bin/wp/vendor/composer/composer/src/Composer/Filter/PlatformRequirementFilter/PlatformRequirementFilterInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/IO
usr/bin/wp/vendor/composer/composer/src/Composer/IO/BaseIO.php
usr/bin/wp/vendor/composer/composer/src/Composer/IO/BufferIO.php
usr/bin/wp/vendor/composer/composer/src/Composer/IO/ConsoleIO.php
usr/bin/wp/vendor/composer/composer/src/Composer/IO/IOInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/IO/NullIO.php
usr/bin/wp/vendor/composer/composer/src/Composer/InstalledVersions.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/InstallationManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/PackageEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/PackageEvents.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Installer.php
usr/bin/wp/vendor/composer/composer/src/Composer/Json
usr/bin/wp/vendor/composer/composer/src/Composer/Json/JsonFile.php
usr/bin/wp/vendor/composer/composer/src/Composer/Json/JsonFormatter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Json/JsonManipulator.php
usr/bin/wp/vendor/composer/composer/src/Composer/Json/JsonValidationException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package
usr/bin/wp/vendor/composer/composer/src/Composer/Package/AliasPackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/BasePackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Comparer
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/CompleteAliasPackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/CompletePackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Dumper
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Link.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Locker.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Package.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/PackageInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/RootPackage.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Version
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Version/StabilityFilter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php
usr/bin/wp/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php
usr/bin/wp/vendor/composer/composer/src/Composer/Platform
usr/bin/wp/vendor/composer/composer/src/Composer/Platform/HhvmDetector.php
usr/bin/wp/vendor/composer/composer/src/Composer/Platform/Runtime.php
usr/bin/wp/vendor/composer/composer/src/Composer/Platform/Version.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/Capability
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/Capable.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PluginBlockedException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PluginManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PostFileDownloadEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Plugin/PrePoolCreateEvent.php
usr/bin/wp/vendor/composer/composer/src/Composer/Question
usr/bin/wp/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/FilterRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/InstalledRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/LockArrayRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/PackageRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/PathRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/PearRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RepositorySet.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/RootPackageRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/VcsRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php
usr/bin/wp/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php
usr/bin/wp/vendor/composer/composer/src/Composer/Script
usr/bin/wp/vendor/composer/composer/src/Composer/Script/Event.php
usr/bin/wp/vendor/composer/composer/src/Composer/Script/ScriptEvents.php
usr/bin/wp/vendor/composer/composer/src/Composer/SelfUpdate
usr/bin/wp/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php
usr/bin/wp/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util
usr/bin/wp/vendor/composer/composer/src/Composer/Util/AuthHelper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Bitbucket.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/ComposerMirror.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/ConfigValidator.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/ErrorHandler.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Filesystem.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Git.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/GitHub.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/GitLab.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Hg.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/CurlDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/CurlResponse.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/ProxyHelper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/ProxyManager.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/RequestProxy.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Http/Response.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/HttpDownloader.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/IniHelper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Loop.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/MetadataMinifier.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/PackageSorter.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Perforce.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Platform.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Silencer.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Svn.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/SyncHelper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Tar.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/TlsHelper.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Url.php
usr/bin/wp/vendor/composer/composer/src/Composer/Util/Zip.php
usr/bin/wp/vendor/composer/composer/src/bootstrap.php
usr/bin/wp/vendor/composer/installed.php
usr/bin/wp/vendor/composer/metadata-minifier
usr/bin/wp/vendor/composer/metadata-minifier/src
usr/bin/wp/vendor/composer/metadata-minifier/src/MetadataMinifier.php
usr/bin/wp/vendor/composer/pcre
usr/bin/wp/vendor/composer/pcre/src
usr/bin/wp/vendor/composer/pcre/src/MatchAllResult.php
usr/bin/wp/vendor/composer/pcre/src/MatchAllWithOffsetsResult.php
usr/bin/wp/vendor/composer/pcre/src/MatchResult.php
usr/bin/wp/vendor/composer/pcre/src/MatchWithOffsetsResult.php
usr/bin/wp/vendor/composer/pcre/src/PcreException.php
usr/bin/wp/vendor/composer/pcre/src/Preg.php
usr/bin/wp/vendor/composer/pcre/src/Regex.php
usr/bin/wp/vendor/composer/pcre/src/ReplaceResult.php
usr/bin/wp/vendor/composer/platform_check.php
usr/bin/wp/vendor/composer/semver
usr/bin/wp/vendor/composer/semver/src
usr/bin/wp/vendor/composer/semver/src/Comparator.php
usr/bin/wp/vendor/composer/semver/src/CompilingMatcher.php
usr/bin/wp/vendor/composer/semver/src/Constraint
usr/bin/wp/vendor/composer/semver/src/Constraint/Bound.php
usr/bin/wp/vendor/composer/semver/src/Constraint/Constraint.php
usr/bin/wp/vendor/composer/semver/src/Constraint/ConstraintInterface.php
usr/bin/wp/vendor/composer/semver/src/Constraint/MatchAllConstraint.php
usr/bin/wp/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php
usr/bin/wp/vendor/composer/semver/src/Constraint/MultiConstraint.php
usr/bin/wp/vendor/composer/semver/src/Interval.php
usr/bin/wp/vendor/composer/semver/src/Intervals.php
usr/bin/wp/vendor/composer/semver/src/Semver.php
usr/bin/wp/vendor/composer/semver/src/VersionParser.php
usr/bin/wp/vendor/composer/spdx-licenses
usr/bin/wp/vendor/composer/spdx-licenses/src
usr/bin/wp/vendor/composer/spdx-licenses/src/SpdxLicenses.php
usr/bin/wp/vendor/composer/xdebug-handler
usr/bin/wp/vendor/composer/xdebug-handler/src
usr/bin/wp/vendor/composer/xdebug-handler/src/PhpConfig.php
usr/bin/wp/vendor/composer/xdebug-handler/src/Process.php
usr/bin/wp/vendor/composer/xdebug-handler/src/Status.php
usr/bin/wp/vendor/composer/xdebug-handler/src/XdebugHandler.php
usr/bin/wp/vendor/eftec
usr/bin/wp/vendor/eftec/bladeone
usr/bin/wp/vendor/eftec/bladeone/lib
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOne.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneCache.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneCacheRedis.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneCustom.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneHtml.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneHtmlBootstrap.php
usr/bin/wp/vendor/eftec/bladeone/lib/BladeOneLang.php
usr/bin/wp/vendor/gettext
usr/bin/wp/vendor/gettext/gettext
usr/bin/wp/vendor/gettext/gettext/src
usr/bin/wp/vendor/gettext/gettext/src/BaseTranslator.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Blade.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Csv.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/CsvDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Extractor.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/ExtractorInterface.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/ExtractorMultiInterface.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Jed.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/JsCode.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Json.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/JsonDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Mo.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/PhpArray.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/PhpCode.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Po.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Twig.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/VueJs.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Xliff.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/Yaml.php
usr/bin/wp/vendor/gettext/gettext/src/Extractors/YamlDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/Generators
usr/bin/wp/vendor/gettext/gettext/src/Generators/Csv.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/CsvDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Generator.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/GeneratorInterface.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Jed.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Json.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/JsonDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Mo.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/PhpArray.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Po.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Xliff.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/Yaml.php
usr/bin/wp/vendor/gettext/gettext/src/Generators/YamlDictionary.php
usr/bin/wp/vendor/gettext/gettext/src/GettextTranslator.php
usr/bin/wp/vendor/gettext/gettext/src/Merge.php
usr/bin/wp/vendor/gettext/gettext/src/Translation.php
usr/bin/wp/vendor/gettext/gettext/src/Translations.php
usr/bin/wp/vendor/gettext/gettext/src/Translator.php
usr/bin/wp/vendor/gettext/gettext/src/TranslatorInterface.php
usr/bin/wp/vendor/gettext/gettext/src/Utils
usr/bin/wp/vendor/gettext/gettext/src/Utils/CsvTrait.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/DictionaryTrait.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/FunctionsScanner.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/HeadersExtractorTrait.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/HeadersGeneratorTrait.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/JsFunctionsScanner.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/MultidimensionalArrayTrait.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/ParsedComment.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/ParsedFunction.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/PhpFunctionsScanner.php
usr/bin/wp/vendor/gettext/gettext/src/Utils/StringReader.php
usr/bin/wp/vendor/gettext/gettext/src/autoloader.php
usr/bin/wp/vendor/gettext/gettext/src/translator_functions.php
usr/bin/wp/vendor/gettext/languages
usr/bin/wp/vendor/gettext/languages/src
usr/bin/wp/vendor/gettext/languages/src/Category.php
usr/bin/wp/vendor/gettext/languages/src/CldrData.php
usr/bin/wp/vendor/gettext/languages/src/Exporter
usr/bin/wp/vendor/gettext/languages/src/Exporter/Docs.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Exporter.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Html.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Json.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Php.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Po.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Prettyjson.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Ruby.php
usr/bin/wp/vendor/gettext/languages/src/Exporter/Xml.php
usr/bin/wp/vendor/gettext/languages/src/FormulaConverter.php
usr/bin/wp/vendor/gettext/languages/src/Language.php
usr/bin/wp/vendor/gettext/languages/src/autoloader.php
usr/bin/wp/vendor/justinrainbow
usr/bin/wp/vendor/justinrainbow/json-schema
usr/bin/wp/vendor/justinrainbow/json-schema/src
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Entity
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php
usr/bin/wp/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php
usr/bin/wp/vendor/mck89
usr/bin/wp/vendor/mck89/peast
usr/bin/wp/vendor/mck89/peast/lib
usr/bin/wp/vendor/mck89/peast/lib/Peast
usr/bin/wp/vendor/mck89/peast/lib/Peast/Formatter
usr/bin/wp/vendor/mck89/peast/lib/Peast/Formatter/Base.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Formatter/Compact.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Formatter/Expanded.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Formatter/PrettyPrint.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Peast.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Query.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Renderer.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Exception.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Matches.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Combinator.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Group.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/Attribute.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/Part.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/Pseudo.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/PseudoIndex.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/PseudoSelector.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/PseudoSimple.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Part/Type.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Node/Selector.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Selector/Parser.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/CommentsRegistry.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2015
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2015/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2016
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2016/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2017
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2017/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2018
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2018/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2019
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2019/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2020
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2020/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2021
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2021/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2022
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2022/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2023
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ES2023/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/EncodingException.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/EventsEmitter.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Exception.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Features.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/JSX
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/JSX/Parser.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/JSX/Scanner.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/LSM.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ArrayExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ArrayPattern.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ArrowFunctionExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/AssignmentPattern.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/AssignmentProperty.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/AwaitExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/BigIntLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/BinaryExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/BlockStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/BooleanLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/BreakStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/CallExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/CatchClause.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ChainElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ChainExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ClassBody.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ClassDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ClassExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Class_.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Comment.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ConditionalExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ContinueStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/DebuggerStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Declaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/DoWhileStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/EmptyStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ExportAllDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ExportDefaultDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ExportNamedDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ExportSpecifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Expression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ExpressionStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ForInStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ForOfStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ForStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/FunctionDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/FunctionExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Function_.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Identifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/IfStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ImportDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ImportDefaultSpecifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ImportExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ImportNamespaceSpecifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ImportSpecifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXAttribute.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXBoundaryElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingFragment.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXEmptyExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXFragment.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXIdentifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXMemberExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXNamespacedName.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningFragment.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadAttribute.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadChild.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXText.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/LabeledStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Literal.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/LogicalExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/MemberExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/MetaProperty.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/MethodDefinition.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ModuleDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ModuleSpecifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/NewExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Node.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/NullLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/NumericLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ObjectExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ObjectPattern.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ParenthesizedExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Pattern.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/PrivateIdentifier.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Program.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Property.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/PropertyDefinition.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/RegExpLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/RestElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ReturnStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/SequenceExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/SpreadElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Statement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/StaticBlock.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/StringLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/Super.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/SwitchCase.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/SwitchStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/TaggedTemplateExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/TemplateElement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/TemplateLiteral.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ThisExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/ThrowStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/UnaryExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/UpdateExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/VariableDeclaration.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/VariableDeclarator.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/WhileStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/WithStatement.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Node/YieldExpression.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Parser.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/ParserAbstract.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Position.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Scanner.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/SourceLocation.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Token.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Syntax/Utils.php
usr/bin/wp/vendor/mck89/peast/lib/Peast/Traverser.php
usr/bin/wp/vendor/mustache
usr/bin/wp/vendor/mustache/mustache
usr/bin/wp/vendor/mustache/mustache/bin
usr/bin/wp/vendor/mustache/mustache/bin/build_bootstrap.php
usr/bin/wp/vendor/mustache/mustache/src
usr/bin/wp/vendor/mustache/mustache/src/Mustache
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Autoloader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Cache
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Cache/AbstractCache.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Cache/FilesystemCache.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Cache/NoopCache.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Cache.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Compiler.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Context.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Engine.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/LogicException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/RuntimeException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/SyntaxException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Exception.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/HelperCollection.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/LambdaHelper.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/ArrayLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/CascadingLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/InlineLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/MutableLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader/StringLoader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Loader.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Logger
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Logger/AbstractLogger.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Logger/StreamLogger.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Logger.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Parser.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Source
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Source/FilesystemSource.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Source.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Template.php
usr/bin/wp/vendor/mustache/mustache/src/Mustache/Tokenizer.php
usr/bin/wp/vendor/nb
usr/bin/wp/vendor/nb/oxymel
usr/bin/wp/vendor/nb/oxymel/Oxymel.php
usr/bin/wp/vendor/nb/oxymel/OxymelTest.php
usr/bin/wp/vendor/psr
usr/bin/wp/vendor/psr/container
usr/bin/wp/vendor/psr/container/src
usr/bin/wp/vendor/psr/container/src/ContainerExceptionInterface.php
usr/bin/wp/vendor/psr/container/src/ContainerInterface.php
usr/bin/wp/vendor/psr/container/src/NotFoundExceptionInterface.php
usr/bin/wp/vendor/psr/log
usr/bin/wp/vendor/psr/log/Psr
usr/bin/wp/vendor/psr/log/Psr/Log
usr/bin/wp/vendor/psr/log/Psr/Log/AbstractLogger.php
usr/bin/wp/vendor/psr/log/Psr/Log/InvalidArgumentException.php
usr/bin/wp/vendor/psr/log/Psr/Log/LogLevel.php
usr/bin/wp/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
usr/bin/wp/vendor/psr/log/Psr/Log/LoggerAwareTrait.php
usr/bin/wp/vendor/psr/log/Psr/Log/LoggerInterface.php
usr/bin/wp/vendor/psr/log/Psr/Log/LoggerTrait.php
usr/bin/wp/vendor/psr/log/Psr/Log/NullLogger.php
usr/bin/wp/vendor/react
usr/bin/wp/vendor/react/promise
usr/bin/wp/vendor/react/promise/src
usr/bin/wp/vendor/react/promise/src/CancellablePromiseInterface.php
usr/bin/wp/vendor/react/promise/src/CancellationQueue.php
usr/bin/wp/vendor/react/promise/src/Deferred.php
usr/bin/wp/vendor/react/promise/src/Exception
usr/bin/wp/vendor/react/promise/src/Exception/LengthException.php
usr/bin/wp/vendor/react/promise/src/ExtendedPromiseInterface.php
usr/bin/wp/vendor/react/promise/src/FulfilledPromise.php
usr/bin/wp/vendor/react/promise/src/LazyPromise.php
usr/bin/wp/vendor/react/promise/src/Promise.php
usr/bin/wp/vendor/react/promise/src/PromiseInterface.php
usr/bin/wp/vendor/react/promise/src/PromisorInterface.php
usr/bin/wp/vendor/react/promise/src/RejectedPromise.php
usr/bin/wp/vendor/react/promise/src/UnhandledRejectionException.php
usr/bin/wp/vendor/react/promise/src/functions.php
usr/bin/wp/vendor/react/promise/src/functions_include.php
usr/bin/wp/vendor/seld
usr/bin/wp/vendor/seld/jsonlint
usr/bin/wp/vendor/seld/jsonlint/src
usr/bin/wp/vendor/seld/jsonlint/src/Seld
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php
usr/bin/wp/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php
usr/bin/wp/vendor/seld/phar-utils
usr/bin/wp/vendor/seld/phar-utils/src
usr/bin/wp/vendor/seld/phar-utils/src/Linter.php
usr/bin/wp/vendor/seld/phar-utils/src/Timestamps.php
usr/bin/wp/vendor/symfony
usr/bin/wp/vendor/symfony/console
usr/bin/wp/vendor/symfony/console/Application.php
usr/bin/wp/vendor/symfony/console/Command
usr/bin/wp/vendor/symfony/console/Command/Command.php
usr/bin/wp/vendor/symfony/console/Command/HelpCommand.php
usr/bin/wp/vendor/symfony/console/Command/ListCommand.php
usr/bin/wp/vendor/symfony/console/Command/LockableTrait.php
usr/bin/wp/vendor/symfony/console/CommandLoader
usr/bin/wp/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php
usr/bin/wp/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php
usr/bin/wp/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php
usr/bin/wp/vendor/symfony/console/ConsoleEvents.php
usr/bin/wp/vendor/symfony/console/DependencyInjection
usr/bin/wp/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php
usr/bin/wp/vendor/symfony/console/Descriptor
usr/bin/wp/vendor/symfony/console/Descriptor/ApplicationDescription.php
usr/bin/wp/vendor/symfony/console/Descriptor/Descriptor.php
usr/bin/wp/vendor/symfony/console/Descriptor/DescriptorInterface.php
usr/bin/wp/vendor/symfony/console/Descriptor/JsonDescriptor.php
usr/bin/wp/vendor/symfony/console/Descriptor/MarkdownDescriptor.php
usr/bin/wp/vendor/symfony/console/Descriptor/TextDescriptor.php
usr/bin/wp/vendor/symfony/console/Descriptor/XmlDescriptor.php
usr/bin/wp/vendor/symfony/console/Event
usr/bin/wp/vendor/symfony/console/Event/ConsoleCommandEvent.php
usr/bin/wp/vendor/symfony/console/Event/ConsoleErrorEvent.php
usr/bin/wp/vendor/symfony/console/Event/ConsoleEvent.php
usr/bin/wp/vendor/symfony/console/Event/ConsoleExceptionEvent.php
usr/bin/wp/vendor/symfony/console/Event/ConsoleTerminateEvent.php
usr/bin/wp/vendor/symfony/console/EventListener
usr/bin/wp/vendor/symfony/console/EventListener/ErrorListener.php
usr/bin/wp/vendor/symfony/console/Exception
usr/bin/wp/vendor/symfony/console/Exception/CommandNotFoundException.php
usr/bin/wp/vendor/symfony/console/Exception/ExceptionInterface.php
usr/bin/wp/vendor/symfony/console/Exception/InvalidArgumentException.php
usr/bin/wp/vendor/symfony/console/Exception/InvalidOptionException.php
usr/bin/wp/vendor/symfony/console/Exception/LogicException.php
usr/bin/wp/vendor/symfony/console/Exception/RuntimeException.php
usr/bin/wp/vendor/symfony/console/Formatter
usr/bin/wp/vendor/symfony/console/Formatter/OutputFormatter.php
usr/bin/wp/vendor/symfony/console/Formatter/OutputFormatterInterface.php
usr/bin/wp/vendor/symfony/console/Formatter/OutputFormatterStyle.php
usr/bin/wp/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php
usr/bin/wp/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php
usr/bin/wp/vendor/symfony/console/Helper
usr/bin/wp/vendor/symfony/console/Helper/DebugFormatterHelper.php
usr/bin/wp/vendor/symfony/console/Helper/DescriptorHelper.php
usr/bin/wp/vendor/symfony/console/Helper/FormatterHelper.php
usr/bin/wp/vendor/symfony/console/Helper/Helper.php
usr/bin/wp/vendor/symfony/console/Helper/HelperInterface.php
usr/bin/wp/vendor/symfony/console/Helper/HelperSet.php
usr/bin/wp/vendor/symfony/console/Helper/InputAwareHelper.php
usr/bin/wp/vendor/symfony/console/Helper/ProcessHelper.php
usr/bin/wp/vendor/symfony/console/Helper/ProgressBar.php
usr/bin/wp/vendor/symfony/console/Helper/ProgressIndicator.php
usr/bin/wp/vendor/symfony/console/Helper/QuestionHelper.php
usr/bin/wp/vendor/symfony/console/Helper/SymfonyQuestionHelper.php
usr/bin/wp/vendor/symfony/console/Helper/Table.php
usr/bin/wp/vendor/symfony/console/Helper/TableCell.php
usr/bin/wp/vendor/symfony/console/Helper/TableSeparator.php
usr/bin/wp/vendor/symfony/console/Helper/TableStyle.php
usr/bin/wp/vendor/symfony/console/Input
usr/bin/wp/vendor/symfony/console/Input/ArgvInput.php
usr/bin/wp/vendor/symfony/console/Input/ArrayInput.php
usr/bin/wp/vendor/symfony/console/Input/Input.php
usr/bin/wp/vendor/symfony/console/Input/InputArgument.php
usr/bin/wp/vendor/symfony/console/Input/InputAwareInterface.php
usr/bin/wp/vendor/symfony/console/Input/InputDefinition.php
usr/bin/wp/vendor/symfony/console/Input/InputInterface.php
usr/bin/wp/vendor/symfony/console/Input/InputOption.php
usr/bin/wp/vendor/symfony/console/Input/StreamableInputInterface.php
usr/bin/wp/vendor/symfony/console/Input/StringInput.php
usr/bin/wp/vendor/symfony/console/Logger
usr/bin/wp/vendor/symfony/console/Logger/ConsoleLogger.php
usr/bin/wp/vendor/symfony/console/Output
usr/bin/wp/vendor/symfony/console/Output/BufferedOutput.php
usr/bin/wp/vendor/symfony/console/Output/ConsoleOutput.php
usr/bin/wp/vendor/symfony/console/Output/ConsoleOutputInterface.php
usr/bin/wp/vendor/symfony/console/Output/NullOutput.php
usr/bin/wp/vendor/symfony/console/Output/Output.php
usr/bin/wp/vendor/symfony/console/Output/OutputInterface.php
usr/bin/wp/vendor/symfony/console/Output/StreamOutput.php
usr/bin/wp/vendor/symfony/console/Question
usr/bin/wp/vendor/symfony/console/Question/ChoiceQuestion.php
usr/bin/wp/vendor/symfony/console/Question/ConfirmationQuestion.php
usr/bin/wp/vendor/symfony/console/Question/Question.php
usr/bin/wp/vendor/symfony/console/Style
usr/bin/wp/vendor/symfony/console/Style/OutputStyle.php
usr/bin/wp/vendor/symfony/console/Style/StyleInterface.php
usr/bin/wp/vendor/symfony/console/Style/SymfonyStyle.php
usr/bin/wp/vendor/symfony/console/Terminal.php
usr/bin/wp/vendor/symfony/console/Tester
usr/bin/wp/vendor/symfony/console/Tester/ApplicationTester.php
usr/bin/wp/vendor/symfony/console/Tester/CommandTester.php
usr/bin/wp/vendor/symfony/filesystem
usr/bin/wp/vendor/symfony/filesystem/Exception
usr/bin/wp/vendor/symfony/filesystem/Exception/ExceptionInterface.php
usr/bin/wp/vendor/symfony/filesystem/Exception/FileNotFoundException.php
usr/bin/wp/vendor/symfony/filesystem/Exception/IOException.php
usr/bin/wp/vendor/symfony/filesystem/Exception/IOExceptionInterface.php
usr/bin/wp/vendor/symfony/filesystem/Filesystem.php
usr/bin/wp/vendor/symfony/filesystem/LockHandler.php
usr/bin/wp/vendor/symfony/finder
usr/bin/wp/vendor/symfony/finder/Comparator
usr/bin/wp/vendor/symfony/finder/Comparator/Comparator.php
usr/bin/wp/vendor/symfony/finder/Comparator/DateComparator.php
usr/bin/wp/vendor/symfony/finder/Comparator/NumberComparator.php
usr/bin/wp/vendor/symfony/finder/Exception
usr/bin/wp/vendor/symfony/finder/Exception/AccessDeniedException.php
usr/bin/wp/vendor/symfony/finder/Exception/ExceptionInterface.php
usr/bin/wp/vendor/symfony/finder/Finder.php
usr/bin/wp/vendor/symfony/finder/Glob.php
usr/bin/wp/vendor/symfony/finder/Iterator
usr/bin/wp/vendor/symfony/finder/Iterator/CustomFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/FilenameFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/FilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/PathFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php
usr/bin/wp/vendor/symfony/finder/Iterator/SortableIterator.php
usr/bin/wp/vendor/symfony/finder/SplFileInfo.php
usr/bin/wp/vendor/symfony/polyfill-ctype
usr/bin/wp/vendor/symfony/polyfill-ctype/Ctype.php
usr/bin/wp/vendor/symfony/polyfill-ctype/bootstrap.php
usr/bin/wp/vendor/symfony/polyfill-mbstring
usr/bin/wp/vendor/symfony/polyfill-mbstring/Mbstring.php
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources/unidata
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
usr/bin/wp/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
usr/bin/wp/vendor/symfony/polyfill-mbstring/bootstrap.php
usr/bin/wp/vendor/symfony/process
usr/bin/wp/vendor/symfony/process/Exception
usr/bin/wp/vendor/symfony/process/Exception/ExceptionInterface.php
usr/bin/wp/vendor/symfony/process/Exception/InvalidArgumentException.php
usr/bin/wp/vendor/symfony/process/Exception/LogicException.php
usr/bin/wp/vendor/symfony/process/Exception/ProcessFailedException.php
usr/bin/wp/vendor/symfony/process/Exception/ProcessTimedOutException.php
usr/bin/wp/vendor/symfony/process/Exception/RuntimeException.php
usr/bin/wp/vendor/symfony/process/ExecutableFinder.php
usr/bin/wp/vendor/symfony/process/InputStream.php
usr/bin/wp/vendor/symfony/process/PhpExecutableFinder.php
usr/bin/wp/vendor/symfony/process/PhpProcess.php
usr/bin/wp/vendor/symfony/process/Pipes
usr/bin/wp/vendor/symfony/process/Pipes/AbstractPipes.php
usr/bin/wp/vendor/symfony/process/Pipes/PipesInterface.php
usr/bin/wp/vendor/symfony/process/Pipes/UnixPipes.php
usr/bin/wp/vendor/symfony/process/Pipes/WindowsPipes.php
usr/bin/wp/vendor/symfony/process/Process.php
usr/bin/wp/vendor/symfony/process/ProcessBuilder.php
usr/bin/wp/vendor/symfony/process/ProcessUtils.php
usr/bin/wp/vendor/wp-cli
usr/bin/wp/vendor/wp-cli/cache-command
usr/bin/wp/vendor/wp-cli/cache-command/cache-command.php
usr/bin/wp/vendor/wp-cli/cache-command/src
usr/bin/wp/vendor/wp-cli/cache-command/src/Cache_Command.php
usr/bin/wp/vendor/wp-cli/cache-command/src/Transient_Command.php
usr/bin/wp/vendor/wp-cli/checksum-command
usr/bin/wp/vendor/wp-cli/checksum-command/checksum-command.php
usr/bin/wp/vendor/wp-cli/checksum-command/src
usr/bin/wp/vendor/wp-cli/checksum-command/src/Checksum_Base_Command.php
usr/bin/wp/vendor/wp-cli/checksum-command/src/Checksum_Core_Command.php
usr/bin/wp/vendor/wp-cli/checksum-command/src/Checksum_Plugin_Command.php
usr/bin/wp/vendor/wp-cli/checksum-command/src/Core_Command_Namespace.php
usr/bin/wp/vendor/wp-cli/checksum-command/src/Plugin_Command_Namespace.php
usr/bin/wp/vendor/wp-cli/checksum-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/checksum-command/src/WP_CLI/Fetchers
usr/bin/wp/vendor/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php
usr/bin/wp/vendor/wp-cli/config-command
usr/bin/wp/vendor/wp-cli/config-command/config-command.php
usr/bin/wp/vendor/wp-cli/config-command/src
usr/bin/wp/vendor/wp-cli/config-command/src/Config_Command.php
usr/bin/wp/vendor/wp-cli/config-command/templates
usr/bin/wp/vendor/wp-cli/config-command/templates/wp-config.mustache
usr/bin/wp/vendor/wp-cli/core-command
usr/bin/wp/vendor/wp-cli/core-command/core-command.php
usr/bin/wp/vendor/wp-cli/core-command/src
usr/bin/wp/vendor/wp-cli/core-command/src/Core_Command.php
usr/bin/wp/vendor/wp-cli/core-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/core-command/src/WP_CLI/Core
usr/bin/wp/vendor/wp-cli/core-command/src/WP_CLI/Core/CoreUpgrader.php
usr/bin/wp/vendor/wp-cli/core-command/src/WP_CLI/Core/NonDestructiveCoreUpgrader.php
usr/bin/wp/vendor/wp-cli/core-command/templates
usr/bin/wp/vendor/wp-cli/core-command/templates/versions.mustache
usr/bin/wp/vendor/wp-cli/cron-command
usr/bin/wp/vendor/wp-cli/cron-command/cron-command.php
usr/bin/wp/vendor/wp-cli/cron-command/src
usr/bin/wp/vendor/wp-cli/cron-command/src/Cron_Command.php
usr/bin/wp/vendor/wp-cli/cron-command/src/Cron_Event_Command.php
usr/bin/wp/vendor/wp-cli/cron-command/src/Cron_Schedule_Command.php
usr/bin/wp/vendor/wp-cli/db-command
usr/bin/wp/vendor/wp-cli/db-command/db-command.php
usr/bin/wp/vendor/wp-cli/db-command/src
usr/bin/wp/vendor/wp-cli/db-command/src/DB_Command.php
usr/bin/wp/vendor/wp-cli/embed-command
usr/bin/wp/vendor/wp-cli/embed-command/embed-command.php
usr/bin/wp/vendor/wp-cli/embed-command/src
usr/bin/wp/vendor/wp-cli/embed-command/src/Cache_Command.php
usr/bin/wp/vendor/wp-cli/embed-command/src/Embeds_Namespace.php
usr/bin/wp/vendor/wp-cli/embed-command/src/Fetch_Command.php
usr/bin/wp/vendor/wp-cli/embed-command/src/Handler_Command.php
usr/bin/wp/vendor/wp-cli/embed-command/src/Provider_Command.php
usr/bin/wp/vendor/wp-cli/embed-command/src/oEmbed.php
usr/bin/wp/vendor/wp-cli/entity-command
usr/bin/wp/vendor/wp-cli/entity-command/entity-command.php
usr/bin/wp/vendor/wp-cli/entity-command/src
usr/bin/wp/vendor/wp-cli/entity-command/src/Comment_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Comment_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Menu_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Menu_Item_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Menu_Location_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Network_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Network_Namespace.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Option_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Post_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Post_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Post_Term_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Post_Type_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Site_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Site_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Site_Option_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Taxonomy_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Term_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/Term_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/User_Application_Password_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/User_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/User_Meta_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/User_Session_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/User_Term_Command.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/Entity
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php
usr/bin/wp/vendor/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php
usr/bin/wp/vendor/wp-cli/eval-command
usr/bin/wp/vendor/wp-cli/eval-command/eval-command.php
usr/bin/wp/vendor/wp-cli/eval-command/src
usr/bin/wp/vendor/wp-cli/eval-command/src/EvalFile_Command.php
usr/bin/wp/vendor/wp-cli/eval-command/src/Eval_Command.php
usr/bin/wp/vendor/wp-cli/export-command
usr/bin/wp/vendor/wp-cli/export-command/export-command.php
usr/bin/wp/vendor/wp-cli/export-command/functions.php
usr/bin/wp/vendor/wp-cli/export-command/src
usr/bin/wp/vendor/wp-cli/export-command/src/Export_Command.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Base_Writer.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Exception.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_File_Writer.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Oxymel.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Query.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Returner.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_Term_Exception.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_WXR_Formatter.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Iterator_Exception.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Map_Iterator.php
usr/bin/wp/vendor/wp-cli/export-command/src/WP_Post_IDs_Iterator.php
usr/bin/wp/vendor/wp-cli/extension-command
usr/bin/wp/vendor/wp-cli/extension-command/extension-command.php
usr/bin/wp/vendor/wp-cli/extension-command/src
usr/bin/wp/vendor/wp-cli/extension-command/src/Plugin_AutoUpdates_Command.php
usr/bin/wp/vendor/wp-cli/extension-command/src/Plugin_Command.php
usr/bin/wp/vendor/wp-cli/extension-command/src/Theme_AutoUpdates_Command.php
usr/bin/wp/vendor/wp-cli/extension-command/src/Theme_Command.php
usr/bin/wp/vendor/wp-cli/extension-command/src/Theme_Mod_Command.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/Fetchers
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/ParsePluginNameInput.php
usr/bin/wp/vendor/wp-cli/extension-command/src/WP_CLI/ParseThemeNameInput.php
usr/bin/wp/vendor/wp-cli/extension-command/templates
usr/bin/wp/vendor/wp-cli/extension-command/templates/plugin-status.mustache
usr/bin/wp/vendor/wp-cli/extension-command/templates/theme-status.mustache
usr/bin/wp/vendor/wp-cli/i18n-command
usr/bin/wp/vendor/wp-cli/i18n-command/i18n-command.php
usr/bin/wp/vendor/wp-cli/i18n-command/src
usr/bin/wp/vendor/wp-cli/i18n-command/src/BladeCodeExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/BladeGettextExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/BlockExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/CommandNamespace.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/FileDataExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/IterableCodeExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/JedGenerator.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/JsCodeExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/JsFunctionsScanner.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/JsonSchemaExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/MakeJsonCommand.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/MakeMoCommand.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/MakePotCommand.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/MapCodeExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/PhpCodeExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/PhpFunctionsScanner.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/PotGenerator.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/ThemeJsonExtractor.php
usr/bin/wp/vendor/wp-cli/i18n-command/src/UpdatePoCommand.php
usr/bin/wp/vendor/wp-cli/import-command
usr/bin/wp/vendor/wp-cli/import-command/import-command.php
usr/bin/wp/vendor/wp-cli/import-command/src
usr/bin/wp/vendor/wp-cli/import-command/src/Import_Command.php
usr/bin/wp/vendor/wp-cli/language-command
usr/bin/wp/vendor/wp-cli/language-command/language-command.php
usr/bin/wp/vendor/wp-cli/language-command/src
usr/bin/wp/vendor/wp-cli/language-command/src/Core_Language_Command.php
usr/bin/wp/vendor/wp-cli/language-command/src/Language_Namespace.php
usr/bin/wp/vendor/wp-cli/language-command/src/Plugin_Language_Command.php
usr/bin/wp/vendor/wp-cli/language-command/src/Site_Switch_Language_Command.php
usr/bin/wp/vendor/wp-cli/language-command/src/Theme_Language_Command.php
usr/bin/wp/vendor/wp-cli/language-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php
usr/bin/wp/vendor/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php
usr/bin/wp/vendor/wp-cli/maintenance-mode-command
usr/bin/wp/vendor/wp-cli/maintenance-mode-command/maintenance-mode-command.php
usr/bin/wp/vendor/wp-cli/maintenance-mode-command/src
usr/bin/wp/vendor/wp-cli/maintenance-mode-command/src/MaintenanceModeCommand.php
usr/bin/wp/vendor/wp-cli/media-command
usr/bin/wp/vendor/wp-cli/media-command/media-command.php
usr/bin/wp/vendor/wp-cli/media-command/src
usr/bin/wp/vendor/wp-cli/media-command/src/Media_Command.php
usr/bin/wp/vendor/wp-cli/mustangostang-spyc
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/Spyc.php
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/includes
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/includes/functions.php
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/php4
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/php4/5to4.php
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/php4/spyc.php4
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/php4/test.php4
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/src
usr/bin/wp/vendor/wp-cli/mustangostang-spyc/src/Spyc.php
usr/bin/wp/vendor/wp-cli/package-command
usr/bin/wp/vendor/wp-cli/package-command/package-command.php
usr/bin/wp/vendor/wp-cli/package-command/src
usr/bin/wp/vendor/wp-cli/package-command/src/Package_Command.php
usr/bin/wp/vendor/wp-cli/package-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/package-command/src/WP_CLI/JsonManipulator.php
usr/bin/wp/vendor/wp-cli/php-cli-tools
usr/bin/wp/vendor/wp-cli/php-cli-tools/http-console.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Arguments.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Colors.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Memoize.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Notify.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Progress.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Shell.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Streams.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Table.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/Tree.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/arguments
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/cli.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/notify
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/notify/Dots.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/progress
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/progress/Bar.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/table
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/table/Ascii.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/table/Renderer.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/table/Tabular.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/tree
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/unicode
usr/bin/wp/vendor/wp-cli/php-cli-tools/lib/cli/unicode/regex.php
usr/bin/wp/vendor/wp-cli/php-cli-tools/test.php
usr/bin/wp/vendor/wp-cli/rewrite-command
usr/bin/wp/vendor/wp-cli/rewrite-command/rewrite-command.php
usr/bin/wp/vendor/wp-cli/rewrite-command/src
usr/bin/wp/vendor/wp-cli/rewrite-command/src/Rewrite_Command.php
usr/bin/wp/vendor/wp-cli/role-command
usr/bin/wp/vendor/wp-cli/role-command/role-command.php
usr/bin/wp/vendor/wp-cli/role-command/src
usr/bin/wp/vendor/wp-cli/role-command/src/Capabilities_Command.php
usr/bin/wp/vendor/wp-cli/role-command/src/Role_Command.php
usr/bin/wp/vendor/wp-cli/scaffold-command
usr/bin/wp/vendor/wp-cli/scaffold-command/scaffold-command.php
usr/bin/wp/vendor/wp-cli/scaffold-command/src
usr/bin/wp/vendor/wp-cli/scaffold-command/src/Scaffold_Command.php
usr/bin/wp/vendor/wp-cli/scaffold-command/templates
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/.editorconfig
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/.phpcs.xml.dist
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/block-editor-css.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/block-index-js.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/block-php.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/block-style-css.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/child_theme.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/child_theme_functions.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/install-wp-tests.sh
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/phpunit.xml.dist
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-bitbucket.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-bootstrap.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-circle.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-distignore.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-gitignore.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-gitlab.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-gruntfile.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-packages.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-readme.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-test-sample.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin-travis.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/plugin.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/post_type.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/post_type_extended.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/taxonomy.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/taxonomy_extended.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/theme-bootstrap.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/theme-status.mustache
usr/bin/wp/vendor/wp-cli/scaffold-command/templates/theme-test-sample.mustache
usr/bin/wp/vendor/wp-cli/search-replace-command
usr/bin/wp/vendor/wp-cli/search-replace-command/search-replace-command.php
usr/bin/wp/vendor/wp-cli/search-replace-command/src
usr/bin/wp/vendor/wp-cli/search-replace-command/src/Search_Replace_Command.php
usr/bin/wp/vendor/wp-cli/search-replace-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php
usr/bin/wp/vendor/wp-cli/server-command
usr/bin/wp/vendor/wp-cli/server-command/router.php
usr/bin/wp/vendor/wp-cli/server-command/server-command.php
usr/bin/wp/vendor/wp-cli/server-command/src
usr/bin/wp/vendor/wp-cli/server-command/src/Server_Command.php
usr/bin/wp/vendor/wp-cli/shell-command
usr/bin/wp/vendor/wp-cli/shell-command/shell-command.php
usr/bin/wp/vendor/wp-cli/shell-command/src
usr/bin/wp/vendor/wp-cli/shell-command/src/Shell_Command.php
usr/bin/wp/vendor/wp-cli/shell-command/src/WP_CLI
usr/bin/wp/vendor/wp-cli/shell-command/src/WP_CLI/Shell
usr/bin/wp/vendor/wp-cli/shell-command/src/WP_CLI/Shell/REPL.php
usr/bin/wp/vendor/wp-cli/super-admin-command
usr/bin/wp/vendor/wp-cli/super-admin-command/src
usr/bin/wp/vendor/wp-cli/super-admin-command/src/Super_Admin_Command.php
usr/bin/wp/vendor/wp-cli/super-admin-command/super-admin-command.php
usr/bin/wp/vendor/wp-cli/widget-command
usr/bin/wp/vendor/wp-cli/widget-command/src
usr/bin/wp/vendor/wp-cli/widget-command/src/Sidebar_Command.php
usr/bin/wp/vendor/wp-cli/widget-command/src/Widget_Command.php
usr/bin/wp/vendor/wp-cli/widget-command/widget-command.php
usr/bin/wp/vendor/wp-cli/wp-cli
usr/bin/wp/vendor/wp-cli/wp-cli/COMPOSER_VERSIONS
usr/bin/wp/vendor/wp-cli/wp-cli/VERSION
usr/bin/wp/vendor/wp-cli/wp-cli/bundle
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/certificates
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/certificates/cacert.pem
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/library
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/library/Deprecated.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/library/Requests.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Auth
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Auth/Basic.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Auth.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Autoload.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Capability.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Cookie
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Cookie/Jar.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Cookie.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/ArgumentCount.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status304.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status305.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status306.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status400.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status401.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status402.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status403.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status404.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status405.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status406.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status407.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status408.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status409.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status410.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status411.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status412.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status413.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status414.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status415.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status416.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status417.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status418.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status428.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status429.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status431.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status500.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status501.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status502.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status503.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status504.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status505.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/Status511.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http/StatusUnknown.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Http.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/InvalidArgument.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Transport
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Transport/Curl.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception/Transport.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Exception.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/HookManager.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Hooks.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/IdnaEncoder.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Ipv6.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Iri.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Port.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Proxy
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Proxy/Http.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Proxy.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Requests.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Response
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Response/Headers.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Response.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Session.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Ssl.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport/Curl.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport/Fsockopen.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Transport.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility/CaseInsensitiveDictionary.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility/FilteredIterator.php
usr/bin/wp/vendor/wp-cli/wp-cli/bundle/rmccue/requests/src/Utility/InputValidator.php
usr/bin/wp/vendor/wp-cli/wp-cli/php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Autoloader.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareFallbackFunctions.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeRequestsAutoloader.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeContexts.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadExecCommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat/FeedbackMethodTrait.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat/Min_PHP_5_4
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat/Min_PHP_5_4/FeedbackMethodTrait.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat/Min_PHP_5_6
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Compat/Min_PHP_5_6/FeedbackMethodTrait.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Completions.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Configurator.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Admin.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Auto.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Cli.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context/Frontend.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Context.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/ContextManager.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/DocParser.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/ExitException.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Extractor.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Comment.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Post.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/Site.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Fetchers/User.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/FileCache.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Formatter.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Inflector.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/NoOp.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Process.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/RequestsLibrary.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/Runner.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/WP_CLI/WpOrgApi.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/boot-fs.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/bootstrap.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/class-wp-cli-command.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/class-wp-cli.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/cli.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/help.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/src
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/src/CLI_Alias_Command.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/src/CLI_Cache_Command.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/src/CLI_Command.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/commands/src/Help_Command.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/compat.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/config-spec.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/dispatcher.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/fallback-functions.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/utils-wp.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/utils.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/wp-cli.php
usr/bin/wp/vendor/wp-cli/wp-cli/php/wp-settings-cli.php
usr/bin/wp/vendor/wp-cli/wp-cli/templates
usr/bin/wp/vendor/wp-cli/wp-cli/templates/man-params.mustache
usr/bin/wp/vendor/wp-cli/wp-cli/templates/man.mustache
usr/bin/wp/vendor/wp-cli/wp-cli/utils
usr/bin/wp/vendor/wp-cli/wp-cli/utils/contrib-list.php
usr/bin/wp/vendor/wp-cli/wp-cli/utils/find-php
usr/bin/wp/vendor/wp-cli/wp-cli/utils/get-package-require-from-composer.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests
usr/bin/wp/vendor/wp-cli/wp-cli-tests/bin
usr/bin/wp/vendor/wp-cli/wp-cli-tests/bin/run-php-unit-tests
usr/bin/wp/vendor/wp-cli/wp-cli-tests/bin/run-phpcbf-cleanup
usr/bin/wp/vendor/wp-cli/wp-cli-tests/bin/run-phpcs-tests
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context/FeatureContext.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context/GivenStepDefinitions.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context/Support.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context/ThenStepDefinitions.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/src/Context/WhenStepDefinitions.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/utils
usr/bin/wp/vendor/wp-cli/wp-cli-tests/utils/no-mail.php
usr/bin/wp/vendor/wp-cli/wp-cli-tests/utils/polyfills.php
usr/bin/wp/vendor/wp-cli/wp-config-transformer
usr/bin/wp/vendor/wp-cli/wp-config-transformer/src
usr/bin/wp/vendor/wp-cli/wp-config-transformer/src/WPConfigTransformer.php
</pre>


I've looked at a random file (usr/bin/wp/vendor/wp-cli/wp-config-transformer/src/WPConfigTransformer.php) and the source code is perfectly readable so it does not look transformed in any way.

It is possible to build wp-cli from source, and there is a tutorial for that here: https://make.wordpress.org/cli/handbook/contributions/pull-requests/#setting-up

Do we need to remove wp-cli because it's not built from source or is the fact that it provide source code sufficient?

Back