├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── integrate.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── Containerfile ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── concept.md ├── conf ├── auth.skeleton.xml ├── auth.xsd ├── pgp-keyservers.php ├── pharBat.template └── phive.skeleton.xml ├── phive ├── phive.bat ├── phive.xml ├── phpcs.xml ├── phpdox.xml.dist ├── phpstan.neon ├── phpstorm.xml ├── phpunit.regression.xml ├── phpunit.xml.dist ├── psalm.deadcode.xml ├── psalm.xml ├── src ├── Factory.php ├── GithubAliasResolverException.php ├── PhiveContext.php ├── autoload.php ├── commands │ ├── CommandLocator.php │ ├── composer │ │ ├── ComposerCommand.php │ │ ├── ComposerCommandConfig.php │ │ ├── ComposerContext.php │ │ └── ComposerService.php │ ├── default │ │ ├── DefaultCommand.php │ │ └── DefaultCommandConfig.php │ ├── help │ │ ├── HelpCommand.php │ │ └── help.md │ ├── install │ │ ├── InstallCommand.php │ │ ├── InstallCommandConfig.php │ │ ├── InstallCommandConfigException.php │ │ └── InstallContext.php │ ├── list │ │ └── ListCommand.php │ ├── migrate │ │ ├── MigrateCommand.php │ │ ├── MigrateCommandConfig.php │ │ └── MigrateContext.php │ ├── outdated │ │ ├── OutdatedCommand.php │ │ ├── OutdatedConfig.php │ │ ├── OutdatedConfigException.php │ │ └── OutdatedContext.php │ ├── purge │ │ ├── PurgeCommand.php │ │ └── PurgeContext.php │ ├── remove │ │ ├── RemoveCommand.php │ │ ├── RemoveCommandConfig.php │ │ └── RemoveContext.php │ ├── reset │ │ ├── ResetCommand.php │ │ ├── ResetCommandConfig.php │ │ └── ResetContext.php │ ├── selfupdate │ │ └── SelfupdateCommand.php │ ├── skel │ │ ├── SkelCommand.php │ │ ├── SkelCommandConfig.php │ │ └── SkelContext.php │ ├── status │ │ ├── StatusCommand.php │ │ ├── StatusCommandConfig.php │ │ └── StatusContext.php │ ├── update-repository-list │ │ └── UpdateRepositoryListCommand.php │ ├── update │ │ ├── UpdateCommand.php │ │ ├── UpdateCommandConfig.php │ │ └── UpdateContext.php │ └── version │ │ └── VersionCommand.php ├── services │ ├── checksum │ │ └── ChecksumService.php │ ├── key │ │ ├── KeyDownloader.php │ │ ├── KeyImportResult.php │ │ ├── KeyImporter.php │ │ ├── KeyService.php │ │ ├── PublicKey.php │ │ ├── TrustedCollection.php │ │ └── gpg │ │ │ ├── GnupgKeyDownloader.php │ │ │ ├── GnupgKeyImporter.php │ │ │ └── PublicKeyReader.php │ ├── migration │ │ ├── FileMigration.php │ │ ├── HomePharsXmlMigration.php │ │ ├── HomePhiveXmlMigration.php │ │ ├── InternalFileMigration.php │ │ ├── Migration.php │ │ ├── MigrationFactory.php │ │ ├── MigrationService.php │ │ ├── ProjectPhiveXmlMigration.php │ │ └── UserFileMigration.php │ ├── phar │ │ ├── CompatibilityService.php │ │ ├── InstallService.php │ │ ├── PharDownloader.php │ │ ├── PharInstaller.php │ │ ├── PharInstallerFactory.php │ │ ├── PharInstallerLocator.php │ │ ├── PharService.php │ │ ├── ReleaseSelector.php │ │ ├── RemovalService.php │ │ ├── UnixoidPharInstaller.php │ │ └── WindowsPharInstaller.php │ ├── resolver │ │ ├── AbstractRequestedPharResolver.php │ │ ├── DirectUrlResolver.php │ │ ├── GithubAliasResolver.php │ │ ├── GitlabAliasResolver.php │ │ ├── LocalAliasResolver.php │ │ ├── PharIoAliasResolver.php │ │ ├── RequestedPharResolver.php │ │ ├── RequestedPharResolverFactory.php │ │ ├── RequestedPharResolverService.php │ │ ├── RequestedPharResolverServiceBuilder.php │ │ └── strategy │ │ │ ├── AbstractResolvingStrategy.php │ │ │ ├── LocalFirstResolvingStrategy.php │ │ │ ├── RemoteFirstResolvingStrategy.php │ │ │ └── ResolvingStrategy.php │ └── signature │ │ ├── SignatureVerifier.php │ │ ├── VerificationResult.php │ │ └── gpg │ │ ├── GnupgSignatureVerifier.php │ │ └── GnupgVerificationResult.php └── shared │ ├── ComposerAlias.php │ ├── FileDownloaderException.php │ ├── Git.php │ ├── GnuPG.php │ ├── JsonData.php │ ├── PharRegistry.php │ ├── TargetDirectoryLocator.php │ ├── Url.php │ ├── XmlFile.php │ ├── cli │ ├── Command.php │ ├── CommandLocator.php │ ├── CommandLocatorException.php │ ├── CommandOptionsException.php │ ├── Context.php │ ├── ContextException.php │ ├── GeneralContext.php │ ├── Options.php │ ├── Request.php │ ├── RequestException.php │ ├── Runner.php │ ├── RunnerException.php │ ├── error.txt │ ├── input │ │ ├── ConsoleInput.php │ │ └── Input.php │ └── output │ │ ├── ColoredConsoleOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleTable.php │ │ ├── Output.php │ │ ├── OutputFactory.php │ │ └── OutputLocator.php │ ├── config │ ├── AuthConfig.php │ ├── AuthXmlConfig.php │ ├── AuthXmlConfigFileLocator.php │ ├── CompositeAuthConfig.php │ ├── Config.php │ ├── EnvironmentAuthConfig.php │ ├── GlobalPhiveXmlConfig.php │ ├── LocalPhiveXmlConfig.php │ ├── PhiveXmlConfig.php │ └── PhiveXmlConfigFileLocator.php │ ├── download │ └── FileDownloader.php │ ├── environment │ ├── Environment.php │ ├── EnvironmentLocator.php │ ├── UnixoidEnvironment.php │ └── WindowsEnvironment.php │ ├── exceptions │ ├── AuthException.php │ ├── ConfigException.php │ ├── CurlConfigException.php │ ├── CurlException.php │ ├── DownloadFailedException.php │ ├── EnvironmentException.php │ ├── ErrorException.php │ ├── Exception.php │ ├── ExecutorException.php │ ├── FeatureMissingException.php │ ├── FileNotWritableException.php │ ├── GitException.php │ ├── GnupgKeyDownloaderException.php │ ├── IOException.php │ ├── InstallationFailedException.php │ ├── InvalidHashException.php │ ├── InvalidXmlException.php │ ├── LinkCreationFailedException.php │ ├── MigrationException.php │ ├── MigrationsFailedException.php │ ├── NoGPGBinaryFoundException.php │ ├── NotFoundException.php │ ├── PharException.php │ ├── PharInstallerException.php │ ├── PharRegistryException.php │ ├── PublicKeyException.php │ ├── ReleaseException.php │ ├── ResolveException.php │ ├── SourcesListException.php │ ├── UnsupportedVersionConstraintException.php │ └── VerificationFailedException.php │ ├── executor │ ├── Executor.php │ └── ExecutorResult.php │ ├── hash │ ├── BaseHash.php │ ├── Hash.php │ └── sha │ │ ├── Sha1Hash.php │ │ ├── Sha256Hash.php │ │ ├── Sha384Hash.php │ │ └── Sha512Hash.php │ ├── http │ ├── Authentication.php │ ├── CacheBackend.php │ ├── Curl.php │ ├── CurlConfig.php │ ├── CurlConfigBuilder.php │ ├── CurlHttpClient.php │ ├── ETag.php │ ├── FileStorageCacheBackend.php │ ├── HttpClient.php │ ├── HttpException.php │ ├── HttpProgressHandler.php │ ├── HttpProgressRenderer.php │ ├── HttpProgressUpdate.php │ ├── HttpResponse.php │ ├── HttpResponseException.php │ ├── LocalSslCertificate.php │ ├── RateLimit.php │ ├── RetryingHttpClient.php │ ├── RingdownCurlHttpClient.php │ └── authentication │ │ ├── BasicAuthentication.php │ │ ├── BearerAuthentication.php │ │ └── TokenAuthentication.php │ ├── phar │ ├── ConfiguredPhar.php │ ├── ConfiguredPharException.php │ ├── InstalledPhar.php │ ├── Phar.php │ ├── PharAlias.php │ ├── PharIdentifier.php │ ├── PharUrl.php │ ├── Release.php │ ├── ReleaseCollection.php │ ├── RequestedPhar.php │ ├── SupportedRelease.php │ ├── UnsupportedRelease.php │ └── UsedPhar.php │ ├── repository │ ├── GithubRepository.php │ ├── GitlabRepository.php │ ├── LocalRepository.php │ ├── PharIoRepository.php │ ├── SourceRepository.php │ └── UrlRepository.php │ ├── sources │ ├── LocalSourcesListFileLoader.php │ ├── RemoteSourcesListFileLoader.php │ ├── Source.php │ ├── SourcesList.php │ └── SourcesListFileLoader.php │ └── version │ ├── GitAwarePhiveVersion.php │ ├── PhiveVersion.php │ └── StaticPhiveVersion.php ├── tests ├── autoload.php ├── bootstrap.php ├── data │ ├── directory │ │ └── file │ ├── github │ │ └── releases.json │ ├── phars │ │ ├── phploc-2.0.6.phar │ │ ├── phploc-2.0.6.phar.asc │ │ ├── phpunit-4.5.0.phar │ │ └── phpunit-4.5.0.phar.asc │ └── repositories.xml ├── regression │ ├── InstallCommandTest.php │ ├── PurgeCommandTest.php │ ├── RegressionTestBootstrap.php │ ├── RegressionTestCase.php │ ├── RemoveCommandTest.php │ ├── UpdateCommandTest.php │ ├── VersionCommandTest.php │ ├── bootstrap.php │ └── fixtures │ │ ├── phive-home │ │ ├── gpg │ │ │ ├── pubring.gpg │ │ │ ├── pubring.gpg~ │ │ │ ├── secring.gpg │ │ │ └── trustdb.gpg │ │ └── repositories.xml │ │ ├── removeCommandTest │ │ └── phive.xml │ │ ├── repository │ │ └── phpunit │ │ │ └── phive.xml │ │ └── updateCommandTest │ │ └── phive.xml └── unit │ ├── CommandLocatorTest.php │ ├── FactoryTest.php │ ├── PhiveContextTest.php │ ├── ScalarTestDataProvider.php │ ├── TestStreamWrapper.php │ ├── commands │ ├── TargetDirectoryLocatorTest.php │ ├── composer │ │ ├── ComposerCommandConfigTest.php │ │ ├── ComposerCommandTest.php │ │ ├── ComposerServiceTest.php │ │ └── fixtures │ │ │ └── composer.json │ ├── default │ │ ├── DefaultCommandConfigTest.php │ │ └── DefaultCommandTest.php │ ├── help │ │ └── HelpCommandTest.php │ ├── install │ │ └── InstallCommandConfigTest.php │ ├── list │ │ └── ListCommandTest.php │ ├── purge │ │ └── PurgeCommandTest.php │ ├── remove │ │ └── RemoveCommandConfigTest.php │ ├── reset │ │ ├── ResetCommandConfigTest.php │ │ └── ResetCommandTest.php │ ├── skel │ │ └── SkelCommandConfigTest.php │ └── update │ │ └── UpdateCommandConfigTest.php │ ├── services │ ├── checksum │ │ ├── ChecksumServiceTest.php │ │ └── stubs │ │ │ └── UnsupportedHashStub.php │ ├── key │ │ ├── KeyImportResultTest.php │ │ ├── KeyServiceTest.php │ │ └── gpg │ │ │ ├── GnupgKeyDownloaderTest.php │ │ │ └── GnupgKeyImporterTest.php │ ├── migration │ │ ├── HomePharsXmlMigrationTest.php │ │ ├── HomePhiveXmlMigrationTest.php │ │ ├── MigrationMocks.php │ │ └── ProjectPhiveXmlMigrationTest.php │ ├── phar │ │ ├── PharDownloaderTest.php │ │ ├── PharIoAliasResolverTest.php │ │ ├── PharServiceTest.php │ │ ├── UnixoidPharInstallerTest.php │ │ └── WindowsPharInstallerTest.php │ └── signature │ │ └── gpg │ │ ├── GnupgSignatureVerifierTest.php │ │ └── GnupgVerificationResultTest.php │ └── shared │ ├── ComposerAliasTest.php │ ├── JsonDataTest.php │ ├── PharRegistryTest.php │ ├── SourcesListTest.php │ ├── UrlTest.php │ ├── XmlFileTest.php │ ├── cli │ ├── ConsoleInputTest.php │ ├── OptionsTest.php │ └── output │ │ └── OutputLocatorTest.php │ ├── config │ ├── AuthXmlConfigFileLocatorTest.php │ ├── AuthXmlConfigTest.php │ ├── CompositeAuthConfigTest.php │ ├── ConfigTest.php │ ├── EnvironmentAuthConfigTest.php │ ├── LocalPhiveXmlConfigTest.php │ ├── PhiveXmlConfigFileLocatorTest.php │ └── fixtures │ │ ├── doubleConfig │ │ ├── .phive │ │ │ ├── auth.xml │ │ │ └── phars.xml │ │ ├── phive-auth.xml │ │ └── phive.xml │ │ └── phive.xml │ ├── download │ └── FileDownloaderTest.php │ ├── environment │ ├── EnvironmentLocatorTest.php │ ├── UnixoidEnvironmentTest.php │ └── WindowsEnvironmentTest.php │ ├── fixtures │ ├── file.txt │ ├── phars.xml │ ├── phars │ │ ├── phpab-1.20.0.phar.dummy │ │ ├── phpunit-4.8.6.phar.dummy │ │ ├── phpunit-4.8.7.phar.dummy │ │ ├── phpunit-4.8.9.phar.dummy │ │ └── phpunit-5.2.10.phar.dummy │ └── xmlFile.xml │ ├── hash │ └── sha │ │ ├── Sha1HashTest.php │ │ ├── Sha256HashTest.php │ │ ├── Sha384HashTest.php │ │ └── Sha512HashTest.php │ ├── http │ ├── AuthenticationTest.php │ ├── CurlConfigBuilderTest.php │ ├── CurlConfigTest.php │ ├── CurlHttpClientTest.php │ ├── ETagTest.php │ ├── HttpProgressUpdateTest.php │ ├── HttpResponseTest.php │ ├── LocalSslCertificateTest.php │ └── fixtures │ │ └── foo.pem │ ├── phar │ ├── ConfiguredPharTest.php │ ├── PharAliasTest.php │ ├── PharTest.php │ ├── ReleaseCollectionTest.php │ ├── ReleaseTest.php │ └── RequestedPharTest.php │ ├── repository │ ├── GithubRepositoryTest.php │ ├── GitlabRepositoryTest.php │ └── PharIoRepositoryTest.php │ ├── sources │ └── RemoteSourcesListFileLoaderTest.php │ └── version │ ├── GitAwarePhiveVersionTest.php │ └── StaticPhiveVersionTest.php └── tools └── php-cs-fixer.d ├── PhpdocSingleLineVarFixer.php └── header.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [theseer] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/integrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/.github/workflows/integrate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/Containerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/composer.lock -------------------------------------------------------------------------------- /concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/concept.md -------------------------------------------------------------------------------- /conf/auth.skeleton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/conf/auth.skeleton.xml -------------------------------------------------------------------------------- /conf/auth.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/conf/auth.xsd -------------------------------------------------------------------------------- /conf/pgp-keyservers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/conf/pgp-keyservers.php -------------------------------------------------------------------------------- /conf/pharBat.template: -------------------------------------------------------------------------------- 1 | @echo off 2 | php "##PHAR_FILENAME##" %* 3 | -------------------------------------------------------------------------------- /conf/phive.skeleton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/conf/phive.skeleton.xml -------------------------------------------------------------------------------- /phive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phive -------------------------------------------------------------------------------- /phive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phive.bat -------------------------------------------------------------------------------- /phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phive.xml -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpdox.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpdox.xml.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstorm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpstorm.xml -------------------------------------------------------------------------------- /phpunit.regression.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpunit.regression.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.deadcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/psalm.deadcode.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/GithubAliasResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/GithubAliasResolverException.php -------------------------------------------------------------------------------- /src/PhiveContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/PhiveContext.php -------------------------------------------------------------------------------- /src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/autoload.php -------------------------------------------------------------------------------- /src/commands/CommandLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/CommandLocator.php -------------------------------------------------------------------------------- /src/commands/composer/ComposerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/composer/ComposerCommand.php -------------------------------------------------------------------------------- /src/commands/composer/ComposerCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/composer/ComposerCommandConfig.php -------------------------------------------------------------------------------- /src/commands/composer/ComposerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/composer/ComposerContext.php -------------------------------------------------------------------------------- /src/commands/composer/ComposerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/composer/ComposerService.php -------------------------------------------------------------------------------- /src/commands/default/DefaultCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/default/DefaultCommand.php -------------------------------------------------------------------------------- /src/commands/default/DefaultCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/default/DefaultCommandConfig.php -------------------------------------------------------------------------------- /src/commands/help/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/help/HelpCommand.php -------------------------------------------------------------------------------- /src/commands/help/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/help/help.md -------------------------------------------------------------------------------- /src/commands/install/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/install/InstallCommand.php -------------------------------------------------------------------------------- /src/commands/install/InstallCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/install/InstallCommandConfig.php -------------------------------------------------------------------------------- /src/commands/install/InstallCommandConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/install/InstallCommandConfigException.php -------------------------------------------------------------------------------- /src/commands/install/InstallContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/install/InstallContext.php -------------------------------------------------------------------------------- /src/commands/list/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/list/ListCommand.php -------------------------------------------------------------------------------- /src/commands/migrate/MigrateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/migrate/MigrateCommand.php -------------------------------------------------------------------------------- /src/commands/migrate/MigrateCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/migrate/MigrateCommandConfig.php -------------------------------------------------------------------------------- /src/commands/migrate/MigrateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/migrate/MigrateContext.php -------------------------------------------------------------------------------- /src/commands/outdated/OutdatedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/outdated/OutdatedCommand.php -------------------------------------------------------------------------------- /src/commands/outdated/OutdatedConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/outdated/OutdatedConfig.php -------------------------------------------------------------------------------- /src/commands/outdated/OutdatedConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/outdated/OutdatedConfigException.php -------------------------------------------------------------------------------- /src/commands/outdated/OutdatedContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/outdated/OutdatedContext.php -------------------------------------------------------------------------------- /src/commands/purge/PurgeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/purge/PurgeCommand.php -------------------------------------------------------------------------------- /src/commands/purge/PurgeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/purge/PurgeContext.php -------------------------------------------------------------------------------- /src/commands/remove/RemoveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/remove/RemoveCommand.php -------------------------------------------------------------------------------- /src/commands/remove/RemoveCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/remove/RemoveCommandConfig.php -------------------------------------------------------------------------------- /src/commands/remove/RemoveContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/remove/RemoveContext.php -------------------------------------------------------------------------------- /src/commands/reset/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/reset/ResetCommand.php -------------------------------------------------------------------------------- /src/commands/reset/ResetCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/reset/ResetCommandConfig.php -------------------------------------------------------------------------------- /src/commands/reset/ResetContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/reset/ResetContext.php -------------------------------------------------------------------------------- /src/commands/selfupdate/SelfupdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/selfupdate/SelfupdateCommand.php -------------------------------------------------------------------------------- /src/commands/skel/SkelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/skel/SkelCommand.php -------------------------------------------------------------------------------- /src/commands/skel/SkelCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/skel/SkelCommandConfig.php -------------------------------------------------------------------------------- /src/commands/skel/SkelContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/skel/SkelContext.php -------------------------------------------------------------------------------- /src/commands/status/StatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/status/StatusCommand.php -------------------------------------------------------------------------------- /src/commands/status/StatusCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/status/StatusCommandConfig.php -------------------------------------------------------------------------------- /src/commands/status/StatusContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/status/StatusContext.php -------------------------------------------------------------------------------- /src/commands/update-repository-list/UpdateRepositoryListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/update-repository-list/UpdateRepositoryListCommand.php -------------------------------------------------------------------------------- /src/commands/update/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/update/UpdateCommand.php -------------------------------------------------------------------------------- /src/commands/update/UpdateCommandConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/update/UpdateCommandConfig.php -------------------------------------------------------------------------------- /src/commands/update/UpdateContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/update/UpdateContext.php -------------------------------------------------------------------------------- /src/commands/version/VersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/commands/version/VersionCommand.php -------------------------------------------------------------------------------- /src/services/checksum/ChecksumService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/checksum/ChecksumService.php -------------------------------------------------------------------------------- /src/services/key/KeyDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/KeyDownloader.php -------------------------------------------------------------------------------- /src/services/key/KeyImportResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/KeyImportResult.php -------------------------------------------------------------------------------- /src/services/key/KeyImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/KeyImporter.php -------------------------------------------------------------------------------- /src/services/key/KeyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/KeyService.php -------------------------------------------------------------------------------- /src/services/key/PublicKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/PublicKey.php -------------------------------------------------------------------------------- /src/services/key/TrustedCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/TrustedCollection.php -------------------------------------------------------------------------------- /src/services/key/gpg/GnupgKeyDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/gpg/GnupgKeyDownloader.php -------------------------------------------------------------------------------- /src/services/key/gpg/GnupgKeyImporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/gpg/GnupgKeyImporter.php -------------------------------------------------------------------------------- /src/services/key/gpg/PublicKeyReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/key/gpg/PublicKeyReader.php -------------------------------------------------------------------------------- /src/services/migration/FileMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/FileMigration.php -------------------------------------------------------------------------------- /src/services/migration/HomePharsXmlMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/HomePharsXmlMigration.php -------------------------------------------------------------------------------- /src/services/migration/HomePhiveXmlMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/HomePhiveXmlMigration.php -------------------------------------------------------------------------------- /src/services/migration/InternalFileMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/InternalFileMigration.php -------------------------------------------------------------------------------- /src/services/migration/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/Migration.php -------------------------------------------------------------------------------- /src/services/migration/MigrationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/MigrationFactory.php -------------------------------------------------------------------------------- /src/services/migration/MigrationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/MigrationService.php -------------------------------------------------------------------------------- /src/services/migration/ProjectPhiveXmlMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/ProjectPhiveXmlMigration.php -------------------------------------------------------------------------------- /src/services/migration/UserFileMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/migration/UserFileMigration.php -------------------------------------------------------------------------------- /src/services/phar/CompatibilityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/CompatibilityService.php -------------------------------------------------------------------------------- /src/services/phar/InstallService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/InstallService.php -------------------------------------------------------------------------------- /src/services/phar/PharDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/PharDownloader.php -------------------------------------------------------------------------------- /src/services/phar/PharInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/PharInstaller.php -------------------------------------------------------------------------------- /src/services/phar/PharInstallerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/PharInstallerFactory.php -------------------------------------------------------------------------------- /src/services/phar/PharInstallerLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/PharInstallerLocator.php -------------------------------------------------------------------------------- /src/services/phar/PharService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/PharService.php -------------------------------------------------------------------------------- /src/services/phar/ReleaseSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/ReleaseSelector.php -------------------------------------------------------------------------------- /src/services/phar/RemovalService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/RemovalService.php -------------------------------------------------------------------------------- /src/services/phar/UnixoidPharInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/UnixoidPharInstaller.php -------------------------------------------------------------------------------- /src/services/phar/WindowsPharInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/phar/WindowsPharInstaller.php -------------------------------------------------------------------------------- /src/services/resolver/AbstractRequestedPharResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/AbstractRequestedPharResolver.php -------------------------------------------------------------------------------- /src/services/resolver/DirectUrlResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/DirectUrlResolver.php -------------------------------------------------------------------------------- /src/services/resolver/GithubAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/GithubAliasResolver.php -------------------------------------------------------------------------------- /src/services/resolver/GitlabAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/GitlabAliasResolver.php -------------------------------------------------------------------------------- /src/services/resolver/LocalAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/LocalAliasResolver.php -------------------------------------------------------------------------------- /src/services/resolver/PharIoAliasResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/PharIoAliasResolver.php -------------------------------------------------------------------------------- /src/services/resolver/RequestedPharResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/RequestedPharResolver.php -------------------------------------------------------------------------------- /src/services/resolver/RequestedPharResolverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/RequestedPharResolverFactory.php -------------------------------------------------------------------------------- /src/services/resolver/RequestedPharResolverService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/RequestedPharResolverService.php -------------------------------------------------------------------------------- /src/services/resolver/RequestedPharResolverServiceBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/RequestedPharResolverServiceBuilder.php -------------------------------------------------------------------------------- /src/services/resolver/strategy/AbstractResolvingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/strategy/AbstractResolvingStrategy.php -------------------------------------------------------------------------------- /src/services/resolver/strategy/LocalFirstResolvingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/strategy/LocalFirstResolvingStrategy.php -------------------------------------------------------------------------------- /src/services/resolver/strategy/RemoteFirstResolvingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/strategy/RemoteFirstResolvingStrategy.php -------------------------------------------------------------------------------- /src/services/resolver/strategy/ResolvingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/resolver/strategy/ResolvingStrategy.php -------------------------------------------------------------------------------- /src/services/signature/SignatureVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/signature/SignatureVerifier.php -------------------------------------------------------------------------------- /src/services/signature/VerificationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/signature/VerificationResult.php -------------------------------------------------------------------------------- /src/services/signature/gpg/GnupgSignatureVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/signature/gpg/GnupgSignatureVerifier.php -------------------------------------------------------------------------------- /src/services/signature/gpg/GnupgVerificationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/services/signature/gpg/GnupgVerificationResult.php -------------------------------------------------------------------------------- /src/shared/ComposerAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/ComposerAlias.php -------------------------------------------------------------------------------- /src/shared/FileDownloaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/FileDownloaderException.php -------------------------------------------------------------------------------- /src/shared/Git.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/Git.php -------------------------------------------------------------------------------- /src/shared/GnuPG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/GnuPG.php -------------------------------------------------------------------------------- /src/shared/JsonData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/JsonData.php -------------------------------------------------------------------------------- /src/shared/PharRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/PharRegistry.php -------------------------------------------------------------------------------- /src/shared/TargetDirectoryLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/TargetDirectoryLocator.php -------------------------------------------------------------------------------- /src/shared/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/Url.php -------------------------------------------------------------------------------- /src/shared/XmlFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/XmlFile.php -------------------------------------------------------------------------------- /src/shared/cli/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/Command.php -------------------------------------------------------------------------------- /src/shared/cli/CommandLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/CommandLocator.php -------------------------------------------------------------------------------- /src/shared/cli/CommandLocatorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/CommandLocatorException.php -------------------------------------------------------------------------------- /src/shared/cli/CommandOptionsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/CommandOptionsException.php -------------------------------------------------------------------------------- /src/shared/cli/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/Context.php -------------------------------------------------------------------------------- /src/shared/cli/ContextException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/ContextException.php -------------------------------------------------------------------------------- /src/shared/cli/GeneralContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/GeneralContext.php -------------------------------------------------------------------------------- /src/shared/cli/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/Options.php -------------------------------------------------------------------------------- /src/shared/cli/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/Request.php -------------------------------------------------------------------------------- /src/shared/cli/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/RequestException.php -------------------------------------------------------------------------------- /src/shared/cli/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/Runner.php -------------------------------------------------------------------------------- /src/shared/cli/RunnerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/RunnerException.php -------------------------------------------------------------------------------- /src/shared/cli/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/error.txt -------------------------------------------------------------------------------- /src/shared/cli/input/ConsoleInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/input/ConsoleInput.php -------------------------------------------------------------------------------- /src/shared/cli/input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/input/Input.php -------------------------------------------------------------------------------- /src/shared/cli/output/ColoredConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/ColoredConsoleOutput.php -------------------------------------------------------------------------------- /src/shared/cli/output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/ConsoleOutput.php -------------------------------------------------------------------------------- /src/shared/cli/output/ConsoleTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/ConsoleTable.php -------------------------------------------------------------------------------- /src/shared/cli/output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/Output.php -------------------------------------------------------------------------------- /src/shared/cli/output/OutputFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/OutputFactory.php -------------------------------------------------------------------------------- /src/shared/cli/output/OutputLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/cli/output/OutputLocator.php -------------------------------------------------------------------------------- /src/shared/config/AuthConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/AuthConfig.php -------------------------------------------------------------------------------- /src/shared/config/AuthXmlConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/AuthXmlConfig.php -------------------------------------------------------------------------------- /src/shared/config/AuthXmlConfigFileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/AuthXmlConfigFileLocator.php -------------------------------------------------------------------------------- /src/shared/config/CompositeAuthConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/CompositeAuthConfig.php -------------------------------------------------------------------------------- /src/shared/config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/Config.php -------------------------------------------------------------------------------- /src/shared/config/EnvironmentAuthConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/EnvironmentAuthConfig.php -------------------------------------------------------------------------------- /src/shared/config/GlobalPhiveXmlConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/GlobalPhiveXmlConfig.php -------------------------------------------------------------------------------- /src/shared/config/LocalPhiveXmlConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/LocalPhiveXmlConfig.php -------------------------------------------------------------------------------- /src/shared/config/PhiveXmlConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/PhiveXmlConfig.php -------------------------------------------------------------------------------- /src/shared/config/PhiveXmlConfigFileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/config/PhiveXmlConfigFileLocator.php -------------------------------------------------------------------------------- /src/shared/download/FileDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/download/FileDownloader.php -------------------------------------------------------------------------------- /src/shared/environment/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/environment/Environment.php -------------------------------------------------------------------------------- /src/shared/environment/EnvironmentLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/environment/EnvironmentLocator.php -------------------------------------------------------------------------------- /src/shared/environment/UnixoidEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/environment/UnixoidEnvironment.php -------------------------------------------------------------------------------- /src/shared/environment/WindowsEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/environment/WindowsEnvironment.php -------------------------------------------------------------------------------- /src/shared/exceptions/AuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/AuthException.php -------------------------------------------------------------------------------- /src/shared/exceptions/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/ConfigException.php -------------------------------------------------------------------------------- /src/shared/exceptions/CurlConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/CurlConfigException.php -------------------------------------------------------------------------------- /src/shared/exceptions/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/CurlException.php -------------------------------------------------------------------------------- /src/shared/exceptions/DownloadFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/DownloadFailedException.php -------------------------------------------------------------------------------- /src/shared/exceptions/EnvironmentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/EnvironmentException.php -------------------------------------------------------------------------------- /src/shared/exceptions/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/ErrorException.php -------------------------------------------------------------------------------- /src/shared/exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/Exception.php -------------------------------------------------------------------------------- /src/shared/exceptions/ExecutorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/ExecutorException.php -------------------------------------------------------------------------------- /src/shared/exceptions/FeatureMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/FeatureMissingException.php -------------------------------------------------------------------------------- /src/shared/exceptions/FileNotWritableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/FileNotWritableException.php -------------------------------------------------------------------------------- /src/shared/exceptions/GitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/GitException.php -------------------------------------------------------------------------------- /src/shared/exceptions/GnupgKeyDownloaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/GnupgKeyDownloaderException.php -------------------------------------------------------------------------------- /src/shared/exceptions/IOException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/IOException.php -------------------------------------------------------------------------------- /src/shared/exceptions/InstallationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/InstallationFailedException.php -------------------------------------------------------------------------------- /src/shared/exceptions/InvalidHashException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/InvalidHashException.php -------------------------------------------------------------------------------- /src/shared/exceptions/InvalidXmlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/InvalidXmlException.php -------------------------------------------------------------------------------- /src/shared/exceptions/LinkCreationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/LinkCreationFailedException.php -------------------------------------------------------------------------------- /src/shared/exceptions/MigrationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/MigrationException.php -------------------------------------------------------------------------------- /src/shared/exceptions/MigrationsFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/MigrationsFailedException.php -------------------------------------------------------------------------------- /src/shared/exceptions/NoGPGBinaryFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/NoGPGBinaryFoundException.php -------------------------------------------------------------------------------- /src/shared/exceptions/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/NotFoundException.php -------------------------------------------------------------------------------- /src/shared/exceptions/PharException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/PharException.php -------------------------------------------------------------------------------- /src/shared/exceptions/PharInstallerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/PharInstallerException.php -------------------------------------------------------------------------------- /src/shared/exceptions/PharRegistryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/PharRegistryException.php -------------------------------------------------------------------------------- /src/shared/exceptions/PublicKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/PublicKeyException.php -------------------------------------------------------------------------------- /src/shared/exceptions/ReleaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/ReleaseException.php -------------------------------------------------------------------------------- /src/shared/exceptions/ResolveException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/ResolveException.php -------------------------------------------------------------------------------- /src/shared/exceptions/SourcesListException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/SourcesListException.php -------------------------------------------------------------------------------- /src/shared/exceptions/UnsupportedVersionConstraintException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/UnsupportedVersionConstraintException.php -------------------------------------------------------------------------------- /src/shared/exceptions/VerificationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/exceptions/VerificationFailedException.php -------------------------------------------------------------------------------- /src/shared/executor/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/executor/Executor.php -------------------------------------------------------------------------------- /src/shared/executor/ExecutorResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/executor/ExecutorResult.php -------------------------------------------------------------------------------- /src/shared/hash/BaseHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/BaseHash.php -------------------------------------------------------------------------------- /src/shared/hash/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/Hash.php -------------------------------------------------------------------------------- /src/shared/hash/sha/Sha1Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/sha/Sha1Hash.php -------------------------------------------------------------------------------- /src/shared/hash/sha/Sha256Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/sha/Sha256Hash.php -------------------------------------------------------------------------------- /src/shared/hash/sha/Sha384Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/sha/Sha384Hash.php -------------------------------------------------------------------------------- /src/shared/hash/sha/Sha512Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/hash/sha/Sha512Hash.php -------------------------------------------------------------------------------- /src/shared/http/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/Authentication.php -------------------------------------------------------------------------------- /src/shared/http/CacheBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/CacheBackend.php -------------------------------------------------------------------------------- /src/shared/http/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/Curl.php -------------------------------------------------------------------------------- /src/shared/http/CurlConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/CurlConfig.php -------------------------------------------------------------------------------- /src/shared/http/CurlConfigBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/CurlConfigBuilder.php -------------------------------------------------------------------------------- /src/shared/http/CurlHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/CurlHttpClient.php -------------------------------------------------------------------------------- /src/shared/http/ETag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/ETag.php -------------------------------------------------------------------------------- /src/shared/http/FileStorageCacheBackend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/FileStorageCacheBackend.php -------------------------------------------------------------------------------- /src/shared/http/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpClient.php -------------------------------------------------------------------------------- /src/shared/http/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpException.php -------------------------------------------------------------------------------- /src/shared/http/HttpProgressHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpProgressHandler.php -------------------------------------------------------------------------------- /src/shared/http/HttpProgressRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpProgressRenderer.php -------------------------------------------------------------------------------- /src/shared/http/HttpProgressUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpProgressUpdate.php -------------------------------------------------------------------------------- /src/shared/http/HttpResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpResponse.php -------------------------------------------------------------------------------- /src/shared/http/HttpResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/HttpResponseException.php -------------------------------------------------------------------------------- /src/shared/http/LocalSslCertificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/LocalSslCertificate.php -------------------------------------------------------------------------------- /src/shared/http/RateLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/RateLimit.php -------------------------------------------------------------------------------- /src/shared/http/RetryingHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/RetryingHttpClient.php -------------------------------------------------------------------------------- /src/shared/http/RingdownCurlHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/RingdownCurlHttpClient.php -------------------------------------------------------------------------------- /src/shared/http/authentication/BasicAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/authentication/BasicAuthentication.php -------------------------------------------------------------------------------- /src/shared/http/authentication/BearerAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/authentication/BearerAuthentication.php -------------------------------------------------------------------------------- /src/shared/http/authentication/TokenAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/http/authentication/TokenAuthentication.php -------------------------------------------------------------------------------- /src/shared/phar/ConfiguredPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/ConfiguredPhar.php -------------------------------------------------------------------------------- /src/shared/phar/ConfiguredPharException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/ConfiguredPharException.php -------------------------------------------------------------------------------- /src/shared/phar/InstalledPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/InstalledPhar.php -------------------------------------------------------------------------------- /src/shared/phar/Phar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/Phar.php -------------------------------------------------------------------------------- /src/shared/phar/PharAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/PharAlias.php -------------------------------------------------------------------------------- /src/shared/phar/PharIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/PharIdentifier.php -------------------------------------------------------------------------------- /src/shared/phar/PharUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/PharUrl.php -------------------------------------------------------------------------------- /src/shared/phar/Release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/Release.php -------------------------------------------------------------------------------- /src/shared/phar/ReleaseCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/ReleaseCollection.php -------------------------------------------------------------------------------- /src/shared/phar/RequestedPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/RequestedPhar.php -------------------------------------------------------------------------------- /src/shared/phar/SupportedRelease.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/SupportedRelease.php -------------------------------------------------------------------------------- /src/shared/phar/UnsupportedRelease.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/UnsupportedRelease.php -------------------------------------------------------------------------------- /src/shared/phar/UsedPhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/phar/UsedPhar.php -------------------------------------------------------------------------------- /src/shared/repository/GithubRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/GithubRepository.php -------------------------------------------------------------------------------- /src/shared/repository/GitlabRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/GitlabRepository.php -------------------------------------------------------------------------------- /src/shared/repository/LocalRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/LocalRepository.php -------------------------------------------------------------------------------- /src/shared/repository/PharIoRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/PharIoRepository.php -------------------------------------------------------------------------------- /src/shared/repository/SourceRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/SourceRepository.php -------------------------------------------------------------------------------- /src/shared/repository/UrlRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/repository/UrlRepository.php -------------------------------------------------------------------------------- /src/shared/sources/LocalSourcesListFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/sources/LocalSourcesListFileLoader.php -------------------------------------------------------------------------------- /src/shared/sources/RemoteSourcesListFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/sources/RemoteSourcesListFileLoader.php -------------------------------------------------------------------------------- /src/shared/sources/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/sources/Source.php -------------------------------------------------------------------------------- /src/shared/sources/SourcesList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/sources/SourcesList.php -------------------------------------------------------------------------------- /src/shared/sources/SourcesListFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/sources/SourcesListFileLoader.php -------------------------------------------------------------------------------- /src/shared/version/GitAwarePhiveVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/version/GitAwarePhiveVersion.php -------------------------------------------------------------------------------- /src/shared/version/PhiveVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/version/PhiveVersion.php -------------------------------------------------------------------------------- /src/shared/version/StaticPhiveVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/src/shared/version/StaticPhiveVersion.php -------------------------------------------------------------------------------- /tests/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/autoload.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/directory/file: -------------------------------------------------------------------------------- 1 | Dummy for Directory class unit test 2 | -------------------------------------------------------------------------------- /tests/data/github/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/github/releases.json -------------------------------------------------------------------------------- /tests/data/phars/phploc-2.0.6.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/phars/phploc-2.0.6.phar -------------------------------------------------------------------------------- /tests/data/phars/phploc-2.0.6.phar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/phars/phploc-2.0.6.phar.asc -------------------------------------------------------------------------------- /tests/data/phars/phpunit-4.5.0.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/phars/phpunit-4.5.0.phar -------------------------------------------------------------------------------- /tests/data/phars/phpunit-4.5.0.phar.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/phars/phpunit-4.5.0.phar.asc -------------------------------------------------------------------------------- /tests/data/repositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/data/repositories.xml -------------------------------------------------------------------------------- /tests/regression/InstallCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/InstallCommandTest.php -------------------------------------------------------------------------------- /tests/regression/PurgeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/PurgeCommandTest.php -------------------------------------------------------------------------------- /tests/regression/RegressionTestBootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/RegressionTestBootstrap.php -------------------------------------------------------------------------------- /tests/regression/RegressionTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/RegressionTestCase.php -------------------------------------------------------------------------------- /tests/regression/RemoveCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/RemoveCommandTest.php -------------------------------------------------------------------------------- /tests/regression/UpdateCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/UpdateCommandTest.php -------------------------------------------------------------------------------- /tests/regression/VersionCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/VersionCommandTest.php -------------------------------------------------------------------------------- /tests/regression/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/bootstrap.php -------------------------------------------------------------------------------- /tests/regression/fixtures/phive-home/gpg/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/phive-home/gpg/pubring.gpg -------------------------------------------------------------------------------- /tests/regression/fixtures/phive-home/gpg/pubring.gpg~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/phive-home/gpg/pubring.gpg~ -------------------------------------------------------------------------------- /tests/regression/fixtures/phive-home/gpg/secring.gpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/regression/fixtures/phive-home/gpg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/phive-home/gpg/trustdb.gpg -------------------------------------------------------------------------------- /tests/regression/fixtures/phive-home/repositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/phive-home/repositories.xml -------------------------------------------------------------------------------- /tests/regression/fixtures/removeCommandTest/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/removeCommandTest/phive.xml -------------------------------------------------------------------------------- /tests/regression/fixtures/repository/phpunit/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/repository/phpunit/phive.xml -------------------------------------------------------------------------------- /tests/regression/fixtures/updateCommandTest/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/regression/fixtures/updateCommandTest/phive.xml -------------------------------------------------------------------------------- /tests/unit/CommandLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/CommandLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/FactoryTest.php -------------------------------------------------------------------------------- /tests/unit/PhiveContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/PhiveContextTest.php -------------------------------------------------------------------------------- /tests/unit/ScalarTestDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/ScalarTestDataProvider.php -------------------------------------------------------------------------------- /tests/unit/TestStreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/TestStreamWrapper.php -------------------------------------------------------------------------------- /tests/unit/commands/TargetDirectoryLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/TargetDirectoryLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/commands/composer/ComposerCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/composer/ComposerCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/composer/ComposerCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/composer/ComposerCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/composer/ComposerServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/composer/ComposerServiceTest.php -------------------------------------------------------------------------------- /tests/unit/commands/composer/fixtures/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/composer/fixtures/composer.json -------------------------------------------------------------------------------- /tests/unit/commands/default/DefaultCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/default/DefaultCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/default/DefaultCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/default/DefaultCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/help/HelpCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/help/HelpCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/install/InstallCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/install/InstallCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/list/ListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/list/ListCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/purge/PurgeCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/purge/PurgeCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/remove/RemoveCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/remove/RemoveCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/reset/ResetCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/reset/ResetCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/reset/ResetCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/reset/ResetCommandTest.php -------------------------------------------------------------------------------- /tests/unit/commands/skel/SkelCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/skel/SkelCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/commands/update/UpdateCommandConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/commands/update/UpdateCommandConfigTest.php -------------------------------------------------------------------------------- /tests/unit/services/checksum/ChecksumServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/checksum/ChecksumServiceTest.php -------------------------------------------------------------------------------- /tests/unit/services/checksum/stubs/UnsupportedHashStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/checksum/stubs/UnsupportedHashStub.php -------------------------------------------------------------------------------- /tests/unit/services/key/KeyImportResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/key/KeyImportResultTest.php -------------------------------------------------------------------------------- /tests/unit/services/key/KeyServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/key/KeyServiceTest.php -------------------------------------------------------------------------------- /tests/unit/services/key/gpg/GnupgKeyDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/key/gpg/GnupgKeyDownloaderTest.php -------------------------------------------------------------------------------- /tests/unit/services/key/gpg/GnupgKeyImporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/key/gpg/GnupgKeyImporterTest.php -------------------------------------------------------------------------------- /tests/unit/services/migration/HomePharsXmlMigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/migration/HomePharsXmlMigrationTest.php -------------------------------------------------------------------------------- /tests/unit/services/migration/HomePhiveXmlMigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/migration/HomePhiveXmlMigrationTest.php -------------------------------------------------------------------------------- /tests/unit/services/migration/MigrationMocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/migration/MigrationMocks.php -------------------------------------------------------------------------------- /tests/unit/services/migration/ProjectPhiveXmlMigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/migration/ProjectPhiveXmlMigrationTest.php -------------------------------------------------------------------------------- /tests/unit/services/phar/PharDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/phar/PharDownloaderTest.php -------------------------------------------------------------------------------- /tests/unit/services/phar/PharIoAliasResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/phar/PharIoAliasResolverTest.php -------------------------------------------------------------------------------- /tests/unit/services/phar/PharServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/phar/PharServiceTest.php -------------------------------------------------------------------------------- /tests/unit/services/phar/UnixoidPharInstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/phar/UnixoidPharInstallerTest.php -------------------------------------------------------------------------------- /tests/unit/services/phar/WindowsPharInstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/phar/WindowsPharInstallerTest.php -------------------------------------------------------------------------------- /tests/unit/services/signature/gpg/GnupgSignatureVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/signature/gpg/GnupgSignatureVerifierTest.php -------------------------------------------------------------------------------- /tests/unit/services/signature/gpg/GnupgVerificationResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/services/signature/gpg/GnupgVerificationResultTest.php -------------------------------------------------------------------------------- /tests/unit/shared/ComposerAliasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/ComposerAliasTest.php -------------------------------------------------------------------------------- /tests/unit/shared/JsonDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/JsonDataTest.php -------------------------------------------------------------------------------- /tests/unit/shared/PharRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/PharRegistryTest.php -------------------------------------------------------------------------------- /tests/unit/shared/SourcesListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/SourcesListTest.php -------------------------------------------------------------------------------- /tests/unit/shared/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/UrlTest.php -------------------------------------------------------------------------------- /tests/unit/shared/XmlFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/XmlFileTest.php -------------------------------------------------------------------------------- /tests/unit/shared/cli/ConsoleInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/cli/ConsoleInputTest.php -------------------------------------------------------------------------------- /tests/unit/shared/cli/OptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/cli/OptionsTest.php -------------------------------------------------------------------------------- /tests/unit/shared/cli/output/OutputLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/cli/output/OutputLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/AuthXmlConfigFileLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/AuthXmlConfigFileLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/AuthXmlConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/AuthXmlConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/CompositeAuthConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/CompositeAuthConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/ConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/EnvironmentAuthConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/EnvironmentAuthConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/LocalPhiveXmlConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/LocalPhiveXmlConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/PhiveXmlConfigFileLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/PhiveXmlConfigFileLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/shared/config/fixtures/doubleConfig/.phive/auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/fixtures/doubleConfig/.phive/auth.xml -------------------------------------------------------------------------------- /tests/unit/shared/config/fixtures/doubleConfig/.phive/phars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/fixtures/doubleConfig/.phive/phars.xml -------------------------------------------------------------------------------- /tests/unit/shared/config/fixtures/doubleConfig/phive-auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/fixtures/doubleConfig/phive-auth.xml -------------------------------------------------------------------------------- /tests/unit/shared/config/fixtures/doubleConfig/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/fixtures/doubleConfig/phive.xml -------------------------------------------------------------------------------- /tests/unit/shared/config/fixtures/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/config/fixtures/phive.xml -------------------------------------------------------------------------------- /tests/unit/shared/download/FileDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/download/FileDownloaderTest.php -------------------------------------------------------------------------------- /tests/unit/shared/environment/EnvironmentLocatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/environment/EnvironmentLocatorTest.php -------------------------------------------------------------------------------- /tests/unit/shared/environment/UnixoidEnvironmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/environment/UnixoidEnvironmentTest.php -------------------------------------------------------------------------------- /tests/unit/shared/environment/WindowsEnvironmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/environment/WindowsEnvironmentTest.php -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/file.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/fixtures/phars.xml -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars/phpab-1.20.0.phar.dummy: -------------------------------------------------------------------------------- 1 | phpab-1.20.0 -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars/phpunit-4.8.6.phar.dummy: -------------------------------------------------------------------------------- 1 | phpunit-4.8.6 -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars/phpunit-4.8.7.phar.dummy: -------------------------------------------------------------------------------- 1 | phpunit-4.8.7 -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars/phpunit-4.8.9.phar.dummy: -------------------------------------------------------------------------------- 1 | phpunit-4.8.9 -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/phars/phpunit-5.2.10.phar.dummy: -------------------------------------------------------------------------------- 1 | phpunit-5.2.10 -------------------------------------------------------------------------------- /tests/unit/shared/fixtures/xmlFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/fixtures/xmlFile.xml -------------------------------------------------------------------------------- /tests/unit/shared/hash/sha/Sha1HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/hash/sha/Sha1HashTest.php -------------------------------------------------------------------------------- /tests/unit/shared/hash/sha/Sha256HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/hash/sha/Sha256HashTest.php -------------------------------------------------------------------------------- /tests/unit/shared/hash/sha/Sha384HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/hash/sha/Sha384HashTest.php -------------------------------------------------------------------------------- /tests/unit/shared/hash/sha/Sha512HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/hash/sha/Sha512HashTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/CurlConfigBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/CurlConfigBuilderTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/CurlConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/CurlConfigTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/CurlHttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/CurlHttpClientTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/ETagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/ETagTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/HttpProgressUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/HttpProgressUpdateTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/HttpResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/HttpResponseTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/LocalSslCertificateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/LocalSslCertificateTest.php -------------------------------------------------------------------------------- /tests/unit/shared/http/fixtures/foo.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/http/fixtures/foo.pem -------------------------------------------------------------------------------- /tests/unit/shared/phar/ConfiguredPharTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/ConfiguredPharTest.php -------------------------------------------------------------------------------- /tests/unit/shared/phar/PharAliasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/PharAliasTest.php -------------------------------------------------------------------------------- /tests/unit/shared/phar/PharTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/PharTest.php -------------------------------------------------------------------------------- /tests/unit/shared/phar/ReleaseCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/ReleaseCollectionTest.php -------------------------------------------------------------------------------- /tests/unit/shared/phar/ReleaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/ReleaseTest.php -------------------------------------------------------------------------------- /tests/unit/shared/phar/RequestedPharTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/phar/RequestedPharTest.php -------------------------------------------------------------------------------- /tests/unit/shared/repository/GithubRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/repository/GithubRepositoryTest.php -------------------------------------------------------------------------------- /tests/unit/shared/repository/GitlabRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/repository/GitlabRepositoryTest.php -------------------------------------------------------------------------------- /tests/unit/shared/repository/PharIoRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/repository/PharIoRepositoryTest.php -------------------------------------------------------------------------------- /tests/unit/shared/sources/RemoteSourcesListFileLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/sources/RemoteSourcesListFileLoaderTest.php -------------------------------------------------------------------------------- /tests/unit/shared/version/GitAwarePhiveVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/version/GitAwarePhiveVersionTest.php -------------------------------------------------------------------------------- /tests/unit/shared/version/StaticPhiveVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tests/unit/shared/version/StaticPhiveVersionTest.php -------------------------------------------------------------------------------- /tools/php-cs-fixer.d/PhpdocSingleLineVarFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tools/php-cs-fixer.d/PhpdocSingleLineVarFixer.php -------------------------------------------------------------------------------- /tools/php-cs-fixer.d/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phar-io/phive/HEAD/tools/php-cs-fixer.d/header.txt --------------------------------------------------------------------------------