├── .laminas-ci.json ├── LICENSE ├── README.md ├── Resources ├── errors.schema.json └── schema.xsd ├── bin ├── roave-backward-compatibility-check └── roave-backward-compatibility-check.php ├── composer.json ├── composer.lock ├── renovate.json └── src ├── Baseline.php ├── Change.php ├── Changes.php ├── Command ├── AssertBackwardsCompatible.php └── DetermineConfigurationFromFilesystem.php ├── CompareApi.php ├── CompareClasses.php ├── Configuration ├── Configuration.php ├── InvalidConfigurationStructure.php ├── ParseConfigurationFile.php └── ParseXmlConfigurationFile.php ├── DetectChanges ├── BCBreak │ ├── ClassBased │ │ ├── AncestorRemoved.php │ │ ├── ClassBased.php │ │ ├── ClassBecameAbstract.php │ │ ├── ClassBecameFinal.php │ │ ├── ClassBecameInterface.php │ │ ├── ClassBecameInternal.php │ │ ├── ClassBecameTrait.php │ │ ├── ConstantChanged.php │ │ ├── ConstantRemoved.php │ │ ├── EnumCasesChanged.php │ │ ├── ExcludeAnonymousClasses.php │ │ ├── ExcludeInternalClass.php │ │ ├── FinalClassChanged.php │ │ ├── MethodChanged.php │ │ ├── MethodRemoved.php │ │ ├── MultipleChecksOnAClass.php │ │ ├── OpenClassChanged.php │ │ ├── PropertyChanged.php │ │ ├── PropertyRemoved.php │ │ └── SkipClassBasedErrors.php │ ├── ClassConstantBased │ │ ├── ClassConstantBased.php │ │ ├── ClassConstantValueChanged.php │ │ ├── ClassConstantVisibilityReduced.php │ │ ├── MultipleChecksOnAClassConstant.php │ │ ├── OnlyProtectedClassConstantChanged.php │ │ ├── OnlyPublicClassConstantChanged.php │ │ └── SkipClassConstantBasedErrors.php │ ├── FunctionBased │ │ ├── ExcludeInternalFunction.php │ │ ├── FunctionBased.php │ │ ├── FunctionBecameInternal.php │ │ ├── MultipleChecksOnAFunction.php │ │ ├── ParameterByReferenceChanged.php │ │ ├── ParameterDefaultValueChanged.php │ │ ├── ParameterNameChanged.php │ │ ├── ParameterTypeChanged.php │ │ ├── ParameterTypeContravarianceChanged.php │ │ ├── RequiredParameterAmountIncreased.php │ │ ├── ReturnTypeByReferenceChanged.php │ │ ├── ReturnTypeChanged.php │ │ ├── ReturnTypeCovarianceChanged.php │ │ └── SkipFunctionBasedErrors.php │ ├── InterfaceBased │ │ ├── AncestorRemoved.php │ │ ├── ExcludeInternalInterface.php │ │ ├── InterfaceBased.php │ │ ├── InterfaceBecameClass.php │ │ ├── InterfaceBecameTrait.php │ │ ├── MethodAdded.php │ │ ├── MultipleChecksOnAnInterface.php │ │ ├── SkipInterfaceBasedErrors.php │ │ └── UseClassBasedChecksOnAnInterface.php │ ├── MethodBased │ │ ├── AccessibleMethodChange.php │ │ ├── ExcludeInternalMethod.php │ │ ├── MethodBased.php │ │ ├── MethodBecameFinal.php │ │ ├── MethodConcretenessChanged.php │ │ ├── MethodFunctionDefinitionChanged.php │ │ ├── MethodParameterAdded.php │ │ ├── MethodScopeChanged.php │ │ ├── MethodVisibilityReduced.php │ │ ├── MultipleChecksOnAMethod.php │ │ ├── OnlyProtectedMethodChanged.php │ │ ├── OnlyPublicMethodChanged.php │ │ └── SkipMethodBasedErrors.php │ ├── PropertyBased │ │ ├── AccessiblePropertyChanged.php │ │ ├── ExcludeInternalProperty.php │ │ ├── MultipleChecksOnAProperty.php │ │ ├── OnlyProtectedPropertyChanged.php │ │ ├── OnlyPublicPropertyChanged.php │ │ ├── PropertyBased.php │ │ ├── PropertyBecameInternal.php │ │ ├── PropertyDefaultValueChanged.php │ │ ├── PropertyScopeChanged.php │ │ ├── PropertyTypeChanged.php │ │ ├── PropertyVisibilityReduced.php │ │ └── SkipPropertyBasedErrors.php │ └── TraitBased │ │ ├── ExcludeInternalTrait.php │ │ ├── MultipleChecksOnATrait.php │ │ ├── SkipTraitBasedErrors.php │ │ ├── TraitBased.php │ │ ├── TraitBecameClass.php │ │ ├── TraitBecameInterface.php │ │ └── UseClassBasedChecksOnATrait.php └── Variance │ ├── TypeIsContravariant.php │ └── TypeIsCovariant.php ├── Factory └── ComposerInstallationReflectorFactory.php ├── Formatter ├── FunctionName.php ├── GithubActionsFormatter.php ├── JsonFormatter.php ├── JunitFormatter.php ├── MarkdownPipedToSymfonyConsoleFormatter.php ├── OutputFormatter.php ├── ReflectionPropertyName.php ├── SymbolStart.php └── SymfonyConsoleTextFormatter.php ├── Git ├── CheckedOutRepository.php ├── GetVersionCollection.php ├── GetVersionCollectionFromGitRepository.php ├── GitCheckoutRevisionToTemporaryPath.php ├── GitParseRevision.php ├── ParseRevision.php ├── PerformCheckoutOfRevision.php ├── PickLastVersionFromCollection.php ├── PickVersionFromVersionCollection.php └── Revision.php ├── LocateDependencies ├── LocateDependencies.php └── LocateDependenciesViaComposer.php ├── LocateSources ├── LocateSources.php └── LocateSourcesViaComposerJson.php └── SourceLocator ├── LocatedSourceWithStrippedSourcesDirectory.php ├── ReplaceSourcePathOfLocatedSources.php └── StaticClassMapSourceLocator.php /.laminas-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/.laminas-ci.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/README.md -------------------------------------------------------------------------------- /Resources/errors.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/Resources/errors.schema.json -------------------------------------------------------------------------------- /Resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/Resources/schema.xsd -------------------------------------------------------------------------------- /bin/roave-backward-compatibility-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/bin/roave-backward-compatibility-check -------------------------------------------------------------------------------- /bin/roave-backward-compatibility-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/bin/roave-backward-compatibility-check.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/composer.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Baseline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Baseline.php -------------------------------------------------------------------------------- /src/Change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Change.php -------------------------------------------------------------------------------- /src/Changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Changes.php -------------------------------------------------------------------------------- /src/Command/AssertBackwardsCompatible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Command/AssertBackwardsCompatible.php -------------------------------------------------------------------------------- /src/Command/DetermineConfigurationFromFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Command/DetermineConfigurationFromFilesystem.php -------------------------------------------------------------------------------- /src/CompareApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/CompareApi.php -------------------------------------------------------------------------------- /src/CompareClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/CompareClasses.php -------------------------------------------------------------------------------- /src/Configuration/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Configuration/Configuration.php -------------------------------------------------------------------------------- /src/Configuration/InvalidConfigurationStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Configuration/InvalidConfigurationStructure.php -------------------------------------------------------------------------------- /src/Configuration/ParseConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Configuration/ParseConfigurationFile.php -------------------------------------------------------------------------------- /src/Configuration/ParseXmlConfigurationFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Configuration/ParseXmlConfigurationFile.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/AncestorRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/AncestorRemoved.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBecameAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBecameAbstract.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBecameFinal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBecameFinal.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBecameInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBecameInterface.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBecameInternal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBecameInternal.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ClassBecameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ClassBecameTrait.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ConstantChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ConstantChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ConstantRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ConstantRemoved.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/EnumCasesChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/EnumCasesChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ExcludeAnonymousClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ExcludeAnonymousClasses.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/ExcludeInternalClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/ExcludeInternalClass.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/FinalClassChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/FinalClassChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/MethodChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/MethodChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/MethodRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/MethodRemoved.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/MultipleChecksOnAClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/MultipleChecksOnAClass.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/OpenClassChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/OpenClassChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/PropertyChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/PropertyChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/PropertyRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/PropertyRemoved.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassBased/SkipClassBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassBased/SkipClassBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantValueChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantValueChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantVisibilityReduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/ClassConstantVisibilityReduced.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/MultipleChecksOnAClassConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/MultipleChecksOnAClassConstant.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/OnlyProtectedClassConstantChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/OnlyProtectedClassConstantChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/OnlyPublicClassConstantChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/OnlyPublicClassConstantChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/ClassConstantBased/SkipClassConstantBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/ClassConstantBased/SkipClassConstantBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ExcludeInternalFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ExcludeInternalFunction.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/FunctionBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/FunctionBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/FunctionBecameInternal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/FunctionBecameInternal.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/MultipleChecksOnAFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/MultipleChecksOnAFunction.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ParameterByReferenceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ParameterByReferenceChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ParameterDefaultValueChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ParameterDefaultValueChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ParameterNameChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ParameterNameChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ParameterTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ParameterTypeChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ParameterTypeContravarianceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ParameterTypeContravarianceChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/RequiredParameterAmountIncreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/RequiredParameterAmountIncreased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ReturnTypeByReferenceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ReturnTypeByReferenceChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ReturnTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ReturnTypeChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/ReturnTypeCovarianceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/ReturnTypeCovarianceChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/FunctionBased/SkipFunctionBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/FunctionBased/SkipFunctionBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/AncestorRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/AncestorRemoved.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/ExcludeInternalInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/ExcludeInternalInterface.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/InterfaceBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/InterfaceBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/InterfaceBecameClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/InterfaceBecameClass.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/InterfaceBecameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/InterfaceBecameTrait.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/MethodAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/MethodAdded.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/MultipleChecksOnAnInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/MultipleChecksOnAnInterface.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/SkipInterfaceBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/SkipInterfaceBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/InterfaceBased/UseClassBasedChecksOnAnInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/InterfaceBased/UseClassBasedChecksOnAnInterface.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/AccessibleMethodChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/AccessibleMethodChange.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/ExcludeInternalMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/ExcludeInternalMethod.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodBecameFinal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodBecameFinal.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodConcretenessChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodConcretenessChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodFunctionDefinitionChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodFunctionDefinitionChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodParameterAdded.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodScopeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodScopeChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MethodVisibilityReduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MethodVisibilityReduced.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/MultipleChecksOnAMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/MultipleChecksOnAMethod.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/OnlyProtectedMethodChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/OnlyProtectedMethodChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/OnlyPublicMethodChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/OnlyPublicMethodChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/MethodBased/SkipMethodBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/MethodBased/SkipMethodBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/AccessiblePropertyChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/AccessiblePropertyChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/ExcludeInternalProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/ExcludeInternalProperty.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/MultipleChecksOnAProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/MultipleChecksOnAProperty.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/OnlyProtectedPropertyChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/OnlyProtectedPropertyChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/OnlyPublicPropertyChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/OnlyPublicPropertyChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyBecameInternal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyBecameInternal.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyDefaultValueChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyDefaultValueChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyScopeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyScopeChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyTypeChanged.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/PropertyVisibilityReduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/PropertyVisibilityReduced.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/PropertyBased/SkipPropertyBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/PropertyBased/SkipPropertyBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/ExcludeInternalTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/ExcludeInternalTrait.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/MultipleChecksOnATrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/MultipleChecksOnATrait.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/SkipTraitBasedErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/SkipTraitBasedErrors.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/TraitBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/TraitBased.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/TraitBecameClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/TraitBecameClass.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/TraitBecameInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/TraitBecameInterface.php -------------------------------------------------------------------------------- /src/DetectChanges/BCBreak/TraitBased/UseClassBasedChecksOnATrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/BCBreak/TraitBased/UseClassBasedChecksOnATrait.php -------------------------------------------------------------------------------- /src/DetectChanges/Variance/TypeIsContravariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/Variance/TypeIsContravariant.php -------------------------------------------------------------------------------- /src/DetectChanges/Variance/TypeIsCovariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/DetectChanges/Variance/TypeIsCovariant.php -------------------------------------------------------------------------------- /src/Factory/ComposerInstallationReflectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Factory/ComposerInstallationReflectorFactory.php -------------------------------------------------------------------------------- /src/Formatter/FunctionName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/FunctionName.php -------------------------------------------------------------------------------- /src/Formatter/GithubActionsFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/GithubActionsFormatter.php -------------------------------------------------------------------------------- /src/Formatter/JsonFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/JsonFormatter.php -------------------------------------------------------------------------------- /src/Formatter/JunitFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/JunitFormatter.php -------------------------------------------------------------------------------- /src/Formatter/MarkdownPipedToSymfonyConsoleFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/MarkdownPipedToSymfonyConsoleFormatter.php -------------------------------------------------------------------------------- /src/Formatter/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/OutputFormatter.php -------------------------------------------------------------------------------- /src/Formatter/ReflectionPropertyName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/ReflectionPropertyName.php -------------------------------------------------------------------------------- /src/Formatter/SymbolStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/SymbolStart.php -------------------------------------------------------------------------------- /src/Formatter/SymfonyConsoleTextFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Formatter/SymfonyConsoleTextFormatter.php -------------------------------------------------------------------------------- /src/Git/CheckedOutRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/CheckedOutRepository.php -------------------------------------------------------------------------------- /src/Git/GetVersionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/GetVersionCollection.php -------------------------------------------------------------------------------- /src/Git/GetVersionCollectionFromGitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/GetVersionCollectionFromGitRepository.php -------------------------------------------------------------------------------- /src/Git/GitCheckoutRevisionToTemporaryPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/GitCheckoutRevisionToTemporaryPath.php -------------------------------------------------------------------------------- /src/Git/GitParseRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/GitParseRevision.php -------------------------------------------------------------------------------- /src/Git/ParseRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/ParseRevision.php -------------------------------------------------------------------------------- /src/Git/PerformCheckoutOfRevision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/PerformCheckoutOfRevision.php -------------------------------------------------------------------------------- /src/Git/PickLastVersionFromCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/PickLastVersionFromCollection.php -------------------------------------------------------------------------------- /src/Git/PickVersionFromVersionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/PickVersionFromVersionCollection.php -------------------------------------------------------------------------------- /src/Git/Revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/Git/Revision.php -------------------------------------------------------------------------------- /src/LocateDependencies/LocateDependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/LocateDependencies/LocateDependencies.php -------------------------------------------------------------------------------- /src/LocateDependencies/LocateDependenciesViaComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/LocateDependencies/LocateDependenciesViaComposer.php -------------------------------------------------------------------------------- /src/LocateSources/LocateSources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/LocateSources/LocateSources.php -------------------------------------------------------------------------------- /src/LocateSources/LocateSourcesViaComposerJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/LocateSources/LocateSourcesViaComposerJson.php -------------------------------------------------------------------------------- /src/SourceLocator/LocatedSourceWithStrippedSourcesDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/SourceLocator/LocatedSourceWithStrippedSourcesDirectory.php -------------------------------------------------------------------------------- /src/SourceLocator/ReplaceSourcePathOfLocatedSources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/SourceLocator/ReplaceSourcePathOfLocatedSources.php -------------------------------------------------------------------------------- /src/SourceLocator/StaticClassMapSourceLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/BackwardCompatibilityCheck/HEAD/src/SourceLocator/StaticClassMapSourceLocator.php --------------------------------------------------------------------------------