├── .changes ├── 6.x │ ├── 6.0.0.md │ ├── 6.0.1.md │ ├── 6.0.2.md │ ├── 6.0.3.md │ ├── 6.0.4.md │ ├── 6.1.0.md │ ├── 6.1.1.md │ ├── 6.1.2.md │ ├── 6.2.0.md │ ├── 6.3.0.md │ ├── 6.4.0.md │ ├── 6.4.1.md │ ├── 6.4.2.md │ ├── 6.5.0.md │ ├── 6.5.1.md │ ├── 6.5.2.md │ ├── 6.5.3.md │ ├── 6.5.4.md │ ├── 6.5.5.md │ ├── header.tpl.md │ └── unreleased │ │ └── .gitkeep └── 7.x │ ├── 7.0.0.md │ ├── 7.0.1.md │ ├── 7.0.2.md │ ├── 7.0.3.md │ ├── 7.1.0.md │ ├── 7.1.1.md │ ├── 7.1.2.md │ ├── 7.1.3.md │ ├── 7.1.4.md │ ├── 7.2.0.md │ ├── 7.2.1.md │ ├── 7.2.2.md │ ├── 7.2.3.md │ ├── 7.2.4.md │ ├── 7.2.5.md │ ├── header.tpl.md │ └── unreleased │ └── .gitkeep ├── .changie.yaml ├── .config └── captainhook │ ├── pre-commit.phpcs-fixer.json │ ├── pre-commit.phpcs.json │ ├── pre-commit.phplint.json │ ├── pre-push.phpstan.json │ └── pre-push.phpunit.json ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── linters │ ├── .editorconfig-checker.json │ ├── .php-cs-fixer.dist.php │ ├── .phpcs.xml.dist │ ├── .phplint.yml │ └── phpstan.neon.dist └── workflows │ ├── gh-pages.yml │ ├── mega-linter.yml │ ├── release.yml │ └── unit-tests.yml ├── .gitignore ├── .mega-linter.yml ├── CHANGELOG-5.x.md ├── CHANGELOG-6.x.md ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── autoload.php ├── bin ├── phpcompatinfo └── phpcompatinfo.1 ├── box.json ├── box.json.dist ├── captainhook.json ├── composer.json ├── config ├── packages │ ├── console.php │ └── messenger.php └── set │ ├── default-logger.php │ ├── default-polyfill.php │ ├── default.php │ ├── php52.php │ ├── php53.php │ ├── php54.php │ ├── php55.php │ ├── php56.php │ ├── php70.php │ ├── php71.php │ ├── php72.php │ ├── php73.php │ ├── php74.php │ ├── php80.php │ ├── php81.php │ ├── php82.php │ ├── php83.php │ ├── php84.php │ ├── php85.php │ ├── up-to-php52.php │ ├── up-to-php53.php │ ├── up-to-php54.php │ ├── up-to-php55.php │ ├── up-to-php56.php │ ├── up-to-php70.php │ ├── up-to-php71.php │ ├── up-to-php72.php │ ├── up-to-php73.php │ ├── up-to-php74.php │ ├── up-to-php80.php │ ├── up-to-php81.php │ ├── up-to-php82.php │ ├── up-to-php83.php │ ├── up-to-php84.php │ ├── up-to-php85.php │ └── without-polyfill.php ├── docs ├── README.md ├── architecture │ └── README.md ├── assets │ └── images │ │ └── .gitkeep ├── components │ ├── README.md │ ├── extensions │ │ ├── README.md │ │ └── reporter.md │ ├── parser │ │ └── README.md │ ├── polyfills │ │ └── README.md │ ├── profiler │ │ └── README.md │ └── sniffs │ │ ├── PHP50.md │ │ ├── PHP51.md │ │ ├── PHP52.md │ │ ├── PHP53.md │ │ ├── PHP54.md │ │ ├── PHP55.md │ │ ├── PHP56.md │ │ ├── PHP70.md │ │ ├── PHP71.md │ │ ├── PHP72.md │ │ ├── PHP73.md │ │ ├── PHP74.md │ │ ├── PHP80.md │ │ ├── PHP81.md │ │ ├── PHP82.md │ │ ├── PHP83.md │ │ ├── PHP84.md │ │ └── README.md ├── conditional-code │ ├── README.md │ ├── indirect-call.md │ ├── introduction.md │ ├── limitation.md │ └── multiple-signature.md ├── configs │ └── README.md ├── exclusions │ └── README.md ├── installation.md └── usage │ ├── README.md │ ├── console.md │ ├── docker.md │ └── programmatically.md ├── entrypoint.sh ├── examples └── api_analyser_run.php ├── mkdocs.yml ├── phpunit.xml.dist ├── resources ├── application-analyser │ ├── datasource.php │ └── options.php ├── application-collection │ ├── datasource.php │ └── options.php ├── application-datacollector │ ├── datasource.php │ └── options.php ├── application-event │ ├── datasource.php │ └── options.php ├── application-extension │ ├── datasource.php │ └── options.php ├── application-logger │ ├── datasource.php │ └── options.php ├── application-parser │ ├── datasource.php │ └── options.php ├── application-polyfills │ ├── datasource.php │ └── options.php ├── application-profiler │ ├── datasource.php │ └── options.php ├── application-query │ ├── datasource.php │ └── options.php ├── application-service │ ├── datasource.php │ └── options.php ├── application-sniffs │ ├── datasource.php │ └── options.php ├── box-manifest.sh ├── build.php ├── gh-pages-hook.sh ├── infrastructure-bus │ ├── datasource.php │ └── options.php └── presentation-console │ ├── datasource.php │ └── options.php ├── src ├── Application │ ├── Analyser │ │ ├── AbstractSniffAnalyser.php │ │ ├── AnalyserInterface.php │ │ ├── CompatibilityAnalyser.php │ │ ├── SniffAnalyserInterface.php │ │ └── SniffVisitorInterface.php │ ├── Collection │ │ ├── PolyfillCollection.php │ │ ├── PolyfillCollectionInterface.php │ │ ├── ReferenceCollection.php │ │ ├── ReferenceCollectionInterface.php │ │ ├── SniffCollection.php │ │ └── SniffCollectionInterface.php │ ├── Configuration │ │ └── ConfigResolver.php │ ├── DataCollector │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ ├── Normalizer │ │ │ └── NodeNormalizer.php │ │ ├── RuleUpdater.php │ │ ├── VersionDataCollector.php │ │ └── VersionUpdater.php │ ├── Event │ │ ├── AfterAnalysisEvent.php │ │ ├── AfterAnalysisInterface.php │ │ ├── AfterFileAnalysisEvent.php │ │ ├── AfterFileAnalysisInterface.php │ │ ├── AfterInitializeSniffEvent.php │ │ ├── AfterProcessNodeEvent.php │ │ ├── AfterProcessNodeInterface.php │ │ ├── AfterProcessSniffEvent.php │ │ ├── AfterProcessSniffInterface.php │ │ ├── AfterTearDownSniffInterface.php │ │ ├── AfterTraverseAstEvent.php │ │ ├── AfterTraverseAstInterface.php │ │ ├── BeforeAnalysisEvent.php │ │ ├── BeforeAnalysisInterface.php │ │ ├── BeforeFileAnalysisEvent.php │ │ ├── BeforeFileAnalysisInterface.php │ │ ├── BeforeInitializeSniffEvent.php │ │ ├── BeforeProcessNodeEvent.php │ │ ├── BeforeProcessNodeInterface.php │ │ ├── BeforeProcessSniffEvent.php │ │ ├── BeforeProcessSniffInterface.php │ │ ├── BeforeSetupSniffInterface.php │ │ ├── BeforeTraverseAstEvent.php │ │ ├── BeforeTraverseAstInterface.php │ │ ├── Dispatcher │ │ │ └── EventDispatcher.php │ │ └── ErrorEvent.php │ ├── Extension │ │ ├── ExtensionInterface.php │ │ ├── ExtensionLoaderInterface.php │ │ ├── FactoryExtensionLoader.php │ │ ├── Logger.php │ │ ├── ProgressBar.php │ │ ├── Reporter.php │ │ └── Reporter │ │ │ ├── ConsoleReporter.php │ │ │ ├── DumpReporter.php │ │ │ ├── FormatterInterface.php │ │ │ ├── JsonReporter.php │ │ │ ├── RuleReporter.php │ │ │ └── SarifReporter.php │ ├── Kernel │ │ └── ConsoleKernel.php │ ├── Logger │ │ └── DefaultLogger.php │ ├── PhpParser │ │ ├── Node │ │ │ └── Name │ │ │ │ ├── ClassFullyQualified.php │ │ │ │ ├── EnumFullyQualified.php │ │ │ │ └── InterfaceFullyQualified.php │ │ ├── NodeVisitor │ │ │ ├── FilterVisitor.php │ │ │ ├── NameResolverVisitor.php │ │ │ ├── NodeVisitor.php │ │ │ ├── ParentContextVisitor.php │ │ │ └── VersionResolverVisitor.php │ │ └── Parser.php │ ├── Polyfills │ │ ├── AbstractPolyfillInstalled.php │ │ ├── PolyfillInterface.php │ │ ├── SymfonyCtype.php │ │ ├── SymfonyIconv.php │ │ ├── SymfonyMbstring.php │ │ ├── SymfonyPhp70.php │ │ ├── SymfonyPhp71.php │ │ ├── SymfonyPhp72.php │ │ ├── SymfonyPhp73.php │ │ ├── SymfonyPhp74.php │ │ ├── SymfonyPhp80.php │ │ ├── SymfonyPhp81.php │ │ ├── SymfonyPhp82.php │ │ ├── SymfonyPhp83.php │ │ └── SymfonyPhp84.php │ ├── Profiler │ │ ├── CollectorInterface.php │ │ ├── CollectorTrait.php │ │ ├── Profile.php │ │ ├── Profiler.php │ │ └── ProfilerInterface.php │ ├── Query │ │ ├── Analyser │ │ │ └── Compatibility │ │ │ │ ├── GetCompatibilityHandler.php │ │ │ │ └── GetCompatibilityQuery.php │ │ ├── Diagnose │ │ │ ├── DiagnoseHandler.php │ │ │ └── DiagnoseQuery.php │ │ ├── QueryBusInterface.php │ │ ├── QueryHandlerInterface.php │ │ └── QueryInterface.php │ ├── Service │ │ └── SourceProvider.php │ └── Sniffs │ │ ├── Arrays │ │ ├── ArrayDereferencingSyntaxSniff.php │ │ ├── ArrayUnpackingSyntaxSniff.php │ │ └── ShortArraySyntaxSniff.php │ │ ├── Attributes │ │ ├── AllowDynamicPropertiesAttributeSniff.php │ │ ├── AttributeSniff.php │ │ ├── OverrideAttributeSniff.php │ │ └── SensitiveParameterAttributeSniff.php │ │ ├── Classes │ │ ├── AnonymousClassSniff.php │ │ ├── ClassMemberAccessSniff.php │ │ ├── DynamicAccessSniff.php │ │ ├── MagicMethodsSniff.php │ │ ├── MethodDeclarationSniff.php │ │ ├── NewInitializerSniff.php │ │ ├── PropertyDeclarationSniff.php │ │ ├── PropertyHooksSniff.php │ │ ├── PropertyPromotionSniff.php │ │ ├── ReadonlyClassSniff.php │ │ ├── ReadonlyPropertySniff.php │ │ └── TypedPropertySniff.php │ │ ├── Constants │ │ ├── ClassConstantSniff.php │ │ ├── ConstSyntaxSniff.php │ │ ├── ConstantsInTraitsSniff.php │ │ ├── DynamicClassConstantFetchSniff.php │ │ ├── MagicClassConstantSniff.php │ │ └── TypedClassConstantSniff.php │ │ ├── ControlStructures │ │ ├── DeclareSniff.php │ │ ├── GotoSniff.php │ │ ├── MatchSniff.php │ │ └── NonCapturingCatchSniff.php │ │ ├── Enumerations │ │ └── EnumerationSniff.php │ │ ├── Expressions │ │ ├── ClassExprSyntaxSniff.php │ │ ├── ConditionalCodeSniff.php │ │ ├── EmptySniff.php │ │ └── StaticVarInitializerSniff.php │ │ ├── Fibers │ │ └── FiberSniff.php │ │ ├── FunctionCalls │ │ └── SameSiteCookieSniff.php │ │ ├── FunctionDeclarations │ │ ├── ArrowFunctionSniff.php │ │ ├── ClosureSniff.php │ │ ├── FirstClassCallableSniff.php │ │ ├── NamedArgumentDeclarationSniff.php │ │ ├── ParamTypeDeclarationSniff.php │ │ ├── ReturnTypeDeclarationSniff.php │ │ └── TrailingCommaSniff.php │ │ ├── Generators │ │ └── GeneratorSniff.php │ │ ├── KeywordBag.php │ │ ├── Keywords │ │ └── ReservedSniff.php │ │ ├── Numbers │ │ ├── BinaryNumberFormatSniff.php │ │ └── OctalNumberFormatSniff.php │ │ ├── Operators │ │ ├── CombinedComparisonOperatorSniff.php │ │ ├── NullCoalesceOperatorSniff.php │ │ ├── NullsafeOperatorSniff.php │ │ ├── PowOperatorSniff.php │ │ └── ShortTernaryOperatorSniff.php │ │ ├── SniffAbstract.php │ │ ├── SniffInterface.php │ │ ├── TextProcessing │ │ ├── CryptStringSniff.php │ │ └── DeprecateDollarBraceStringInterpolationSniff.php │ │ └── UseDeclarations │ │ ├── UseConstFunctionSniff.php │ │ └── UseTraitSniff.php ├── Infrastructure │ └── Bus │ │ └── Query │ │ └── MessengerQueryBus.php └── Presentation │ └── Console │ ├── Application.php │ ├── ApplicationInterface.php │ ├── Command │ ├── AboutCommand.php │ ├── AbstractCommand.php │ ├── AnalyserCommand.php │ ├── CommandInterface.php │ ├── DiagnoseCommand.php │ └── Rule │ │ └── ListCommand.php │ ├── CommandLoaderInterface.php │ ├── FactoryCommandLoader.php │ ├── Input │ └── Input.php │ ├── Output │ └── Output.php │ ├── Style.php │ └── StyleInterface.php ├── tests ├── ClassIssueTest.php ├── ConditionIssueTest.php ├── DependencyIssueTest.php ├── ErrorHandlerIssueTest.php ├── FunctionIssueTest.php ├── NamespaceIssueTest.php ├── PhpFeatures │ ├── Php53IssueTest.php │ └── Php82IssueTest.php ├── PhpFeaturesIssueTest.php ├── PhpParser │ └── NodeVisitor │ │ ├── NameResolverVisitorTest.php │ │ ├── NodeVisitorTestCase.php │ │ └── VersionResolverVisitorTest.php ├── Reference │ ├── IssueTest.php │ └── ParameterTest.php ├── Sniffs │ ├── AllowDynamicPropertiesAttributeSniffTest.php │ ├── AnonymousClassSniffTest.php │ ├── ArrayDereferencingSyntaxSniffTest.php │ ├── ArrayUnpackingSyntaxSniffTest.php │ ├── ArrowFunctionSniffTest.php │ ├── AttributeSniffTest.php │ ├── BinaryNumberFormatSniffTest.php │ ├── ClassConstantSniffTest.php │ ├── ClassExprSyntaxSniffTest.php │ ├── ClassMemberAccessSniffTest.php │ ├── ClosureSniffTest.php │ ├── CombinedComparisonOperatorSniffTest.php │ ├── ConditionalCodeSniffTest.php │ ├── ConstSyntaxSniffTest.php │ ├── ConstantsInTraitsSniffTest.php │ ├── CryptStringSniffTest.php │ ├── DeclareSniffTest.php │ ├── DeprecateDollarBraceStringInterpolationSniffTest.php │ ├── DynamicClassConstantFetchSniffTest.php │ ├── EmptySniffTest.php │ ├── EnumerationSniffTest.php │ ├── FiberSniffTest.php │ ├── FirstClassCallableSniffTest.php │ ├── GeneratorSniffTest.php │ ├── GotoSniffTest.php │ ├── KeywordReservedSniffTest.php │ ├── MagicClassConstantSniffTest.php │ ├── MagicMethodsSniffTest.php │ ├── MatchSniffTest.php │ ├── MethodDeclarationSniffTest.php │ ├── NamedArgumentDeclarationSniffTest.php │ ├── NewInitializerSniffTest.php │ ├── NonCapturingCatchSniffTest.php │ ├── NullCoalesceOperatorSniffTest.php │ ├── NullsafeOperatorSniffTest.php │ ├── OctalNumberFormatSniffTest.php │ ├── OverrideAttributeSniffTest.php │ ├── ParamTypeDeclarationSniffTest.php │ ├── PowOperatorSniffTest.php │ ├── PropertyDeclarationSniffTest.php │ ├── PropertyHooksSniffTest.php │ ├── PropertyPromotionSniffTest.php │ ├── ReadonlyClassSniffTest.php │ ├── ReadonlyPropertySniffTest.php │ ├── ReturnTypeDeclarationSniffTest.php │ ├── SameSiteCookieSniffTest.php │ ├── SensitiveParameterAttributeSniffTest.php │ ├── ShortArraySyntaxSniffTest.php │ ├── ShortTernaryOperatorSniffTest.php │ ├── SniffTestCase.php │ ├── StaticVarInitializerSniffTest.php │ ├── TrailingCommaSniffTest.php │ ├── TypedClassConstantSniffTest.php │ ├── TypedPropertySniffTest.php │ ├── UseConstFunctionSniffTest.php │ ├── UseTraitSniffTest.php │ └── VariadicFunctionSniffTest.php ├── TestCase.php ├── bootstrap.php └── fixtures │ ├── classes │ ├── gh171.php │ └── gh199.php │ ├── conditions │ ├── gh128.php │ ├── gh153.php │ ├── gh155.php │ ├── gh159.php │ ├── gh160 │ │ ├── gh160-1.php │ │ └── gh160-2.php │ ├── gh195.php │ └── gh301 │ │ └── bootstrap.php │ ├── emptyDir │ └── dummy.txt │ ├── features │ ├── gh100.php │ ├── gh130.php │ ├── gh165.php │ ├── gh168.php │ ├── gh194.php │ ├── gh222.php │ ├── gh228.php │ ├── gh239.php │ ├── gh292.php │ ├── php53 │ │ ├── gh213_static_method.php │ │ └── gh213_static_property.php │ └── php82 │ │ └── random_extension.php │ ├── gh106.php │ ├── gh215.php │ ├── gh26.php │ ├── gh27.php │ ├── gh28.php │ ├── gh29.php │ ├── gh30-1.php │ ├── gh30.php │ ├── gh32.php │ ├── gh33.php │ ├── gh34.php │ ├── gh38.php │ ├── gh97.php │ ├── noContents │ ├── emptyDir │ │ └── .keep │ ├── emptyFile.php │ ├── parseError.php │ └── withoutOpenTag.php │ ├── phpcompatinfo.xml │ ├── references │ ├── array_keys.18881d.php │ ├── array_keys.18881o.php │ ├── array_slice.18881d.php │ ├── array_slice.18881o.php │ ├── assert.18881d.php │ ├── assert.18881o.php │ ├── class_exists.18881d.php │ ├── class_exists.18881o.php │ ├── clearstatcache.18881d.php │ ├── clearstatcache.18881o.php │ ├── copy.18881d.php │ ├── copy.18881o.php │ ├── debug_backtrace.18881d.php │ ├── debug_backtrace.18881o.php │ ├── debug_print_backtrace.18881d.php │ ├── debug_print_backtrace.18881o.php │ ├── fgetss.18881d.php │ ├── fgetss.18881o.php │ ├── file.18881d.php │ ├── file.18881o.php │ ├── file_get_contents.18881d.php │ ├── file_get_contents.18881o.php │ ├── fputcsv.18881d.php │ ├── fputcsv.18881o.php │ ├── get_browser.18881d.php │ ├── get_browser.18881o.php │ ├── getopt.18881d.php │ ├── getopt.18881o.php │ ├── gettimeofday.18881d.php │ ├── gettimeofday.18881o.php │ ├── gh127.php │ ├── gh162.php │ ├── grapheme_levenshtein.18881d.php │ ├── grapheme_levenshtein.18881o.php │ ├── grapheme_stripos.18881d.php │ ├── grapheme_stripos.18881o.php │ ├── grapheme_stristr.18881d.php │ ├── grapheme_stristr.18881o.php │ ├── grapheme_strpos.18881d.php │ ├── grapheme_strpos.18881o.php │ ├── grapheme_strripos.18881d.php │ ├── grapheme_strripos.18881o.php │ ├── grapheme_strrpos.18881d.php │ ├── grapheme_strrpos.18881o.php │ ├── grapheme_strstr.18881d.php │ ├── grapheme_strstr.18881o.php │ ├── grapheme_substr.18881d.php │ ├── grapheme_substr.18881o.php │ ├── htmlentities.18881d.php │ ├── htmlentities.18881o.php │ ├── htmlspecialchars.18881d.php │ ├── htmlspecialchars.18881o.php │ ├── idn_to_ascii.18881d.php │ ├── idn_to_ascii.18881o.php │ ├── idn_to_utf8.18881d.php │ ├── idn_to_utf8.18881o.php │ ├── imagepng.18881d.php │ ├── imagepng.18881o.php │ ├── ini_get_all.18881d.php │ ├── ini_get_all.18881o.php │ ├── is_a.18881d.php │ ├── is_a.18881o.php │ ├── jdtojewish.18881d.php │ ├── jdtojewish.18881o.php │ ├── json_decode.18881d.php │ ├── json_decode.18881o.php │ ├── json_encode.18881d.php │ ├── json_encode.18881o.php │ ├── ldap_read.18881d.php │ ├── ldap_read.18881o.php │ ├── ldap_search.18881d.php │ ├── ldap_search.18881o.php │ ├── mb_eregi_replace.18881d.php │ ├── mb_eregi_replace.18881o.php │ ├── mberegi_replace.18881d.php │ ├── mberegi_replace.18881o.php │ ├── md5.18881d.php │ ├── md5.18881o.php │ ├── md5_file.18881d.php │ ├── md5_file.18881o.php │ ├── memory_get_usage.18881d.php │ ├── memory_get_usage.18881o.php │ ├── microtime.18881d.php │ ├── microtime.18881o.php │ ├── mkdir.18881d.php │ ├── mkdir.18881o.php │ ├── mysqli_escape_string.18881d.php │ ├── mysqli_escape_string.18881o.php │ ├── mysqli_query.18881d.php │ ├── mysqli_query.18881o.php │ ├── mysqli_real_escape_string.18881d.php │ ├── mysqli_real_escape_string.18881o.php │ ├── nl2br.18881d.php │ ├── nl2br.18881o.php │ ├── opendir.18881d.php │ ├── opendir.18881o.php │ ├── openssl_decrypt.18881d.php │ ├── openssl_decrypt.18881o.php │ ├── openssl_encrypt.18881d.php │ ├── openssl_encrypt.18881o.php │ ├── openssl_open.18881d.php │ ├── openssl_open.18881o.php │ ├── openssl_seal.18881d.php │ ├── openssl_seal.18881o.php │ ├── openssl_sign.18881d.php │ ├── openssl_sign.18881o.php │ ├── openssl_verify.18881d.php │ ├── openssl_verify.18881o.php │ ├── parse_url.18881d.php │ ├── parse_url.18881o.php │ ├── pg_fetch_all.18881d.php │ ├── pg_fetch_all.18881o.php │ ├── pg_last_notice.18881d.php │ ├── pg_last_notice.18881o.php │ ├── pg_select.18881d.php │ ├── pg_select.18881o.php │ ├── preg_replace.18881d.php │ ├── preg_replace.18881o.php │ ├── preg_replace_callback.18881d.php │ ├── preg_replace_callback.18881o.php │ ├── scandir.18881d.php │ ├── scandir.18881o.php │ ├── sem_acquire.18881d.php │ ├── sem_acquire.18881o.php │ ├── session_regenerate_id.18881d.php │ ├── session_regenerate_id.18881o.php │ ├── session_set_save_handler.18881d.php │ ├── session_set_save_handler.18881o.php │ ├── sha1.18881d.php │ ├── sha1.18881o.php │ ├── sha1_file.18881d.php │ ├── sha1_file.18881o.php │ ├── sqlite_fetch_column_types.18881d.php │ ├── sqlite_fetch_column_types.18881o.php │ ├── str_replace.18881d.php │ ├── str_replace.18881o.php │ ├── stream_copy_to_stream.18881d.php │ ├── stream_copy_to_stream.18881o.php │ ├── stream_get_contents.18881d.php │ ├── stream_get_contents.18881o.php │ ├── substr_count.18881d.php │ ├── substr_count.18881o.php │ ├── vfsStream-1.6.0.zip │ └── vfsStreamZipTestCase.php │ ├── sniffs │ ├── anonymous_functions.php │ ├── array_syntax.php │ ├── arrays │ │ ├── gh148.php │ │ ├── unpacking_support_array_numeric_keyed.php │ │ └── unpacking_support_array_string_keyed.php │ ├── attributes │ │ ├── allow_dynamic_properties.php │ │ ├── basic.php │ │ ├── override.php │ │ └── sensitive_parameter.php │ ├── class_member_access_on_instantiation.php │ ├── classes │ │ ├── anonymous_classes.php │ │ ├── constant_initializers.php │ │ ├── constructor_promotion.php │ │ ├── constructor_readonly_properties.php │ │ ├── function_initializers.php │ │ ├── gh119.php │ │ ├── gh129.php │ │ ├── gh154.php │ │ ├── magic_methods_501.php │ │ ├── magic_methods_503.php │ │ ├── magic_methods_506.php │ │ ├── magic_property_804.php │ │ ├── member_access_on_cloning.php │ │ ├── method_initializers.php │ │ ├── php4_public_method_visibility.php │ │ ├── php5_public_method_visibility.php │ │ ├── property_hooks.php │ │ ├── readonly_classes.php │ │ ├── readonly_properties.php │ │ ├── static_initializers.php │ │ └── typed_properties.php │ ├── combined_comparison.php │ ├── conditions │ │ ├── class_exists.php │ │ ├── defined.php │ │ ├── extension_loaded.php │ │ ├── function_exists.php │ │ ├── interface_exists.php │ │ ├── method_exists.php │ │ └── trait_exists.php │ ├── constants.php │ ├── constants │ │ ├── class.php │ │ ├── const_keyword.php │ │ ├── dynamic_class_const_fetch.php │ │ ├── final_const.php │ │ ├── gh140.php │ │ ├── gh158.php │ │ ├── gh215.php │ │ ├── gh218.php │ │ └── typed_const.php │ ├── controls │ │ ├── gh200.php │ │ ├── match_expr.php │ │ └── non-capturing_catches.php │ ├── deprecated_functions.php │ ├── deprecated_ini_directives.php │ ├── deprecated_new_reference.php │ ├── directives │ │ ├── encoding.php │ │ ├── strict_types.php │ │ └── ticks.php │ ├── enumerations │ │ ├── backed.php │ │ └── basic.php │ ├── exponentiation.php │ ├── expressions │ │ ├── class_expr.php │ │ ├── gh207.php │ │ ├── gh238.php │ │ └── static_var_initializer.php │ ├── fibers │ │ ├── fiber_class.php │ │ ├── fiber_example_echo.php │ │ └── fiber_example_file_copy.php │ ├── functions │ │ ├── arrow_functions.php │ │ ├── callable_expr_anonymous.php │ │ ├── callable_expr_function.php │ │ ├── callable_expr_method.php │ │ ├── callable_expr_static.php │ │ ├── dnf_types.php │ │ ├── function_arguments.php │ │ ├── gh141.php │ │ ├── gh142.php │ │ ├── gh229.php │ │ ├── gh231.php │ │ ├── gh273.php │ │ ├── gh348_closure.php │ │ ├── gh348_function.php │ │ ├── gh359_setcookie-options.php │ │ ├── gh359_setcookie-options_raw.php │ │ ├── gh359_setcookie-params.php │ │ ├── intersection_types.php │ │ ├── named_arguments.php │ │ ├── return_intersection_types.php │ │ ├── return_never.php │ │ ├── return_null_bool.php │ │ ├── return_types.php │ │ ├── self_parent_static_closure_oop.php │ │ ├── trailing_comma_closure_1.php │ │ ├── trailing_comma_closure_2.php │ │ ├── trailing_comma_parameters.php │ │ ├── union_types.php │ │ ├── variadic_functions.php │ │ └── void_functions.php │ ├── generators │ │ ├── delegation.php │ │ ├── fibonacci.php │ │ ├── gh226.php │ │ └── return_expression.php │ ├── heredoc.php │ ├── incompatibilities.php │ ├── introduced.php │ ├── keywords │ │ ├── reserved_names_in_namespaces.php │ │ └── reserved_names_in_objects.php │ ├── keywords_reserved.php │ ├── magic_methods.php │ ├── namespaces │ │ ├── use_const.php │ │ └── use_function.php │ ├── nowdoc.php │ ├── null_coalesce_operator.php │ ├── numbers │ │ ├── binary_number_format.php │ │ └── explicit_octal_number_format.php │ ├── operators │ │ ├── elvis_syntax.php │ │ ├── gh142.php │ │ ├── gh211.php │ │ ├── gh260.php │ │ ├── nullsafe_syntax.php │ │ └── spaceship_syntax.php │ ├── removed.php │ ├── short_open_tag.php │ ├── strings │ │ ├── dollar_brace_string_interpolation.php │ │ └── gh220.php │ ├── ternary_operator_syntax.php │ ├── traits │ │ ├── constants.php │ │ └── gh227.php │ ├── use_const_function.php │ └── variadic_function.php │ ├── some_extensions.php │ ├── source1.php │ ├── source10.php │ ├── source10100.php │ ├── source13094.php │ ├── source13417.php │ ├── source13568.php │ ├── source13873.php │ ├── source14696.php │ ├── source1626.php │ ├── source16302.php │ ├── source18881.php │ ├── source2.php │ ├── source3.php │ ├── source3657.php │ ├── source4.php │ ├── source5.php │ ├── source6-includes.php │ ├── source6.php │ ├── source6056.php │ ├── source6581.php │ ├── source7.php │ ├── source7813.php │ ├── source8.php │ ├── source9.php │ └── visitors │ ├── gh131.php │ ├── gh166.php │ └── namespaces.php └── vendor-bin ├── captainhook └── composer.json ├── graph-composer └── composer.json ├── php-cs └── composer.json ├── phplint └── composer.json ├── phpstan └── composer.json ├── phpunit └── composer.json ├── sf-framework-bundle └── composer.json └── umlwriter ├── composer.json └── patches └── graph-graphviz_add_subgraph_cluster-42.patch /.changes/6.x/6.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.0.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.0.1.md -------------------------------------------------------------------------------- /.changes/6.x/6.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.0.2.md -------------------------------------------------------------------------------- /.changes/6.x/6.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.0.3.md -------------------------------------------------------------------------------- /.changes/6.x/6.0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.0.4.md -------------------------------------------------------------------------------- /.changes/6.x/6.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.1.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.1.1.md -------------------------------------------------------------------------------- /.changes/6.x/6.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.1.2.md -------------------------------------------------------------------------------- /.changes/6.x/6.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.2.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.3.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.4.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.4.1.md -------------------------------------------------------------------------------- /.changes/6.x/6.4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.4.2.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.0.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.1.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.2.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.3.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.4.md -------------------------------------------------------------------------------- /.changes/6.x/6.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/6.5.5.md -------------------------------------------------------------------------------- /.changes/6.x/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/6.x/header.tpl.md -------------------------------------------------------------------------------- /.changes/6.x/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changes/7.x/7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.0.0.md -------------------------------------------------------------------------------- /.changes/7.x/7.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.0.1.md -------------------------------------------------------------------------------- /.changes/7.x/7.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.0.2.md -------------------------------------------------------------------------------- /.changes/7.x/7.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.0.3.md -------------------------------------------------------------------------------- /.changes/7.x/7.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.1.0.md -------------------------------------------------------------------------------- /.changes/7.x/7.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.1.1.md -------------------------------------------------------------------------------- /.changes/7.x/7.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.1.2.md -------------------------------------------------------------------------------- /.changes/7.x/7.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.1.3.md -------------------------------------------------------------------------------- /.changes/7.x/7.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.1.4.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.0.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.1.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.2.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.3.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.4.md -------------------------------------------------------------------------------- /.changes/7.x/7.2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/7.2.5.md -------------------------------------------------------------------------------- /.changes/7.x/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changes/7.x/header.tpl.md -------------------------------------------------------------------------------- /.changes/7.x/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.config/captainhook/pre-commit.phpcs-fixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.config/captainhook/pre-commit.phpcs-fixer.json -------------------------------------------------------------------------------- /.config/captainhook/pre-commit.phpcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.config/captainhook/pre-commit.phpcs.json -------------------------------------------------------------------------------- /.config/captainhook/pre-commit.phplint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.config/captainhook/pre-commit.phplint.json -------------------------------------------------------------------------------- /.config/captainhook/pre-push.phpstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.config/captainhook/pre-push.phpstan.json -------------------------------------------------------------------------------- /.config/captainhook/pre-push.phpunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.config/captainhook/pre-push.phpunit.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/linters/.editorconfig-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/linters/.editorconfig-checker.json -------------------------------------------------------------------------------- /.github/linters/.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/linters/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.github/linters/.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/linters/.phpcs.xml.dist -------------------------------------------------------------------------------- /.github/linters/.phplint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/linters/.phplint.yml -------------------------------------------------------------------------------- /.github/linters/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/linters/phpstan.neon.dist -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /CHANGELOG-5.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/CHANGELOG-5.x.md -------------------------------------------------------------------------------- /CHANGELOG-6.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/CHANGELOG-6.x.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/phpcompatinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/bin/phpcompatinfo -------------------------------------------------------------------------------- /bin/phpcompatinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/bin/phpcompatinfo.1 -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/box.json -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/box.json.dist -------------------------------------------------------------------------------- /captainhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/captainhook.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/composer.json -------------------------------------------------------------------------------- /config/packages/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/packages/console.php -------------------------------------------------------------------------------- /config/packages/messenger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/packages/messenger.php -------------------------------------------------------------------------------- /config/set/default-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/default-logger.php -------------------------------------------------------------------------------- /config/set/default-polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/default-polyfill.php -------------------------------------------------------------------------------- /config/set/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/default.php -------------------------------------------------------------------------------- /config/set/php52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php52.php -------------------------------------------------------------------------------- /config/set/php53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php53.php -------------------------------------------------------------------------------- /config/set/php54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php54.php -------------------------------------------------------------------------------- /config/set/php55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php55.php -------------------------------------------------------------------------------- /config/set/php56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php56.php -------------------------------------------------------------------------------- /config/set/php70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php70.php -------------------------------------------------------------------------------- /config/set/php71.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php71.php -------------------------------------------------------------------------------- /config/set/php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php72.php -------------------------------------------------------------------------------- /config/set/php73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php73.php -------------------------------------------------------------------------------- /config/set/php74.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php74.php -------------------------------------------------------------------------------- /config/set/php80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php80.php -------------------------------------------------------------------------------- /config/set/php81.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php81.php -------------------------------------------------------------------------------- /config/set/php82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php82.php -------------------------------------------------------------------------------- /config/set/php83.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php83.php -------------------------------------------------------------------------------- /config/set/php84.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php84.php -------------------------------------------------------------------------------- /config/set/php85.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/php85.php -------------------------------------------------------------------------------- /config/set/up-to-php52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php52.php -------------------------------------------------------------------------------- /config/set/up-to-php53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php53.php -------------------------------------------------------------------------------- /config/set/up-to-php54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php54.php -------------------------------------------------------------------------------- /config/set/up-to-php55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php55.php -------------------------------------------------------------------------------- /config/set/up-to-php56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php56.php -------------------------------------------------------------------------------- /config/set/up-to-php70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php70.php -------------------------------------------------------------------------------- /config/set/up-to-php71.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php71.php -------------------------------------------------------------------------------- /config/set/up-to-php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php72.php -------------------------------------------------------------------------------- /config/set/up-to-php73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php73.php -------------------------------------------------------------------------------- /config/set/up-to-php74.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php74.php -------------------------------------------------------------------------------- /config/set/up-to-php80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php80.php -------------------------------------------------------------------------------- /config/set/up-to-php81.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php81.php -------------------------------------------------------------------------------- /config/set/up-to-php82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php82.php -------------------------------------------------------------------------------- /config/set/up-to-php83.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php83.php -------------------------------------------------------------------------------- /config/set/up-to-php84.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php84.php -------------------------------------------------------------------------------- /config/set/up-to-php85.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/up-to-php85.php -------------------------------------------------------------------------------- /config/set/without-polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/config/set/without-polyfill.php -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/README.md -------------------------------------------------------------------------------- /docs/components/extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/extensions/README.md -------------------------------------------------------------------------------- /docs/components/extensions/reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/extensions/reporter.md -------------------------------------------------------------------------------- /docs/components/parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/parser/README.md -------------------------------------------------------------------------------- /docs/components/polyfills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/polyfills/README.md -------------------------------------------------------------------------------- /docs/components/profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/profiler/README.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP50.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP51.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP52.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP53.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP54.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP55.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP55.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP56.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP56.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP70.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP71.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP71.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP72.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP73.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP73.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP74.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP80.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP80.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP81.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP81.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP82.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP82.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP83.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP83.md -------------------------------------------------------------------------------- /docs/components/sniffs/PHP84.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/PHP84.md -------------------------------------------------------------------------------- /docs/components/sniffs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/components/sniffs/README.md -------------------------------------------------------------------------------- /docs/conditional-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/conditional-code/README.md -------------------------------------------------------------------------------- /docs/conditional-code/indirect-call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/conditional-code/indirect-call.md -------------------------------------------------------------------------------- /docs/conditional-code/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/conditional-code/introduction.md -------------------------------------------------------------------------------- /docs/conditional-code/limitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/conditional-code/limitation.md -------------------------------------------------------------------------------- /docs/conditional-code/multiple-signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/conditional-code/multiple-signature.md -------------------------------------------------------------------------------- /docs/configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/configs/README.md -------------------------------------------------------------------------------- /docs/exclusions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/exclusions/README.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/usage/README.md -------------------------------------------------------------------------------- /docs/usage/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/usage/console.md -------------------------------------------------------------------------------- /docs/usage/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/usage/docker.md -------------------------------------------------------------------------------- /docs/usage/programmatically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/docs/usage/programmatically.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /examples/api_analyser_run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/examples/api_analyser_run.php -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /resources/application-analyser/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-analyser/datasource.php -------------------------------------------------------------------------------- /resources/application-analyser/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-analyser/options.php -------------------------------------------------------------------------------- /resources/application-collection/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-collection/datasource.php -------------------------------------------------------------------------------- /resources/application-collection/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-collection/options.php -------------------------------------------------------------------------------- /resources/application-datacollector/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-datacollector/datasource.php -------------------------------------------------------------------------------- /resources/application-datacollector/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-datacollector/options.php -------------------------------------------------------------------------------- /resources/application-event/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-event/datasource.php -------------------------------------------------------------------------------- /resources/application-event/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-event/options.php -------------------------------------------------------------------------------- /resources/application-extension/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-extension/datasource.php -------------------------------------------------------------------------------- /resources/application-extension/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-extension/options.php -------------------------------------------------------------------------------- /resources/application-logger/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-logger/datasource.php -------------------------------------------------------------------------------- /resources/application-logger/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-logger/options.php -------------------------------------------------------------------------------- /resources/application-parser/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-parser/datasource.php -------------------------------------------------------------------------------- /resources/application-parser/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-parser/options.php -------------------------------------------------------------------------------- /resources/application-polyfills/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-polyfills/datasource.php -------------------------------------------------------------------------------- /resources/application-polyfills/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-polyfills/options.php -------------------------------------------------------------------------------- /resources/application-profiler/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-profiler/datasource.php -------------------------------------------------------------------------------- /resources/application-profiler/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-profiler/options.php -------------------------------------------------------------------------------- /resources/application-query/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-query/datasource.php -------------------------------------------------------------------------------- /resources/application-query/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-query/options.php -------------------------------------------------------------------------------- /resources/application-service/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-service/datasource.php -------------------------------------------------------------------------------- /resources/application-service/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-service/options.php -------------------------------------------------------------------------------- /resources/application-sniffs/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-sniffs/datasource.php -------------------------------------------------------------------------------- /resources/application-sniffs/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/application-sniffs/options.php -------------------------------------------------------------------------------- /resources/box-manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/box-manifest.sh -------------------------------------------------------------------------------- /resources/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/build.php -------------------------------------------------------------------------------- /resources/gh-pages-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/gh-pages-hook.sh -------------------------------------------------------------------------------- /resources/infrastructure-bus/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/infrastructure-bus/datasource.php -------------------------------------------------------------------------------- /resources/infrastructure-bus/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/infrastructure-bus/options.php -------------------------------------------------------------------------------- /resources/presentation-console/datasource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/presentation-console/datasource.php -------------------------------------------------------------------------------- /resources/presentation-console/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/resources/presentation-console/options.php -------------------------------------------------------------------------------- /src/Application/Analyser/AbstractSniffAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Analyser/AbstractSniffAnalyser.php -------------------------------------------------------------------------------- /src/Application/Analyser/AnalyserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Analyser/AnalyserInterface.php -------------------------------------------------------------------------------- /src/Application/Analyser/CompatibilityAnalyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Analyser/CompatibilityAnalyser.php -------------------------------------------------------------------------------- /src/Application/Analyser/SniffAnalyserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Analyser/SniffAnalyserInterface.php -------------------------------------------------------------------------------- /src/Application/Analyser/SniffVisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Analyser/SniffVisitorInterface.php -------------------------------------------------------------------------------- /src/Application/Collection/PolyfillCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/PolyfillCollection.php -------------------------------------------------------------------------------- /src/Application/Collection/PolyfillCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/PolyfillCollectionInterface.php -------------------------------------------------------------------------------- /src/Application/Collection/ReferenceCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/ReferenceCollection.php -------------------------------------------------------------------------------- /src/Application/Collection/ReferenceCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/ReferenceCollectionInterface.php -------------------------------------------------------------------------------- /src/Application/Collection/SniffCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/SniffCollection.php -------------------------------------------------------------------------------- /src/Application/Collection/SniffCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Collection/SniffCollectionInterface.php -------------------------------------------------------------------------------- /src/Application/Configuration/ConfigResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Configuration/ConfigResolver.php -------------------------------------------------------------------------------- /src/Application/DataCollector/DataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/DataCollector.php -------------------------------------------------------------------------------- /src/Application/DataCollector/DataCollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/DataCollectorInterface.php -------------------------------------------------------------------------------- /src/Application/DataCollector/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/ErrorHandler.php -------------------------------------------------------------------------------- /src/Application/DataCollector/ErrorHandler/Collecting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/ErrorHandler/Collecting.php -------------------------------------------------------------------------------- /src/Application/DataCollector/ErrorHandler/Throwing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/ErrorHandler/Throwing.php -------------------------------------------------------------------------------- /src/Application/DataCollector/Normalizer/NodeNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/Normalizer/NodeNormalizer.php -------------------------------------------------------------------------------- /src/Application/DataCollector/RuleUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/RuleUpdater.php -------------------------------------------------------------------------------- /src/Application/DataCollector/VersionDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/VersionDataCollector.php -------------------------------------------------------------------------------- /src/Application/DataCollector/VersionUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/DataCollector/VersionUpdater.php -------------------------------------------------------------------------------- /src/Application/Event/AfterAnalysisEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterAnalysisEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterAnalysisInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterAnalysisInterface.php -------------------------------------------------------------------------------- /src/Application/Event/AfterFileAnalysisEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterFileAnalysisEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterFileAnalysisInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterFileAnalysisInterface.php -------------------------------------------------------------------------------- /src/Application/Event/AfterInitializeSniffEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterInitializeSniffEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterProcessNodeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterProcessNodeEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterProcessNodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterProcessNodeInterface.php -------------------------------------------------------------------------------- /src/Application/Event/AfterProcessSniffEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterProcessSniffEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterProcessSniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterProcessSniffInterface.php -------------------------------------------------------------------------------- /src/Application/Event/AfterTearDownSniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterTearDownSniffInterface.php -------------------------------------------------------------------------------- /src/Application/Event/AfterTraverseAstEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterTraverseAstEvent.php -------------------------------------------------------------------------------- /src/Application/Event/AfterTraverseAstInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/AfterTraverseAstInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeAnalysisEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeAnalysisEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeAnalysisInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeAnalysisInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeFileAnalysisEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeFileAnalysisEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeFileAnalysisInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeFileAnalysisInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeInitializeSniffEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeInitializeSniffEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeProcessNodeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeProcessNodeEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeProcessNodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeProcessNodeInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeProcessSniffEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeProcessSniffEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeProcessSniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeProcessSniffInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeSetupSniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeSetupSniffInterface.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeTraverseAstEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeTraverseAstEvent.php -------------------------------------------------------------------------------- /src/Application/Event/BeforeTraverseAstInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/BeforeTraverseAstInterface.php -------------------------------------------------------------------------------- /src/Application/Event/Dispatcher/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/Dispatcher/EventDispatcher.php -------------------------------------------------------------------------------- /src/Application/Event/ErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Event/ErrorEvent.php -------------------------------------------------------------------------------- /src/Application/Extension/ExtensionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/ExtensionInterface.php -------------------------------------------------------------------------------- /src/Application/Extension/ExtensionLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/ExtensionLoaderInterface.php -------------------------------------------------------------------------------- /src/Application/Extension/FactoryExtensionLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/FactoryExtensionLoader.php -------------------------------------------------------------------------------- /src/Application/Extension/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Logger.php -------------------------------------------------------------------------------- /src/Application/Extension/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/ProgressBar.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/ConsoleReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/ConsoleReporter.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/DumpReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/DumpReporter.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/FormatterInterface.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/JsonReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/JsonReporter.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/RuleReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/RuleReporter.php -------------------------------------------------------------------------------- /src/Application/Extension/Reporter/SarifReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Extension/Reporter/SarifReporter.php -------------------------------------------------------------------------------- /src/Application/Kernel/ConsoleKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Kernel/ConsoleKernel.php -------------------------------------------------------------------------------- /src/Application/Logger/DefaultLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Logger/DefaultLogger.php -------------------------------------------------------------------------------- /src/Application/PhpParser/Node/Name/ClassFullyQualified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/Node/Name/ClassFullyQualified.php -------------------------------------------------------------------------------- /src/Application/PhpParser/Node/Name/EnumFullyQualified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/Node/Name/EnumFullyQualified.php -------------------------------------------------------------------------------- /src/Application/PhpParser/Node/Name/InterfaceFullyQualified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/Node/Name/InterfaceFullyQualified.php -------------------------------------------------------------------------------- /src/Application/PhpParser/NodeVisitor/FilterVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/NodeVisitor/FilterVisitor.php -------------------------------------------------------------------------------- /src/Application/PhpParser/NodeVisitor/NameResolverVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/NodeVisitor/NameResolverVisitor.php -------------------------------------------------------------------------------- /src/Application/PhpParser/NodeVisitor/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/NodeVisitor/NodeVisitor.php -------------------------------------------------------------------------------- /src/Application/PhpParser/NodeVisitor/ParentContextVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/NodeVisitor/ParentContextVisitor.php -------------------------------------------------------------------------------- /src/Application/PhpParser/NodeVisitor/VersionResolverVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/NodeVisitor/VersionResolverVisitor.php -------------------------------------------------------------------------------- /src/Application/PhpParser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/PhpParser/Parser.php -------------------------------------------------------------------------------- /src/Application/Polyfills/AbstractPolyfillInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/AbstractPolyfillInstalled.php -------------------------------------------------------------------------------- /src/Application/Polyfills/PolyfillInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/PolyfillInterface.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyCtype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyCtype.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyIconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyIconv.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyMbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyMbstring.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp70.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp71.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp71.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp72.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp73.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp74.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp74.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp80.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp81.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp81.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp82.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp82.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp83.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp83.php -------------------------------------------------------------------------------- /src/Application/Polyfills/SymfonyPhp84.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Polyfills/SymfonyPhp84.php -------------------------------------------------------------------------------- /src/Application/Profiler/CollectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Profiler/CollectorInterface.php -------------------------------------------------------------------------------- /src/Application/Profiler/CollectorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Profiler/CollectorTrait.php -------------------------------------------------------------------------------- /src/Application/Profiler/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Profiler/Profile.php -------------------------------------------------------------------------------- /src/Application/Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Profiler/Profiler.php -------------------------------------------------------------------------------- /src/Application/Profiler/ProfilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Profiler/ProfilerInterface.php -------------------------------------------------------------------------------- /src/Application/Query/Analyser/Compatibility/GetCompatibilityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/Analyser/Compatibility/GetCompatibilityHandler.php -------------------------------------------------------------------------------- /src/Application/Query/Analyser/Compatibility/GetCompatibilityQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/Analyser/Compatibility/GetCompatibilityQuery.php -------------------------------------------------------------------------------- /src/Application/Query/Diagnose/DiagnoseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/Diagnose/DiagnoseHandler.php -------------------------------------------------------------------------------- /src/Application/Query/Diagnose/DiagnoseQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/Diagnose/DiagnoseQuery.php -------------------------------------------------------------------------------- /src/Application/Query/QueryBusInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/QueryBusInterface.php -------------------------------------------------------------------------------- /src/Application/Query/QueryHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/QueryHandlerInterface.php -------------------------------------------------------------------------------- /src/Application/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Query/QueryInterface.php -------------------------------------------------------------------------------- /src/Application/Service/SourceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Service/SourceProvider.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Arrays/ArrayDereferencingSyntaxSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Arrays/ArrayDereferencingSyntaxSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Arrays/ArrayUnpackingSyntaxSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Arrays/ArrayUnpackingSyntaxSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Arrays/ShortArraySyntaxSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Arrays/ShortArraySyntaxSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Attributes/AllowDynamicPropertiesAttributeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Attributes/AllowDynamicPropertiesAttributeSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Attributes/AttributeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Attributes/AttributeSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Attributes/OverrideAttributeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Attributes/OverrideAttributeSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Attributes/SensitiveParameterAttributeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Attributes/SensitiveParameterAttributeSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/AnonymousClassSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/AnonymousClassSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/ClassMemberAccessSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/ClassMemberAccessSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/DynamicAccessSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/DynamicAccessSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/MagicMethodsSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/MagicMethodsSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/MethodDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/MethodDeclarationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/NewInitializerSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/NewInitializerSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/PropertyDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/PropertyDeclarationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/PropertyHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/PropertyHooksSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/PropertyPromotionSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/PropertyPromotionSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/ReadonlyClassSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/ReadonlyClassSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/ReadonlyPropertySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/ReadonlyPropertySniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Classes/TypedPropertySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Classes/TypedPropertySniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/ClassConstantSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/ClassConstantSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/ConstSyntaxSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/ConstSyntaxSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/ConstantsInTraitsSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/ConstantsInTraitsSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/DynamicClassConstantFetchSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/DynamicClassConstantFetchSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/MagicClassConstantSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/MagicClassConstantSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Constants/TypedClassConstantSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Constants/TypedClassConstantSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/ControlStructures/DeclareSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/ControlStructures/DeclareSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/ControlStructures/GotoSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/ControlStructures/GotoSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/ControlStructures/MatchSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/ControlStructures/MatchSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/ControlStructures/NonCapturingCatchSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/ControlStructures/NonCapturingCatchSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Enumerations/EnumerationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Enumerations/EnumerationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Expressions/ClassExprSyntaxSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Expressions/ClassExprSyntaxSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Expressions/ConditionalCodeSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Expressions/ConditionalCodeSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Expressions/EmptySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Expressions/EmptySniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Expressions/StaticVarInitializerSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Expressions/StaticVarInitializerSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Fibers/FiberSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Fibers/FiberSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionCalls/SameSiteCookieSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionCalls/SameSiteCookieSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/ArrowFunctionSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/ArrowFunctionSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/ClosureSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/ClosureSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/FirstClassCallableSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/FirstClassCallableSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/NamedArgumentDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/NamedArgumentDeclarationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/ParamTypeDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/ParamTypeDeclarationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/ReturnTypeDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/ReturnTypeDeclarationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/FunctionDeclarations/TrailingCommaSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/FunctionDeclarations/TrailingCommaSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Generators/GeneratorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Generators/GeneratorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/KeywordBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/KeywordBag.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Keywords/ReservedSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Keywords/ReservedSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Numbers/BinaryNumberFormatSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Numbers/BinaryNumberFormatSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Numbers/OctalNumberFormatSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Numbers/OctalNumberFormatSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Operators/CombinedComparisonOperatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Operators/CombinedComparisonOperatorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Operators/NullCoalesceOperatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Operators/NullCoalesceOperatorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Operators/NullsafeOperatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Operators/NullsafeOperatorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Operators/PowOperatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Operators/PowOperatorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/Operators/ShortTernaryOperatorSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/Operators/ShortTernaryOperatorSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/SniffAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/SniffAbstract.php -------------------------------------------------------------------------------- /src/Application/Sniffs/SniffInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/SniffInterface.php -------------------------------------------------------------------------------- /src/Application/Sniffs/TextProcessing/CryptStringSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/TextProcessing/CryptStringSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/TextProcessing/DeprecateDollarBraceStringInterpolationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/TextProcessing/DeprecateDollarBraceStringInterpolationSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/UseDeclarations/UseConstFunctionSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/UseDeclarations/UseConstFunctionSniff.php -------------------------------------------------------------------------------- /src/Application/Sniffs/UseDeclarations/UseTraitSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Application/Sniffs/UseDeclarations/UseTraitSniff.php -------------------------------------------------------------------------------- /src/Infrastructure/Bus/Query/MessengerQueryBus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Infrastructure/Bus/Query/MessengerQueryBus.php -------------------------------------------------------------------------------- /src/Presentation/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Application.php -------------------------------------------------------------------------------- /src/Presentation/Console/ApplicationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/ApplicationInterface.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/AboutCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/AnalyserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/AnalyserCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/CommandInterface.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/DiagnoseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/DiagnoseCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/Command/Rule/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Command/Rule/ListCommand.php -------------------------------------------------------------------------------- /src/Presentation/Console/CommandLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/CommandLoaderInterface.php -------------------------------------------------------------------------------- /src/Presentation/Console/FactoryCommandLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/FactoryCommandLoader.php -------------------------------------------------------------------------------- /src/Presentation/Console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Input/Input.php -------------------------------------------------------------------------------- /src/Presentation/Console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Output/Output.php -------------------------------------------------------------------------------- /src/Presentation/Console/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/Style.php -------------------------------------------------------------------------------- /src/Presentation/Console/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/src/Presentation/Console/StyleInterface.php -------------------------------------------------------------------------------- /tests/ClassIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/ClassIssueTest.php -------------------------------------------------------------------------------- /tests/ConditionIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/ConditionIssueTest.php -------------------------------------------------------------------------------- /tests/DependencyIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/DependencyIssueTest.php -------------------------------------------------------------------------------- /tests/ErrorHandlerIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/ErrorHandlerIssueTest.php -------------------------------------------------------------------------------- /tests/FunctionIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/FunctionIssueTest.php -------------------------------------------------------------------------------- /tests/NamespaceIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/NamespaceIssueTest.php -------------------------------------------------------------------------------- /tests/PhpFeatures/Php53IssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpFeatures/Php53IssueTest.php -------------------------------------------------------------------------------- /tests/PhpFeatures/Php82IssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpFeatures/Php82IssueTest.php -------------------------------------------------------------------------------- /tests/PhpFeaturesIssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpFeaturesIssueTest.php -------------------------------------------------------------------------------- /tests/PhpParser/NodeVisitor/NameResolverVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpParser/NodeVisitor/NameResolverVisitorTest.php -------------------------------------------------------------------------------- /tests/PhpParser/NodeVisitor/NodeVisitorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpParser/NodeVisitor/NodeVisitorTestCase.php -------------------------------------------------------------------------------- /tests/PhpParser/NodeVisitor/VersionResolverVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/PhpParser/NodeVisitor/VersionResolverVisitorTest.php -------------------------------------------------------------------------------- /tests/Reference/IssueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Reference/IssueTest.php -------------------------------------------------------------------------------- /tests/Reference/ParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Reference/ParameterTest.php -------------------------------------------------------------------------------- /tests/Sniffs/AllowDynamicPropertiesAttributeSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/AllowDynamicPropertiesAttributeSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/AnonymousClassSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/AnonymousClassSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ArrayDereferencingSyntaxSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ArrayDereferencingSyntaxSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ArrayUnpackingSyntaxSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ArrayUnpackingSyntaxSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ArrowFunctionSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ArrowFunctionSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/AttributeSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/AttributeSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/BinaryNumberFormatSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/BinaryNumberFormatSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ClassConstantSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ClassConstantSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ClassExprSyntaxSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ClassExprSyntaxSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ClassMemberAccessSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ClassMemberAccessSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ClosureSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ClosureSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/CombinedComparisonOperatorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/CombinedComparisonOperatorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ConditionalCodeSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ConditionalCodeSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ConstSyntaxSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ConstSyntaxSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ConstantsInTraitsSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ConstantsInTraitsSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/CryptStringSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/CryptStringSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/DeclareSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/DeclareSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/DeprecateDollarBraceStringInterpolationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/DeprecateDollarBraceStringInterpolationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/DynamicClassConstantFetchSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/DynamicClassConstantFetchSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/EmptySniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/EmptySniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/EnumerationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/EnumerationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/FiberSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/FiberSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/FirstClassCallableSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/FirstClassCallableSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/GeneratorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/GeneratorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/GotoSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/GotoSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/KeywordReservedSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/KeywordReservedSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/MagicClassConstantSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/MagicClassConstantSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/MagicMethodsSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/MagicMethodsSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/MatchSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/MatchSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/MethodDeclarationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/MethodDeclarationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/NamedArgumentDeclarationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/NamedArgumentDeclarationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/NewInitializerSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/NewInitializerSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/NonCapturingCatchSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/NonCapturingCatchSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/NullCoalesceOperatorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/NullCoalesceOperatorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/NullsafeOperatorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/NullsafeOperatorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/OctalNumberFormatSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/OctalNumberFormatSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/OverrideAttributeSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/OverrideAttributeSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ParamTypeDeclarationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ParamTypeDeclarationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/PowOperatorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/PowOperatorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/PropertyDeclarationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/PropertyDeclarationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/PropertyHooksSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/PropertyHooksSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/PropertyPromotionSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/PropertyPromotionSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ReadonlyClassSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ReadonlyClassSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ReadonlyPropertySniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ReadonlyPropertySniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ReturnTypeDeclarationSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ReturnTypeDeclarationSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/SameSiteCookieSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/SameSiteCookieSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/SensitiveParameterAttributeSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/SensitiveParameterAttributeSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ShortArraySyntaxSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ShortArraySyntaxSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/ShortTernaryOperatorSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/ShortTernaryOperatorSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/SniffTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/SniffTestCase.php -------------------------------------------------------------------------------- /tests/Sniffs/StaticVarInitializerSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/StaticVarInitializerSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/TrailingCommaSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/TrailingCommaSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/TypedClassConstantSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/TypedClassConstantSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/TypedPropertySniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/TypedPropertySniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/UseConstFunctionSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/UseConstFunctionSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/UseTraitSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/UseTraitSniffTest.php -------------------------------------------------------------------------------- /tests/Sniffs/VariadicFunctionSniffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/Sniffs/VariadicFunctionSniffTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/classes/gh171.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/classes/gh171.php -------------------------------------------------------------------------------- /tests/fixtures/classes/gh199.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/classes/gh199.php -------------------------------------------------------------------------------- /tests/fixtures/conditions/gh128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/conditions/gh128.php -------------------------------------------------------------------------------- /tests/fixtures/conditions/gh153.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/conditions/gh153.php -------------------------------------------------------------------------------- /tests/fixtures/conditions/gh155.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/conditions/gh155.php -------------------------------------------------------------------------------- /tests/fixtures/conditions/gh159.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/conditions/gh159.php -------------------------------------------------------------------------------- /tests/fixtures/conditions/gh160/gh160-1.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/features/gh228.php: -------------------------------------------------------------------------------- 1 | doStuff(); 7 | -------------------------------------------------------------------------------- /tests/fixtures/gh33.php: -------------------------------------------------------------------------------- 1 | c; 4 | } 5 | -------------------------------------------------------------------------------- /tests/fixtures/gh34.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/gh34.php -------------------------------------------------------------------------------- /tests/fixtures/gh38.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/gh38.php -------------------------------------------------------------------------------- /tests/fixtures/gh97.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/gh97.php -------------------------------------------------------------------------------- /tests/fixtures/noContents/emptyDir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/noContents/emptyFile.php: -------------------------------------------------------------------------------- 1 | bold"; 3 | 4 | echo htmlentities($str); 5 | -------------------------------------------------------------------------------- /tests/fixtures/references/htmlentities.18881o.php: -------------------------------------------------------------------------------- 1 | bold"; 3 | 4 | echo htmlentities($str, ENT_QUOTES); 5 | -------------------------------------------------------------------------------- /tests/fixtures/references/htmlspecialchars.18881d.php: -------------------------------------------------------------------------------- 1 | Test", ENT_QUOTES); 3 | -------------------------------------------------------------------------------- /tests/fixtures/references/htmlspecialchars.18881o.php: -------------------------------------------------------------------------------- 1 | Test", ENT_QUOTES, 'UTF-8'); 3 | -------------------------------------------------------------------------------- /tests/fixtures/references/idn_to_ascii.18881d.php: -------------------------------------------------------------------------------- 1 | bar(); 3 | -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/anonymous_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/anonymous_classes.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/constant_initializers.php: -------------------------------------------------------------------------------- 1 | bar(); 3 | -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/magic_methods_501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/magic_methods_501.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/magic_methods_503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/magic_methods_503.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/magic_methods_506.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/magic_methods_506.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/magic_property_804.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/magic_property_804.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/member_access_on_cloning.php: -------------------------------------------------------------------------------- 1 | bar(); 3 | -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/method_initializers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llaville/php-compatinfo/HEAD/tests/fixtures/sniffs/classes/method_initializers.php -------------------------------------------------------------------------------- /tests/fixtures/sniffs/classes/php4_public_method_visibility.php: -------------------------------------------------------------------------------- 1 |