gitextract_mms3jl0v/ ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── call_issue_pr_tracker.yml │ ├── call_issues_cron.yml │ └── ci.yml ├── .gitignore ├── .phpstorm.meta.php ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── _config.yml ├── _ide_helper.php ├── app/ │ ├── Application.php │ ├── Console/ │ │ └── Commands/ │ │ └── RegisterApp.php │ ├── EnhancedApps.php │ ├── Facades/ │ │ └── Form.php │ ├── Helper.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ ├── HealthController.php │ │ │ ├── HomeController.php │ │ │ ├── ImportController.php │ │ │ ├── ItemController.php │ │ │ ├── ItemRestController.php │ │ │ ├── SearchController.php │ │ │ ├── SettingsController.php │ │ │ ├── TagController.php │ │ │ └── UserController.php │ │ └── Middleware/ │ │ ├── CheckAllowed.php │ │ ├── RedirectIfAuthenticated.php │ │ └── TrustProxies.php │ ├── Item.php │ ├── ItemTag.php │ ├── Jobs/ │ │ ├── ProcessApps.php │ │ └── UpdateApps.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Search.php │ ├── SearchInterface.php │ ├── Services/ │ │ └── CustomFormBuilder.php │ ├── Setting.php │ ├── SettingGroup.php │ ├── SettingUser.php │ ├── SupportedApps.php │ └── User.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── cache/ │ │ └── .gitignore │ └── providers.php ├── composer.json ├── config/ │ ├── .gitkeep │ ├── app.php │ ├── auth.php │ ├── database.php │ ├── filesystems.php │ ├── github.php │ ├── mail.php │ └── services.php ├── css/ │ └── app.css ├── database/ │ ├── .gitignore │ ├── factories/ │ │ ├── ItemFactory.php │ │ ├── ItemTagFactory.php │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 2018_01_27_155922_create_items_table.php │ │ ├── 2018_02_04_185524_create_settings_table.php │ │ ├── 2018_02_04_185802_create_setting_groups_table.php │ │ ├── 2018_02_16_175830_add_columns_to_items_for_groups.php │ │ ├── 2018_02_16_193703_item_tag.php │ │ ├── 2018_10_12_122907_create_users_table.php │ │ ├── 2018_10_12_123036_create_password_resets_table.php │ │ ├── 2018_10_12_131222_add_user_id_to_items_table.php │ │ ├── 2018_10_12_140451_create_setting_user_pivot_table.php │ │ ├── 2018_10_18_110905_create_applications_table.php │ │ ├── 2018_10_23_132008_add_class_to_items_table.php │ │ ├── 2018_10_31_191604_create_jobs_table.php │ │ ├── 2018_11_06_112434_create_failed_jobs_table.php │ │ ├── 2022_03_15_140911_add_appid_to_items.php │ │ ├── 2022_03_16_093044_add_class_to_application.php │ │ ├── 2022_03_16_181343_add_app_description_to_items.php │ │ ├── 2023_01_27_121000_add_role_to_item.php │ │ ├── 2024_02_16_000000_rename_password_resets_table.php │ │ └── 2025_07_17_134226_create_cache_table.php │ └── seeders/ │ ├── DatabaseSeeder.php │ ├── SettingsSeeder.php │ └── UsersSeeder.php ├── docker/ │ ├── docker-compose.yml │ ├── nginx/ │ │ ├── Dockerfile │ │ └── default.conf │ └── php/ │ └── Dockerfile ├── lang/ │ ├── br/ │ │ └── app.php │ ├── cs/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── da/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── de/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── el/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── en/ │ │ ├── app.php │ │ └── passwords.php │ ├── es/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── fi/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── fr/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── hu/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── it/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── jp/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── ko/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── lmo/ │ │ └── app.php │ ├── nl/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── no/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── pl/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── pt/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── rs/ │ │ └── app.php │ ├── ru/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── sl/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── sv/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ └── passwords.php │ ├── tr/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── uk/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── zh/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh_TW/ │ ├── app.php │ ├── auth.php │ ├── pagination.php │ └── passwords.php ├── mix-manifest.json ├── package.json ├── phpcs.xml ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── browserconfig.xml │ ├── css/ │ │ └── app.css │ ├── index.php │ ├── js/ │ │ ├── app.js │ │ ├── fontawesome.js │ │ └── trianglify.js │ ├── manifest.json │ ├── mix-manifest.json │ └── robots.txt ├── readme.md ├── resources/ │ ├── assets/ │ │ ├── js/ │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── components/ │ │ │ │ └── ExampleComponent.vue │ │ │ ├── huebee.js │ │ │ ├── itemExport.js │ │ │ ├── itemImport.js │ │ │ ├── keyBindings.js │ │ │ └── liveStatRefresh.js │ │ └── sass/ │ │ ├── _app.scss │ │ ├── _huebee.scss │ │ ├── _normalise.scss │ │ ├── _rune.scss │ │ ├── _select2.scss │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── add.blade.php │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ └── register.blade.php │ ├── home.blade.php │ ├── item.blade.php │ ├── items/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── enable.blade.php │ │ ├── form.blade.php │ │ ├── import.blade.php │ │ ├── list.blade.php │ │ ├── preview.blade.php │ │ ├── scripts.blade.php │ │ └── trash.blade.php │ ├── layouts/ │ │ ├── app.blade.php │ │ └── users.blade.php │ ├── partials/ │ │ ├── search.blade.php │ │ └── taglist.blade.php │ ├── settings/ │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ └── list.blade.php │ ├── sortable.blade.php │ ├── tags/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ ├── list.blade.php │ │ ├── scripts.blade.php │ │ └── trash.blade.php │ ├── users/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── form.blade.php │ │ ├── index.blade.php │ │ ├── scripts.blade.php │ │ └── trash.blade.php │ ├── userselect.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ ├── .gitignore │ │ ├── public/ │ │ │ └── .gitignore │ │ ├── searchproviders.yaml │ │ └── supportedapps.json │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ ├── Feature/ │ │ ├── DashTest.php │ │ ├── ImportTest.php │ │ ├── ItemCreateTest.php │ │ ├── ItemDeleteTest.php │ │ ├── ItemExportTest.php │ │ ├── ItemListTest.php │ │ ├── SVGSanitizerTest.php │ │ ├── SearchTest.php │ │ ├── SettingsTest.php │ │ ├── TagListTest.php │ │ ├── UserEditTest.php │ │ └── UserListTest.php │ ├── TestCase.php │ └── Unit/ │ ├── database/ │ │ └── seeders/ │ │ └── SettingsSeederTest.php │ ├── helpers/ │ │ ├── IsImageTest.php │ │ └── SlugTest.php │ └── lang/ │ └── LangTest.php ├── vendor/ │ ├── autoload.php │ ├── aws/ │ │ ├── aws-crt-php/ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── format-check.py │ │ │ └── src/ │ │ │ └── AWS/ │ │ │ └── CRT/ │ │ │ ├── Auth/ │ │ │ │ ├── AwsCredentials.php │ │ │ │ ├── CredentialsProvider.php │ │ │ │ ├── Signable.php │ │ │ │ ├── SignatureType.php │ │ │ │ ├── SignedBodyHeaderType.php │ │ │ │ ├── Signing.php │ │ │ │ ├── SigningAlgorithm.php │ │ │ │ ├── SigningConfigAWS.php │ │ │ │ ├── SigningResult.php │ │ │ │ └── StaticCredentialsProvider.php │ │ │ ├── CRT.php │ │ │ ├── HTTP/ │ │ │ │ ├── Headers.php │ │ │ │ ├── Message.php │ │ │ │ ├── Request.php │ │ │ │ └── Response.php │ │ │ ├── IO/ │ │ │ │ ├── EventLoopGroup.php │ │ │ │ └── InputStream.php │ │ │ ├── Internal/ │ │ │ │ ├── Encoding.php │ │ │ │ └── Extension.php │ │ │ ├── Log.php │ │ │ ├── NativeResource.php │ │ │ └── Options.php │ │ └── aws-sdk-php/ │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CRT_INSTRUCTIONS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── THIRD-PARTY-LICENSES │ │ ├── composer.json │ │ └── src/ │ │ ├── ACMPCA/ │ │ │ ├── ACMPCAClient.php │ │ │ └── Exception/ │ │ │ └── ACMPCAException.php │ │ ├── AIOps/ │ │ │ ├── AIOpsClient.php │ │ │ └── Exception/ │ │ │ └── AIOpsException.php │ │ ├── ARCZonalShift/ │ │ │ ├── ARCZonalShiftClient.php │ │ │ └── Exception/ │ │ │ └── ARCZonalShiftException.php │ │ ├── AbstractConfigurationProvider.php │ │ ├── AccessAnalyzer/ │ │ │ ├── AccessAnalyzerClient.php │ │ │ └── Exception/ │ │ │ └── AccessAnalyzerException.php │ │ ├── Account/ │ │ │ ├── AccountClient.php │ │ │ └── Exception/ │ │ │ └── AccountException.php │ │ ├── Acm/ │ │ │ ├── AcmClient.php │ │ │ └── Exception/ │ │ │ └── AcmException.php │ │ ├── Amplify/ │ │ │ ├── AmplifyClient.php │ │ │ └── Exception/ │ │ │ └── AmplifyException.php │ │ ├── AmplifyBackend/ │ │ │ ├── AmplifyBackendClient.php │ │ │ └── Exception/ │ │ │ └── AmplifyBackendException.php │ │ ├── AmplifyUIBuilder/ │ │ │ ├── AmplifyUIBuilderClient.php │ │ │ └── Exception/ │ │ │ └── AmplifyUIBuilderException.php │ │ ├── Api/ │ │ │ ├── AbstractModel.php │ │ │ ├── ApiProvider.php │ │ │ ├── DateTimeResult.php │ │ │ ├── DocModel.php │ │ │ ├── ErrorParser/ │ │ │ │ ├── AbstractErrorParser.php │ │ │ │ ├── JsonParserTrait.php │ │ │ │ ├── JsonRpcErrorParser.php │ │ │ │ ├── RestJsonErrorParser.php │ │ │ │ └── XmlErrorParser.php │ │ │ ├── ListShape.php │ │ │ ├── MapShape.php │ │ │ ├── Operation.php │ │ │ ├── Parser/ │ │ │ │ ├── AbstractParser.php │ │ │ │ ├── AbstractRestParser.php │ │ │ │ ├── Crc32ValidatingParser.php │ │ │ │ ├── DecodingEventStreamIterator.php │ │ │ │ ├── EventParsingIterator.php │ │ │ │ ├── Exception/ │ │ │ │ │ └── ParserException.php │ │ │ │ ├── JsonParser.php │ │ │ │ ├── JsonRpcParser.php │ │ │ │ ├── MetadataParserTrait.php │ │ │ │ ├── NonSeekableStreamDecodingEventStreamIterator.php │ │ │ │ ├── PayloadParserTrait.php │ │ │ │ ├── QueryParser.php │ │ │ │ ├── RestJsonParser.php │ │ │ │ ├── RestXmlParser.php │ │ │ │ └── XmlParser.php │ │ │ ├── Serializer/ │ │ │ │ ├── Ec2ParamBuilder.php │ │ │ │ ├── JsonBody.php │ │ │ │ ├── JsonRpcSerializer.php │ │ │ │ ├── QueryParamBuilder.php │ │ │ │ ├── QuerySerializer.php │ │ │ │ ├── RestJsonSerializer.php │ │ │ │ ├── RestSerializer.php │ │ │ │ ├── RestXmlSerializer.php │ │ │ │ └── XmlBody.php │ │ │ ├── Service.php │ │ │ ├── Shape.php │ │ │ ├── ShapeMap.php │ │ │ ├── StructureShape.php │ │ │ ├── SupportedProtocols.php │ │ │ ├── TimestampShape.php │ │ │ └── Validator.php │ │ ├── ApiGateway/ │ │ │ ├── ApiGatewayClient.php │ │ │ └── Exception/ │ │ │ └── ApiGatewayException.php │ │ ├── ApiGatewayManagementApi/ │ │ │ ├── ApiGatewayManagementApiClient.php │ │ │ └── Exception/ │ │ │ └── ApiGatewayManagementApiException.php │ │ ├── ApiGatewayV2/ │ │ │ ├── ApiGatewayV2Client.php │ │ │ └── Exception/ │ │ │ └── ApiGatewayV2Exception.php │ │ ├── AppConfig/ │ │ │ ├── AppConfigClient.php │ │ │ └── Exception/ │ │ │ └── AppConfigException.php │ │ ├── AppConfigData/ │ │ │ ├── AppConfigDataClient.php │ │ │ └── Exception/ │ │ │ └── AppConfigDataException.php │ │ ├── AppFabric/ │ │ │ ├── AppFabricClient.php │ │ │ └── Exception/ │ │ │ └── AppFabricException.php │ │ ├── AppIntegrationsService/ │ │ │ ├── AppIntegrationsServiceClient.php │ │ │ └── Exception/ │ │ │ └── AppIntegrationsServiceException.php │ │ ├── AppMesh/ │ │ │ ├── AppMeshClient.php │ │ │ └── Exception/ │ │ │ └── AppMeshException.php │ │ ├── AppRegistry/ │ │ │ ├── AppRegistryClient.php │ │ │ └── Exception/ │ │ │ └── AppRegistryException.php │ │ ├── AppRunner/ │ │ │ ├── AppRunnerClient.php │ │ │ └── Exception/ │ │ │ └── AppRunnerException.php │ │ ├── AppSync/ │ │ │ ├── AppSyncClient.php │ │ │ └── Exception/ │ │ │ └── AppSyncException.php │ │ ├── AppTest/ │ │ │ ├── AppTestClient.php │ │ │ └── Exception/ │ │ │ └── AppTestException.php │ │ ├── Appflow/ │ │ │ ├── AppflowClient.php │ │ │ └── Exception/ │ │ │ └── AppflowException.php │ │ ├── ApplicationAutoScaling/ │ │ │ ├── ApplicationAutoScalingClient.php │ │ │ └── Exception/ │ │ │ └── ApplicationAutoScalingException.php │ │ ├── ApplicationCostProfiler/ │ │ │ ├── ApplicationCostProfilerClient.php │ │ │ └── Exception/ │ │ │ └── ApplicationCostProfilerException.php │ │ ├── ApplicationDiscoveryService/ │ │ │ ├── ApplicationDiscoveryServiceClient.php │ │ │ └── Exception/ │ │ │ └── ApplicationDiscoveryServiceException.php │ │ ├── ApplicationInsights/ │ │ │ ├── ApplicationInsightsClient.php │ │ │ └── Exception/ │ │ │ └── ApplicationInsightsException.php │ │ ├── ApplicationSignals/ │ │ │ ├── ApplicationSignalsClient.php │ │ │ └── Exception/ │ │ │ └── ApplicationSignalsException.php │ │ ├── Appstream/ │ │ │ ├── AppstreamClient.php │ │ │ └── Exception/ │ │ │ └── AppstreamException.php │ │ ├── Arn/ │ │ │ ├── AccessPointArn.php │ │ │ ├── AccessPointArnInterface.php │ │ │ ├── Arn.php │ │ │ ├── ArnInterface.php │ │ │ ├── ArnParser.php │ │ │ ├── Exception/ │ │ │ │ └── InvalidArnException.php │ │ │ ├── ObjectLambdaAccessPointArn.php │ │ │ ├── ResourceTypeAndIdTrait.php │ │ │ └── S3/ │ │ │ ├── AccessPointArn.php │ │ │ ├── BucketArnInterface.php │ │ │ ├── MultiRegionAccessPointArn.php │ │ │ ├── OutpostsAccessPointArn.php │ │ │ ├── OutpostsArnInterface.php │ │ │ └── OutpostsBucketArn.php │ │ ├── Artifact/ │ │ │ ├── ArtifactClient.php │ │ │ └── Exception/ │ │ │ └── ArtifactException.php │ │ ├── Athena/ │ │ │ ├── AthenaClient.php │ │ │ └── Exception/ │ │ │ └── AthenaException.php │ │ ├── AuditManager/ │ │ │ ├── AuditManagerClient.php │ │ │ └── Exception/ │ │ │ └── AuditManagerException.php │ │ ├── AugmentedAIRuntime/ │ │ │ ├── AugmentedAIRuntimeClient.php │ │ │ └── Exception/ │ │ │ └── AugmentedAIRuntimeException.php │ │ ├── Auth/ │ │ │ ├── AuthSchemeResolver.php │ │ │ ├── AuthSchemeResolverInterface.php │ │ │ ├── AuthSelectionMiddleware.php │ │ │ └── Exception/ │ │ │ └── UnresolvedAuthSchemeException.php │ │ ├── AutoScaling/ │ │ │ ├── AutoScalingClient.php │ │ │ └── Exception/ │ │ │ └── AutoScalingException.php │ │ ├── AutoScalingPlans/ │ │ │ ├── AutoScalingPlansClient.php │ │ │ └── Exception/ │ │ │ └── AutoScalingPlansException.php │ │ ├── AwsClient.php │ │ ├── AwsClientInterface.php │ │ ├── AwsClientTrait.php │ │ ├── B2bi/ │ │ │ ├── B2biClient.php │ │ │ └── Exception/ │ │ │ └── B2biException.php │ │ ├── BCMDataExports/ │ │ │ ├── BCMDataExportsClient.php │ │ │ └── Exception/ │ │ │ └── BCMDataExportsException.php │ │ ├── BCMPricingCalculator/ │ │ │ ├── BCMPricingCalculatorClient.php │ │ │ └── Exception/ │ │ │ └── BCMPricingCalculatorException.php │ │ ├── Backup/ │ │ │ ├── BackupClient.php │ │ │ └── Exception/ │ │ │ └── BackupException.php │ │ ├── BackupGateway/ │ │ │ ├── BackupGatewayClient.php │ │ │ └── Exception/ │ │ │ └── BackupGatewayException.php │ │ ├── BackupSearch/ │ │ │ ├── BackupSearchClient.php │ │ │ └── Exception/ │ │ │ └── BackupSearchException.php │ │ ├── Batch/ │ │ │ ├── BatchClient.php │ │ │ └── Exception/ │ │ │ └── BatchException.php │ │ ├── Bedrock/ │ │ │ ├── BedrockClient.php │ │ │ └── Exception/ │ │ │ └── BedrockException.php │ │ ├── BedrockAgent/ │ │ │ ├── BedrockAgentClient.php │ │ │ └── Exception/ │ │ │ └── BedrockAgentException.php │ │ ├── BedrockAgentRuntime/ │ │ │ ├── BedrockAgentRuntimeClient.php │ │ │ └── Exception/ │ │ │ └── BedrockAgentRuntimeException.php │ │ ├── BedrockDataAutomation/ │ │ │ ├── BedrockDataAutomationClient.php │ │ │ └── Exception/ │ │ │ └── BedrockDataAutomationException.php │ │ ├── BedrockDataAutomationRuntime/ │ │ │ ├── BedrockDataAutomationRuntimeClient.php │ │ │ └── Exception/ │ │ │ └── BedrockDataAutomationRuntimeException.php │ │ ├── BedrockRuntime/ │ │ │ ├── BedrockRuntimeClient.php │ │ │ └── Exception/ │ │ │ └── BedrockRuntimeException.php │ │ ├── Billing/ │ │ │ ├── BillingClient.php │ │ │ └── Exception/ │ │ │ └── BillingException.php │ │ ├── BillingConductor/ │ │ │ ├── BillingConductorClient.php │ │ │ └── Exception/ │ │ │ └── BillingConductorException.php │ │ ├── Braket/ │ │ │ ├── BraketClient.php │ │ │ └── Exception/ │ │ │ └── BraketException.php │ │ ├── Budgets/ │ │ │ ├── BudgetsClient.php │ │ │ └── Exception/ │ │ │ └── BudgetsException.php │ │ ├── CacheInterface.php │ │ ├── Chatbot/ │ │ │ ├── ChatbotClient.php │ │ │ └── Exception/ │ │ │ └── ChatbotException.php │ │ ├── Chime/ │ │ │ ├── ChimeClient.php │ │ │ └── Exception/ │ │ │ └── ChimeException.php │ │ ├── ChimeSDKIdentity/ │ │ │ ├── ChimeSDKIdentityClient.php │ │ │ └── Exception/ │ │ │ └── ChimeSDKIdentityException.php │ │ ├── ChimeSDKMediaPipelines/ │ │ │ ├── ChimeSDKMediaPipelinesClient.php │ │ │ └── Exception/ │ │ │ └── ChimeSDKMediaPipelinesException.php │ │ ├── ChimeSDKMeetings/ │ │ │ ├── ChimeSDKMeetingsClient.php │ │ │ └── Exception/ │ │ │ └── ChimeSDKMeetingsException.php │ │ ├── ChimeSDKMessaging/ │ │ │ ├── ChimeSDKMessagingClient.php │ │ │ └── Exception/ │ │ │ └── ChimeSDKMessagingException.php │ │ ├── ChimeSDKVoice/ │ │ │ ├── ChimeSDKVoiceClient.php │ │ │ └── Exception/ │ │ │ └── ChimeSDKVoiceException.php │ │ ├── CleanRooms/ │ │ │ ├── CleanRoomsClient.php │ │ │ └── Exception/ │ │ │ └── CleanRoomsException.php │ │ ├── CleanRoomsML/ │ │ │ ├── CleanRoomsMLClient.php │ │ │ └── Exception/ │ │ │ └── CleanRoomsMLException.php │ │ ├── ClientResolver.php │ │ ├── ClientSideMonitoring/ │ │ │ ├── AbstractMonitoringMiddleware.php │ │ │ ├── ApiCallAttemptMonitoringMiddleware.php │ │ │ ├── ApiCallMonitoringMiddleware.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ ├── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ └── MonitoringMiddlewareInterface.php │ │ ├── Cloud9/ │ │ │ ├── Cloud9Client.php │ │ │ └── Exception/ │ │ │ └── Cloud9Exception.php │ │ ├── CloudControlApi/ │ │ │ ├── CloudControlApiClient.php │ │ │ └── Exception/ │ │ │ └── CloudControlApiException.php │ │ ├── CloudDirectory/ │ │ │ ├── CloudDirectoryClient.php │ │ │ └── Exception/ │ │ │ └── CloudDirectoryException.php │ │ ├── CloudFormation/ │ │ │ ├── CloudFormationClient.php │ │ │ └── Exception/ │ │ │ └── CloudFormationException.php │ │ ├── CloudFront/ │ │ │ ├── CloudFrontClient.php │ │ │ ├── CookieSigner.php │ │ │ ├── Exception/ │ │ │ │ └── CloudFrontException.php │ │ │ ├── Signer.php │ │ │ └── UrlSigner.php │ │ ├── CloudFrontKeyValueStore/ │ │ │ ├── CloudFrontKeyValueStoreClient.php │ │ │ └── Exception/ │ │ │ └── CloudFrontKeyValueStoreException.php │ │ ├── CloudHSMV2/ │ │ │ ├── CloudHSMV2Client.php │ │ │ └── Exception/ │ │ │ └── CloudHSMV2Exception.php │ │ ├── CloudHsm/ │ │ │ ├── CloudHsmClient.php │ │ │ └── Exception/ │ │ │ └── CloudHsmException.php │ │ ├── CloudSearch/ │ │ │ ├── CloudSearchClient.php │ │ │ └── Exception/ │ │ │ └── CloudSearchException.php │ │ ├── CloudSearchDomain/ │ │ │ ├── CloudSearchDomainClient.php │ │ │ └── Exception/ │ │ │ └── CloudSearchDomainException.php │ │ ├── CloudTrail/ │ │ │ ├── CloudTrailClient.php │ │ │ ├── Exception/ │ │ │ │ └── CloudTrailException.php │ │ │ ├── LogFileIterator.php │ │ │ ├── LogFileReader.php │ │ │ └── LogRecordIterator.php │ │ ├── CloudTrailData/ │ │ │ ├── CloudTrailDataClient.php │ │ │ └── Exception/ │ │ │ └── CloudTrailDataException.php │ │ ├── CloudWatch/ │ │ │ ├── CloudWatchClient.php │ │ │ └── Exception/ │ │ │ └── CloudWatchException.php │ │ ├── CloudWatchEvents/ │ │ │ ├── CloudWatchEventsClient.php │ │ │ └── Exception/ │ │ │ └── CloudWatchEventsException.php │ │ ├── CloudWatchEvidently/ │ │ │ ├── CloudWatchEvidentlyClient.php │ │ │ └── Exception/ │ │ │ └── CloudWatchEvidentlyException.php │ │ ├── CloudWatchLogs/ │ │ │ ├── CloudWatchLogsClient.php │ │ │ └── Exception/ │ │ │ └── CloudWatchLogsException.php │ │ ├── CloudWatchRUM/ │ │ │ ├── CloudWatchRUMClient.php │ │ │ └── Exception/ │ │ │ └── CloudWatchRUMException.php │ │ ├── CodeArtifact/ │ │ │ ├── CodeArtifactClient.php │ │ │ └── Exception/ │ │ │ └── CodeArtifactException.php │ │ ├── CodeBuild/ │ │ │ ├── CodeBuildClient.php │ │ │ └── Exception/ │ │ │ └── CodeBuildException.php │ │ ├── CodeCatalyst/ │ │ │ ├── CodeCatalystClient.php │ │ │ └── Exception/ │ │ │ └── CodeCatalystException.php │ │ ├── CodeCommit/ │ │ │ ├── CodeCommitClient.php │ │ │ └── Exception/ │ │ │ └── CodeCommitException.php │ │ ├── CodeConnections/ │ │ │ ├── CodeConnectionsClient.php │ │ │ └── Exception/ │ │ │ └── CodeConnectionsException.php │ │ ├── CodeDeploy/ │ │ │ ├── CodeDeployClient.php │ │ │ └── Exception/ │ │ │ └── CodeDeployException.php │ │ ├── CodeGuruProfiler/ │ │ │ ├── CodeGuruProfilerClient.php │ │ │ └── Exception/ │ │ │ └── CodeGuruProfilerException.php │ │ ├── CodeGuruReviewer/ │ │ │ ├── CodeGuruReviewerClient.php │ │ │ └── Exception/ │ │ │ └── CodeGuruReviewerException.php │ │ ├── CodeGuruSecurity/ │ │ │ ├── CodeGuruSecurityClient.php │ │ │ └── Exception/ │ │ │ └── CodeGuruSecurityException.php │ │ ├── CodePipeline/ │ │ │ ├── CodePipelineClient.php │ │ │ └── Exception/ │ │ │ └── CodePipelineException.php │ │ ├── CodeStarNotifications/ │ │ │ ├── CodeStarNotificationsClient.php │ │ │ └── Exception/ │ │ │ └── CodeStarNotificationsException.php │ │ ├── CodeStarconnections/ │ │ │ ├── CodeStarconnectionsClient.php │ │ │ └── Exception/ │ │ │ └── CodeStarconnectionsException.php │ │ ├── CognitoIdentity/ │ │ │ ├── CognitoIdentityClient.php │ │ │ ├── CognitoIdentityProvider.php │ │ │ └── Exception/ │ │ │ └── CognitoIdentityException.php │ │ ├── CognitoIdentityProvider/ │ │ │ ├── CognitoIdentityProviderClient.php │ │ │ └── Exception/ │ │ │ └── CognitoIdentityProviderException.php │ │ ├── CognitoSync/ │ │ │ ├── CognitoSyncClient.php │ │ │ └── Exception/ │ │ │ └── CognitoSyncException.php │ │ ├── Command.php │ │ ├── CommandInterface.php │ │ ├── CommandPool.php │ │ ├── Comprehend/ │ │ │ ├── ComprehendClient.php │ │ │ └── Exception/ │ │ │ └── ComprehendException.php │ │ ├── ComprehendMedical/ │ │ │ ├── ComprehendMedicalClient.php │ │ │ └── Exception/ │ │ │ └── ComprehendMedicalException.php │ │ ├── ComputeOptimizer/ │ │ │ ├── ComputeOptimizerClient.php │ │ │ └── Exception/ │ │ │ └── ComputeOptimizerException.php │ │ ├── ConfigService/ │ │ │ ├── ConfigServiceClient.php │ │ │ └── Exception/ │ │ │ └── ConfigServiceException.php │ │ ├── Configuration/ │ │ │ └── ConfigurationResolver.php │ │ ├── ConfigurationProviderInterface.php │ │ ├── Connect/ │ │ │ ├── ConnectClient.php │ │ │ └── Exception/ │ │ │ └── ConnectException.php │ │ ├── ConnectCampaignService/ │ │ │ ├── ConnectCampaignServiceClient.php │ │ │ └── Exception/ │ │ │ └── ConnectCampaignServiceException.php │ │ ├── ConnectCampaignsV2/ │ │ │ ├── ConnectCampaignsV2Client.php │ │ │ └── Exception/ │ │ │ └── ConnectCampaignsV2Exception.php │ │ ├── ConnectCases/ │ │ │ ├── ConnectCasesClient.php │ │ │ └── Exception/ │ │ │ └── ConnectCasesException.php │ │ ├── ConnectContactLens/ │ │ │ ├── ConnectContactLensClient.php │ │ │ └── Exception/ │ │ │ └── ConnectContactLensException.php │ │ ├── ConnectParticipant/ │ │ │ ├── ConnectParticipantClient.php │ │ │ └── Exception/ │ │ │ └── ConnectParticipantException.php │ │ ├── ConnectWisdomService/ │ │ │ ├── ConnectWisdomServiceClient.php │ │ │ └── Exception/ │ │ │ └── ConnectWisdomServiceException.php │ │ ├── ControlCatalog/ │ │ │ ├── ControlCatalogClient.php │ │ │ └── Exception/ │ │ │ └── ControlCatalogException.php │ │ ├── ControlTower/ │ │ │ ├── ControlTowerClient.php │ │ │ └── Exception/ │ │ │ └── ControlTowerException.php │ │ ├── CostExplorer/ │ │ │ ├── CostExplorerClient.php │ │ │ └── Exception/ │ │ │ └── CostExplorerException.php │ │ ├── CostOptimizationHub/ │ │ │ ├── CostOptimizationHubClient.php │ │ │ └── Exception/ │ │ │ └── CostOptimizationHubException.php │ │ ├── CostandUsageReportService/ │ │ │ ├── CostandUsageReportServiceClient.php │ │ │ └── Exception/ │ │ │ └── CostandUsageReportServiceException.php │ │ ├── Credentials/ │ │ │ ├── AssumeRoleCredentialProvider.php │ │ │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ │ │ ├── CredentialProvider.php │ │ │ ├── CredentialSources.php │ │ │ ├── Credentials.php │ │ │ ├── CredentialsInterface.php │ │ │ ├── CredentialsUtils.php │ │ │ ├── EcsCredentialProvider.php │ │ │ └── InstanceProfileProvider.php │ │ ├── Crypto/ │ │ │ ├── AbstractCryptoClient.php │ │ │ ├── AbstractCryptoClientV2.php │ │ │ ├── AesDecryptingStream.php │ │ │ ├── AesEncryptingStream.php │ │ │ ├── AesGcmDecryptingStream.php │ │ │ ├── AesGcmEncryptingStream.php │ │ │ ├── AesStreamInterface.php │ │ │ ├── AesStreamInterfaceV2.php │ │ │ ├── Cipher/ │ │ │ │ ├── Cbc.php │ │ │ │ ├── CipherBuilderTrait.php │ │ │ │ └── CipherMethod.php │ │ │ ├── DecryptionTrait.php │ │ │ ├── DecryptionTraitV2.php │ │ │ ├── EncryptionTrait.php │ │ │ ├── EncryptionTraitV2.php │ │ │ ├── KmsMaterialsProvider.php │ │ │ ├── KmsMaterialsProviderV2.php │ │ │ ├── MaterialsProvider.php │ │ │ ├── MaterialsProviderInterface.php │ │ │ ├── MaterialsProviderInterfaceV2.php │ │ │ ├── MaterialsProviderV2.php │ │ │ ├── MetadataEnvelope.php │ │ │ └── MetadataStrategyInterface.php │ │ ├── CustomerProfiles/ │ │ │ ├── CustomerProfilesClient.php │ │ │ └── Exception/ │ │ │ └── CustomerProfilesException.php │ │ ├── DAX/ │ │ │ ├── DAXClient.php │ │ │ └── Exception/ │ │ │ └── DAXException.php │ │ ├── DLM/ │ │ │ ├── DLMClient.php │ │ │ └── Exception/ │ │ │ └── DLMException.php │ │ ├── DSQL/ │ │ │ ├── AuthTokenGenerator.php │ │ │ ├── DSQLClient.php │ │ │ └── Exception/ │ │ │ └── DSQLException.php │ │ ├── DataExchange/ │ │ │ ├── DataExchangeClient.php │ │ │ └── Exception/ │ │ │ └── DataExchangeException.php │ │ ├── DataPipeline/ │ │ │ ├── DataPipelineClient.php │ │ │ └── Exception/ │ │ │ └── DataPipelineException.php │ │ ├── DataSync/ │ │ │ ├── DataSyncClient.php │ │ │ └── Exception/ │ │ │ └── DataSyncException.php │ │ ├── DataZone/ │ │ │ ├── DataZoneClient.php │ │ │ └── Exception/ │ │ │ └── DataZoneException.php │ │ ├── DatabaseMigrationService/ │ │ │ ├── DatabaseMigrationServiceClient.php │ │ │ └── Exception/ │ │ │ └── DatabaseMigrationServiceException.php │ │ ├── Deadline/ │ │ │ ├── DeadlineClient.php │ │ │ └── Exception/ │ │ │ └── DeadlineException.php │ │ ├── DefaultsMode/ │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception/ │ │ │ └── ConfigurationException.php │ │ ├── Detective/ │ │ │ ├── DetectiveClient.php │ │ │ └── Exception/ │ │ │ └── DetectiveException.php │ │ ├── DevOpsGuru/ │ │ │ ├── DevOpsGuruClient.php │ │ │ └── Exception/ │ │ │ └── DevOpsGuruException.php │ │ ├── DeviceFarm/ │ │ │ ├── DeviceFarmClient.php │ │ │ └── Exception/ │ │ │ └── DeviceFarmException.php │ │ ├── DirectConnect/ │ │ │ ├── DirectConnectClient.php │ │ │ └── Exception/ │ │ │ └── DirectConnectException.php │ │ ├── DirectoryService/ │ │ │ ├── DirectoryServiceClient.php │ │ │ └── Exception/ │ │ │ └── DirectoryServiceException.php │ │ ├── DirectoryServiceData/ │ │ │ ├── DirectoryServiceDataClient.php │ │ │ └── Exception/ │ │ │ └── DirectoryServiceDataException.php │ │ ├── DocDB/ │ │ │ ├── DocDBClient.php │ │ │ └── Exception/ │ │ │ └── DocDBException.php │ │ ├── DocDBElastic/ │ │ │ ├── DocDBElasticClient.php │ │ │ └── Exception/ │ │ │ └── DocDBElasticException.php │ │ ├── DoctrineCacheAdapter.php │ │ ├── DynamoDb/ │ │ │ ├── BinaryValue.php │ │ │ ├── DynamoDbClient.php │ │ │ ├── Exception/ │ │ │ │ └── DynamoDbException.php │ │ │ ├── LockingSessionConnection.php │ │ │ ├── Marshaler.php │ │ │ ├── NumberValue.php │ │ │ ├── SessionConnectionConfigTrait.php │ │ │ ├── SessionConnectionInterface.php │ │ │ ├── SessionHandler.php │ │ │ ├── SetValue.php │ │ │ ├── StandardSessionConnection.php │ │ │ └── WriteRequestBatch.php │ │ ├── DynamoDbStreams/ │ │ │ ├── DynamoDbStreamsClient.php │ │ │ └── Exception/ │ │ │ └── DynamoDbStreamsException.php │ │ ├── EBS/ │ │ │ ├── EBSClient.php │ │ │ └── Exception/ │ │ │ └── EBSException.php │ │ ├── EC2InstanceConnect/ │ │ │ ├── EC2InstanceConnectClient.php │ │ │ └── Exception/ │ │ │ └── EC2InstanceConnectException.php │ │ ├── ECRPublic/ │ │ │ ├── ECRPublicClient.php │ │ │ └── Exception/ │ │ │ └── ECRPublicException.php │ │ ├── EKS/ │ │ │ ├── EKSClient.php │ │ │ └── Exception/ │ │ │ └── EKSException.php │ │ ├── EKSAuth/ │ │ │ ├── EKSAuthClient.php │ │ │ └── Exception/ │ │ │ └── EKSAuthException.php │ │ ├── EMRContainers/ │ │ │ ├── EMRContainersClient.php │ │ │ └── Exception/ │ │ │ └── EMRContainersException.php │ │ ├── EMRServerless/ │ │ │ ├── EMRServerlessClient.php │ │ │ └── Exception/ │ │ │ └── EMRServerlessException.php │ │ ├── Ec2/ │ │ │ ├── Ec2Client.php │ │ │ └── Exception/ │ │ │ └── Ec2Exception.php │ │ ├── Ecr/ │ │ │ ├── EcrClient.php │ │ │ └── Exception/ │ │ │ └── EcrException.php │ │ ├── Ecs/ │ │ │ ├── EcsClient.php │ │ │ └── Exception/ │ │ │ └── EcsException.php │ │ ├── Efs/ │ │ │ ├── EfsClient.php │ │ │ └── Exception/ │ │ │ └── EfsException.php │ │ ├── ElastiCache/ │ │ │ ├── ElastiCacheClient.php │ │ │ └── Exception/ │ │ │ └── ElastiCacheException.php │ │ ├── ElasticBeanstalk/ │ │ │ ├── ElasticBeanstalkClient.php │ │ │ └── Exception/ │ │ │ └── ElasticBeanstalkException.php │ │ ├── ElasticLoadBalancing/ │ │ │ ├── ElasticLoadBalancingClient.php │ │ │ └── Exception/ │ │ │ └── ElasticLoadBalancingException.php │ │ ├── ElasticLoadBalancingV2/ │ │ │ ├── ElasticLoadBalancingV2Client.php │ │ │ └── Exception/ │ │ │ └── ElasticLoadBalancingV2Exception.php │ │ ├── ElasticTranscoder/ │ │ │ ├── ElasticTranscoderClient.php │ │ │ └── Exception/ │ │ │ └── ElasticTranscoderException.php │ │ ├── ElasticsearchService/ │ │ │ ├── ElasticsearchServiceClient.php │ │ │ └── Exception/ │ │ │ └── ElasticsearchServiceException.php │ │ ├── Emr/ │ │ │ ├── EmrClient.php │ │ │ └── Exception/ │ │ │ └── EmrException.php │ │ ├── Endpoint/ │ │ │ ├── EndpointProvider.php │ │ │ ├── Partition.php │ │ │ ├── PartitionEndpointProvider.php │ │ │ ├── PartitionInterface.php │ │ │ ├── PatternEndpointProvider.php │ │ │ ├── UseDualstackEndpoint/ │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConfigurationInterface.php │ │ │ │ ├── ConfigurationProvider.php │ │ │ │ └── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ └── UseFipsEndpoint/ │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ └── Exception/ │ │ │ └── ConfigurationException.php │ │ ├── EndpointDiscovery/ │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ ├── EndpointDiscoveryMiddleware.php │ │ │ ├── EndpointList.php │ │ │ └── Exception/ │ │ │ └── ConfigurationException.php │ │ ├── EndpointParameterMiddleware.php │ │ ├── EndpointV2/ │ │ │ ├── EndpointDefinitionProvider.php │ │ │ ├── EndpointProviderV2.php │ │ │ ├── EndpointV2Middleware.php │ │ │ ├── EndpointV2SerializerTrait.php │ │ │ ├── Rule/ │ │ │ │ ├── AbstractRule.php │ │ │ │ ├── EndpointRule.php │ │ │ │ ├── ErrorRule.php │ │ │ │ ├── RuleCreator.php │ │ │ │ └── TreeRule.php │ │ │ └── Ruleset/ │ │ │ ├── Ruleset.php │ │ │ ├── RulesetEndpoint.php │ │ │ ├── RulesetParameter.php │ │ │ └── RulesetStandardLibrary.php │ │ ├── EntityResolution/ │ │ │ ├── EntityResolutionClient.php │ │ │ └── Exception/ │ │ │ └── EntityResolutionException.php │ │ ├── EventBridge/ │ │ │ ├── EventBridgeClient.php │ │ │ ├── EventBridgeEndpointMiddleware.php │ │ │ └── Exception/ │ │ │ └── EventBridgeException.php │ │ ├── Evs/ │ │ │ ├── EvsClient.php │ │ │ └── Exception/ │ │ │ └── EvsException.php │ │ ├── Exception/ │ │ │ ├── AwsException.php │ │ │ ├── CommonRuntimeException.php │ │ │ ├── CouldNotCreateChecksumException.php │ │ │ ├── CredentialsException.php │ │ │ ├── CryptoException.php │ │ │ ├── CryptoPolyfillException.php │ │ │ ├── EventStreamDataException.php │ │ │ ├── IncalculablePayloadException.php │ │ │ ├── InvalidJsonException.php │ │ │ ├── InvalidRegionException.php │ │ │ ├── MultipartUploadException.php │ │ │ ├── TokenException.php │ │ │ ├── UnresolvedApiException.php │ │ │ ├── UnresolvedEndpointException.php │ │ │ └── UnresolvedSignatureException.php │ │ ├── FIS/ │ │ │ ├── Exception/ │ │ │ │ └── FISException.php │ │ │ └── FISClient.php │ │ ├── FMS/ │ │ │ ├── Exception/ │ │ │ │ └── FMSException.php │ │ │ └── FMSClient.php │ │ ├── FSx/ │ │ │ ├── Exception/ │ │ │ │ └── FSxException.php │ │ │ └── FSxClient.php │ │ ├── FinSpaceData/ │ │ │ ├── Exception/ │ │ │ │ └── FinSpaceDataException.php │ │ │ └── FinSpaceDataClient.php │ │ ├── Firehose/ │ │ │ ├── Exception/ │ │ │ │ └── FirehoseException.php │ │ │ └── FirehoseClient.php │ │ ├── ForecastQueryService/ │ │ │ ├── Exception/ │ │ │ │ └── ForecastQueryServiceException.php │ │ │ └── ForecastQueryServiceClient.php │ │ ├── ForecastService/ │ │ │ ├── Exception/ │ │ │ │ └── ForecastServiceException.php │ │ │ └── ForecastServiceClient.php │ │ ├── FraudDetector/ │ │ │ ├── Exception/ │ │ │ │ └── FraudDetectorException.php │ │ │ └── FraudDetectorClient.php │ │ ├── FreeTier/ │ │ │ ├── Exception/ │ │ │ │ └── FreeTierException.php │ │ │ └── FreeTierClient.php │ │ ├── GameLift/ │ │ │ ├── Exception/ │ │ │ │ └── GameLiftException.php │ │ │ └── GameLiftClient.php │ │ ├── GameLiftStreams/ │ │ │ ├── Exception/ │ │ │ │ └── GameLiftStreamsException.php │ │ │ └── GameLiftStreamsClient.php │ │ ├── GeoMaps/ │ │ │ ├── Exception/ │ │ │ │ └── GeoMapsException.php │ │ │ └── GeoMapsClient.php │ │ ├── GeoPlaces/ │ │ │ ├── Exception/ │ │ │ │ └── GeoPlacesException.php │ │ │ └── GeoPlacesClient.php │ │ ├── GeoRoutes/ │ │ │ ├── Exception/ │ │ │ │ └── GeoRoutesException.php │ │ │ └── GeoRoutesClient.php │ │ ├── Glacier/ │ │ │ ├── Exception/ │ │ │ │ └── GlacierException.php │ │ │ ├── GlacierClient.php │ │ │ ├── MultipartUploader.php │ │ │ └── TreeHash.php │ │ ├── GlobalAccelerator/ │ │ │ ├── Exception/ │ │ │ │ └── GlobalAcceleratorException.php │ │ │ └── GlobalAcceleratorClient.php │ │ ├── Glue/ │ │ │ ├── Exception/ │ │ │ │ └── GlueException.php │ │ │ └── GlueClient.php │ │ ├── GlueDataBrew/ │ │ │ ├── Exception/ │ │ │ │ └── GlueDataBrewException.php │ │ │ └── GlueDataBrewClient.php │ │ ├── Greengrass/ │ │ │ ├── Exception/ │ │ │ │ └── GreengrassException.php │ │ │ └── GreengrassClient.php │ │ ├── GreengrassV2/ │ │ │ ├── Exception/ │ │ │ │ └── GreengrassV2Exception.php │ │ │ └── GreengrassV2Client.php │ │ ├── GroundStation/ │ │ │ ├── Exception/ │ │ │ │ └── GroundStationException.php │ │ │ └── GroundStationClient.php │ │ ├── GuardDuty/ │ │ │ ├── Exception/ │ │ │ │ └── GuardDutyException.php │ │ │ └── GuardDutyClient.php │ │ ├── Handler/ │ │ │ ├── Guzzle/ │ │ │ │ └── GuzzleHandler.php │ │ │ └── GuzzleV6/ │ │ │ └── GuzzleHandler.php │ │ ├── HandlerList.php │ │ ├── HasDataTrait.php │ │ ├── HasMonitoringEventsTrait.php │ │ ├── HashInterface.php │ │ ├── HashingStream.php │ │ ├── Health/ │ │ │ ├── Exception/ │ │ │ │ └── HealthException.php │ │ │ └── HealthClient.php │ │ ├── HealthLake/ │ │ │ ├── Exception/ │ │ │ │ └── HealthLakeException.php │ │ │ └── HealthLakeClient.php │ │ ├── History.php │ │ ├── IVS/ │ │ │ ├── Exception/ │ │ │ │ └── IVSException.php │ │ │ └── IVSClient.php │ │ ├── IVSRealTime/ │ │ │ ├── Exception/ │ │ │ │ └── IVSRealTimeException.php │ │ │ └── IVSRealTimeClient.php │ │ ├── Iam/ │ │ │ ├── Exception/ │ │ │ │ └── IamException.php │ │ │ └── IamClient.php │ │ ├── IdempotencyTokenMiddleware.php │ │ ├── Identity/ │ │ │ ├── AwsCredentialIdentity.php │ │ │ ├── BearerTokenIdentity.php │ │ │ ├── IdentityInterface.php │ │ │ └── S3/ │ │ │ ├── S3ExpressIdentity.php │ │ │ └── S3ExpressIdentityProvider.php │ │ ├── IdentityStore/ │ │ │ ├── Exception/ │ │ │ │ └── IdentityStoreException.php │ │ │ └── IdentityStoreClient.php │ │ ├── ImportExport/ │ │ │ ├── Exception/ │ │ │ │ └── ImportExportException.php │ │ │ └── ImportExportClient.php │ │ ├── InputValidationMiddleware.php │ │ ├── Inspector/ │ │ │ ├── Exception/ │ │ │ │ └── InspectorException.php │ │ │ └── InspectorClient.php │ │ ├── Inspector2/ │ │ │ ├── Exception/ │ │ │ │ └── Inspector2Exception.php │ │ │ └── Inspector2Client.php │ │ ├── InspectorScan/ │ │ │ ├── Exception/ │ │ │ │ └── InspectorScanException.php │ │ │ └── InspectorScanClient.php │ │ ├── InternetMonitor/ │ │ │ ├── Exception/ │ │ │ │ └── InternetMonitorException.php │ │ │ └── InternetMonitorClient.php │ │ ├── Invoicing/ │ │ │ ├── Exception/ │ │ │ │ └── InvoicingException.php │ │ │ └── InvoicingClient.php │ │ ├── IoTAnalytics/ │ │ │ ├── Exception/ │ │ │ │ └── IoTAnalyticsException.php │ │ │ └── IoTAnalyticsClient.php │ │ ├── IoTDeviceAdvisor/ │ │ │ ├── Exception/ │ │ │ │ └── IoTDeviceAdvisorException.php │ │ │ └── IoTDeviceAdvisorClient.php │ │ ├── IoTEvents/ │ │ │ ├── Exception/ │ │ │ │ └── IoTEventsException.php │ │ │ └── IoTEventsClient.php │ │ ├── IoTEventsData/ │ │ │ ├── Exception/ │ │ │ │ └── IoTEventsDataException.php │ │ │ └── IoTEventsDataClient.php │ │ ├── IoTFleetHub/ │ │ │ ├── Exception/ │ │ │ │ └── IoTFleetHubException.php │ │ │ └── IoTFleetHubClient.php │ │ ├── IoTFleetWise/ │ │ │ ├── Exception/ │ │ │ │ └── IoTFleetWiseException.php │ │ │ └── IoTFleetWiseClient.php │ │ ├── IoTJobsDataPlane/ │ │ │ ├── Exception/ │ │ │ │ └── IoTJobsDataPlaneException.php │ │ │ └── IoTJobsDataPlaneClient.php │ │ ├── IoTManagedIntegrations/ │ │ │ ├── Exception/ │ │ │ │ └── IoTManagedIntegrationsException.php │ │ │ └── IoTManagedIntegrationsClient.php │ │ ├── IoTSecureTunneling/ │ │ │ ├── Exception/ │ │ │ │ └── IoTSecureTunnelingException.php │ │ │ └── IoTSecureTunnelingClient.php │ │ ├── IoTSiteWise/ │ │ │ ├── Exception/ │ │ │ │ └── IoTSiteWiseException.php │ │ │ └── IoTSiteWiseClient.php │ │ ├── IoTThingsGraph/ │ │ │ ├── Exception/ │ │ │ │ └── IoTThingsGraphException.php │ │ │ └── IoTThingsGraphClient.php │ │ ├── IoTTwinMaker/ │ │ │ ├── Exception/ │ │ │ │ └── IoTTwinMakerException.php │ │ │ └── IoTTwinMakerClient.php │ │ ├── IoTWireless/ │ │ │ ├── Exception/ │ │ │ │ └── IoTWirelessException.php │ │ │ └── IoTWirelessClient.php │ │ ├── Iot/ │ │ │ ├── Exception/ │ │ │ │ └── IotException.php │ │ │ └── IotClient.php │ │ ├── IotDataPlane/ │ │ │ ├── Exception/ │ │ │ │ └── IotDataPlaneException.php │ │ │ └── IotDataPlaneClient.php │ │ ├── JsonCompiler.php │ │ ├── Kafka/ │ │ │ ├── Exception/ │ │ │ │ └── KafkaException.php │ │ │ └── KafkaClient.php │ │ ├── KafkaConnect/ │ │ │ ├── Exception/ │ │ │ │ └── KafkaConnectException.php │ │ │ └── KafkaConnectClient.php │ │ ├── KendraRanking/ │ │ │ ├── Exception/ │ │ │ │ └── KendraRankingException.php │ │ │ └── KendraRankingClient.php │ │ ├── Keyspaces/ │ │ │ ├── Exception/ │ │ │ │ └── KeyspacesException.php │ │ │ └── KeyspacesClient.php │ │ ├── KeyspacesStreams/ │ │ │ ├── Exception/ │ │ │ │ └── KeyspacesStreamsException.php │ │ │ └── KeyspacesStreamsClient.php │ │ ├── Kinesis/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisException.php │ │ │ └── KinesisClient.php │ │ ├── KinesisAnalytics/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisAnalyticsException.php │ │ │ └── KinesisAnalyticsClient.php │ │ ├── KinesisAnalyticsV2/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisAnalyticsV2Exception.php │ │ │ └── KinesisAnalyticsV2Client.php │ │ ├── KinesisVideo/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisVideoException.php │ │ │ └── KinesisVideoClient.php │ │ ├── KinesisVideoArchivedMedia/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisVideoArchivedMediaException.php │ │ │ └── KinesisVideoArchivedMediaClient.php │ │ ├── KinesisVideoMedia/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisVideoMediaException.php │ │ │ └── KinesisVideoMediaClient.php │ │ ├── KinesisVideoSignalingChannels/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisVideoSignalingChannelsException.php │ │ │ └── KinesisVideoSignalingChannelsClient.php │ │ ├── KinesisVideoWebRTCStorage/ │ │ │ ├── Exception/ │ │ │ │ └── KinesisVideoWebRTCStorageException.php │ │ │ └── KinesisVideoWebRTCStorageClient.php │ │ ├── Kms/ │ │ │ ├── Exception/ │ │ │ │ └── KmsException.php │ │ │ └── KmsClient.php │ │ ├── LakeFormation/ │ │ │ ├── Exception/ │ │ │ │ └── LakeFormationException.php │ │ │ └── LakeFormationClient.php │ │ ├── Lambda/ │ │ │ ├── Exception/ │ │ │ │ └── LambdaException.php │ │ │ └── LambdaClient.php │ │ ├── LaunchWizard/ │ │ │ ├── Exception/ │ │ │ │ └── LaunchWizardException.php │ │ │ └── LaunchWizardClient.php │ │ ├── LexModelBuildingService/ │ │ │ ├── Exception/ │ │ │ │ └── LexModelBuildingServiceException.php │ │ │ └── LexModelBuildingServiceClient.php │ │ ├── LexModelsV2/ │ │ │ ├── Exception/ │ │ │ │ └── LexModelsV2Exception.php │ │ │ └── LexModelsV2Client.php │ │ ├── LexRuntimeService/ │ │ │ ├── Exception/ │ │ │ │ └── LexRuntimeServiceException.php │ │ │ └── LexRuntimeServiceClient.php │ │ ├── LexRuntimeV2/ │ │ │ ├── Exception/ │ │ │ │ └── LexRuntimeV2Exception.php │ │ │ └── LexRuntimeV2Client.php │ │ ├── LicenseManager/ │ │ │ ├── Exception/ │ │ │ │ └── LicenseManagerException.php │ │ │ └── LicenseManagerClient.php │ │ ├── LicenseManagerLinuxSubscriptions/ │ │ │ ├── Exception/ │ │ │ │ └── LicenseManagerLinuxSubscriptionsException.php │ │ │ └── LicenseManagerLinuxSubscriptionsClient.php │ │ ├── LicenseManagerUserSubscriptions/ │ │ │ ├── Exception/ │ │ │ │ └── LicenseManagerUserSubscriptionsException.php │ │ │ └── LicenseManagerUserSubscriptionsClient.php │ │ ├── Lightsail/ │ │ │ ├── Exception/ │ │ │ │ └── LightsailException.php │ │ │ └── LightsailClient.php │ │ ├── LocationService/ │ │ │ ├── Exception/ │ │ │ │ └── LocationServiceException.php │ │ │ └── LocationServiceClient.php │ │ ├── LookoutEquipment/ │ │ │ ├── Exception/ │ │ │ │ └── LookoutEquipmentException.php │ │ │ └── LookoutEquipmentClient.php │ │ ├── LookoutMetrics/ │ │ │ ├── Exception/ │ │ │ │ └── LookoutMetricsException.php │ │ │ └── LookoutMetricsClient.php │ │ ├── LookoutforVision/ │ │ │ ├── Exception/ │ │ │ │ └── LookoutforVisionException.php │ │ │ └── LookoutforVisionClient.php │ │ ├── LruArrayCache.php │ │ ├── MPA/ │ │ │ ├── Exception/ │ │ │ │ └── MPAException.php │ │ │ └── MPAClient.php │ │ ├── MQ/ │ │ │ ├── Exception/ │ │ │ │ └── MQException.php │ │ │ └── MQClient.php │ │ ├── MTurk/ │ │ │ ├── Exception/ │ │ │ │ └── MTurkException.php │ │ │ └── MTurkClient.php │ │ ├── MWAA/ │ │ │ ├── Exception/ │ │ │ │ └── MWAAException.php │ │ │ └── MWAAClient.php │ │ ├── MachineLearning/ │ │ │ ├── Exception/ │ │ │ │ └── MachineLearningException.php │ │ │ └── MachineLearningClient.php │ │ ├── Macie2/ │ │ │ ├── Exception/ │ │ │ │ └── Macie2Exception.php │ │ │ └── Macie2Client.php │ │ ├── MailManager/ │ │ │ ├── Exception/ │ │ │ │ └── MailManagerException.php │ │ │ └── MailManagerClient.php │ │ ├── MainframeModernization/ │ │ │ ├── Exception/ │ │ │ │ └── MainframeModernizationException.php │ │ │ └── MainframeModernizationClient.php │ │ ├── ManagedBlockchain/ │ │ │ ├── Exception/ │ │ │ │ └── ManagedBlockchainException.php │ │ │ └── ManagedBlockchainClient.php │ │ ├── ManagedBlockchainQuery/ │ │ │ ├── Exception/ │ │ │ │ └── ManagedBlockchainQueryException.php │ │ │ └── ManagedBlockchainQueryClient.php │ │ ├── ManagedGrafana/ │ │ │ ├── Exception/ │ │ │ │ └── ManagedGrafanaException.php │ │ │ └── ManagedGrafanaClient.php │ │ ├── MarketplaceAgreement/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceAgreementException.php │ │ │ └── MarketplaceAgreementClient.php │ │ ├── MarketplaceCatalog/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceCatalogException.php │ │ │ └── MarketplaceCatalogClient.php │ │ ├── MarketplaceCommerceAnalytics/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceCommerceAnalyticsException.php │ │ │ └── MarketplaceCommerceAnalyticsClient.php │ │ ├── MarketplaceDeployment/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceDeploymentException.php │ │ │ └── MarketplaceDeploymentClient.php │ │ ├── MarketplaceEntitlementService/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceEntitlementServiceException.php │ │ │ └── MarketplaceEntitlementServiceClient.php │ │ ├── MarketplaceMetering/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceMeteringException.php │ │ │ └── MarketplaceMeteringClient.php │ │ ├── MarketplaceReporting/ │ │ │ ├── Exception/ │ │ │ │ └── MarketplaceReportingException.php │ │ │ └── MarketplaceReportingClient.php │ │ ├── MediaConnect/ │ │ │ ├── Exception/ │ │ │ │ └── MediaConnectException.php │ │ │ └── MediaConnectClient.php │ │ ├── MediaConvert/ │ │ │ ├── Exception/ │ │ │ │ └── MediaConvertException.php │ │ │ └── MediaConvertClient.php │ │ ├── MediaLive/ │ │ │ ├── Exception/ │ │ │ │ └── MediaLiveException.php │ │ │ └── MediaLiveClient.php │ │ ├── MediaPackage/ │ │ │ ├── Exception/ │ │ │ │ └── MediaPackageException.php │ │ │ └── MediaPackageClient.php │ │ ├── MediaPackageV2/ │ │ │ ├── Exception/ │ │ │ │ └── MediaPackageV2Exception.php │ │ │ └── MediaPackageV2Client.php │ │ ├── MediaPackageVod/ │ │ │ ├── Exception/ │ │ │ │ └── MediaPackageVodException.php │ │ │ └── MediaPackageVodClient.php │ │ ├── MediaStore/ │ │ │ ├── Exception/ │ │ │ │ └── MediaStoreException.php │ │ │ └── MediaStoreClient.php │ │ ├── MediaStoreData/ │ │ │ ├── Exception/ │ │ │ │ └── MediaStoreDataException.php │ │ │ └── MediaStoreDataClient.php │ │ ├── MediaTailor/ │ │ │ ├── Exception/ │ │ │ │ └── MediaTailorException.php │ │ │ └── MediaTailorClient.php │ │ ├── MedicalImaging/ │ │ │ ├── Exception/ │ │ │ │ └── MedicalImagingException.php │ │ │ └── MedicalImagingClient.php │ │ ├── MemoryDB/ │ │ │ ├── Exception/ │ │ │ │ └── MemoryDBException.php │ │ │ └── MemoryDBClient.php │ │ ├── MetricsBuilder.php │ │ ├── Middleware.php │ │ ├── MigrationHub/ │ │ │ ├── Exception/ │ │ │ │ └── MigrationHubException.php │ │ │ └── MigrationHubClient.php │ │ ├── MigrationHubConfig/ │ │ │ ├── Exception/ │ │ │ │ └── MigrationHubConfigException.php │ │ │ └── MigrationHubConfigClient.php │ │ ├── MigrationHubOrchestrator/ │ │ │ ├── Exception/ │ │ │ │ └── MigrationHubOrchestratorException.php │ │ │ └── MigrationHubOrchestratorClient.php │ │ ├── MigrationHubRefactorSpaces/ │ │ │ ├── Exception/ │ │ │ │ └── MigrationHubRefactorSpacesException.php │ │ │ └── MigrationHubRefactorSpacesClient.php │ │ ├── MigrationHubStrategyRecommendations/ │ │ │ ├── Exception/ │ │ │ │ └── MigrationHubStrategyRecommendationsException.php │ │ │ └── MigrationHubStrategyRecommendationsClient.php │ │ ├── MockHandler.php │ │ ├── MonitoringEventsInterface.php │ │ ├── MultiRegionClient.php │ │ ├── Multipart/ │ │ │ ├── AbstractUploadManager.php │ │ │ ├── AbstractUploader.php │ │ │ └── UploadState.php │ │ ├── Neptune/ │ │ │ ├── Exception/ │ │ │ │ └── NeptuneException.php │ │ │ └── NeptuneClient.php │ │ ├── NeptuneGraph/ │ │ │ ├── Exception/ │ │ │ │ └── NeptuneGraphException.php │ │ │ └── NeptuneGraphClient.php │ │ ├── Neptunedata/ │ │ │ ├── Exception/ │ │ │ │ └── NeptunedataException.php │ │ │ └── NeptunedataClient.php │ │ ├── NetworkFirewall/ │ │ │ ├── Exception/ │ │ │ │ └── NetworkFirewallException.php │ │ │ └── NetworkFirewallClient.php │ │ ├── NetworkFlowMonitor/ │ │ │ ├── Exception/ │ │ │ │ └── NetworkFlowMonitorException.php │ │ │ └── NetworkFlowMonitorClient.php │ │ ├── NetworkManager/ │ │ │ ├── Exception/ │ │ │ │ └── NetworkManagerException.php │ │ │ └── NetworkManagerClient.php │ │ ├── NetworkMonitor/ │ │ │ ├── Exception/ │ │ │ │ └── NetworkMonitorException.php │ │ │ └── NetworkMonitorClient.php │ │ ├── Notifications/ │ │ │ ├── Exception/ │ │ │ │ └── NotificationsException.php │ │ │ └── NotificationsClient.php │ │ ├── NotificationsContacts/ │ │ │ ├── Exception/ │ │ │ │ └── NotificationsContactsException.php │ │ │ └── NotificationsContactsClient.php │ │ ├── OAM/ │ │ │ ├── Exception/ │ │ │ │ └── OAMException.php │ │ │ └── OAMClient.php │ │ ├── OSIS/ │ │ │ ├── Exception/ │ │ │ │ └── OSISException.php │ │ │ └── OSISClient.php │ │ ├── ObservabilityAdmin/ │ │ │ ├── Exception/ │ │ │ │ └── ObservabilityAdminException.php │ │ │ └── ObservabilityAdminClient.php │ │ ├── Odb/ │ │ │ ├── Exception/ │ │ │ │ └── OdbException.php │ │ │ └── OdbClient.php │ │ ├── Omics/ │ │ │ ├── Exception/ │ │ │ │ └── OmicsException.php │ │ │ └── OmicsClient.php │ │ ├── OpenSearchServerless/ │ │ │ ├── Exception/ │ │ │ │ └── OpenSearchServerlessException.php │ │ │ └── OpenSearchServerlessClient.php │ │ ├── OpenSearchService/ │ │ │ ├── Exception/ │ │ │ │ └── OpenSearchServiceException.php │ │ │ └── OpenSearchServiceClient.php │ │ ├── OpsWorks/ │ │ │ ├── Exception/ │ │ │ │ └── OpsWorksException.php │ │ │ └── OpsWorksClient.php │ │ ├── OpsWorksCM/ │ │ │ ├── Exception/ │ │ │ │ └── OpsWorksCMException.php │ │ │ └── OpsWorksCMClient.php │ │ ├── Organizations/ │ │ │ ├── Exception/ │ │ │ │ └── OrganizationsException.php │ │ │ └── OrganizationsClient.php │ │ ├── Outposts/ │ │ │ ├── Exception/ │ │ │ │ └── OutpostsException.php │ │ │ └── OutpostsClient.php │ │ ├── PCS/ │ │ │ ├── Exception/ │ │ │ │ └── PCSException.php │ │ │ └── PCSClient.php │ │ ├── PI/ │ │ │ ├── Exception/ │ │ │ │ └── PIException.php │ │ │ └── PIClient.php │ │ ├── Panorama/ │ │ │ ├── Exception/ │ │ │ │ └── PanoramaException.php │ │ │ └── PanoramaClient.php │ │ ├── PartnerCentralSelling/ │ │ │ ├── Exception/ │ │ │ │ └── PartnerCentralSellingException.php │ │ │ └── PartnerCentralSellingClient.php │ │ ├── PaymentCryptography/ │ │ │ ├── Exception/ │ │ │ │ └── PaymentCryptographyException.php │ │ │ └── PaymentCryptographyClient.php │ │ ├── PaymentCryptographyData/ │ │ │ ├── Exception/ │ │ │ │ └── PaymentCryptographyDataException.php │ │ │ └── PaymentCryptographyDataClient.php │ │ ├── PcaConnectorAd/ │ │ │ ├── Exception/ │ │ │ │ └── PcaConnectorAdException.php │ │ │ └── PcaConnectorAdClient.php │ │ ├── PcaConnectorScep/ │ │ │ ├── Exception/ │ │ │ │ └── PcaConnectorScepException.php │ │ │ └── PcaConnectorScepClient.php │ │ ├── Personalize/ │ │ │ ├── Exception/ │ │ │ │ └── PersonalizeException.php │ │ │ └── PersonalizeClient.php │ │ ├── PersonalizeEvents/ │ │ │ ├── Exception/ │ │ │ │ └── PersonalizeEventsException.php │ │ │ └── PersonalizeEventsClient.php │ │ ├── PersonalizeRuntime/ │ │ │ ├── Exception/ │ │ │ │ └── PersonalizeRuntimeException.php │ │ │ └── PersonalizeRuntimeClient.php │ │ ├── PhpHash.php │ │ ├── Pinpoint/ │ │ │ ├── Exception/ │ │ │ │ └── PinpointException.php │ │ │ └── PinpointClient.php │ │ ├── PinpointEmail/ │ │ │ ├── Exception/ │ │ │ │ └── PinpointEmailException.php │ │ │ └── PinpointEmailClient.php │ │ ├── PinpointSMSVoice/ │ │ │ ├── Exception/ │ │ │ │ └── PinpointSMSVoiceException.php │ │ │ └── PinpointSMSVoiceClient.php │ │ ├── PinpointSMSVoiceV2/ │ │ │ ├── Exception/ │ │ │ │ └── PinpointSMSVoiceV2Exception.php │ │ │ └── PinpointSMSVoiceV2Client.php │ │ ├── Pipes/ │ │ │ ├── Exception/ │ │ │ │ └── PipesException.php │ │ │ └── PipesClient.php │ │ ├── Polly/ │ │ │ ├── Exception/ │ │ │ │ └── PollyException.php │ │ │ └── PollyClient.php │ │ ├── PresignUrlMiddleware.php │ │ ├── Pricing/ │ │ │ ├── Exception/ │ │ │ │ └── PricingException.php │ │ │ └── PricingClient.php │ │ ├── PrometheusService/ │ │ │ ├── Exception/ │ │ │ │ └── PrometheusServiceException.php │ │ │ └── PrometheusServiceClient.php │ │ ├── Proton/ │ │ │ ├── Exception/ │ │ │ │ └── ProtonException.php │ │ │ └── ProtonClient.php │ │ ├── Psr16CacheAdapter.php │ │ ├── PsrCacheAdapter.php │ │ ├── QApps/ │ │ │ ├── Exception/ │ │ │ │ └── QAppsException.php │ │ │ └── QAppsClient.php │ │ ├── QBusiness/ │ │ │ ├── Exception/ │ │ │ │ └── QBusinessException.php │ │ │ └── QBusinessClient.php │ │ ├── QConnect/ │ │ │ ├── Exception/ │ │ │ │ └── QConnectException.php │ │ │ └── QConnectClient.php │ │ ├── QLDB/ │ │ │ ├── Exception/ │ │ │ │ └── QLDBException.php │ │ │ └── QLDBClient.php │ │ ├── QLDBSession/ │ │ │ ├── Exception/ │ │ │ │ └── QLDBSessionException.php │ │ │ └── QLDBSessionClient.php │ │ ├── QueryCompatibleInputMiddleware.php │ │ ├── QuickSight/ │ │ │ ├── Exception/ │ │ │ │ └── QuickSightException.php │ │ │ └── QuickSightClient.php │ │ ├── RAM/ │ │ │ ├── Exception/ │ │ │ │ └── RAMException.php │ │ │ └── RAMClient.php │ │ ├── RDSDataService/ │ │ │ ├── Exception/ │ │ │ │ └── RDSDataServiceException.php │ │ │ └── RDSDataServiceClient.php │ │ ├── Rds/ │ │ │ ├── AuthTokenGenerator.php │ │ │ ├── Exception/ │ │ │ │ └── RdsException.php │ │ │ └── RdsClient.php │ │ ├── RecycleBin/ │ │ │ ├── Exception/ │ │ │ │ └── RecycleBinException.php │ │ │ └── RecycleBinClient.php │ │ ├── Redshift/ │ │ │ ├── Exception/ │ │ │ │ └── RedshiftException.php │ │ │ └── RedshiftClient.php │ │ ├── RedshiftDataAPIService/ │ │ │ ├── Exception/ │ │ │ │ └── RedshiftDataAPIServiceException.php │ │ │ └── RedshiftDataAPIServiceClient.php │ │ ├── RedshiftServerless/ │ │ │ ├── Exception/ │ │ │ │ └── RedshiftServerlessException.php │ │ │ └── RedshiftServerlessClient.php │ │ ├── Rekognition/ │ │ │ ├── Exception/ │ │ │ │ └── RekognitionException.php │ │ │ └── RekognitionClient.php │ │ ├── Repostspace/ │ │ │ ├── Exception/ │ │ │ │ └── RepostspaceException.php │ │ │ └── RepostspaceClient.php │ │ ├── RequestCompressionMiddleware.php │ │ ├── ResilienceHub/ │ │ │ ├── Exception/ │ │ │ │ └── ResilienceHubException.php │ │ │ └── ResilienceHubClient.php │ │ ├── ResourceExplorer2/ │ │ │ ├── Exception/ │ │ │ │ └── ResourceExplorer2Exception.php │ │ │ └── ResourceExplorer2Client.php │ │ ├── ResourceGroups/ │ │ │ ├── Exception/ │ │ │ │ └── ResourceGroupsException.php │ │ │ └── ResourceGroupsClient.php │ │ ├── ResourceGroupsTaggingAPI/ │ │ │ ├── Exception/ │ │ │ │ └── ResourceGroupsTaggingAPIException.php │ │ │ └── ResourceGroupsTaggingAPIClient.php │ │ ├── ResponseContainerInterface.php │ │ ├── Result.php │ │ ├── ResultInterface.php │ │ ├── ResultPaginator.php │ │ ├── Retry/ │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProvider.php │ │ │ ├── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ ├── QuotaManager.php │ │ │ ├── RateLimiter.php │ │ │ └── RetryHelperTrait.php │ │ ├── RetryMiddleware.php │ │ ├── RetryMiddlewareV2.php │ │ ├── RoboMaker/ │ │ │ ├── Exception/ │ │ │ │ └── RoboMakerException.php │ │ │ └── RoboMakerClient.php │ │ ├── RolesAnywhere/ │ │ │ ├── Exception/ │ │ │ │ └── RolesAnywhereException.php │ │ │ └── RolesAnywhereClient.php │ │ ├── Route53/ │ │ │ ├── Exception/ │ │ │ │ └── Route53Exception.php │ │ │ └── Route53Client.php │ │ ├── Route53Domains/ │ │ │ ├── Exception/ │ │ │ │ └── Route53DomainsException.php │ │ │ └── Route53DomainsClient.php │ │ ├── Route53Profiles/ │ │ │ ├── Exception/ │ │ │ │ └── Route53ProfilesException.php │ │ │ └── Route53ProfilesClient.php │ │ ├── Route53RecoveryCluster/ │ │ │ ├── Exception/ │ │ │ │ └── Route53RecoveryClusterException.php │ │ │ └── Route53RecoveryClusterClient.php │ │ ├── Route53RecoveryControlConfig/ │ │ │ ├── Exception/ │ │ │ │ └── Route53RecoveryControlConfigException.php │ │ │ └── Route53RecoveryControlConfigClient.php │ │ ├── Route53RecoveryReadiness/ │ │ │ ├── Exception/ │ │ │ │ └── Route53RecoveryReadinessException.php │ │ │ └── Route53RecoveryReadinessClient.php │ │ ├── Route53Resolver/ │ │ │ ├── Exception/ │ │ │ │ └── Route53ResolverException.php │ │ │ └── Route53ResolverClient.php │ │ ├── S3/ │ │ │ ├── AmbiguousSuccessParser.php │ │ │ ├── ApplyChecksumMiddleware.php │ │ │ ├── BatchDelete.php │ │ │ ├── BucketEndpointArnMiddleware.php │ │ │ ├── BucketEndpointMiddleware.php │ │ │ ├── CalculatesChecksumTrait.php │ │ │ ├── Crypto/ │ │ │ │ ├── CryptoParamsTrait.php │ │ │ │ ├── CryptoParamsTraitV2.php │ │ │ │ ├── HeadersMetadataStrategy.php │ │ │ │ ├── InstructionFileMetadataStrategy.php │ │ │ │ ├── S3EncryptionClient.php │ │ │ │ ├── S3EncryptionClientV2.php │ │ │ │ ├── S3EncryptionMultipartUploader.php │ │ │ │ ├── S3EncryptionMultipartUploaderV2.php │ │ │ │ └── UserAgentTrait.php │ │ │ ├── EndpointRegionHelperTrait.php │ │ │ ├── Exception/ │ │ │ │ ├── DeleteMultipleObjectsException.php │ │ │ │ ├── PermanentRedirectException.php │ │ │ │ ├── S3Exception.php │ │ │ │ └── S3MultipartUploadException.php │ │ │ ├── ExpiresParsingMiddleware.php │ │ │ ├── GetBucketLocationParser.php │ │ │ ├── MultipartCopy.php │ │ │ ├── MultipartUploader.php │ │ │ ├── MultipartUploadingTrait.php │ │ │ ├── ObjectCopier.php │ │ │ ├── ObjectUploader.php │ │ │ ├── Parser/ │ │ │ │ ├── GetBucketLocationResultMutator.php │ │ │ │ ├── S3Parser.php │ │ │ │ ├── S3ResultMutator.php │ │ │ │ └── ValidateResponseChecksumResultMutator.php │ │ │ ├── PermanentRedirectMiddleware.php │ │ │ ├── PostObject.php │ │ │ ├── PostObjectV4.php │ │ │ ├── PutObjectUrlMiddleware.php │ │ │ ├── RegionalEndpoint/ │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConfigurationInterface.php │ │ │ │ ├── ConfigurationProvider.php │ │ │ │ └── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ ├── RetryableMalformedResponseParser.php │ │ │ ├── S3Client.php │ │ │ ├── S3ClientInterface.php │ │ │ ├── S3ClientTrait.php │ │ │ ├── S3EndpointMiddleware.php │ │ │ ├── S3MultiRegionClient.php │ │ │ ├── S3UriParser.php │ │ │ ├── SSECMiddleware.php │ │ │ ├── StreamWrapper.php │ │ │ ├── Transfer.php │ │ │ ├── UseArnRegion/ │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConfigurationInterface.php │ │ │ │ ├── ConfigurationProvider.php │ │ │ │ └── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ └── ValidateResponseChecksumParser.php │ │ ├── S3Control/ │ │ │ ├── EndpointArnMiddleware.php │ │ │ ├── Exception/ │ │ │ │ └── S3ControlException.php │ │ │ └── S3ControlClient.php │ │ ├── S3Outposts/ │ │ │ ├── Exception/ │ │ │ │ └── S3OutpostsException.php │ │ │ └── S3OutpostsClient.php │ │ ├── S3Tables/ │ │ │ ├── Exception/ │ │ │ │ └── S3TablesException.php │ │ │ └── S3TablesClient.php │ │ ├── SSMContacts/ │ │ │ ├── Exception/ │ │ │ │ └── SSMContactsException.php │ │ │ └── SSMContactsClient.php │ │ ├── SSMGuiConnect/ │ │ │ ├── Exception/ │ │ │ │ └── SSMGuiConnectException.php │ │ │ └── SSMGuiConnectClient.php │ │ ├── SSMIncidents/ │ │ │ ├── Exception/ │ │ │ │ └── SSMIncidentsException.php │ │ │ └── SSMIncidentsClient.php │ │ ├── SSMQuickSetup/ │ │ │ ├── Exception/ │ │ │ │ └── SSMQuickSetupException.php │ │ │ └── SSMQuickSetupClient.php │ │ ├── SSO/ │ │ │ ├── Exception/ │ │ │ │ └── SSOException.php │ │ │ └── SSOClient.php │ │ ├── SSOAdmin/ │ │ │ ├── Exception/ │ │ │ │ └── SSOAdminException.php │ │ │ └── SSOAdminClient.php │ │ ├── SSOOIDC/ │ │ │ ├── Exception/ │ │ │ │ └── SSOOIDCException.php │ │ │ └── SSOOIDCClient.php │ │ ├── SageMaker/ │ │ │ ├── Exception/ │ │ │ │ └── SageMakerException.php │ │ │ └── SageMakerClient.php │ │ ├── SageMakerFeatureStoreRuntime/ │ │ │ ├── Exception/ │ │ │ │ └── SageMakerFeatureStoreRuntimeException.php │ │ │ └── SageMakerFeatureStoreRuntimeClient.php │ │ ├── SageMakerGeospatial/ │ │ │ ├── Exception/ │ │ │ │ └── SageMakerGeospatialException.php │ │ │ └── SageMakerGeospatialClient.php │ │ ├── SageMakerMetrics/ │ │ │ ├── Exception/ │ │ │ │ └── SageMakerMetricsException.php │ │ │ └── SageMakerMetricsClient.php │ │ ├── SageMakerRuntime/ │ │ │ ├── Exception/ │ │ │ │ └── SageMakerRuntimeException.php │ │ │ └── SageMakerRuntimeClient.php │ │ ├── SagemakerEdgeManager/ │ │ │ ├── Exception/ │ │ │ │ └── SagemakerEdgeManagerException.php │ │ │ └── SagemakerEdgeManagerClient.php │ │ ├── SavingsPlans/ │ │ │ ├── Exception/ │ │ │ │ └── SavingsPlansException.php │ │ │ └── SavingsPlansClient.php │ │ ├── Scheduler/ │ │ │ ├── Exception/ │ │ │ │ └── SchedulerException.php │ │ │ └── SchedulerClient.php │ │ ├── Schemas/ │ │ │ ├── Exception/ │ │ │ │ └── SchemasException.php │ │ │ └── SchemasClient.php │ │ ├── Script/ │ │ │ └── Composer/ │ │ │ └── Composer.php │ │ ├── Sdk.php │ │ ├── SecretsManager/ │ │ │ ├── Exception/ │ │ │ │ └── SecretsManagerException.php │ │ │ └── SecretsManagerClient.php │ │ ├── SecurityHub/ │ │ │ ├── Exception/ │ │ │ │ └── SecurityHubException.php │ │ │ └── SecurityHubClient.php │ │ ├── SecurityIR/ │ │ │ ├── Exception/ │ │ │ │ └── SecurityIRException.php │ │ │ └── SecurityIRClient.php │ │ ├── SecurityLake/ │ │ │ ├── Exception/ │ │ │ │ └── SecurityLakeException.php │ │ │ └── SecurityLakeClient.php │ │ ├── ServerlessApplicationRepository/ │ │ │ ├── Exception/ │ │ │ │ └── ServerlessApplicationRepositoryException.php │ │ │ └── ServerlessApplicationRepositoryClient.php │ │ ├── ServiceCatalog/ │ │ │ ├── Exception/ │ │ │ │ └── ServiceCatalogException.php │ │ │ └── ServiceCatalogClient.php │ │ ├── ServiceDiscovery/ │ │ │ ├── Exception/ │ │ │ │ └── ServiceDiscoveryException.php │ │ │ └── ServiceDiscoveryClient.php │ │ ├── ServiceQuotas/ │ │ │ ├── Exception/ │ │ │ │ └── ServiceQuotasException.php │ │ │ └── ServiceQuotasClient.php │ │ ├── Ses/ │ │ │ ├── Exception/ │ │ │ │ └── SesException.php │ │ │ └── SesClient.php │ │ ├── SesV2/ │ │ │ ├── Exception/ │ │ │ │ └── SesV2Exception.php │ │ │ └── SesV2Client.php │ │ ├── Sfn/ │ │ │ ├── Exception/ │ │ │ │ └── SfnException.php │ │ │ └── SfnClient.php │ │ ├── Shield/ │ │ │ ├── Exception/ │ │ │ │ └── ShieldException.php │ │ │ └── ShieldClient.php │ │ ├── Signature/ │ │ │ ├── AnonymousSignature.php │ │ │ ├── S3ExpressSignature.php │ │ │ ├── S3SignatureV4.php │ │ │ ├── SignatureInterface.php │ │ │ ├── SignatureProvider.php │ │ │ ├── SignatureTrait.php │ │ │ └── SignatureV4.php │ │ ├── SimSpaceWeaver/ │ │ │ ├── Exception/ │ │ │ │ └── SimSpaceWeaverException.php │ │ │ └── SimSpaceWeaverClient.php │ │ ├── Sms/ │ │ │ ├── Exception/ │ │ │ │ └── SmsException.php │ │ │ └── SmsClient.php │ │ ├── SnowBall/ │ │ │ ├── Exception/ │ │ │ │ └── SnowBallException.php │ │ │ └── SnowBallClient.php │ │ ├── SnowDeviceManagement/ │ │ │ ├── Exception/ │ │ │ │ └── SnowDeviceManagementException.php │ │ │ └── SnowDeviceManagementClient.php │ │ ├── Sns/ │ │ │ ├── Exception/ │ │ │ │ └── SnsException.php │ │ │ └── SnsClient.php │ │ ├── SocialMessaging/ │ │ │ ├── Exception/ │ │ │ │ └── SocialMessagingException.php │ │ │ └── SocialMessagingClient.php │ │ ├── Sqs/ │ │ │ ├── Exception/ │ │ │ │ └── SqsException.php │ │ │ └── SqsClient.php │ │ ├── Ssm/ │ │ │ ├── Exception/ │ │ │ │ └── SsmException.php │ │ │ └── SsmClient.php │ │ ├── SsmSap/ │ │ │ ├── Exception/ │ │ │ │ └── SsmSapException.php │ │ │ └── SsmSapClient.php │ │ ├── StorageGateway/ │ │ │ ├── Exception/ │ │ │ │ └── StorageGatewayException.php │ │ │ └── StorageGatewayClient.php │ │ ├── StreamRequestPayloadMiddleware.php │ │ ├── Sts/ │ │ │ ├── Exception/ │ │ │ │ └── StsException.php │ │ │ ├── RegionalEndpoints/ │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConfigurationInterface.php │ │ │ │ ├── ConfigurationProvider.php │ │ │ │ └── Exception/ │ │ │ │ └── ConfigurationException.php │ │ │ └── StsClient.php │ │ ├── SupplyChain/ │ │ │ ├── Exception/ │ │ │ │ └── SupplyChainException.php │ │ │ └── SupplyChainClient.php │ │ ├── Support/ │ │ │ ├── Exception/ │ │ │ │ └── SupportException.php │ │ │ └── SupportClient.php │ │ ├── SupportApp/ │ │ │ ├── Exception/ │ │ │ │ └── SupportAppException.php │ │ │ └── SupportAppClient.php │ │ ├── Swf/ │ │ │ ├── Exception/ │ │ │ │ └── SwfException.php │ │ │ └── SwfClient.php │ │ ├── Synthetics/ │ │ │ ├── Exception/ │ │ │ │ └── SyntheticsException.php │ │ │ └── SyntheticsClient.php │ │ ├── TaxSettings/ │ │ │ ├── Exception/ │ │ │ │ └── TaxSettingsException.php │ │ │ └── TaxSettingsClient.php │ │ ├── Textract/ │ │ │ ├── Exception/ │ │ │ │ └── TextractException.php │ │ │ └── TextractClient.php │ │ ├── TimestreamInfluxDB/ │ │ │ ├── Exception/ │ │ │ │ └── TimestreamInfluxDBException.php │ │ │ └── TimestreamInfluxDBClient.php │ │ ├── TimestreamQuery/ │ │ │ ├── Exception/ │ │ │ │ └── TimestreamQueryException.php │ │ │ └── TimestreamQueryClient.php │ │ ├── TimestreamWrite/ │ │ │ ├── Exception/ │ │ │ │ └── TimestreamWriteException.php │ │ │ └── TimestreamWriteClient.php │ │ ├── Tnb/ │ │ │ ├── Exception/ │ │ │ │ └── TnbException.php │ │ │ └── TnbClient.php │ │ ├── Token/ │ │ │ ├── BearerTokenAuthorization.php │ │ │ ├── ParsesIniTrait.php │ │ │ ├── RefreshableTokenProviderInterface.php │ │ │ ├── SsoToken.php │ │ │ ├── SsoTokenProvider.php │ │ │ ├── Token.php │ │ │ ├── TokenAuthorization.php │ │ │ ├── TokenInterface.php │ │ │ └── TokenProvider.php │ │ ├── TraceMiddleware.php │ │ ├── TranscribeService/ │ │ │ ├── Exception/ │ │ │ │ └── TranscribeServiceException.php │ │ │ └── TranscribeServiceClient.php │ │ ├── Transfer/ │ │ │ ├── Exception/ │ │ │ │ └── TransferException.php │ │ │ └── TransferClient.php │ │ ├── Translate/ │ │ │ ├── Exception/ │ │ │ │ └── TranslateException.php │ │ │ └── TranslateClient.php │ │ ├── TrustedAdvisor/ │ │ │ ├── Exception/ │ │ │ │ └── TrustedAdvisorException.php │ │ │ └── TrustedAdvisorClient.php │ │ ├── UserAgentMiddleware.php │ │ ├── VPCLattice/ │ │ │ ├── Exception/ │ │ │ │ └── VPCLatticeException.php │ │ │ └── VPCLatticeClient.php │ │ ├── VerifiedPermissions/ │ │ │ ├── Exception/ │ │ │ │ └── VerifiedPermissionsException.php │ │ │ └── VerifiedPermissionsClient.php │ │ ├── VoiceID/ │ │ │ ├── Exception/ │ │ │ │ └── VoiceIDException.php │ │ │ └── VoiceIDClient.php │ │ ├── WAFV2/ │ │ │ ├── Exception/ │ │ │ │ └── WAFV2Exception.php │ │ │ └── WAFV2Client.php │ │ ├── Waf/ │ │ │ ├── Exception/ │ │ │ │ └── WafException.php │ │ │ └── WafClient.php │ │ ├── WafRegional/ │ │ │ ├── Exception/ │ │ │ │ └── WafRegionalException.php │ │ │ └── WafRegionalClient.php │ │ ├── Waiter.php │ │ ├── WellArchitected/ │ │ │ ├── Exception/ │ │ │ │ └── WellArchitectedException.php │ │ │ └── WellArchitectedClient.php │ │ ├── WorkDocs/ │ │ │ ├── Exception/ │ │ │ │ └── WorkDocsException.php │ │ │ └── WorkDocsClient.php │ │ ├── WorkMail/ │ │ │ ├── Exception/ │ │ │ │ └── WorkMailException.php │ │ │ └── WorkMailClient.php │ │ ├── WorkMailMessageFlow/ │ │ │ ├── Exception/ │ │ │ │ └── WorkMailMessageFlowException.php │ │ │ └── WorkMailMessageFlowClient.php │ │ ├── WorkSpaces/ │ │ │ ├── Exception/ │ │ │ │ └── WorkSpacesException.php │ │ │ └── WorkSpacesClient.php │ │ ├── WorkSpacesThinClient/ │ │ │ ├── Exception/ │ │ │ │ └── WorkSpacesThinClientException.php │ │ │ └── WorkSpacesThinClientClient.php │ │ ├── WorkSpacesWeb/ │ │ │ ├── Exception/ │ │ │ │ └── WorkSpacesWebException.php │ │ │ └── WorkSpacesWebClient.php │ │ ├── WorkspacesInstances/ │ │ │ ├── Exception/ │ │ │ │ └── WorkspacesInstancesException.php │ │ │ └── WorkspacesInstancesClient.php │ │ ├── WrappedHttpHandler.php │ │ ├── XRay/ │ │ │ ├── Exception/ │ │ │ │ └── XRayException.php │ │ │ └── XRayClient.php │ │ ├── data/ │ │ │ ├── accessanalyzer/ │ │ │ │ └── 2019-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── account/ │ │ │ │ └── 2021-02-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── acm/ │ │ │ │ └── 2015-12-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── acm-pca/ │ │ │ │ └── 2017-08-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── aiops/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── aliases.json.php │ │ │ ├── amp/ │ │ │ │ └── 2020-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── amplify/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── amplifybackend/ │ │ │ │ └── 2020-08-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── amplifyuibuilder/ │ │ │ │ └── 2021-08-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── apigateway/ │ │ │ │ └── 2015-07-09/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── apigatewaymanagementapi/ │ │ │ │ └── 2018-11-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── apigatewayv2/ │ │ │ │ └── 2018-11-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── appconfig/ │ │ │ │ └── 2019-10-09/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── appconfigdata/ │ │ │ │ └── 2021-11-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── appfabric/ │ │ │ │ └── 2023-05-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── appflow/ │ │ │ │ └── 2020-08-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── appintegrations/ │ │ │ │ └── 2020-07-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── application-autoscaling/ │ │ │ │ └── 2016-02-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── application-insights/ │ │ │ │ └── 2018-11-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── application-signals/ │ │ │ │ └── 2024-04-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── applicationcostprofiler/ │ │ │ │ └── 2020-09-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── appmesh/ │ │ │ │ ├── 2018-10-01/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ └── paginators-1.json.php │ │ │ │ └── 2019-01-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── apprunner/ │ │ │ │ └── 2020-05-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── appstream/ │ │ │ │ └── 2016-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── appsync/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── apptest/ │ │ │ │ └── 2022-12-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── arc-zonal-shift/ │ │ │ │ └── 2022-10-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── artifact/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── athena/ │ │ │ │ └── 2017-05-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── auditmanager/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── autoscaling/ │ │ │ │ └── 2011-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── autoscaling-plans/ │ │ │ │ └── 2018-01-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── b2bi/ │ │ │ │ └── 2022-06-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── backup/ │ │ │ │ └── 2018-11-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── backup-gateway/ │ │ │ │ └── 2021-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── backupsearch/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── batch/ │ │ │ │ └── 2016-08-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── bcm-data-exports/ │ │ │ │ └── 2023-11-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── bcm-pricing-calculator/ │ │ │ │ └── 2024-06-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── bedrock/ │ │ │ │ └── 2023-04-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── bedrock-agent/ │ │ │ │ └── 2023-06-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── bedrock-agent-runtime/ │ │ │ │ └── 2023-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── bedrock-data-automation/ │ │ │ │ └── 2023-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── bedrock-data-automation-runtime/ │ │ │ │ └── 2024-06-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── bedrock-runtime/ │ │ │ │ └── 2023-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── billing/ │ │ │ │ └── 2023-09-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── billingconductor/ │ │ │ │ └── 2021-07-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── braket/ │ │ │ │ └── 2019-09-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── budgets/ │ │ │ │ └── 2016-10-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ce/ │ │ │ │ └── 2017-10-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chatbot/ │ │ │ │ └── 2017-10-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime/ │ │ │ │ └── 2018-05-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime-sdk-identity/ │ │ │ │ └── 2021-04-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime-sdk-media-pipelines/ │ │ │ │ └── 2021-07-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime-sdk-meetings/ │ │ │ │ └── 2021-07-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime-sdk-messaging/ │ │ │ │ └── 2021-05-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── chime-sdk-voice/ │ │ │ │ └── 2022-08-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cleanrooms/ │ │ │ │ └── 2022-02-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── cleanroomsml/ │ │ │ │ └── 2023-09-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── cloud9/ │ │ │ │ └── 2017-09-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cloudcontrol/ │ │ │ │ └── 2021-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── clouddirectory/ │ │ │ │ ├── 2016-05-10/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ └── paginators-1.json.php │ │ │ │ └── 2017-01-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cloudformation/ │ │ │ │ └── 2010-05-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── cloudfront/ │ │ │ │ ├── 2015-07-27/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-01-28/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-08-01/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-08-20/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-09-07/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-09-29/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-11-25/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2017-03-25/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2017-10-30/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── smoke.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2018-06-18/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── smoke.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2018-11-05/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── smoke.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2019-03-26/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── smoke.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ └── 2020-05-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── cloudfront-keyvaluestore/ │ │ │ │ └── 2022-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cloudhsm/ │ │ │ │ └── 2014-05-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cloudhsmv2/ │ │ │ │ └── 2017-04-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── cloudsearch/ │ │ │ │ └── 2013-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── cloudsearchdomain/ │ │ │ │ └── 2013-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ │ ├── cloudtrail/ │ │ │ │ └── 2013-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── cloudtrail-data/ │ │ │ │ └── 2021-08-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codeartifact/ │ │ │ │ └── 2018-09-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codebuild/ │ │ │ │ └── 2016-10-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── codecatalyst/ │ │ │ │ └── 2022-09-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── codecommit/ │ │ │ │ └── 2015-04-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── codeconnections/ │ │ │ │ └── 2023-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codedeploy/ │ │ │ │ └── 2014-10-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── codeguru-reviewer/ │ │ │ │ └── 2019-09-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── codeguru-security/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codeguruprofiler/ │ │ │ │ └── 2019-07-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codepipeline/ │ │ │ │ └── 2015-07-09/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── codestar-connections/ │ │ │ │ └── 2019-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── codestar-notifications/ │ │ │ │ └── 2019-10-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cognito-identity/ │ │ │ │ └── 2014-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── cognito-idp/ │ │ │ │ └── 2016-04-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── cognito-sync/ │ │ │ │ └── 2014-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── comprehend/ │ │ │ │ └── 2017-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── comprehendmedical/ │ │ │ │ └── 2018-10-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── compute-optimizer/ │ │ │ │ └── 2019-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── config/ │ │ │ │ └── 2014-11-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── connect/ │ │ │ │ └── 2017-08-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── connect-contact-lens/ │ │ │ │ └── 2020-08-21/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── connectcampaigns/ │ │ │ │ └── 2021-01-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── connectcampaignsv2/ │ │ │ │ └── 2024-04-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── connectcases/ │ │ │ │ └── 2022-10-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── connectparticipant/ │ │ │ │ └── 2018-09-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── controlcatalog/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── controltower/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── cost-optimization-hub/ │ │ │ │ └── 2022-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── cur/ │ │ │ │ └── 2017-01-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── customer-profiles/ │ │ │ │ └── 2020-08-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── data.iot/ │ │ │ │ └── 2015-05-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── databrew/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── dataexchange/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── datapipeline/ │ │ │ │ └── 2012-10-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── datasync/ │ │ │ │ └── 2018-11-09/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── datazone/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── dax/ │ │ │ │ └── 2017-04-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── deadline/ │ │ │ │ └── 2023-10-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── detective/ │ │ │ │ └── 2018-10-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── devicefarm/ │ │ │ │ └── 2015-06-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── devops-guru/ │ │ │ │ └── 2020-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── directconnect/ │ │ │ │ └── 2012-10-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── directory-service-data/ │ │ │ │ └── 2023-05-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── discovery/ │ │ │ │ └── 2015-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── dlm/ │ │ │ │ └── 2018-01-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── dms/ │ │ │ │ └── 2016-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── docdb/ │ │ │ │ └── 2014-10-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── docdb-elastic/ │ │ │ │ └── 2022-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── drs/ │ │ │ │ └── 2020-02-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ds/ │ │ │ │ └── 2015-04-16/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── dsql/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── dynamodb/ │ │ │ │ ├── 2011-12-05/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── smoke.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ └── 2012-08-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ebs/ │ │ │ │ └── 2019-11-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ec2/ │ │ │ │ ├── 2015-10-01/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-04-01/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ ├── 2016-09-15/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ ├── waiters-1.json.php │ │ │ │ │ └── waiters-2.json.php │ │ │ │ └── 2016-11-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ec2-instance-connect/ │ │ │ │ └── 2018-04-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ecr/ │ │ │ │ └── 2015-09-21/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ecr-public/ │ │ │ │ └── 2020-10-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ecs/ │ │ │ │ └── 2014-11-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── eks/ │ │ │ │ └── 2017-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── eks-auth/ │ │ │ │ └── 2023-11-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elasticache/ │ │ │ │ └── 2015-02-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elasticbeanstalk/ │ │ │ │ └── 2010-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elasticfilesystem/ │ │ │ │ └── 2015-02-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── elasticloadbalancing/ │ │ │ │ └── 2012-06-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elasticloadbalancingv2/ │ │ │ │ └── 2015-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elasticmapreduce/ │ │ │ │ └── 2009-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── elastictranscoder/ │ │ │ │ └── 2012-09-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── email/ │ │ │ │ └── 2010-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── emr-containers/ │ │ │ │ └── 2020-10-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── emr-serverless/ │ │ │ │ └── 2021-07-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── endpoints.json.php │ │ │ ├── endpoints_prefix_history.json.php │ │ │ ├── entitlement.marketplace/ │ │ │ │ └── 2017-01-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── entityresolution/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── es/ │ │ │ │ └── 2015-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── eventbridge/ │ │ │ │ └── 2015-10-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── events/ │ │ │ │ └── 2015-10-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── evidently/ │ │ │ │ └── 2021-02-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── evs/ │ │ │ │ └── 2023-07-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── finspace/ │ │ │ │ └── 2021-03-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── finspace-data/ │ │ │ │ └── 2020-07-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── firehose/ │ │ │ │ └── 2015-08-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── fis/ │ │ │ │ └── 2020-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── fms/ │ │ │ │ └── 2018-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── forecast/ │ │ │ │ └── 2018-06-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── forecastquery/ │ │ │ │ └── 2018-06-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── frauddetector/ │ │ │ │ └── 2019-11-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── freetier/ │ │ │ │ └── 2023-09-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── fsx/ │ │ │ │ └── 2018-03-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── gamelift/ │ │ │ │ └── 2015-10-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── gameliftstreams/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── geo-maps/ │ │ │ │ └── 2020-11-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── geo-places/ │ │ │ │ └── 2020-11-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── geo-routes/ │ │ │ │ └── 2020-11-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── glacier/ │ │ │ │ └── 2012-06-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── globalaccelerator/ │ │ │ │ └── 2018-08-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── glue/ │ │ │ │ └── 2017-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── grafana/ │ │ │ │ └── 2020-08-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── grandfathered-services.json.php │ │ │ ├── greengrass/ │ │ │ │ └── 2017-06-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ │ ├── greengrassv2/ │ │ │ │ └── 2020-11-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── groundstation/ │ │ │ │ └── 2019-05-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── guardduty/ │ │ │ │ └── 2017-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── health/ │ │ │ │ └── 2016-08-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── healthlake/ │ │ │ │ └── 2017-07-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iam/ │ │ │ │ └── 2010-05-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── identitystore/ │ │ │ │ └── 2020-06-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── imagebuilder/ │ │ │ │ └── 2019-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── importexport/ │ │ │ │ └── 2010-06-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── inspector/ │ │ │ │ └── 2016-02-16/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── inspector-scan/ │ │ │ │ └── 2023-08-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── inspector2/ │ │ │ │ └── 2020-06-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── internetmonitor/ │ │ │ │ └── 2021-06-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── invoicing/ │ │ │ │ └── 2024-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── iot/ │ │ │ │ └── 2015-05-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── iot-jobs-data/ │ │ │ │ └── 2017-09-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iot-managed-integrations/ │ │ │ │ └── 2025-03-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotanalytics/ │ │ │ │ └── 2017-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotdeviceadvisor/ │ │ │ │ └── 2020-09-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotevents/ │ │ │ │ └── 2018-07-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotevents-data/ │ │ │ │ └── 2018-10-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotfleethub/ │ │ │ │ └── 2020-11-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotfleetwise/ │ │ │ │ └── 2021-06-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── iotsecuretunneling/ │ │ │ │ └── 2018-10-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iotsitewise/ │ │ │ │ └── 2019-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── iotthingsgraph/ │ │ │ │ └── 2018-09-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── iottwinmaker/ │ │ │ │ └── 2021-11-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── iotwireless/ │ │ │ │ └── 2020-11-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ivs/ │ │ │ │ └── 2020-07-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ivs-realtime/ │ │ │ │ └── 2020-07-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ivschat/ │ │ │ │ └── 2020-07-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── kafka/ │ │ │ │ └── 2018-11-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kafkaconnect/ │ │ │ │ └── 2021-09-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── kendra/ │ │ │ │ └── 2019-02-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kendra-ranking/ │ │ │ │ └── 2022-10-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── keyspaces/ │ │ │ │ └── 2022-02-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── keyspacesstreams/ │ │ │ │ └── 2024-09-09/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── kinesis/ │ │ │ │ └── 2013-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── kinesis-video-archived-media/ │ │ │ │ └── 2017-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesis-video-media/ │ │ │ │ └── 2017-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesis-video-signaling/ │ │ │ │ └── 2019-12-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesis-video-webrtc-storage/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesisanalytics/ │ │ │ │ └── 2015-08-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesisanalyticsv2/ │ │ │ │ └── 2018-05-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kinesisvideo/ │ │ │ │ └── 2017-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── kms/ │ │ │ │ └── 2014-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── lakeformation/ │ │ │ │ └── 2017-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── lambda/ │ │ │ │ └── 2015-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── launch-wizard/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── lex-models/ │ │ │ │ └── 2017-04-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── license-manager/ │ │ │ │ └── 2018-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── license-manager-linux-subscriptions/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── license-manager-user-subscriptions/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── lightsail/ │ │ │ │ └── 2016-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── location/ │ │ │ │ └── 2020-11-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── logs/ │ │ │ │ └── 2014-03-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── lookoutequipment/ │ │ │ │ └── 2020-12-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── lookoutmetrics/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── lookoutvision/ │ │ │ │ └── 2020-11-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── m2/ │ │ │ │ └── 2021-04-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── machinelearning/ │ │ │ │ └── 2014-12-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── macie2/ │ │ │ │ └── 2020-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mailmanager/ │ │ │ │ └── 2023-10-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── managedblockchain/ │ │ │ │ └── 2018-09-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── managedblockchain-query/ │ │ │ │ └── 2023-05-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── manifest.json.php │ │ │ ├── marketplace-agreement/ │ │ │ │ └── 2020-03-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── marketplace-catalog/ │ │ │ │ └── 2018-09-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── marketplace-deployment/ │ │ │ │ └── 2023-01-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── marketplace-reporting/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── marketplacecommerceanalytics/ │ │ │ │ └── 2015-07-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── mediaconnect/ │ │ │ │ └── 2018-11-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mediaconvert/ │ │ │ │ └── 2017-08-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── medialive/ │ │ │ │ └── 2017-10-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mediapackage/ │ │ │ │ └── 2017-10-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mediapackage-vod/ │ │ │ │ └── 2018-11-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mediapackagev2/ │ │ │ │ └── 2022-12-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mediastore/ │ │ │ │ └── 2017-09-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mediastore-data/ │ │ │ │ └── 2017-09-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mediatailor/ │ │ │ │ └── 2018-04-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── medical-imaging/ │ │ │ │ └── 2023-07-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── memorydb/ │ │ │ │ └── 2021-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── metering.marketplace/ │ │ │ │ └── 2016-01-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mgh/ │ │ │ │ └── 2017-05-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mgn/ │ │ │ │ └── 2020-02-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── migration-hub-refactor-spaces/ │ │ │ │ └── 2021-10-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── migrationhub-config/ │ │ │ │ └── 2019-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── migrationhuborchestrator/ │ │ │ │ └── 2021-08-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── migrationhubstrategy/ │ │ │ │ └── 2020-02-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── models.lex.v2/ │ │ │ │ └── 2020-08-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── monitoring/ │ │ │ │ └── 2010-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mpa/ │ │ │ │ └── 2022-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── mq/ │ │ │ │ └── 2017-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── mturk-requester/ │ │ │ │ └── 2017-01-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── mwaa/ │ │ │ │ └── 2020-07-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── neptune/ │ │ │ │ └── 2014-10-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── neptune-graph/ │ │ │ │ └── 2023-11-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── neptunedata/ │ │ │ │ └── 2023-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── network-firewall/ │ │ │ │ └── 2020-11-12/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── networkflowmonitor/ │ │ │ │ └── 2023-04-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── networkmanager/ │ │ │ │ └── 2019-07-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── networkmonitor/ │ │ │ │ └── 2023-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── notifications/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── notificationscontacts/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── oam/ │ │ │ │ └── 2022-06-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── observabilityadmin/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── odb/ │ │ │ │ └── 2024-08-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── omics/ │ │ │ │ └── 2022-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── opensearch/ │ │ │ │ └── 2021-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── opensearchserverless/ │ │ │ │ └── 2021-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── opsworks/ │ │ │ │ └── 2013-02-18/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── opsworkscm/ │ │ │ │ └── 2016-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── organizations/ │ │ │ │ └── 2016-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── osis/ │ │ │ │ └── 2022-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── outposts/ │ │ │ │ └── 2019-12-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── panorama/ │ │ │ │ └── 2019-07-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── partitions.json.php │ │ │ ├── partnercentral-selling/ │ │ │ │ └── 2022-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── payment-cryptography/ │ │ │ │ └── 2021-09-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── payment-cryptography-data/ │ │ │ │ └── 2022-02-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── pca-connector-ad/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── pca-connector-scep/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── pcs/ │ │ │ │ └── 2023-02-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── personalize/ │ │ │ │ └── 2018-05-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── personalize-events/ │ │ │ │ └── 2018-03-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── personalize-runtime/ │ │ │ │ └── 2018-05-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── pi/ │ │ │ │ └── 2018-02-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── pinpoint/ │ │ │ │ └── 2016-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ │ ├── pinpoint-email/ │ │ │ │ └── 2018-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── pinpoint-sms-voice-v2/ │ │ │ │ └── 2022-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── pipes/ │ │ │ │ └── 2015-10-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── polly/ │ │ │ │ └── 2016-06-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── pricing/ │ │ │ │ └── 2017-10-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── proton/ │ │ │ │ └── 2020-07-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── qapps/ │ │ │ │ └── 2023-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── qbusiness/ │ │ │ │ └── 2023-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── qconnect/ │ │ │ │ └── 2020-10-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── qldb/ │ │ │ │ └── 2019-01-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── qldb-session/ │ │ │ │ └── 2019-07-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── quicksight/ │ │ │ │ └── 2018-04-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ram/ │ │ │ │ └── 2018-01-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── rbin/ │ │ │ │ └── 2021-06-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── rds/ │ │ │ │ ├── 2014-09-01/ │ │ │ │ │ ├── api-2.json.php │ │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ │ ├── paginators-1.json.php │ │ │ │ │ └── smoke.json.php │ │ │ │ └── 2014-10-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── rds-data/ │ │ │ │ └── 2018-08-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── redshift/ │ │ │ │ └── 2012-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── redshift-data/ │ │ │ │ └── 2019-12-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── redshift-serverless/ │ │ │ │ └── 2021-04-21/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── rekognition/ │ │ │ │ └── 2016-06-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── repostspace/ │ │ │ │ └── 2022-05-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── resiliencehub/ │ │ │ │ └── 2020-04-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── resource-explorer-2/ │ │ │ │ └── 2022-07-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── resource-groups/ │ │ │ │ └── 2017-11-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── resourcegroupstaggingapi/ │ │ │ │ └── 2017-01-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── robomaker/ │ │ │ │ └── 2018-06-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── rolesanywhere/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── route53/ │ │ │ │ └── 2013-04-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── route53-recovery-cluster/ │ │ │ │ └── 2019-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── route53-recovery-control-config/ │ │ │ │ └── 2020-11-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── route53-recovery-readiness/ │ │ │ │ └── 2019-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── route53domains/ │ │ │ │ └── 2014-05-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── route53profiles/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── route53resolver/ │ │ │ │ └── 2018-04-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── rum/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── runtime.lex/ │ │ │ │ └── 2016-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── runtime.lex.v2/ │ │ │ │ └── 2020-08-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── runtime.sagemaker/ │ │ │ │ └── 2017-05-13/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── s3/ │ │ │ │ └── 2006-03-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ ├── waiters-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── s3control/ │ │ │ │ └── 2018-08-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── s3outposts/ │ │ │ │ └── 2017-07-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── s3tables/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── sagemaker/ │ │ │ │ └── 2017-07-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── sagemaker-a2i-runtime/ │ │ │ │ └── 2019-11-07/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sagemaker-edge/ │ │ │ │ └── 2020-09-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sagemaker-featurestore-runtime/ │ │ │ │ └── 2020-07-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sagemaker-geospatial/ │ │ │ │ └── 2020-05-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sagemaker-metrics/ │ │ │ │ └── 2022-09-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── savingsplans/ │ │ │ │ └── 2019-06-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── scheduler/ │ │ │ │ └── 2021-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── schemas/ │ │ │ │ └── 2019-12-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── sdk-default-configuration.json.php │ │ │ ├── secretsmanager/ │ │ │ │ └── 2017-10-17/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── security-ir/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── securityhub/ │ │ │ │ └── 2018-10-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── securitylake/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── serverlessrepo/ │ │ │ │ └── 2017-09-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── service-quotas/ │ │ │ │ └── 2019-06-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── servicecatalog/ │ │ │ │ └── 2015-12-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── servicecatalog-appregistry/ │ │ │ │ └── 2020-06-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── servicediscovery/ │ │ │ │ └── 2017-03-14/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sesv2/ │ │ │ │ └── 2019-09-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── shield/ │ │ │ │ └── 2016-06-02/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── signer/ │ │ │ │ └── 2017-08-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── simspaceweaver/ │ │ │ │ └── 2022-10-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sms/ │ │ │ │ └── 2016-10-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── sms-voice/ │ │ │ │ └── 2018-09-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ │ ├── snow-device-management/ │ │ │ │ └── 2021-08-04/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── snowball/ │ │ │ │ └── 2016-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── sns/ │ │ │ │ └── 2010-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── socialmessaging/ │ │ │ │ └── 2024-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sqs/ │ │ │ │ └── 2012-11-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ssm/ │ │ │ │ └── 2014-11-06/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ssm-contacts/ │ │ │ │ └── 2021-05-03/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ssm-guiconnect/ │ │ │ │ └── 2021-05-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ssm-incidents/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── ssm-quicksetup/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── ssm-sap/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sso/ │ │ │ │ └── 2019-06-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sso-admin/ │ │ │ │ └── 2020-07-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── sso-oidc/ │ │ │ │ └── 2019-06-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── states/ │ │ │ │ └── 2016-11-23/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── storagegateway/ │ │ │ │ └── 2013-06-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── streams.dynamodb/ │ │ │ │ └── 2012-08-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── sts/ │ │ │ │ └── 2011-06-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── supplychain/ │ │ │ │ └── 2024-01-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── support/ │ │ │ │ └── 2013-04-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── support-app/ │ │ │ │ └── 2021-08-20/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── swf/ │ │ │ │ └── 2012-01-25/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── synthetics/ │ │ │ │ └── 2017-10-11/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── taxsettings/ │ │ │ │ └── 2018-05-10/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── textract/ │ │ │ │ └── 2018-06-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── timestream-influxdb/ │ │ │ │ └── 2023-01-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── timestream-query/ │ │ │ │ └── 2018-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── timestream-write/ │ │ │ │ └── 2018-11-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── tnb/ │ │ │ │ └── 2008-10-21/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── transcribe/ │ │ │ │ └── 2017-10-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── transfer/ │ │ │ │ └── 2018-11-05/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── translate/ │ │ │ │ └── 2017-07-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── trustedadvisor/ │ │ │ │ └── 2022-09-15/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── verifiedpermissions/ │ │ │ │ └── 2021-12-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── voice-id/ │ │ │ │ └── 2021-09-27/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── vpc-lattice/ │ │ │ │ └── 2022-11-30/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── waf/ │ │ │ │ └── 2015-08-24/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── waf-regional/ │ │ │ │ └── 2016-11-28/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── wafv2/ │ │ │ │ └── 2019-07-29/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── wellarchitected/ │ │ │ │ └── 2020-03-31/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── wisdom/ │ │ │ │ └── 2020-10-19/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── workdocs/ │ │ │ │ └── 2016-05-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── workmail/ │ │ │ │ └── 2017-10-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── workmailmessageflow/ │ │ │ │ └── 2019-05-01/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── workspaces/ │ │ │ │ └── 2015-04-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ │ ├── workspaces-instances/ │ │ │ │ └── 2022-07-26/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ ├── smoke.json.php │ │ │ │ └── waiters-2.json.php │ │ │ ├── workspaces-thin-client/ │ │ │ │ └── 2023-08-22/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ ├── workspaces-web/ │ │ │ │ └── 2020-07-08/ │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ │ └── xray/ │ │ │ └── 2016-04-12/ │ │ │ ├── api-2.json.php │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ └── paginators-1.json.php │ │ ├── drs/ │ │ │ ├── Exception/ │ │ │ │ └── drsException.php │ │ │ └── drsClient.php │ │ ├── finspace/ │ │ │ ├── Exception/ │ │ │ │ └── finspaceException.php │ │ │ └── finspaceClient.php │ │ ├── functions.php │ │ ├── imagebuilder/ │ │ │ ├── Exception/ │ │ │ │ └── imagebuilderException.php │ │ │ └── imagebuilderClient.php │ │ ├── ivschat/ │ │ │ ├── Exception/ │ │ │ │ └── ivschatException.php │ │ │ └── ivschatClient.php │ │ ├── kendra/ │ │ │ ├── Exception/ │ │ │ │ └── kendraException.php │ │ │ └── kendraClient.php │ │ ├── mgn/ │ │ │ ├── Exception/ │ │ │ │ └── mgnException.php │ │ │ └── mgnClient.php │ │ └── signer/ │ │ ├── Exception/ │ │ │ └── signerException.php │ │ └── signerClient.php │ ├── barryvdh/ │ │ ├── laravel-ide-helper/ │ │ │ ├── .php-cs-fixer.common.php │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .php-cs-fixer.tests.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config/ │ │ │ │ └── ide-helper.php │ │ │ ├── php-templates/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── auth.php │ │ │ │ ├── configs.php │ │ │ │ ├── middleware.php │ │ │ │ ├── routes.php │ │ │ │ ├── translations.php │ │ │ │ └── views.php │ │ │ ├── resources/ │ │ │ │ └── views/ │ │ │ │ ├── helper.php │ │ │ │ └── meta.php │ │ │ └── src/ │ │ │ ├── Alias.php │ │ │ ├── Console/ │ │ │ │ ├── EloquentCommand.php │ │ │ │ ├── GeneratorCommand.php │ │ │ │ ├── MetaCommand.php │ │ │ │ └── ModelsCommand.php │ │ │ ├── Contracts/ │ │ │ │ └── ModelHookInterface.php │ │ │ ├── Eloquent.php │ │ │ ├── Factories.php │ │ │ ├── Generator.php │ │ │ ├── IdeHelperServiceProvider.php │ │ │ ├── Listeners/ │ │ │ │ └── GenerateModelHelper.php │ │ │ ├── Macro.php │ │ │ ├── Method.php │ │ │ └── Parsers/ │ │ │ └── PhpDocReturnTypeParser.php │ │ └── reflection-docblock/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── run-tests.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Barryvdh/ │ │ └── Reflection/ │ │ ├── DocBlock/ │ │ │ ├── Context.php │ │ │ ├── ContextFactory.php │ │ │ ├── Description.php │ │ │ ├── Location.php │ │ │ ├── Serializer.php │ │ │ ├── Tag/ │ │ │ │ ├── AuthorTag.php │ │ │ │ ├── CoversTag.php │ │ │ │ ├── DeprecatedTag.php │ │ │ │ ├── ExampleTag.php │ │ │ │ ├── LinkTag.php │ │ │ │ ├── MethodTag.php │ │ │ │ ├── ParamTag.php │ │ │ │ ├── PropertyReadTag.php │ │ │ │ ├── PropertyTag.php │ │ │ │ ├── PropertyWriteTag.php │ │ │ │ ├── ReturnTag.php │ │ │ │ ├── SeeTag.php │ │ │ │ ├── SinceTag.php │ │ │ │ ├── SourceTag.php │ │ │ │ ├── SuppressWarningsTag.php │ │ │ │ ├── TemplateTag.php │ │ │ │ ├── ThrowsTag.php │ │ │ │ ├── UsesTag.php │ │ │ │ ├── VarTag.php │ │ │ │ └── VersionTag.php │ │ │ ├── Tag.php │ │ │ └── Type/ │ │ │ └── Collection.php │ │ └── DocBlock.php │ ├── bin/ │ │ ├── carbon │ │ ├── jp.php │ │ ├── patch-type-declarations │ │ ├── php-parse │ │ ├── phpcbf │ │ ├── phpcs │ │ ├── phpunit │ │ ├── psysh │ │ ├── var-dump-server │ │ └── yaml-lint │ ├── brick/ │ │ └── math/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── psalm-baseline.xml │ │ └── src/ │ │ ├── BigDecimal.php │ │ ├── BigInteger.php │ │ ├── BigNumber.php │ │ ├── BigRational.php │ │ ├── Exception/ │ │ │ ├── DivisionByZeroException.php │ │ │ ├── IntegerOverflowException.php │ │ │ ├── MathException.php │ │ │ ├── NegativeNumberException.php │ │ │ ├── NumberFormatException.php │ │ │ └── RoundingNecessaryException.php │ │ ├── Internal/ │ │ │ ├── Calculator/ │ │ │ │ ├── BcMathCalculator.php │ │ │ │ ├── GmpCalculator.php │ │ │ │ └── NativeCalculator.php │ │ │ └── Calculator.php │ │ └── RoundingMode.php │ ├── carbonphp/ │ │ └── carbon-doctrine-types/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Carbon/ │ │ └── Doctrine/ │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ ├── clue/ │ │ └── stream-filter/ │ │ ├── .github/ │ │ │ └── FUNDING.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── CallbackFilter.php │ │ ├── functions.php │ │ └── functions_include.php │ ├── composer/ │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── class-map-generator/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ClassMap.php │ │ │ ├── ClassMapGenerator.php │ │ │ ├── FileList.php │ │ │ ├── PhpFileCleaner.php │ │ │ └── PhpFileParser.php │ │ ├── installed.json │ │ ├── installed.php │ │ ├── pcre/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── extension.neon │ │ │ └── src/ │ │ │ ├── MatchAllResult.php │ │ │ ├── MatchAllStrictGroupsResult.php │ │ │ ├── MatchAllWithOffsetsResult.php │ │ │ ├── MatchResult.php │ │ │ ├── MatchStrictGroupsResult.php │ │ │ ├── MatchWithOffsetsResult.php │ │ │ ├── PHPStan/ │ │ │ │ ├── InvalidRegexPatternRule.php │ │ │ │ ├── PregMatchFlags.php │ │ │ │ ├── PregMatchParameterOutTypeExtension.php │ │ │ │ ├── PregMatchTypeSpecifyingExtension.php │ │ │ │ ├── PregReplaceCallbackClosureTypeExtension.php │ │ │ │ └── UnsafeStrictGroupsCallRule.php │ │ │ ├── PcreException.php │ │ │ ├── Preg.php │ │ │ ├── Regex.php │ │ │ ├── ReplaceResult.php │ │ │ └── UnexpectedNullMatchException.php │ │ └── platform_check.php │ ├── dflydev/ │ │ └── dot-access-data/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── Data.php │ │ ├── DataInterface.php │ │ ├── Exception/ │ │ │ ├── DataException.php │ │ │ ├── InvalidPathException.php │ │ │ └── MissingPathException.php │ │ └── Util.php │ ├── doctrine/ │ │ ├── inflector/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs/ │ │ │ │ └── en/ │ │ │ │ └── index.rst │ │ │ └── lib/ │ │ │ └── Doctrine/ │ │ │ └── Inflector/ │ │ │ ├── CachedWordInflector.php │ │ │ ├── GenericLanguageInflectorFactory.php │ │ │ ├── Inflector.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Language.php │ │ │ ├── LanguageInflectorFactory.php │ │ │ ├── NoopWordInflector.php │ │ │ ├── Rules/ │ │ │ │ ├── English/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── French/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── NorwegianBokmal/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Pattern.php │ │ │ │ ├── Patterns.php │ │ │ │ ├── Portuguese/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Ruleset.php │ │ │ │ ├── Spanish/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Substitution.php │ │ │ │ ├── Substitutions.php │ │ │ │ ├── Transformation.php │ │ │ │ ├── Transformations.php │ │ │ │ ├── Turkish/ │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ └── Word.php │ │ │ ├── RulesetInflector.php │ │ │ └── WordInflector.php │ │ └── lexer/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src/ │ │ ├── AbstractLexer.php │ │ └── Token.php │ ├── dragonmantank/ │ │ └── cron-expression/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Cron/ │ │ ├── AbstractField.php │ │ ├── CronExpression.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldFactoryInterface.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ └── MonthField.php │ ├── egulias/ │ │ └── email-validator/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── MessageIDParser.php │ │ ├── Parser/ │ │ │ ├── Comment.php │ │ │ ├── CommentStrategy/ │ │ │ │ ├── CommentStrategy.php │ │ │ │ ├── DomainComment.php │ │ │ │ └── LocalComment.php │ │ │ ├── DomainLiteral.php │ │ │ ├── DomainPart.php │ │ │ ├── DoubleQuote.php │ │ │ ├── FoldingWhiteSpace.php │ │ │ ├── IDLeftPart.php │ │ │ ├── IDRightPart.php │ │ │ ├── LocalPart.php │ │ │ └── PartParser.php │ │ ├── Parser.php │ │ ├── Result/ │ │ │ ├── InvalidEmail.php │ │ │ ├── MultipleErrors.php │ │ │ ├── Reason/ │ │ │ │ ├── AtextAfterCFWS.php │ │ │ │ ├── CRLFAtTheEnd.php │ │ │ │ ├── CRLFX2.php │ │ │ │ ├── CRNoLF.php │ │ │ │ ├── CharNotAllowed.php │ │ │ │ ├── CommaInDomain.php │ │ │ │ ├── CommentsInIDRight.php │ │ │ │ ├── ConsecutiveAt.php │ │ │ │ ├── ConsecutiveDot.php │ │ │ │ ├── DetailedReason.php │ │ │ │ ├── DomainAcceptsNoMail.php │ │ │ │ ├── DomainHyphened.php │ │ │ │ ├── DomainTooLong.php │ │ │ │ ├── DotAtEnd.php │ │ │ │ ├── DotAtStart.php │ │ │ │ ├── EmptyReason.php │ │ │ │ ├── ExceptionFound.php │ │ │ │ ├── ExpectingATEXT.php │ │ │ │ ├── ExpectingCTEXT.php │ │ │ │ ├── ExpectingDTEXT.php │ │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ │ ├── LabelTooLong.php │ │ │ │ ├── LocalOrReservedDomain.php │ │ │ │ ├── NoDNSRecord.php │ │ │ │ ├── NoDomainPart.php │ │ │ │ ├── NoLocalPart.php │ │ │ │ ├── RFCWarnings.php │ │ │ │ ├── Reason.php │ │ │ │ ├── SpoofEmail.php │ │ │ │ ├── UnOpenedComment.php │ │ │ │ ├── UnableToGetDNSRecord.php │ │ │ │ ├── UnclosedComment.php │ │ │ │ ├── UnclosedQuotedString.php │ │ │ │ └── UnusualElements.php │ │ │ ├── Result.php │ │ │ ├── SpoofEmail.php │ │ │ └── ValidEmail.php │ │ ├── Validation/ │ │ │ ├── DNSCheckValidation.php │ │ │ ├── DNSGetRecordWrapper.php │ │ │ ├── DNSRecords.php │ │ │ ├── EmailValidation.php │ │ │ ├── Exception/ │ │ │ │ └── EmptyValidationList.php │ │ │ ├── Extra/ │ │ │ │ └── SpoofCheckValidation.php │ │ │ ├── MessageIDValidation.php │ │ │ ├── MultipleValidationWithAnd.php │ │ │ ├── NoRFCWarningsValidation.php │ │ │ └── RFCValidation.php │ │ └── Warning/ │ │ ├── AddressLiteral.php │ │ ├── CFWSNearAt.php │ │ ├── CFWSWithFWS.php │ │ ├── Comment.php │ │ ├── DeprecatedComment.php │ │ ├── DomainLiteral.php │ │ ├── EmailTooLong.php │ │ ├── IPV6BadChar.php │ │ ├── IPV6ColonEnd.php │ │ ├── IPV6ColonStart.php │ │ ├── IPV6Deprecated.php │ │ ├── IPV6DoubleColon.php │ │ ├── IPV6GroupCount.php │ │ ├── IPV6MaxGroups.php │ │ ├── LocalTooLong.php │ │ ├── NoDNSMXRecord.php │ │ ├── ObsoleteDTEXT.php │ │ ├── QuotedPart.php │ │ ├── QuotedString.php │ │ ├── TLD.php │ │ └── Warning.php │ ├── enshrined/ │ │ └── svg-sanitize/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── ElementReference/ │ │ │ ├── Resolver.php │ │ │ ├── Subject.php │ │ │ └── Usage.php │ │ ├── Exceptions/ │ │ │ └── NestingException.php │ │ ├── Helper.php │ │ ├── Sanitizer.php │ │ ├── data/ │ │ │ ├── AllowedAttributes.php │ │ │ ├── AllowedTags.php │ │ │ ├── AttributeInterface.php │ │ │ ├── TagInterface.php │ │ │ └── XPath.php │ │ └── svg-scanner.php │ ├── fakerphp/ │ │ └── faker/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── rector-migrate.php │ │ └── src/ │ │ ├── Faker/ │ │ │ ├── Calculator/ │ │ │ │ ├── Ean.php │ │ │ │ ├── Iban.php │ │ │ │ ├── Inn.php │ │ │ │ ├── Isbn.php │ │ │ │ ├── Luhn.php │ │ │ │ └── TCNo.php │ │ │ ├── ChanceGenerator.php │ │ │ ├── Container/ │ │ │ │ ├── Container.php │ │ │ │ ├── ContainerBuilder.php │ │ │ │ ├── ContainerException.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotInContainerException.php │ │ │ ├── Core/ │ │ │ │ ├── Barcode.php │ │ │ │ ├── Blood.php │ │ │ │ ├── Color.php │ │ │ │ ├── Coordinates.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── File.php │ │ │ │ ├── Number.php │ │ │ │ ├── Uuid.php │ │ │ │ └── Version.php │ │ │ ├── DefaultGenerator.php │ │ │ ├── Documentor.php │ │ │ ├── Extension/ │ │ │ │ ├── AddressExtension.php │ │ │ │ ├── BarcodeExtension.php │ │ │ │ ├── BloodExtension.php │ │ │ │ ├── ColorExtension.php │ │ │ │ ├── CompanyExtension.php │ │ │ │ ├── CountryExtension.php │ │ │ │ ├── DateTimeExtension.php │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionNotFound.php │ │ │ │ ├── FileExtension.php │ │ │ │ ├── GeneratorAwareExtension.php │ │ │ │ ├── GeneratorAwareExtensionTrait.php │ │ │ │ ├── Helper.php │ │ │ │ ├── NumberExtension.php │ │ │ │ ├── PersonExtension.php │ │ │ │ ├── PhoneNumberExtension.php │ │ │ │ ├── UuidExtension.php │ │ │ │ └── VersionExtension.php │ │ │ ├── Factory.php │ │ │ ├── Generator.php │ │ │ ├── Guesser/ │ │ │ │ └── Name.php │ │ │ ├── ORM/ │ │ │ │ ├── CakePHP/ │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ ├── Doctrine/ │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ ├── Populator.php │ │ │ │ │ └── backward-compatibility.php │ │ │ │ ├── Mandango/ │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ ├── Propel/ │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ ├── Propel2/ │ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ │ ├── EntityPopulator.php │ │ │ │ │ └── Populator.php │ │ │ │ └── Spot/ │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Provider/ │ │ │ │ ├── Address.php │ │ │ │ ├── Barcode.php │ │ │ │ ├── Base.php │ │ │ │ ├── Biased.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── File.php │ │ │ │ ├── HtmlLorem.php │ │ │ │ ├── Image.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Lorem.php │ │ │ │ ├── Medical.php │ │ │ │ ├── Miscellaneous.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ ├── Text.php │ │ │ │ ├── UserAgent.php │ │ │ │ ├── Uuid.php │ │ │ │ ├── ar_EG/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ar_JO/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ar_SA/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── at_AT/ │ │ │ │ │ └── Payment.php │ │ │ │ ├── bg_BG/ │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── bn_BD/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Utils.php │ │ │ │ ├── cs_CZ/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── da_DK/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── de_AT/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── de_CH/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── de_DE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── el_CY/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── el_GR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── en_AU/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_CA/ │ │ │ │ │ ├── Address.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_GB/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_HK/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_IN/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_NG/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_NZ/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_PH/ │ │ │ │ │ ├── Address.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_SG/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_UG/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_US/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── en_ZA/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_AR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_ES/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── es_PE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── es_VE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── et_EE/ │ │ │ │ │ └── Person.php │ │ │ │ ├── fa_IR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── fi_FI/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_BE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_CA/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── Text.php │ │ │ │ ├── fr_CH/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── fr_FR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── he_IL/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── hr_HR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── hu_HU/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── hy_AM/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── id_ID/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── is_IS/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── it_CH/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── it_IT/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ja_JP/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ka_GE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── kk_KZ/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ko_KR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── lt_LT/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── lv_LV/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── me_ME/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── mn_MN/ │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ms_MY/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Miscellaneous.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── nb_NO/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ne_NP/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── nl_BE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── nl_NL/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── pl_PL/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── LicensePlate.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── pt_BR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ ├── Text.php │ │ │ │ │ └── check_digit.php │ │ │ │ ├── pt_PT/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── ro_MD/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ro_RO/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── ru_RU/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── sk_SK/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── sl_SI/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── sr_Cyrl_RS/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sr_Latn_RS/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sr_RS/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── Person.php │ │ │ │ ├── sv_SE/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Municipality.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── th_TH/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── tr_TR/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── uk_UA/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── vi_VN/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── zh_CN/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ └── zh_TW/ │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── UniqueGenerator.php │ │ │ └── ValidGenerator.php │ │ └── autoload.php │ ├── filp/ │ │ └── whoops/ │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src/ │ │ └── Whoops/ │ │ ├── Exception/ │ │ │ ├── ErrorException.php │ │ │ ├── Formatter.php │ │ │ ├── Frame.php │ │ │ ├── FrameCollection.php │ │ │ └── Inspector.php │ │ ├── Handler/ │ │ │ ├── CallbackHandler.php │ │ │ ├── Handler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── JsonResponseHandler.php │ │ │ ├── PlainTextHandler.php │ │ │ ├── PrettyPageHandler.php │ │ │ └── XmlResponseHandler.php │ │ ├── Inspector/ │ │ │ ├── InspectorFactory.php │ │ │ ├── InspectorFactoryInterface.php │ │ │ └── InspectorInterface.php │ │ ├── Resources/ │ │ │ ├── css/ │ │ │ │ ├── prism.css │ │ │ │ └── whoops.base.css │ │ │ ├── js/ │ │ │ │ ├── prism.js │ │ │ │ └── whoops.base.js │ │ │ └── views/ │ │ │ ├── env_details.html.php │ │ │ ├── frame_code.html.php │ │ │ ├── frame_list.html.php │ │ │ ├── frames_container.html.php │ │ │ ├── frames_description.html.php │ │ │ ├── header.html.php │ │ │ ├── header_outer.html.php │ │ │ ├── layout.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ └── panel_left_outer.html.php │ │ ├── Run.php │ │ ├── RunInterface.php │ │ └── Util/ │ │ ├── HtmlDumperOutput.php │ │ ├── Misc.php │ │ ├── SystemFacade.php │ │ └── TemplateHelper.php │ ├── fruitcake/ │ │ └── php-cors/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── CorsService.php │ │ └── Exceptions/ │ │ └── InvalidOptionException.php │ ├── graham-campbell/ │ │ ├── bounded-cache/ │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── BoundedCache.php │ │ │ ├── BoundedCacheInterface.php │ │ │ └── TtlHelper.php │ │ ├── github/ │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── config/ │ │ │ │ └── github.php │ │ │ └── src/ │ │ │ ├── Auth/ │ │ │ │ ├── Authenticator/ │ │ │ │ │ ├── AbstractAuthenticator.php │ │ │ │ │ ├── ApplicationAuthenticator.php │ │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ │ ├── JwtAuthenticator.php │ │ │ │ │ ├── PrivateKeyAuthenticator.php │ │ │ │ │ └── TokenAuthenticator.php │ │ │ │ └── AuthenticatorFactory.php │ │ │ ├── Cache/ │ │ │ │ ├── ConnectionFactory.php │ │ │ │ └── Connector/ │ │ │ │ └── IlluminateConnector.php │ │ │ ├── Facades/ │ │ │ │ └── GitHub.php │ │ │ ├── GitHubFactory.php │ │ │ ├── GitHubManager.php │ │ │ ├── GitHubServiceProvider.php │ │ │ └── HttpClient/ │ │ │ └── BuilderFactory.php │ │ ├── manager/ │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AbstractManager.php │ │ │ ├── ConnectorInterface.php │ │ │ └── ManagerInterface.php │ │ └── result-type/ │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ ├── Error.php │ │ ├── Result.php │ │ └── Success.php │ ├── guzzlehttp/ │ │ ├── guzzle/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie/ │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ ├── Exception/ │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ ├── Handler/ │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── HeaderProcessor.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ │ ├── promises/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ └── Utils.php │ │ ├── psr7/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── Exception/ │ │ │ │ └── MalformedUriException.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── HttpFactory.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriComparator.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ └── Utils.php │ │ └── uri-template/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── UriTemplate.php │ ├── knplabs/ │ │ └── github-api/ │ │ ├── CHANGELOG-3.X.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-3.0.md │ │ ├── UPGRADE-4.0.md │ │ ├── composer.json │ │ ├── lib/ │ │ │ └── Github/ │ │ │ ├── Api/ │ │ │ │ ├── AbstractApi.php │ │ │ │ ├── AcceptHeaderTrait.php │ │ │ │ ├── App/ │ │ │ │ │ └── Hook.php │ │ │ │ ├── Apps.php │ │ │ │ ├── Authorizations.php │ │ │ │ ├── Copilot/ │ │ │ │ │ └── Usage.php │ │ │ │ ├── CurrentUser/ │ │ │ │ │ ├── Emails.php │ │ │ │ │ ├── Followers.php │ │ │ │ │ ├── Memberships.php │ │ │ │ │ ├── Notifications.php │ │ │ │ │ ├── PublicKeys.php │ │ │ │ │ ├── Starring.php │ │ │ │ │ └── Watchers.php │ │ │ │ ├── CurrentUser.php │ │ │ │ ├── Deployment/ │ │ │ │ │ ├── Environments.php │ │ │ │ │ └── Policies.php │ │ │ │ ├── Deployment.php │ │ │ │ ├── Enterprise/ │ │ │ │ │ ├── License.php │ │ │ │ │ ├── ManagementConsole.php │ │ │ │ │ ├── SecretScanning.php │ │ │ │ │ ├── Stats.php │ │ │ │ │ └── UserAdmin.php │ │ │ │ ├── Enterprise.php │ │ │ │ ├── Environment/ │ │ │ │ │ ├── Secrets.php │ │ │ │ │ └── Variables.php │ │ │ │ ├── Gist/ │ │ │ │ │ └── Comments.php │ │ │ │ ├── Gists.php │ │ │ │ ├── GitData/ │ │ │ │ │ ├── Blobs.php │ │ │ │ │ ├── Commits.php │ │ │ │ │ ├── References.php │ │ │ │ │ ├── Tags.php │ │ │ │ │ └── Trees.php │ │ │ │ ├── GitData.php │ │ │ │ ├── GraphQL.php │ │ │ │ ├── Issue/ │ │ │ │ │ ├── Assignees.php │ │ │ │ │ ├── Comments.php │ │ │ │ │ ├── Events.php │ │ │ │ │ ├── Labels.php │ │ │ │ │ ├── Milestones.php │ │ │ │ │ └── Timeline.php │ │ │ │ ├── Issue.php │ │ │ │ ├── Markdown.php │ │ │ │ ├── Meta.php │ │ │ │ ├── Miscellaneous/ │ │ │ │ │ ├── CodeOfConduct.php │ │ │ │ │ ├── Emojis.php │ │ │ │ │ ├── Gitignore.php │ │ │ │ │ └── Licenses.php │ │ │ │ ├── Notification.php │ │ │ │ ├── Organization/ │ │ │ │ │ ├── Actions/ │ │ │ │ │ │ ├── Secrets.php │ │ │ │ │ │ ├── SelfHostedRunners.php │ │ │ │ │ │ └── Variables.php │ │ │ │ │ ├── Hooks.php │ │ │ │ │ ├── Members.php │ │ │ │ │ ├── OrganizationRoles.php │ │ │ │ │ ├── OutsideCollaborators.php │ │ │ │ │ ├── Projects.php │ │ │ │ │ ├── SecretScanning.php │ │ │ │ │ └── Teams.php │ │ │ │ ├── Organization.php │ │ │ │ ├── Project/ │ │ │ │ │ ├── AbstractProjectApi.php │ │ │ │ │ ├── Cards.php │ │ │ │ │ └── Columns.php │ │ │ │ ├── PullRequest/ │ │ │ │ │ ├── Comments.php │ │ │ │ │ ├── Review.php │ │ │ │ │ └── ReviewRequest.php │ │ │ │ ├── PullRequest.php │ │ │ │ ├── RateLimit/ │ │ │ │ │ └── RateLimitResource.php │ │ │ │ ├── RateLimit.php │ │ │ │ ├── Repo.php │ │ │ │ ├── Repository/ │ │ │ │ │ ├── Actions/ │ │ │ │ │ │ ├── Artifacts.php │ │ │ │ │ │ ├── Secrets.php │ │ │ │ │ │ ├── SelfHostedRunners.php │ │ │ │ │ │ ├── Variables.php │ │ │ │ │ │ ├── WorkflowJobs.php │ │ │ │ │ │ ├── WorkflowRuns.php │ │ │ │ │ │ └── Workflows.php │ │ │ │ │ ├── Assets.php │ │ │ │ │ ├── Checks/ │ │ │ │ │ │ ├── CheckRuns.php │ │ │ │ │ │ └── CheckSuites.php │ │ │ │ │ ├── Collaborators.php │ │ │ │ │ ├── Comments.php │ │ │ │ │ ├── Commits.php │ │ │ │ │ ├── Contents.php │ │ │ │ │ ├── DeployKeys.php │ │ │ │ │ ├── Downloads.php │ │ │ │ │ ├── Forks.php │ │ │ │ │ ├── Hooks.php │ │ │ │ │ ├── Labels.php │ │ │ │ │ ├── Pages.php │ │ │ │ │ ├── Projects.php │ │ │ │ │ ├── Protection.php │ │ │ │ │ ├── Releases.php │ │ │ │ │ ├── SecretScanning.php │ │ │ │ │ ├── Stargazers.php │ │ │ │ │ ├── Statuses.php │ │ │ │ │ └── Traffic.php │ │ │ │ ├── Search.php │ │ │ │ ├── User/ │ │ │ │ │ └── Migration.php │ │ │ │ └── User.php │ │ │ ├── AuthMethod.php │ │ │ ├── Client.php │ │ │ ├── Exception/ │ │ │ │ ├── ApiLimitExceedException.php │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingArgumentException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SsoRequiredException.php │ │ │ │ ├── TwoFactorAuthenticationRequiredException.php │ │ │ │ └── ValidationFailedException.php │ │ │ ├── HttpClient/ │ │ │ │ ├── Builder.php │ │ │ │ ├── Message/ │ │ │ │ │ └── ResponseMediator.php │ │ │ │ └── Plugin/ │ │ │ │ ├── Authentication.php │ │ │ │ ├── GithubExceptionThrower.php │ │ │ │ ├── History.php │ │ │ │ └── PathPrepend.php │ │ │ ├── ResultPager.php │ │ │ └── ResultPagerInterface.php │ │ └── phpstan.neon.dist │ ├── laravel/ │ │ ├── framework/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config/ │ │ │ │ ├── app.php │ │ │ │ ├── auth.php │ │ │ │ ├── broadcasting.php │ │ │ │ ├── cache.php │ │ │ │ ├── concurrency.php │ │ │ │ ├── cors.php │ │ │ │ ├── database.php │ │ │ │ ├── filesystems.php │ │ │ │ ├── hashing.php │ │ │ │ ├── logging.php │ │ │ │ ├── mail.php │ │ │ │ ├── queue.php │ │ │ │ ├── services.php │ │ │ │ ├── session.php │ │ │ │ └── view.php │ │ │ ├── config-stubs/ │ │ │ │ └── app.php │ │ │ ├── pint.json │ │ │ └── src/ │ │ │ └── Illuminate/ │ │ │ ├── Auth/ │ │ │ │ ├── Access/ │ │ │ │ │ ├── AuthorizationException.php │ │ │ │ │ ├── Events/ │ │ │ │ │ │ └── GateEvaluated.php │ │ │ │ │ ├── Gate.php │ │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ │ └── Response.php │ │ │ │ ├── AuthManager.php │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── AuthenticationException.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── make/ │ │ │ │ │ └── views/ │ │ │ │ │ └── layouts/ │ │ │ │ │ └── app.stub │ │ │ │ ├── CreatesUserProviders.php │ │ │ │ ├── DatabaseUserProvider.php │ │ │ │ ├── EloquentUserProvider.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── Attempting.php │ │ │ │ │ ├── Authenticated.php │ │ │ │ │ ├── CurrentDeviceLogout.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── Lockout.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── Logout.php │ │ │ │ │ ├── OtherDeviceLogout.php │ │ │ │ │ ├── PasswordReset.php │ │ │ │ │ ├── PasswordResetLinkSent.php │ │ │ │ │ ├── Registered.php │ │ │ │ │ ├── Validated.php │ │ │ │ │ └── Verified.php │ │ │ │ ├── GenericUser.php │ │ │ │ ├── GuardHelpers.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Listeners/ │ │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ │ ├── Authorize.php │ │ │ │ │ ├── EnsureEmailIsVerified.php │ │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ │ └── RequirePassword.php │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ ├── Notifications/ │ │ │ │ │ ├── ResetPassword.php │ │ │ │ │ └── VerifyEmail.php │ │ │ │ ├── Passwords/ │ │ │ │ │ ├── CacheTokenRepository.php │ │ │ │ │ ├── CanResetPassword.php │ │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ │ ├── PasswordBroker.php │ │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ │ └── TokenRepositoryInterface.php │ │ │ │ ├── Recaller.php │ │ │ │ ├── RequestGuard.php │ │ │ │ ├── SessionGuard.php │ │ │ │ ├── TokenGuard.php │ │ │ │ └── composer.json │ │ │ ├── Broadcasting/ │ │ │ │ ├── AnonymousEvent.php │ │ │ │ ├── BroadcastController.php │ │ │ │ ├── BroadcastEvent.php │ │ │ │ ├── BroadcastException.php │ │ │ │ ├── BroadcastManager.php │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── Broadcasters/ │ │ │ │ │ ├── AblyBroadcaster.php │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── LogBroadcaster.php │ │ │ │ │ ├── NullBroadcaster.php │ │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ │ ├── RedisBroadcaster.php │ │ │ │ │ └── UsePusherChannelConventions.php │ │ │ │ ├── Channel.php │ │ │ │ ├── EncryptedPrivateChannel.php │ │ │ │ ├── InteractsWithBroadcasting.php │ │ │ │ ├── InteractsWithSockets.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── PendingBroadcast.php │ │ │ │ ├── PresenceChannel.php │ │ │ │ ├── PrivateChannel.php │ │ │ │ ├── UniqueBroadcastEvent.php │ │ │ │ └── composer.json │ │ │ ├── Bus/ │ │ │ │ ├── Batch.php │ │ │ │ ├── BatchFactory.php │ │ │ │ ├── BatchRepository.php │ │ │ │ ├── Batchable.php │ │ │ │ ├── BusServiceProvider.php │ │ │ │ ├── ChainedBatch.php │ │ │ │ ├── DatabaseBatchRepository.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── DynamoBatchRepository.php │ │ │ │ ├── Events/ │ │ │ │ │ └── BatchDispatched.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── PendingBatch.php │ │ │ │ ├── PrunableBatchRepository.php │ │ │ │ ├── Queueable.php │ │ │ │ ├── UniqueLock.php │ │ │ │ ├── UpdatedBatchJobCounts.php │ │ │ │ └── composer.json │ │ │ ├── Cache/ │ │ │ │ ├── ApcStore.php │ │ │ │ ├── ApcWrapper.php │ │ │ │ ├── ArrayLock.php │ │ │ │ ├── ArrayStore.php │ │ │ │ ├── CacheLock.php │ │ │ │ ├── CacheManager.php │ │ │ │ ├── CacheServiceProvider.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── CacheTableCommand.php │ │ │ │ │ ├── ClearCommand.php │ │ │ │ │ ├── ForgetCommand.php │ │ │ │ │ ├── PruneStaleTagsCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── cache.stub │ │ │ │ ├── DatabaseLock.php │ │ │ │ ├── DatabaseStore.php │ │ │ │ ├── DynamoDbLock.php │ │ │ │ ├── DynamoDbStore.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── CacheEvent.php │ │ │ │ │ ├── CacheHit.php │ │ │ │ │ ├── CacheMissed.php │ │ │ │ │ ├── ForgettingKey.php │ │ │ │ │ ├── KeyForgetFailed.php │ │ │ │ │ ├── KeyForgotten.php │ │ │ │ │ ├── KeyWriteFailed.php │ │ │ │ │ ├── KeyWritten.php │ │ │ │ │ ├── RetrievingKey.php │ │ │ │ │ ├── RetrievingManyKeys.php │ │ │ │ │ ├── WritingKey.php │ │ │ │ │ └── WritingManyKeys.php │ │ │ │ ├── FileLock.php │ │ │ │ ├── FileStore.php │ │ │ │ ├── HasCacheLock.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Lock.php │ │ │ │ ├── LuaScripts.php │ │ │ │ ├── MemcachedConnector.php │ │ │ │ ├── MemcachedLock.php │ │ │ │ ├── MemcachedStore.php │ │ │ │ ├── NoLock.php │ │ │ │ ├── NullStore.php │ │ │ │ ├── PhpRedisLock.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── RateLimiting/ │ │ │ │ │ ├── GlobalLimit.php │ │ │ │ │ ├── Limit.php │ │ │ │ │ └── Unlimited.php │ │ │ │ ├── RedisLock.php │ │ │ │ ├── RedisStore.php │ │ │ │ ├── RedisTagSet.php │ │ │ │ ├── RedisTaggedCache.php │ │ │ │ ├── Repository.php │ │ │ │ ├── RetrievesMultipleKeys.php │ │ │ │ ├── TagSet.php │ │ │ │ ├── TaggableStore.php │ │ │ │ ├── TaggedCache.php │ │ │ │ └── composer.json │ │ │ ├── Collections/ │ │ │ │ ├── Arr.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Enumerable.php │ │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ │ ├── ItemNotFoundException.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LazyCollection.php │ │ │ │ ├── MultipleItemsFoundException.php │ │ │ │ ├── Traits/ │ │ │ │ │ └── EnumeratesValues.php │ │ │ │ ├── composer.json │ │ │ │ ├── functions.php │ │ │ │ └── helpers.php │ │ │ ├── Concurrency/ │ │ │ │ ├── ConcurrencyManager.php │ │ │ │ ├── ConcurrencyServiceProvider.php │ │ │ │ ├── Console/ │ │ │ │ │ └── InvokeSerializedClosureCommand.php │ │ │ │ ├── ForkDriver.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── ProcessDriver.php │ │ │ │ ├── SyncDriver.php │ │ │ │ └── composer.json │ │ │ ├── Conditionable/ │ │ │ │ ├── HigherOrderWhenProxy.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Traits/ │ │ │ │ │ └── Conditionable.php │ │ │ │ └── composer.json │ │ │ ├── Config/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Repository.php │ │ │ │ └── composer.json │ │ │ ├── Console/ │ │ │ │ ├── Application.php │ │ │ │ ├── BufferedConsoleOutput.php │ │ │ │ ├── CacheCommandMutex.php │ │ │ │ ├── Command.php │ │ │ │ ├── CommandMutex.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── CallsCommands.php │ │ │ │ │ ├── ConfiguresPrompts.php │ │ │ │ │ ├── CreatesMatchingTest.php │ │ │ │ │ ├── HasParameters.php │ │ │ │ │ ├── InteractsWithIO.php │ │ │ │ │ ├── InteractsWithSignals.php │ │ │ │ │ └── PromptsForMissingInput.php │ │ │ │ ├── ConfirmableTrait.php │ │ │ │ ├── ContainerCommandLoader.php │ │ │ │ ├── Contracts/ │ │ │ │ │ └── NewLineAware.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── ArtisanStarting.php │ │ │ │ │ ├── CommandFinished.php │ │ │ │ │ ├── CommandStarting.php │ │ │ │ │ ├── ScheduledBackgroundTaskFinished.php │ │ │ │ │ ├── ScheduledTaskFailed.php │ │ │ │ │ ├── ScheduledTaskFinished.php │ │ │ │ │ ├── ScheduledTaskSkipped.php │ │ │ │ │ └── ScheduledTaskStarting.php │ │ │ │ ├── GeneratorCommand.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── ManuallyFailedException.php │ │ │ │ ├── MigrationGeneratorCommand.php │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Prohibitable.php │ │ │ │ ├── PromptValidationException.php │ │ │ │ ├── QuestionHelper.php │ │ │ │ ├── Scheduling/ │ │ │ │ │ ├── CacheAware.php │ │ │ │ │ ├── CacheEventMutex.php │ │ │ │ │ ├── CacheSchedulingMutex.php │ │ │ │ │ ├── CallbackEvent.php │ │ │ │ │ ├── CommandBuilder.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventMutex.php │ │ │ │ │ ├── ManagesAttributes.php │ │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ │ ├── PendingEventAttributes.php │ │ │ │ │ ├── Schedule.php │ │ │ │ │ ├── ScheduleClearCacheCommand.php │ │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ │ ├── ScheduleInterruptCommand.php │ │ │ │ │ ├── ScheduleListCommand.php │ │ │ │ │ ├── ScheduleRunCommand.php │ │ │ │ │ ├── ScheduleTestCommand.php │ │ │ │ │ ├── ScheduleWorkCommand.php │ │ │ │ │ └── SchedulingMutex.php │ │ │ │ ├── Signals.php │ │ │ │ ├── View/ │ │ │ │ │ └── Components/ │ │ │ │ │ ├── Alert.php │ │ │ │ │ ├── Ask.php │ │ │ │ │ ├── AskWithCompletion.php │ │ │ │ │ ├── BulletList.php │ │ │ │ │ ├── Choice.php │ │ │ │ │ ├── Component.php │ │ │ │ │ ├── Confirm.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Info.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Mutators/ │ │ │ │ │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ │ │ │ │ ├── EnsureNoPunctuation.php │ │ │ │ │ │ ├── EnsurePunctuation.php │ │ │ │ │ │ └── EnsureRelativePaths.php │ │ │ │ │ ├── Secret.php │ │ │ │ │ ├── Success.php │ │ │ │ │ ├── Task.php │ │ │ │ │ ├── TwoColumnDetail.php │ │ │ │ │ └── Warn.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ └── components/ │ │ │ │ ├── alert.php │ │ │ │ ├── bullet-list.php │ │ │ │ ├── line.php │ │ │ │ └── two-column-detail.php │ │ │ ├── Container/ │ │ │ │ ├── Attributes/ │ │ │ │ │ ├── Auth.php │ │ │ │ │ ├── Authenticated.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── CurrentUser.php │ │ │ │ │ ├── DB.php │ │ │ │ │ ├── Database.php │ │ │ │ │ ├── Log.php │ │ │ │ │ ├── RouteParameter.php │ │ │ │ │ ├── Storage.php │ │ │ │ │ └── Tag.php │ │ │ │ ├── BoundMethod.php │ │ │ │ ├── Container.php │ │ │ │ ├── ContextualBindingBuilder.php │ │ │ │ ├── EntryNotFoundException.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── RewindableGenerator.php │ │ │ │ ├── Util.php │ │ │ │ └── composer.json │ │ │ ├── Contracts/ │ │ │ │ ├── Auth/ │ │ │ │ │ ├── Access/ │ │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ │ └── Gate.php │ │ │ │ │ ├── Authenticatable.php │ │ │ │ │ ├── CanResetPassword.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Guard.php │ │ │ │ │ ├── Middleware/ │ │ │ │ │ │ └── AuthenticatesRequests.php │ │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ │ ├── PasswordBroker.php │ │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ │ ├── StatefulGuard.php │ │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ │ └── UserProvider.php │ │ │ │ ├── Broadcasting/ │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HasBroadcastChannel.php │ │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ │ └── ShouldBroadcastNow.php │ │ │ │ ├── Bus/ │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── QueueingDispatcher.php │ │ │ │ ├── Cache/ │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Lock.php │ │ │ │ │ ├── LockProvider.php │ │ │ │ │ ├── LockTimeoutException.php │ │ │ │ │ ├── Repository.php │ │ │ │ │ └── Store.php │ │ │ │ ├── Concurrency/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── Config/ │ │ │ │ │ └── Repository.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── Isolatable.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ └── PromptsForMissingInput.php │ │ │ │ ├── Container/ │ │ │ │ │ ├── BindingResolutionException.php │ │ │ │ │ ├── CircularDependencyException.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── ContextualAttribute.php │ │ │ │ │ └── ContextualBindingBuilder.php │ │ │ │ ├── Cookie/ │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── QueueingFactory.php │ │ │ │ ├── Database/ │ │ │ │ │ ├── Eloquent/ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ ├── Castable.php │ │ │ │ │ │ ├── CastsAttributes.php │ │ │ │ │ │ ├── CastsInboundAttributes.php │ │ │ │ │ │ ├── DeviatesCastableAttributes.php │ │ │ │ │ │ ├── SerializesCastableAttributes.php │ │ │ │ │ │ └── SupportsPartialRelations.php │ │ │ │ │ ├── Events/ │ │ │ │ │ │ └── MigrationEvent.php │ │ │ │ │ ├── ModelIdentifier.php │ │ │ │ │ └── Query/ │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── ConditionExpression.php │ │ │ │ │ └── Expression.php │ │ │ │ ├── Debug/ │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ └── ShouldntReport.php │ │ │ │ ├── Encryption/ │ │ │ │ │ ├── DecryptException.php │ │ │ │ │ ├── EncryptException.php │ │ │ │ │ ├── Encrypter.php │ │ │ │ │ └── StringEncrypter.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── ShouldDispatchAfterCommit.php │ │ │ │ │ └── ShouldHandleEventsAfterCommit.php │ │ │ │ ├── Filesystem/ │ │ │ │ │ ├── Cloud.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ └── LockTimeoutException.php │ │ │ │ ├── Foundation/ │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── CachesConfiguration.php │ │ │ │ │ ├── CachesRoutes.php │ │ │ │ │ ├── ExceptionRenderer.php │ │ │ │ │ └── MaintenanceMode.php │ │ │ │ ├── Hashing/ │ │ │ │ │ └── Hasher.php │ │ │ │ ├── Http/ │ │ │ │ │ └── Kernel.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Mail/ │ │ │ │ │ ├── Attachable.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── MailQueue.php │ │ │ │ │ ├── Mailable.php │ │ │ │ │ └── Mailer.php │ │ │ │ ├── Notifications/ │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── Factory.php │ │ │ │ ├── Pagination/ │ │ │ │ │ ├── CursorPaginator.php │ │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ │ └── Paginator.php │ │ │ │ ├── Pipeline/ │ │ │ │ │ ├── Hub.php │ │ │ │ │ └── Pipeline.php │ │ │ │ ├── Process/ │ │ │ │ │ ├── InvokedProcess.php │ │ │ │ │ └── ProcessResult.php │ │ │ │ ├── Queue/ │ │ │ │ │ ├── ClearableQueue.php │ │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ │ ├── EntityResolver.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Job.php │ │ │ │ │ ├── Monitor.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── QueueableCollection.php │ │ │ │ │ ├── QueueableEntity.php │ │ │ │ │ ├── ShouldBeEncrypted.php │ │ │ │ │ ├── ShouldBeUnique.php │ │ │ │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ │ │ │ ├── ShouldQueue.php │ │ │ │ │ └── ShouldQueueAfterCommit.php │ │ │ │ ├── Redis/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Connector.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── LimiterTimeoutException.php │ │ │ │ ├── Routing/ │ │ │ │ │ ├── BindingRegistrar.php │ │ │ │ │ ├── Registrar.php │ │ │ │ │ ├── ResponseFactory.php │ │ │ │ │ ├── UrlGenerator.php │ │ │ │ │ └── UrlRoutable.php │ │ │ │ ├── Session/ │ │ │ │ │ ├── Middleware/ │ │ │ │ │ │ └── AuthenticatesSessions.php │ │ │ │ │ └── Session.php │ │ │ │ ├── Support/ │ │ │ │ │ ├── Arrayable.php │ │ │ │ │ ├── CanBeEscapedWhenCastToString.php │ │ │ │ │ ├── DeferrableProvider.php │ │ │ │ │ ├── DeferringDisplayableValue.php │ │ │ │ │ ├── Htmlable.php │ │ │ │ │ ├── Jsonable.php │ │ │ │ │ ├── MessageBag.php │ │ │ │ │ ├── MessageProvider.php │ │ │ │ │ ├── Renderable.php │ │ │ │ │ ├── Responsable.php │ │ │ │ │ └── ValidatedData.php │ │ │ │ ├── Translation/ │ │ │ │ │ ├── HasLocalePreference.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ └── Translator.php │ │ │ │ ├── Validation/ │ │ │ │ │ ├── DataAwareRule.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ImplicitRule.php │ │ │ │ │ ├── InvokableRule.php │ │ │ │ │ ├── Rule.php │ │ │ │ │ ├── UncompromisedVerifier.php │ │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ │ ├── ValidationRule.php │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── ValidatorAwareRule.php │ │ │ │ ├── View/ │ │ │ │ │ ├── Engine.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── ViewCompilationException.php │ │ │ │ └── composer.json │ │ │ ├── Cookie/ │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieServiceProvider.php │ │ │ │ ├── CookieValuePrefix.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ │ │ └── EncryptCookies.php │ │ │ │ └── composer.json │ │ │ ├── Database/ │ │ │ │ ├── Capsule/ │ │ │ │ │ └── Manager.php │ │ │ │ ├── ClassMorphViolationException.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── BuildsQueries.php │ │ │ │ │ ├── BuildsWhereDateClauses.php │ │ │ │ │ ├── CompilesJsonPaths.php │ │ │ │ │ ├── ExplainsQueries.php │ │ │ │ │ ├── ManagesTransactions.php │ │ │ │ │ └── ParsesSearchPath.php │ │ │ │ ├── ConfigurationUrlParser.php │ │ │ │ ├── Connection.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── ConnectionResolver.php │ │ │ │ ├── ConnectionResolverInterface.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── ConnectionFactory.php │ │ │ │ │ ├── Connector.php │ │ │ │ │ ├── ConnectorInterface.php │ │ │ │ │ ├── MariaDbConnector.php │ │ │ │ │ ├── MySqlConnector.php │ │ │ │ │ ├── PostgresConnector.php │ │ │ │ │ ├── SQLiteConnector.php │ │ │ │ │ └── SqlServerConnector.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── DatabaseInspectionCommand.php │ │ │ │ │ ├── DbCommand.php │ │ │ │ │ ├── DumpCommand.php │ │ │ │ │ ├── Factories/ │ │ │ │ │ │ ├── FactoryMakeCommand.php │ │ │ │ │ │ └── stubs/ │ │ │ │ │ │ └── factory.stub │ │ │ │ │ ├── Migrations/ │ │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ │ ├── FreshCommand.php │ │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ │ └── TableGuesser.php │ │ │ │ │ ├── MonitorCommand.php │ │ │ │ │ ├── PruneCommand.php │ │ │ │ │ ├── Seeds/ │ │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ │ ├── WithoutModelEvents.php │ │ │ │ │ │ └── stubs/ │ │ │ │ │ │ └── seeder.stub │ │ │ │ │ ├── ShowCommand.php │ │ │ │ │ ├── ShowModelCommand.php │ │ │ │ │ ├── TableCommand.php │ │ │ │ │ └── WipeCommand.php │ │ │ │ ├── DatabaseManager.php │ │ │ │ ├── DatabaseServiceProvider.php │ │ │ │ ├── DatabaseTransactionRecord.php │ │ │ │ ├── DatabaseTransactionsManager.php │ │ │ │ ├── DeadlockException.php │ │ │ │ ├── DetectsConcurrencyErrors.php │ │ │ │ ├── DetectsLostConnections.php │ │ │ │ ├── Eloquent/ │ │ │ │ │ ├── Attributes/ │ │ │ │ │ │ ├── CollectedBy.php │ │ │ │ │ │ ├── ObservedBy.php │ │ │ │ │ │ ├── ScopedBy.php │ │ │ │ │ │ └── UseFactory.php │ │ │ │ │ ├── BroadcastableModelEventOccurred.php │ │ │ │ │ ├── BroadcastsEvents.php │ │ │ │ │ ├── BroadcastsEventsAfterCommit.php │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Casts/ │ │ │ │ │ │ ├── ArrayObject.php │ │ │ │ │ │ ├── AsArrayObject.php │ │ │ │ │ │ ├── AsCollection.php │ │ │ │ │ │ ├── AsEncryptedArrayObject.php │ │ │ │ │ │ ├── AsEncryptedCollection.php │ │ │ │ │ │ ├── AsEnumArrayObject.php │ │ │ │ │ │ ├── AsEnumCollection.php │ │ │ │ │ │ ├── AsStringable.php │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ └── Json.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ │ ├── HasUlids.php │ │ │ │ │ │ ├── HasUniqueIds.php │ │ │ │ │ │ ├── HasUniqueStringIds.php │ │ │ │ │ │ ├── HasUuids.php │ │ │ │ │ │ ├── HasVersion7Uuids.php │ │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ │ ├── PreventsCircularRecursion.php │ │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ │ ├── Factories/ │ │ │ │ │ │ ├── BelongsToManyRelationship.php │ │ │ │ │ │ ├── BelongsToRelationship.php │ │ │ │ │ │ ├── CrossJoinSequence.php │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ ├── HasFactory.php │ │ │ │ │ │ ├── Relationship.php │ │ │ │ │ │ └── Sequence.php │ │ │ │ │ ├── HasBuilder.php │ │ │ │ │ ├── HasCollection.php │ │ │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ │ │ ├── InvalidCastException.php │ │ │ │ │ ├── JsonEncodingException.php │ │ │ │ │ ├── MassAssignmentException.php │ │ │ │ │ ├── MassPrunable.php │ │ │ │ │ ├── MissingAttributeException.php │ │ │ │ │ ├── Model.php │ │ │ │ │ ├── ModelInspector.php │ │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ │ ├── PendingHasThroughRelationship.php │ │ │ │ │ ├── Prunable.php │ │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ │ ├── Relations/ │ │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ │ ├── AsPivot.php │ │ │ │ │ │ │ ├── CanBeOneOfMany.php │ │ │ │ │ │ │ ├── ComparesRelatedModels.php │ │ │ │ │ │ │ ├── InteractsWithDictionary.php │ │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ │ ├── SupportsDefaultModels.php │ │ │ │ │ │ │ └── SupportsInverseRelations.php │ │ │ │ │ │ ├── HasMany.php │ │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ │ ├── HasOne.php │ │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ │ ├── HasOneOrManyThrough.php │ │ │ │ │ │ ├── HasOneThrough.php │ │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ │ ├── Pivot.php │ │ │ │ │ │ └── Relation.php │ │ │ │ │ ├── Scope.php │ │ │ │ │ ├── SoftDeletes.php │ │ │ │ │ └── SoftDeletingScope.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── ConnectionEstablished.php │ │ │ │ │ ├── ConnectionEvent.php │ │ │ │ │ ├── DatabaseBusy.php │ │ │ │ │ ├── DatabaseRefreshed.php │ │ │ │ │ ├── MigrationEnded.php │ │ │ │ │ ├── MigrationEvent.php │ │ │ │ │ ├── MigrationStarted.php │ │ │ │ │ ├── MigrationsEnded.php │ │ │ │ │ ├── MigrationsEvent.php │ │ │ │ │ ├── MigrationsPruned.php │ │ │ │ │ ├── MigrationsStarted.php │ │ │ │ │ ├── ModelPruningFinished.php │ │ │ │ │ ├── ModelPruningStarting.php │ │ │ │ │ ├── ModelsPruned.php │ │ │ │ │ ├── NoPendingMigrations.php │ │ │ │ │ ├── QueryExecuted.php │ │ │ │ │ ├── SchemaDumped.php │ │ │ │ │ ├── SchemaLoaded.php │ │ │ │ │ ├── StatementPrepared.php │ │ │ │ │ ├── TransactionBeginning.php │ │ │ │ │ ├── TransactionCommitted.php │ │ │ │ │ ├── TransactionCommitting.php │ │ │ │ │ └── TransactionRolledBack.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LazyLoadingViolationException.php │ │ │ │ ├── LostConnectionException.php │ │ │ │ ├── MariaDbConnection.php │ │ │ │ ├── MigrationServiceProvider.php │ │ │ │ ├── Migrations/ │ │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MigrationCreator.php │ │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ │ ├── Migrator.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── migration.create.stub │ │ │ │ │ ├── migration.stub │ │ │ │ │ └── migration.update.stub │ │ │ │ ├── MultipleColumnsSelectedException.php │ │ │ │ ├── MultipleRecordsFoundException.php │ │ │ │ ├── MySqlConnection.php │ │ │ │ ├── PostgresConnection.php │ │ │ │ ├── Query/ │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Expression.php │ │ │ │ │ ├── Grammars/ │ │ │ │ │ │ ├── Grammar.php │ │ │ │ │ │ ├── MariaDbGrammar.php │ │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ │ ├── IndexHint.php │ │ │ │ │ ├── JoinClause.php │ │ │ │ │ ├── JoinLateralClause.php │ │ │ │ │ └── Processors/ │ │ │ │ │ ├── MariaDbProcessor.php │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ │ ├── QueryException.php │ │ │ │ ├── README.md │ │ │ │ ├── RecordNotFoundException.php │ │ │ │ ├── RecordsNotFoundException.php │ │ │ │ ├── SQLiteConnection.php │ │ │ │ ├── SQLiteDatabaseDoesNotExistException.php │ │ │ │ ├── Schema/ │ │ │ │ │ ├── Blueprint.php │ │ │ │ │ ├── BlueprintState.php │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── ColumnDefinition.php │ │ │ │ │ ├── ForeignIdColumnDefinition.php │ │ │ │ │ ├── ForeignKeyDefinition.php │ │ │ │ │ ├── Grammars/ │ │ │ │ │ │ ├── Grammar.php │ │ │ │ │ │ ├── MariaDbGrammar.php │ │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ │ ├── IndexDefinition.php │ │ │ │ │ ├── MariaDbBuilder.php │ │ │ │ │ ├── MariaDbSchemaState.php │ │ │ │ │ ├── MySqlBuilder.php │ │ │ │ │ ├── MySqlSchemaState.php │ │ │ │ │ ├── PostgresBuilder.php │ │ │ │ │ ├── PostgresSchemaState.php │ │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ │ ├── SchemaState.php │ │ │ │ │ ├── SqlServerBuilder.php │ │ │ │ │ └── SqliteSchemaState.php │ │ │ │ ├── Seeder.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ ├── UniqueConstraintViolationException.php │ │ │ │ └── composer.json │ │ │ ├── Encryption/ │ │ │ │ ├── Encrypter.php │ │ │ │ ├── EncryptionServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MissingAppKeyException.php │ │ │ │ └── composer.json │ │ │ ├── Events/ │ │ │ │ ├── CallQueuedListener.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ ├── InvokeQueuedClosure.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── NullDispatcher.php │ │ │ │ ├── QueuedClosure.php │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Filesystem/ │ │ │ │ ├── AwsS3V3Adapter.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemAdapter.php │ │ │ │ ├── FilesystemManager.php │ │ │ │ ├── FilesystemServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LocalFilesystemAdapter.php │ │ │ │ ├── LockableFile.php │ │ │ │ ├── ServeFile.php │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Foundation/ │ │ │ │ ├── AliasLoader.php │ │ │ │ ├── Application.php │ │ │ │ ├── Auth/ │ │ │ │ │ ├── Access/ │ │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ │ └── AuthorizesRequests.php │ │ │ │ │ ├── EmailVerificationRequest.php │ │ │ │ │ └── User.php │ │ │ │ ├── Bootstrap/ │ │ │ │ │ ├── BootProviders.php │ │ │ │ │ ├── HandleExceptions.php │ │ │ │ │ ├── LoadConfiguration.php │ │ │ │ │ ├── LoadEnvironmentVariables.php │ │ │ │ │ ├── RegisterFacades.php │ │ │ │ │ ├── RegisterProviders.php │ │ │ │ │ └── SetRequestForConsole.php │ │ │ │ ├── Bus/ │ │ │ │ │ ├── Dispatchable.php │ │ │ │ │ ├── DispatchesJobs.php │ │ │ │ │ ├── PendingChain.php │ │ │ │ │ ├── PendingClosureDispatch.php │ │ │ │ │ └── PendingDispatch.php │ │ │ │ ├── CacheBasedMaintenanceMode.php │ │ │ │ ├── Cloud.php │ │ │ │ ├── ComposerScripts.php │ │ │ │ ├── Concerns/ │ │ │ │ │ └── ResolvesDumpSource.php │ │ │ │ ├── Configuration/ │ │ │ │ │ ├── ApplicationBuilder.php │ │ │ │ │ ├── Exceptions.php │ │ │ │ │ └── Middleware.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── AboutCommand.php │ │ │ │ │ ├── ApiInstallCommand.php │ │ │ │ │ ├── BroadcastingInstallCommand.php │ │ │ │ │ ├── CastMakeCommand.php │ │ │ │ │ ├── ChannelListCommand.php │ │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ │ ├── ClassMakeCommand.php │ │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ │ ├── CliDumper.php │ │ │ │ │ ├── ClosureCommand.php │ │ │ │ │ ├── ComponentMakeCommand.php │ │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ │ ├── ConfigPublishCommand.php │ │ │ │ │ ├── ConfigShowCommand.php │ │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ │ ├── DocsCommand.php │ │ │ │ │ ├── DownCommand.php │ │ │ │ │ ├── EnumMakeCommand.php │ │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ │ ├── EnvironmentDecryptCommand.php │ │ │ │ │ ├── EnvironmentEncryptCommand.php │ │ │ │ │ ├── EventCacheCommand.php │ │ │ │ │ ├── EventClearCommand.php │ │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ │ ├── EventListCommand.php │ │ │ │ │ ├── EventMakeCommand.php │ │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ │ ├── InteractsWithComposerPackages.php │ │ │ │ │ ├── InterfaceMakeCommand.php │ │ │ │ │ ├── JobMakeCommand.php │ │ │ │ │ ├── JobMiddlewareMakeCommand.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ │ ├── LangPublishCommand.php │ │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ │ ├── MailMakeCommand.php │ │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ │ ├── NotificationMakeCommand.php │ │ │ │ │ ├── ObserverMakeCommand.php │ │ │ │ │ ├── OptimizeClearCommand.php │ │ │ │ │ ├── OptimizeCommand.php │ │ │ │ │ ├── PackageDiscoverCommand.php │ │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ │ ├── QueuedCommand.php │ │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ │ ├── RouteClearCommand.php │ │ │ │ │ ├── RouteListCommand.php │ │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ │ ├── ScopeMakeCommand.php │ │ │ │ │ ├── ServeCommand.php │ │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ │ ├── StorageUnlinkCommand.php │ │ │ │ │ ├── StubPublishCommand.php │ │ │ │ │ ├── TestMakeCommand.php │ │ │ │ │ ├── TraitMakeCommand.php │ │ │ │ │ ├── UpCommand.php │ │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ │ ├── ViewClearCommand.php │ │ │ │ │ ├── ViewMakeCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── api-routes.stub │ │ │ │ │ ├── broadcasting-routes.stub │ │ │ │ │ ├── cast.inbound.stub │ │ │ │ │ ├── cast.stub │ │ │ │ │ ├── channel.stub │ │ │ │ │ ├── class.invokable.stub │ │ │ │ │ ├── class.stub │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── echo-bootstrap-js.stub │ │ │ │ │ ├── echo-js.stub │ │ │ │ │ ├── enum.backed.stub │ │ │ │ │ ├── enum.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── interface.stub │ │ │ │ │ ├── job.middleware.stub │ │ │ │ │ ├── job.queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener.queued.stub │ │ │ │ │ ├── listener.stub │ │ │ │ │ ├── listener.typed.queued.stub │ │ │ │ │ ├── listener.typed.stub │ │ │ │ │ ├── mail.stub │ │ │ │ │ ├── maintenance-mode.stub │ │ │ │ │ ├── markdown-mail.stub │ │ │ │ │ ├── markdown-notification.stub │ │ │ │ │ ├── markdown.stub │ │ │ │ │ ├── model.morph-pivot.stub │ │ │ │ │ ├── model.pivot.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── observer.stub │ │ │ │ │ ├── pest.stub │ │ │ │ │ ├── pest.unit.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.implicit.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── scope.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ ├── test.unit.stub │ │ │ │ │ ├── trait.stub │ │ │ │ │ ├── view-component.stub │ │ │ │ │ ├── view-mail.stub │ │ │ │ │ ├── view.pest.stub │ │ │ │ │ ├── view.stub │ │ │ │ │ └── view.test.stub │ │ │ │ ├── EnvironmentDetector.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── DiagnosingHealth.php │ │ │ │ │ ├── DiscoverEvents.php │ │ │ │ │ ├── Dispatchable.php │ │ │ │ │ ├── LocaleUpdated.php │ │ │ │ │ ├── MaintenanceModeDisabled.php │ │ │ │ │ ├── MaintenanceModeEnabled.php │ │ │ │ │ ├── PublishingStubs.php │ │ │ │ │ ├── Terminating.php │ │ │ │ │ └── VendorTagPublished.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── Handler.php │ │ │ │ │ ├── RegisterErrorViewPaths.php │ │ │ │ │ ├── Renderer/ │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── Frame.php │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ ├── Mappers/ │ │ │ │ │ │ │ └── BladeMapper.php │ │ │ │ │ │ └── Renderer.php │ │ │ │ │ ├── ReportableHandler.php │ │ │ │ │ ├── Whoops/ │ │ │ │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ │ │ │ └── WhoopsHandler.php │ │ │ │ │ └── views/ │ │ │ │ │ ├── 401.blade.php │ │ │ │ │ ├── 402.blade.php │ │ │ │ │ ├── 403.blade.php │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ ├── 419.blade.php │ │ │ │ │ ├── 429.blade.php │ │ │ │ │ ├── 500.blade.php │ │ │ │ │ ├── 503.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ └── minimal.blade.php │ │ │ │ ├── FileBasedMaintenanceMode.php │ │ │ │ ├── Http/ │ │ │ │ │ ├── Events/ │ │ │ │ │ │ └── RequestHandled.php │ │ │ │ │ ├── FormRequest.php │ │ │ │ │ ├── HtmlDumper.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── MaintenanceModeBypassCookie.php │ │ │ │ │ └── Middleware/ │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ └── ExcludesPaths.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ │ │ ├── InvokeDeferredCallbacks.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidateCsrfToken.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ │ ├── Inspiring.php │ │ │ │ ├── MaintenanceModeManager.php │ │ │ │ ├── Mix.php │ │ │ │ ├── MixFileNotFoundException.php │ │ │ │ ├── MixManifestNotFoundException.php │ │ │ │ ├── PackageManifest.php │ │ │ │ ├── Precognition.php │ │ │ │ ├── ProviderRepository.php │ │ │ │ ├── Providers/ │ │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ │ └── FoundationServiceProvider.php │ │ │ │ ├── Queue/ │ │ │ │ │ ├── InteractsWithUniqueJobs.php │ │ │ │ │ └── Queueable.php │ │ │ │ ├── Routing/ │ │ │ │ │ ├── PrecognitionCallableDispatcher.php │ │ │ │ │ └── PrecognitionControllerDispatcher.php │ │ │ │ ├── Support/ │ │ │ │ │ └── Providers/ │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ │ ├── Testing/ │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ │ ├── InteractsWithDeprecationHandling.php │ │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ │ ├── InteractsWithTestCaseLifecycle.php │ │ │ │ │ │ ├── InteractsWithTime.php │ │ │ │ │ │ ├── InteractsWithViews.php │ │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ │ └── WithoutExceptionHandlingHandler.php │ │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ │ ├── DatabaseTransactionsManager.php │ │ │ │ │ ├── DatabaseTruncation.php │ │ │ │ │ ├── LazilyRefreshDatabase.php │ │ │ │ │ ├── RefreshDatabase.php │ │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── Traits/ │ │ │ │ │ │ └── CanConfigureMigrationCommands.php │ │ │ │ │ ├── WithConsoleEvents.php │ │ │ │ │ ├── WithFaker.php │ │ │ │ │ ├── WithoutMiddleware.php │ │ │ │ │ └── Wormhole.php │ │ │ │ ├── Validation/ │ │ │ │ │ └── ValidatesRequests.php │ │ │ │ ├── Vite.php │ │ │ │ ├── ViteException.php │ │ │ │ ├── ViteManifestNotFoundException.php │ │ │ │ ├── helpers.php │ │ │ │ ├── resources/ │ │ │ │ │ ├── exceptions/ │ │ │ │ │ │ └── renderer/ │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── card.blade.php │ │ │ │ │ │ │ ├── context.blade.php │ │ │ │ │ │ │ ├── editor.blade.php │ │ │ │ │ │ │ ├── header.blade.php │ │ │ │ │ │ │ ├── icons/ │ │ │ │ │ │ │ │ ├── chevron-down.blade.php │ │ │ │ │ │ │ │ ├── chevron-up.blade.php │ │ │ │ │ │ │ │ ├── computer-desktop.blade.php │ │ │ │ │ │ │ │ ├── moon.blade.php │ │ │ │ │ │ │ │ └── sun.blade.php │ │ │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ │ │ ├── navigation.blade.php │ │ │ │ │ │ │ ├── theme-switcher.blade.php │ │ │ │ │ │ │ ├── trace-and-editor.blade.php │ │ │ │ │ │ │ └── trace.blade.php │ │ │ │ │ │ ├── dark-mode.css │ │ │ │ │ │ ├── dist/ │ │ │ │ │ │ │ ├── dark-mode.css │ │ │ │ │ │ │ ├── light-mode.css │ │ │ │ │ │ │ ├── scripts.js │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ ├── light-mode.css │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── postcss.config.js │ │ │ │ │ │ ├── scripts.js │ │ │ │ │ │ ├── show.blade.php │ │ │ │ │ │ ├── styles.css │ │ │ │ │ │ ├── tailwind.config.js │ │ │ │ │ │ └── vite.config.js │ │ │ │ │ ├── health-up.blade.php │ │ │ │ │ └── server.php │ │ │ │ └── stubs/ │ │ │ │ └── facade.stub │ │ │ ├── Hashing/ │ │ │ │ ├── AbstractHasher.php │ │ │ │ ├── Argon2IdHasher.php │ │ │ │ ├── ArgonHasher.php │ │ │ │ ├── BcryptHasher.php │ │ │ │ ├── HashManager.php │ │ │ │ ├── HashServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ └── composer.json │ │ │ ├── Http/ │ │ │ │ ├── Client/ │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ └── DeterminesStatusCode.php │ │ │ │ │ ├── ConnectionException.php │ │ │ │ │ ├── Events/ │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── RequestSending.php │ │ │ │ │ │ └── ResponseReceived.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HttpClientException.php │ │ │ │ │ ├── PendingRequest.php │ │ │ │ │ ├── Pool.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── RequestException.php │ │ │ │ │ ├── Response.php │ │ │ │ │ └── ResponseSequence.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── CanBePrecognitive.php │ │ │ │ │ ├── InteractsWithContentTypes.php │ │ │ │ │ ├── InteractsWithFlashData.php │ │ │ │ │ └── InteractsWithInput.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── HttpResponseException.php │ │ │ │ │ ├── PostTooLargeException.php │ │ │ │ │ └── ThrottleRequestsException.php │ │ │ │ ├── File.php │ │ │ │ ├── FileHelpers.php │ │ │ │ ├── JsonResponse.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── AddLinkHeadersForPreloadedAssets.php │ │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ │ ├── FrameGuard.php │ │ │ │ │ ├── HandleCors.php │ │ │ │ │ ├── SetCacheHeaders.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrustProxies.php │ │ │ │ │ └── ValidatePostSize.php │ │ │ │ ├── RedirectResponse.php │ │ │ │ ├── Request.php │ │ │ │ ├── Resources/ │ │ │ │ │ ├── CollectsResources.php │ │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ │ ├── DelegatesToResource.php │ │ │ │ │ ├── Json/ │ │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ │ ├── JsonResource.php │ │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ │ └── ResourceResponse.php │ │ │ │ │ ├── MergeValue.php │ │ │ │ │ ├── MissingValue.php │ │ │ │ │ └── PotentiallyMissing.php │ │ │ │ ├── Response.php │ │ │ │ ├── ResponseTrait.php │ │ │ │ ├── Testing/ │ │ │ │ │ ├── File.php │ │ │ │ │ ├── FileFactory.php │ │ │ │ │ └── MimeType.php │ │ │ │ ├── UploadedFile.php │ │ │ │ └── composer.json │ │ │ ├── Log/ │ │ │ │ ├── Context/ │ │ │ │ │ ├── ContextServiceProvider.php │ │ │ │ │ ├── Events/ │ │ │ │ │ │ ├── ContextDehydrating.php │ │ │ │ │ │ └── ContextHydrated.php │ │ │ │ │ └── Repository.php │ │ │ │ ├── Events/ │ │ │ │ │ └── MessageLogged.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LogManager.php │ │ │ │ ├── LogServiceProvider.php │ │ │ │ ├── Logger.php │ │ │ │ ├── ParsesLogConfiguration.php │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Macroable/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Traits/ │ │ │ │ │ └── Macroable.php │ │ │ │ └── composer.json │ │ │ ├── Mail/ │ │ │ │ ├── Attachment.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── MessageSending.php │ │ │ │ │ └── MessageSent.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MailManager.php │ │ │ │ ├── MailServiceProvider.php │ │ │ │ ├── Mailable.php │ │ │ │ ├── Mailables/ │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Attachment.php │ │ │ │ │ ├── Content.php │ │ │ │ │ ├── Envelope.php │ │ │ │ │ └── Headers.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Markdown.php │ │ │ │ ├── Message.php │ │ │ │ ├── PendingMail.php │ │ │ │ ├── SendQueuedMailable.php │ │ │ │ ├── SentMessage.php │ │ │ │ ├── TextMessage.php │ │ │ │ ├── Transport/ │ │ │ │ │ ├── ArrayTransport.php │ │ │ │ │ ├── LogTransport.php │ │ │ │ │ ├── ResendTransport.php │ │ │ │ │ ├── SesTransport.php │ │ │ │ │ └── SesV2Transport.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ ├── html/ │ │ │ │ │ ├── button.blade.php │ │ │ │ │ ├── footer.blade.php │ │ │ │ │ ├── header.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ ├── message.blade.php │ │ │ │ │ ├── panel.blade.php │ │ │ │ │ ├── subcopy.blade.php │ │ │ │ │ ├── table.blade.php │ │ │ │ │ └── themes/ │ │ │ │ │ └── default.css │ │ │ │ └── text/ │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ └── table.blade.php │ │ │ ├── Notifications/ │ │ │ │ ├── Action.php │ │ │ │ ├── AnonymousNotifiable.php │ │ │ │ ├── ChannelManager.php │ │ │ │ ├── Channels/ │ │ │ │ │ ├── BroadcastChannel.php │ │ │ │ │ ├── DatabaseChannel.php │ │ │ │ │ └── MailChannel.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── NotificationTableCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── notifications.stub │ │ │ │ ├── DatabaseNotification.php │ │ │ │ ├── DatabaseNotificationCollection.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ │ │ ├── NotificationFailed.php │ │ │ │ │ ├── NotificationSending.php │ │ │ │ │ └── NotificationSent.php │ │ │ │ ├── HasDatabaseNotifications.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Messages/ │ │ │ │ │ ├── BroadcastMessage.php │ │ │ │ │ ├── DatabaseMessage.php │ │ │ │ │ ├── MailMessage.php │ │ │ │ │ └── SimpleMessage.php │ │ │ │ ├── Notifiable.php │ │ │ │ ├── Notification.php │ │ │ │ ├── NotificationSender.php │ │ │ │ ├── NotificationServiceProvider.php │ │ │ │ ├── RoutesNotifications.php │ │ │ │ ├── SendQueuedNotifications.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ └── email.blade.php │ │ │ ├── Pagination/ │ │ │ │ ├── AbstractCursorPaginator.php │ │ │ │ ├── AbstractPaginator.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── CursorPaginator.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ ├── PaginationServiceProvider.php │ │ │ │ ├── PaginationState.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── UrlWindow.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── bootstrap-5.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ ├── simple-bootstrap-5.blade.php │ │ │ │ ├── simple-default.blade.php │ │ │ │ ├── simple-tailwind.blade.php │ │ │ │ └── tailwind.blade.php │ │ │ ├── Pipeline/ │ │ │ │ ├── Hub.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Pipeline.php │ │ │ │ ├── PipelineServiceProvider.php │ │ │ │ └── composer.json │ │ │ ├── Process/ │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── ProcessFailedException.php │ │ │ │ │ └── ProcessTimedOutException.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FakeInvokedProcess.php │ │ │ │ ├── FakeProcessDescription.php │ │ │ │ ├── FakeProcessResult.php │ │ │ │ ├── FakeProcessSequence.php │ │ │ │ ├── InvokedProcess.php │ │ │ │ ├── InvokedProcessPool.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── PendingProcess.php │ │ │ │ ├── Pipe.php │ │ │ │ ├── Pool.php │ │ │ │ ├── ProcessPoolResults.php │ │ │ │ ├── ProcessResult.php │ │ │ │ └── composer.json │ │ │ ├── Queue/ │ │ │ │ ├── Attributes/ │ │ │ │ │ ├── DeleteWhenMissingModels.php │ │ │ │ │ └── WithoutRelations.php │ │ │ │ ├── BeanstalkdQueue.php │ │ │ │ ├── CallQueuedClosure.php │ │ │ │ ├── CallQueuedHandler.php │ │ │ │ ├── Capsule/ │ │ │ │ │ └── Manager.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── BeanstalkdConnector.php │ │ │ │ │ ├── ConnectorInterface.php │ │ │ │ │ ├── DatabaseConnector.php │ │ │ │ │ ├── NullConnector.php │ │ │ │ │ ├── RedisConnector.php │ │ │ │ │ ├── SqsConnector.php │ │ │ │ │ └── SyncConnector.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── BatchesTableCommand.php │ │ │ │ │ ├── ClearCommand.php │ │ │ │ │ ├── FailedTableCommand.php │ │ │ │ │ ├── FlushFailedCommand.php │ │ │ │ │ ├── ForgetFailedCommand.php │ │ │ │ │ ├── ListFailedCommand.php │ │ │ │ │ ├── ListenCommand.php │ │ │ │ │ ├── MonitorCommand.php │ │ │ │ │ ├── PruneBatchesCommand.php │ │ │ │ │ ├── PruneFailedJobsCommand.php │ │ │ │ │ ├── RestartCommand.php │ │ │ │ │ ├── RetryBatchCommand.php │ │ │ │ │ ├── RetryCommand.php │ │ │ │ │ ├── TableCommand.php │ │ │ │ │ ├── WorkCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── batches.stub │ │ │ │ │ ├── failed_jobs.stub │ │ │ │ │ └── jobs.stub │ │ │ │ ├── DatabaseQueue.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── JobAttempted.php │ │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ │ ├── JobFailed.php │ │ │ │ │ ├── JobPopped.php │ │ │ │ │ ├── JobPopping.php │ │ │ │ │ ├── JobProcessed.php │ │ │ │ │ ├── JobProcessing.php │ │ │ │ │ ├── JobQueued.php │ │ │ │ │ ├── JobQueueing.php │ │ │ │ │ ├── JobReleasedAfterException.php │ │ │ │ │ ├── JobRetryRequested.php │ │ │ │ │ ├── JobTimedOut.php │ │ │ │ │ ├── Looping.php │ │ │ │ │ ├── QueueBusy.php │ │ │ │ │ └── WorkerStopping.php │ │ │ │ ├── Failed/ │ │ │ │ │ ├── CountableFailedJobProvider.php │ │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ │ ├── DatabaseUuidFailedJobProvider.php │ │ │ │ │ ├── DynamoDbFailedJobProvider.php │ │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ │ ├── FileFailedJobProvider.php │ │ │ │ │ ├── NullFailedJobProvider.php │ │ │ │ │ └── PrunableFailedJobProvider.php │ │ │ │ ├── InteractsWithQueue.php │ │ │ │ ├── InvalidPayloadException.php │ │ │ │ ├── Jobs/ │ │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ │ ├── DatabaseJob.php │ │ │ │ │ ├── DatabaseJobRecord.php │ │ │ │ │ ├── FakeJob.php │ │ │ │ │ ├── Job.php │ │ │ │ │ ├── JobName.php │ │ │ │ │ ├── RedisJob.php │ │ │ │ │ ├── SqsJob.php │ │ │ │ │ └── SyncJob.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Listener.php │ │ │ │ ├── ListenerOptions.php │ │ │ │ ├── LuaScripts.php │ │ │ │ ├── ManuallyFailedException.php │ │ │ │ ├── MaxAttemptsExceededException.php │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── RateLimited.php │ │ │ │ │ ├── RateLimitedWithRedis.php │ │ │ │ │ ├── Skip.php │ │ │ │ │ ├── SkipIfBatchCancelled.php │ │ │ │ │ ├── ThrottlesExceptions.php │ │ │ │ │ ├── ThrottlesExceptionsWithRedis.php │ │ │ │ │ └── WithoutOverlapping.php │ │ │ │ ├── NullQueue.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueManager.php │ │ │ │ ├── QueueServiceProvider.php │ │ │ │ ├── README.md │ │ │ │ ├── RedisQueue.php │ │ │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ │ │ ├── SerializesModels.php │ │ │ │ ├── SqsQueue.php │ │ │ │ ├── SyncQueue.php │ │ │ │ ├── TimeoutExceededException.php │ │ │ │ ├── Worker.php │ │ │ │ ├── WorkerOptions.php │ │ │ │ └── composer.json │ │ │ ├── Redis/ │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── PacksPhpRedisValues.php │ │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ │ ├── PhpRedisConnection.php │ │ │ │ │ ├── PredisClusterConnection.php │ │ │ │ │ └── PredisConnection.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── PhpRedisConnector.php │ │ │ │ │ └── PredisConnector.php │ │ │ │ ├── Events/ │ │ │ │ │ └── CommandExecuted.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Limiters/ │ │ │ │ │ ├── ConcurrencyLimiter.php │ │ │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ │ │ ├── DurationLimiter.php │ │ │ │ │ └── DurationLimiterBuilder.php │ │ │ │ ├── RedisManager.php │ │ │ │ ├── RedisServiceProvider.php │ │ │ │ └── composer.json │ │ │ ├── Routing/ │ │ │ │ ├── AbstractRouteCollection.php │ │ │ │ ├── CallableDispatcher.php │ │ │ │ ├── CompiledRouteCollection.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── controller.api.stub │ │ │ │ │ ├── controller.invokable.stub │ │ │ │ │ ├── controller.model.api.stub │ │ │ │ │ ├── controller.model.stub │ │ │ │ │ ├── controller.nested.api.stub │ │ │ │ │ ├── controller.nested.singleton.api.stub │ │ │ │ │ ├── controller.nested.singleton.stub │ │ │ │ │ ├── controller.nested.stub │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.singleton.api.stub │ │ │ │ │ ├── controller.singleton.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ │ ├── Contracts/ │ │ │ │ │ ├── CallableDispatcher.php │ │ │ │ │ └── ControllerDispatcher.php │ │ │ │ ├── Controller.php │ │ │ │ ├── ControllerDispatcher.php │ │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ │ ├── Controllers/ │ │ │ │ │ ├── HasMiddleware.php │ │ │ │ │ └── Middleware.php │ │ │ │ ├── CreatesRegularExpressionRouteConstraints.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── PreparingResponse.php │ │ │ │ │ ├── ResponsePrepared.php │ │ │ │ │ ├── RouteMatched.php │ │ │ │ │ └── Routing.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── BackedEnumCaseNotFoundException.php │ │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ │ ├── MissingRateLimiterException.php │ │ │ │ │ ├── StreamedResponseException.php │ │ │ │ │ └── UrlGenerationException.php │ │ │ │ ├── FiltersControllerMiddleware.php │ │ │ │ ├── ImplicitRouteBinding.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Matching/ │ │ │ │ │ ├── HostValidator.php │ │ │ │ │ ├── MethodValidator.php │ │ │ │ │ ├── SchemeValidator.php │ │ │ │ │ ├── UriValidator.php │ │ │ │ │ └── ValidatorInterface.php │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── SubstituteBindings.php │ │ │ │ │ ├── ThrottleRequests.php │ │ │ │ │ ├── ThrottleRequestsWithRedis.php │ │ │ │ │ └── ValidateSignature.php │ │ │ │ ├── MiddlewareNameResolver.php │ │ │ │ ├── PendingResourceRegistration.php │ │ │ │ ├── PendingSingletonResourceRegistration.php │ │ │ │ ├── Pipeline.php │ │ │ │ ├── RedirectController.php │ │ │ │ ├── Redirector.php │ │ │ │ ├── ResolvesRouteDependencies.php │ │ │ │ ├── ResourceRegistrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── Route.php │ │ │ │ ├── RouteAction.php │ │ │ │ ├── RouteBinding.php │ │ │ │ ├── RouteCollection.php │ │ │ │ ├── RouteCollectionInterface.php │ │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ │ ├── RouteFileRegistrar.php │ │ │ │ ├── RouteGroup.php │ │ │ │ ├── RouteParameterBinder.php │ │ │ │ ├── RouteRegistrar.php │ │ │ │ ├── RouteSignatureParameters.php │ │ │ │ ├── RouteUri.php │ │ │ │ ├── RouteUrlGenerator.php │ │ │ │ ├── Router.php │ │ │ │ ├── RoutingServiceProvider.php │ │ │ │ ├── SortedMiddleware.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ ├── ViewController.php │ │ │ │ └── composer.json │ │ │ ├── Session/ │ │ │ │ ├── ArraySessionHandler.php │ │ │ │ ├── CacheBasedSessionHandler.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── SessionTableCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── database.stub │ │ │ │ ├── CookieSessionHandler.php │ │ │ │ ├── DatabaseSessionHandler.php │ │ │ │ ├── EncryptedStore.php │ │ │ │ ├── ExistenceAwareInterface.php │ │ │ │ ├── FileSessionHandler.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── AuthenticateSession.php │ │ │ │ │ └── StartSession.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── SessionManager.php │ │ │ │ ├── SessionServiceProvider.php │ │ │ │ ├── Store.php │ │ │ │ ├── SymfonySessionDecorator.php │ │ │ │ ├── TokenMismatchException.php │ │ │ │ └── composer.json │ │ │ ├── Support/ │ │ │ │ ├── AggregateServiceProvider.php │ │ │ │ ├── Benchmark.php │ │ │ │ ├── Carbon.php │ │ │ │ ├── Composer.php │ │ │ │ ├── ConfigurationUrlParser.php │ │ │ │ ├── DateFactory.php │ │ │ │ ├── DefaultProviders.php │ │ │ │ ├── Defer/ │ │ │ │ │ ├── DeferredCallback.php │ │ │ │ │ └── DeferredCallbackCollection.php │ │ │ │ ├── EncodedHtmlString.php │ │ │ │ ├── Env.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ └── MathException.php │ │ │ │ ├── Facades/ │ │ │ │ │ ├── App.php │ │ │ │ │ ├── Artisan.php │ │ │ │ │ ├── Auth.php │ │ │ │ │ ├── Blade.php │ │ │ │ │ ├── Broadcast.php │ │ │ │ │ ├── Bus.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Concurrency.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Context.php │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── Crypt.php │ │ │ │ │ ├── DB.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── Exceptions.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Gate.php │ │ │ │ │ ├── Hash.php │ │ │ │ │ ├── Http.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Log.php │ │ │ │ │ ├── Mail.php │ │ │ │ │ ├── Notification.php │ │ │ │ │ ├── ParallelTesting.php │ │ │ │ │ ├── Password.php │ │ │ │ │ ├── Pipeline.php │ │ │ │ │ ├── Process.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── RateLimiter.php │ │ │ │ │ ├── Redirect.php │ │ │ │ │ ├── Redis.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Route.php │ │ │ │ │ ├── Schedule.php │ │ │ │ │ ├── Schema.php │ │ │ │ │ ├── Session.php │ │ │ │ │ ├── Storage.php │ │ │ │ │ ├── URL.php │ │ │ │ │ ├── Validator.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── Vite.php │ │ │ │ ├── Fluent.php │ │ │ │ ├── HigherOrderTapProxy.php │ │ │ │ ├── HtmlString.php │ │ │ │ ├── InteractsWithTime.php │ │ │ │ ├── Js.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Lottery.php │ │ │ │ ├── Manager.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MultipleInstanceManager.php │ │ │ │ ├── NamespacedItemResolver.php │ │ │ │ ├── Number.php │ │ │ │ ├── Once.php │ │ │ │ ├── Onceable.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Pluralizer.php │ │ │ │ ├── Process/ │ │ │ │ │ └── PhpExecutableFinder.php │ │ │ │ ├── ProcessUtils.php │ │ │ │ ├── Reflector.php │ │ │ │ ├── ServiceProvider.php │ │ │ │ ├── Sleep.php │ │ │ │ ├── Str.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── Testing/ │ │ │ │ │ └── Fakes/ │ │ │ │ │ ├── BatchFake.php │ │ │ │ │ ├── BatchRepositoryFake.php │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── ChainedBatchTruthTest.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── ExceptionHandlerFake.php │ │ │ │ │ ├── Fake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingBatchFake.php │ │ │ │ │ ├── PendingChainFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ │ ├── Timebox.php │ │ │ │ ├── Traits/ │ │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ │ ├── Dumpable.php │ │ │ │ │ ├── ForwardsCalls.php │ │ │ │ │ ├── InteractsWithData.php │ │ │ │ │ ├── Localizable.php │ │ │ │ │ ├── ReflectsClosures.php │ │ │ │ │ └── Tappable.php │ │ │ │ ├── Uri.php │ │ │ │ ├── UriQueryString.php │ │ │ │ ├── ValidatedInput.php │ │ │ │ ├── ViewErrorBag.php │ │ │ │ ├── composer.json │ │ │ │ ├── functions.php │ │ │ │ └── helpers.php │ │ │ ├── Testing/ │ │ │ │ ├── Assert.php │ │ │ │ ├── AssertableJsonString.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── AssertsStatusCodes.php │ │ │ │ │ ├── RunsInParallel.php │ │ │ │ │ └── TestDatabases.php │ │ │ │ ├── Constraints/ │ │ │ │ │ ├── ArraySubset.php │ │ │ │ │ ├── CountInDatabase.php │ │ │ │ │ ├── HasInDatabase.php │ │ │ │ │ ├── NotSoftDeletedInDatabase.php │ │ │ │ │ ├── SeeInOrder.php │ │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ └── InvalidArgumentException.php │ │ │ │ ├── Fluent/ │ │ │ │ │ ├── AssertableJson.php │ │ │ │ │ └── Concerns/ │ │ │ │ │ ├── Debugging.php │ │ │ │ │ ├── Has.php │ │ │ │ │ ├── Interaction.php │ │ │ │ │ └── Matching.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LoggedExceptionCollection.php │ │ │ │ ├── ParallelConsoleOutput.php │ │ │ │ ├── ParallelRunner.php │ │ │ │ ├── ParallelTesting.php │ │ │ │ ├── ParallelTestingServiceProvider.php │ │ │ │ ├── PendingCommand.php │ │ │ │ ├── TestComponent.php │ │ │ │ ├── TestResponse.php │ │ │ │ ├── TestResponseAssert.php │ │ │ │ ├── TestView.php │ │ │ │ └── composer.json │ │ │ ├── Translation/ │ │ │ │ ├── ArrayLoader.php │ │ │ │ ├── CreatesPotentiallyTranslatedStrings.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MessageSelector.php │ │ │ │ ├── PotentiallyTranslatedString.php │ │ │ │ ├── TranslationServiceProvider.php │ │ │ │ ├── Translator.php │ │ │ │ ├── composer.json │ │ │ │ └── lang/ │ │ │ │ └── en/ │ │ │ │ ├── auth.php │ │ │ │ ├── pagination.php │ │ │ │ ├── passwords.php │ │ │ │ └── validation.php │ │ │ ├── Validation/ │ │ │ │ ├── ClosureValidationRule.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── FilterEmailValidation.php │ │ │ │ │ ├── FormatsMessages.php │ │ │ │ │ ├── ReplacesAttributes.php │ │ │ │ │ └── ValidatesAttributes.php │ │ │ │ ├── ConditionalRules.php │ │ │ │ ├── DatabasePresenceVerifier.php │ │ │ │ ├── DatabasePresenceVerifierInterface.php │ │ │ │ ├── Factory.php │ │ │ │ ├── InvokableValidationRule.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── NestedRules.php │ │ │ │ ├── NotPwnedVerifier.php │ │ │ │ ├── PresenceVerifierInterface.php │ │ │ │ ├── Rule.php │ │ │ │ ├── Rules/ │ │ │ │ │ ├── ArrayRule.php │ │ │ │ │ ├── Can.php │ │ │ │ │ ├── DatabaseRule.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── Dimensions.php │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Enum.php │ │ │ │ │ ├── ExcludeIf.php │ │ │ │ │ ├── Exists.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── ImageFile.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── NotIn.php │ │ │ │ │ ├── Numeric.php │ │ │ │ │ ├── Password.php │ │ │ │ │ ├── ProhibitedIf.php │ │ │ │ │ ├── RequiredIf.php │ │ │ │ │ └── Unique.php │ │ │ │ ├── UnauthorizedException.php │ │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ │ ├── ValidationData.php │ │ │ │ ├── ValidationException.php │ │ │ │ ├── ValidationRuleParser.php │ │ │ │ ├── ValidationServiceProvider.php │ │ │ │ ├── Validator.php │ │ │ │ └── composer.json │ │ │ └── View/ │ │ │ ├── AnonymousComponent.php │ │ │ ├── AppendableAttributeValue.php │ │ │ ├── Compilers/ │ │ │ │ ├── BladeCompiler.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── CompilerInterface.php │ │ │ │ ├── ComponentTagCompiler.php │ │ │ │ └── Concerns/ │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ ├── CompilesClasses.php │ │ │ │ ├── CompilesComments.php │ │ │ │ ├── CompilesComponents.php │ │ │ │ ├── CompilesConditionals.php │ │ │ │ ├── CompilesEchos.php │ │ │ │ ├── CompilesErrors.php │ │ │ │ ├── CompilesFragments.php │ │ │ │ ├── CompilesHelpers.php │ │ │ │ ├── CompilesIncludes.php │ │ │ │ ├── CompilesInjections.php │ │ │ │ ├── CompilesJs.php │ │ │ │ ├── CompilesJson.php │ │ │ │ ├── CompilesLayouts.php │ │ │ │ ├── CompilesLoops.php │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ ├── CompilesSessions.php │ │ │ │ ├── CompilesStacks.php │ │ │ │ ├── CompilesStyles.php │ │ │ │ ├── CompilesTranslations.php │ │ │ │ └── CompilesUseStatements.php │ │ │ ├── Component.php │ │ │ ├── ComponentAttributeBag.php │ │ │ ├── ComponentSlot.php │ │ │ ├── Concerns/ │ │ │ │ ├── ManagesComponents.php │ │ │ │ ├── ManagesEvents.php │ │ │ │ ├── ManagesFragments.php │ │ │ │ ├── ManagesLayouts.php │ │ │ │ ├── ManagesLoops.php │ │ │ │ ├── ManagesStacks.php │ │ │ │ └── ManagesTranslations.php │ │ │ ├── DynamicComponent.php │ │ │ ├── Engines/ │ │ │ │ ├── CompilerEngine.php │ │ │ │ ├── Engine.php │ │ │ │ ├── EngineResolver.php │ │ │ │ ├── FileEngine.php │ │ │ │ └── PhpEngine.php │ │ │ ├── Factory.php │ │ │ ├── FileViewFinder.php │ │ │ ├── InvokableComponentVariable.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware/ │ │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewException.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ │ ├── prompts/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ └── src/ │ │ │ ├── Clear.php │ │ │ ├── Concerns/ │ │ │ │ ├── Colors.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── Erase.php │ │ │ │ ├── Events.php │ │ │ │ ├── FakesInputOutput.php │ │ │ │ ├── Fallback.php │ │ │ │ ├── Interactivity.php │ │ │ │ ├── Scrolling.php │ │ │ │ ├── Termwind.php │ │ │ │ ├── Themes.php │ │ │ │ ├── Truncation.php │ │ │ │ └── TypedValue.php │ │ │ ├── ConfirmPrompt.php │ │ │ ├── Exceptions/ │ │ │ │ ├── FormRevertedException.php │ │ │ │ └── NonInteractiveValidationException.php │ │ │ ├── FormBuilder.php │ │ │ ├── FormStep.php │ │ │ ├── Key.php │ │ │ ├── MultiSearchPrompt.php │ │ │ ├── MultiSelectPrompt.php │ │ │ ├── Note.php │ │ │ ├── Output/ │ │ │ │ ├── BufferedConsoleOutput.php │ │ │ │ └── ConsoleOutput.php │ │ │ ├── PasswordPrompt.php │ │ │ ├── PausePrompt.php │ │ │ ├── Progress.php │ │ │ ├── Prompt.php │ │ │ ├── SearchPrompt.php │ │ │ ├── SelectPrompt.php │ │ │ ├── Spinner.php │ │ │ ├── SuggestPrompt.php │ │ │ ├── Support/ │ │ │ │ ├── Result.php │ │ │ │ └── Utils.php │ │ │ ├── Table.php │ │ │ ├── Terminal.php │ │ │ ├── TextPrompt.php │ │ │ ├── TextareaPrompt.php │ │ │ ├── Themes/ │ │ │ │ ├── Contracts/ │ │ │ │ │ └── Scrolling.php │ │ │ │ └── Default/ │ │ │ │ ├── ClearRenderer.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── DrawsBoxes.php │ │ │ │ │ ├── DrawsScrollbars.php │ │ │ │ │ └── InteractsWithStrings.php │ │ │ │ ├── ConfirmPromptRenderer.php │ │ │ │ ├── MultiSearchPromptRenderer.php │ │ │ │ ├── MultiSelectPromptRenderer.php │ │ │ │ ├── NoteRenderer.php │ │ │ │ ├── PasswordPromptRenderer.php │ │ │ │ ├── PausePromptRenderer.php │ │ │ │ ├── ProgressRenderer.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── SearchPromptRenderer.php │ │ │ │ ├── SelectPromptRenderer.php │ │ │ │ ├── SpinnerRenderer.php │ │ │ │ ├── SuggestPromptRenderer.php │ │ │ │ ├── TableRenderer.php │ │ │ │ ├── TextPromptRenderer.php │ │ │ │ └── TextareaPromptRenderer.php │ │ │ └── helpers.php │ │ ├── serializable-closure/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Contracts/ │ │ │ │ ├── Serializable.php │ │ │ │ └── Signer.php │ │ │ ├── Exceptions/ │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ ├── MissingSecretKeyException.php │ │ │ │ └── PhpVersionNotSupportedException.php │ │ │ ├── SerializableClosure.php │ │ │ ├── Serializers/ │ │ │ │ ├── Native.php │ │ │ │ └── Signed.php │ │ │ ├── Signers/ │ │ │ │ └── Hmac.php │ │ │ ├── Support/ │ │ │ │ ├── ClosureScope.php │ │ │ │ ├── ClosureStream.php │ │ │ │ ├── ReflectionClosure.php │ │ │ │ └── SelfReference.php │ │ │ └── UnsignedSerializableClosure.php │ │ ├── tinker/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config/ │ │ │ │ └── tinker.php │ │ │ └── src/ │ │ │ ├── ClassAliasAutoloader.php │ │ │ ├── Console/ │ │ │ │ └── TinkerCommand.php │ │ │ ├── TinkerCaster.php │ │ │ └── TinkerServiceProvider.php │ │ └── ui/ │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── auth-backend/ │ │ │ ├── AuthenticatesUsers.php │ │ │ ├── ConfirmsPasswords.php │ │ │ ├── RedirectsUsers.php │ │ │ ├── RegistersUsers.php │ │ │ ├── ResetsPasswords.php │ │ │ ├── SendsPasswordResetEmails.php │ │ │ ├── ThrottlesLogins.php │ │ │ └── VerifiesEmails.php │ │ ├── composer.json │ │ ├── src/ │ │ │ ├── Auth/ │ │ │ │ ├── bootstrap-stubs/ │ │ │ │ │ ├── auth/ │ │ │ │ │ │ ├── login.stub │ │ │ │ │ │ ├── passwords/ │ │ │ │ │ │ │ ├── confirm.stub │ │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ │ └── reset.stub │ │ │ │ │ │ ├── register.stub │ │ │ │ │ │ └── verify.stub │ │ │ │ │ ├── home.stub │ │ │ │ │ └── layouts/ │ │ │ │ │ └── app.stub │ │ │ │ └── stubs/ │ │ │ │ ├── controllers/ │ │ │ │ │ ├── Controller.stub │ │ │ │ │ └── HomeController.stub │ │ │ │ └── routes.stub │ │ │ ├── AuthCommand.php │ │ │ ├── AuthRouteMethods.php │ │ │ ├── ControllersCommand.php │ │ │ ├── Presets/ │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── Preset.php │ │ │ │ ├── React.php │ │ │ │ ├── Vue.php │ │ │ │ ├── bootstrap-stubs/ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── app.scss │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── vite.config.js │ │ │ │ ├── react-stubs/ │ │ │ │ │ ├── Example.jsx │ │ │ │ │ ├── app.js │ │ │ │ │ └── vite.config.js │ │ │ │ └── vue-stubs/ │ │ │ │ ├── ExampleComponent.vue │ │ │ │ ├── app.js │ │ │ │ └── vite.config.js │ │ │ ├── UiCommand.php │ │ │ └── UiServiceProvider.php │ │ ├── stubs/ │ │ │ ├── Auth/ │ │ │ │ ├── ConfirmPasswordController.stub │ │ │ │ ├── ForgotPasswordController.stub │ │ │ │ ├── LoginController.stub │ │ │ │ ├── RegisterController.stub │ │ │ │ ├── ResetPasswordController.stub │ │ │ │ └── VerificationController.stub │ │ │ └── migrations/ │ │ │ └── 2014_10_12_100000_create_password_resets_table.php │ │ └── tests/ │ │ └── AuthBackend/ │ │ ├── AuthenticatesUsersTest.php │ │ ├── RegistersUsersTest.php │ │ └── ThrottleLoginsTest.php │ ├── lcobucci/ │ │ └── jwt/ │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ ├── Builder.php │ │ ├── ClaimsFormatter.php │ │ ├── Configuration.php │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── Encoding/ │ │ │ ├── CannotDecodeContent.php │ │ │ ├── CannotEncodeContent.php │ │ │ ├── ChainedFormatter.php │ │ │ ├── JoseEncoder.php │ │ │ ├── MicrosecondBasedDateConversion.php │ │ │ ├── UnifyAudience.php │ │ │ └── UnixTimestampDates.php │ │ ├── Exception.php │ │ ├── JwtFacade.php │ │ ├── Parser.php │ │ ├── Signer/ │ │ │ ├── Blake2b.php │ │ │ ├── CannotSignPayload.php │ │ │ ├── Ecdsa/ │ │ │ │ ├── ConversionFailed.php │ │ │ │ ├── MultibyteStringConverter.php │ │ │ │ ├── Sha256.php │ │ │ │ ├── Sha384.php │ │ │ │ ├── Sha512.php │ │ │ │ └── SignatureConverter.php │ │ │ ├── Ecdsa.php │ │ │ ├── Eddsa.php │ │ │ ├── Hmac/ │ │ │ │ ├── Sha256.php │ │ │ │ ├── Sha384.php │ │ │ │ └── Sha512.php │ │ │ ├── Hmac.php │ │ │ ├── InvalidKeyProvided.php │ │ │ ├── Key/ │ │ │ │ ├── FileCouldNotBeRead.php │ │ │ │ └── InMemory.php │ │ │ ├── Key.php │ │ │ ├── OpenSSL.php │ │ │ ├── Rsa/ │ │ │ │ ├── Sha256.php │ │ │ │ ├── Sha384.php │ │ │ │ └── Sha512.php │ │ │ └── Rsa.php │ │ ├── Signer.php │ │ ├── SodiumBase64Polyfill.php │ │ ├── Token/ │ │ │ ├── Builder.php │ │ │ ├── DataSet.php │ │ │ ├── InvalidTokenStructure.php │ │ │ ├── Parser.php │ │ │ ├── Plain.php │ │ │ ├── RegisteredClaimGiven.php │ │ │ ├── RegisteredClaims.php │ │ │ ├── Signature.php │ │ │ └── UnsupportedHeaderFound.php │ │ ├── Token.php │ │ ├── UnencryptedToken.php │ │ ├── Validation/ │ │ │ ├── Constraint/ │ │ │ │ ├── CannotValidateARegisteredClaim.php │ │ │ │ ├── HasClaim.php │ │ │ │ ├── HasClaimWithValue.php │ │ │ │ ├── IdentifiedBy.php │ │ │ │ ├── IssuedBy.php │ │ │ │ ├── LeewayCannotBeNegative.php │ │ │ │ ├── LooseValidAt.php │ │ │ │ ├── PermittedFor.php │ │ │ │ ├── RelatedTo.php │ │ │ │ ├── SignedWith.php │ │ │ │ ├── SignedWithOneInSet.php │ │ │ │ ├── SignedWithUntilDate.php │ │ │ │ └── StrictValidAt.php │ │ │ ├── Constraint.php │ │ │ ├── ConstraintViolation.php │ │ │ ├── NoConstraintsGiven.php │ │ │ ├── RequiredConstraintsViolated.php │ │ │ ├── SignedWith.php │ │ │ ├── ValidAt.php │ │ │ └── Validator.php │ │ └── Validator.php │ ├── league/ │ │ ├── commonmark/ │ │ │ ├── .phpstorm.meta.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── CommonMarkConverter.php │ │ │ ├── ConverterInterface.php │ │ │ ├── Delimiter/ │ │ │ │ ├── Bracket.php │ │ │ │ ├── Delimiter.php │ │ │ │ ├── DelimiterInterface.php │ │ │ │ ├── DelimiterParser.php │ │ │ │ ├── DelimiterStack.php │ │ │ │ └── Processor/ │ │ │ │ ├── CacheableDelimiterProcessorInterface.php │ │ │ │ ├── DelimiterProcessorCollection.php │ │ │ │ ├── DelimiterProcessorCollectionInterface.php │ │ │ │ ├── DelimiterProcessorInterface.php │ │ │ │ └── StaggeredDelimiterProcessor.php │ │ │ ├── Environment/ │ │ │ │ ├── Environment.php │ │ │ │ ├── EnvironmentAwareInterface.php │ │ │ │ ├── EnvironmentBuilderInterface.php │ │ │ │ └── EnvironmentInterface.php │ │ │ ├── Event/ │ │ │ │ ├── AbstractEvent.php │ │ │ │ ├── DocumentParsedEvent.php │ │ │ │ ├── DocumentPreParsedEvent.php │ │ │ │ ├── DocumentPreRenderEvent.php │ │ │ │ ├── DocumentRenderedEvent.php │ │ │ │ └── ListenerData.php │ │ │ ├── Exception/ │ │ │ │ ├── AlreadyInitializedException.php │ │ │ │ ├── CommonMarkException.php │ │ │ │ ├── IOException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MissingDependencyException.php │ │ │ │ └── UnexpectedEncodingException.php │ │ │ ├── Extension/ │ │ │ │ ├── Attributes/ │ │ │ │ │ ├── AttributesExtension.php │ │ │ │ │ ├── Event/ │ │ │ │ │ │ └── AttributesListener.php │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ └── AttributesInline.php │ │ │ │ │ ├── Parser/ │ │ │ │ │ │ ├── AttributesBlockContinueParser.php │ │ │ │ │ │ ├── AttributesBlockStartParser.php │ │ │ │ │ │ └── AttributesInlineParser.php │ │ │ │ │ └── Util/ │ │ │ │ │ └── AttributesHelper.php │ │ │ │ ├── Autolink/ │ │ │ │ │ ├── AutolinkExtension.php │ │ │ │ │ ├── EmailAutolinkParser.php │ │ │ │ │ └── UrlAutolinkParser.php │ │ │ │ ├── CommonMark/ │ │ │ │ │ ├── CommonMarkCoreExtension.php │ │ │ │ │ ├── Delimiter/ │ │ │ │ │ │ └── Processor/ │ │ │ │ │ │ └── EmphasisDelimiterProcessor.php │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Block/ │ │ │ │ │ │ │ ├── BlockQuote.php │ │ │ │ │ │ │ ├── FencedCode.php │ │ │ │ │ │ │ ├── Heading.php │ │ │ │ │ │ │ ├── HtmlBlock.php │ │ │ │ │ │ │ ├── IndentedCode.php │ │ │ │ │ │ │ ├── ListBlock.php │ │ │ │ │ │ │ ├── ListData.php │ │ │ │ │ │ │ ├── ListItem.php │ │ │ │ │ │ │ └── ThematicBreak.php │ │ │ │ │ │ └── Inline/ │ │ │ │ │ │ ├── AbstractWebResource.php │ │ │ │ │ │ ├── Code.php │ │ │ │ │ │ ├── Emphasis.php │ │ │ │ │ │ ├── HtmlInline.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Link.php │ │ │ │ │ │ └── Strong.php │ │ │ │ │ ├── Parser/ │ │ │ │ │ │ ├── Block/ │ │ │ │ │ │ │ ├── BlockQuoteParser.php │ │ │ │ │ │ │ ├── BlockQuoteStartParser.php │ │ │ │ │ │ │ ├── FencedCodeParser.php │ │ │ │ │ │ │ ├── FencedCodeStartParser.php │ │ │ │ │ │ │ ├── HeadingParser.php │ │ │ │ │ │ │ ├── HeadingStartParser.php │ │ │ │ │ │ │ ├── HtmlBlockParser.php │ │ │ │ │ │ │ ├── HtmlBlockStartParser.php │ │ │ │ │ │ │ ├── IndentedCodeParser.php │ │ │ │ │ │ │ ├── IndentedCodeStartParser.php │ │ │ │ │ │ │ ├── ListBlockParser.php │ │ │ │ │ │ │ ├── ListBlockStartParser.php │ │ │ │ │ │ │ ├── ListItemParser.php │ │ │ │ │ │ │ ├── ThematicBreakParser.php │ │ │ │ │ │ │ └── ThematicBreakStartParser.php │ │ │ │ │ │ └── Inline/ │ │ │ │ │ │ ├── AutolinkParser.php │ │ │ │ │ │ ├── BacktickParser.php │ │ │ │ │ │ ├── BangParser.php │ │ │ │ │ │ ├── CloseBracketParser.php │ │ │ │ │ │ ├── EntityParser.php │ │ │ │ │ │ ├── EscapableParser.php │ │ │ │ │ │ ├── HtmlInlineParser.php │ │ │ │ │ │ └── OpenBracketParser.php │ │ │ │ │ └── Renderer/ │ │ │ │ │ ├── Block/ │ │ │ │ │ │ ├── BlockQuoteRenderer.php │ │ │ │ │ │ ├── FencedCodeRenderer.php │ │ │ │ │ │ ├── HeadingRenderer.php │ │ │ │ │ │ ├── HtmlBlockRenderer.php │ │ │ │ │ │ ├── IndentedCodeRenderer.php │ │ │ │ │ │ ├── ListBlockRenderer.php │ │ │ │ │ │ ├── ListItemRenderer.php │ │ │ │ │ │ └── ThematicBreakRenderer.php │ │ │ │ │ └── Inline/ │ │ │ │ │ ├── CodeRenderer.php │ │ │ │ │ ├── EmphasisRenderer.php │ │ │ │ │ ├── HtmlInlineRenderer.php │ │ │ │ │ ├── ImageRenderer.php │ │ │ │ │ ├── LinkRenderer.php │ │ │ │ │ └── StrongRenderer.php │ │ │ │ ├── ConfigurableExtensionInterface.php │ │ │ │ ├── DefaultAttributes/ │ │ │ │ │ ├── ApplyDefaultAttributesProcessor.php │ │ │ │ │ └── DefaultAttributesExtension.php │ │ │ │ ├── DescriptionList/ │ │ │ │ │ ├── DescriptionListExtension.php │ │ │ │ │ ├── Event/ │ │ │ │ │ │ ├── ConsecutiveDescriptionListMerger.php │ │ │ │ │ │ └── LooseDescriptionHandler.php │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Description.php │ │ │ │ │ │ ├── DescriptionList.php │ │ │ │ │ │ └── DescriptionTerm.php │ │ │ │ │ ├── Parser/ │ │ │ │ │ │ ├── DescriptionContinueParser.php │ │ │ │ │ │ ├── DescriptionListContinueParser.php │ │ │ │ │ │ ├── DescriptionStartParser.php │ │ │ │ │ │ └── DescriptionTermContinueParser.php │ │ │ │ │ └── Renderer/ │ │ │ │ │ ├── DescriptionListRenderer.php │ │ │ │ │ ├── DescriptionRenderer.php │ │ │ │ │ └── DescriptionTermRenderer.php │ │ │ │ ├── DisallowedRawHtml/ │ │ │ │ │ ├── DisallowedRawHtmlExtension.php │ │ │ │ │ └── DisallowedRawHtmlRenderer.php │ │ │ │ ├── Embed/ │ │ │ │ │ ├── Bridge/ │ │ │ │ │ │ └── OscaroteroEmbedAdapter.php │ │ │ │ │ ├── DomainFilteringAdapter.php │ │ │ │ │ ├── Embed.php │ │ │ │ │ ├── EmbedAdapterInterface.php │ │ │ │ │ ├── EmbedExtension.php │ │ │ │ │ ├── EmbedParser.php │ │ │ │ │ ├── EmbedProcessor.php │ │ │ │ │ ├── EmbedRenderer.php │ │ │ │ │ └── EmbedStartParser.php │ │ │ │ ├── ExtensionInterface.php │ │ │ │ ├── ExternalLink/ │ │ │ │ │ ├── ExternalLinkExtension.php │ │ │ │ │ └── ExternalLinkProcessor.php │ │ │ │ ├── Footnote/ │ │ │ │ │ ├── Event/ │ │ │ │ │ │ ├── AnonymousFootnotesListener.php │ │ │ │ │ │ ├── FixOrphanedFootnotesAndRefsListener.php │ │ │ │ │ │ ├── GatherFootnotesListener.php │ │ │ │ │ │ └── NumberFootnotesListener.php │ │ │ │ │ ├── FootnoteExtension.php │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── Footnote.php │ │ │ │ │ │ ├── FootnoteBackref.php │ │ │ │ │ │ ├── FootnoteContainer.php │ │ │ │ │ │ └── FootnoteRef.php │ │ │ │ │ ├── Parser/ │ │ │ │ │ │ ├── AnonymousFootnoteRefParser.php │ │ │ │ │ │ ├── FootnoteParser.php │ │ │ │ │ │ ├── FootnoteRefParser.php │ │ │ │ │ │ └── FootnoteStartParser.php │ │ │ │ │ └── Renderer/ │ │ │ │ │ ├── FootnoteBackrefRenderer.php │ │ │ │ │ ├── FootnoteContainerRenderer.php │ │ │ │ │ ├── FootnoteRefRenderer.php │ │ │ │ │ └── FootnoteRenderer.php │ │ │ │ ├── FrontMatter/ │ │ │ │ │ ├── Data/ │ │ │ │ │ │ ├── FrontMatterDataParserInterface.php │ │ │ │ │ │ ├── LibYamlFrontMatterParser.php │ │ │ │ │ │ └── SymfonyYamlFrontMatterParser.php │ │ │ │ │ ├── Exception/ │ │ │ │ │ │ └── InvalidFrontMatterException.php │ │ │ │ │ ├── FrontMatterExtension.php │ │ │ │ │ ├── FrontMatterParser.php │ │ │ │ │ ├── FrontMatterParserInterface.php │ │ │ │ │ ├── FrontMatterProviderInterface.php │ │ │ │ │ ├── Input/ │ │ │ │ │ │ └── MarkdownInputWithFrontMatter.php │ │ │ │ │ ├── Listener/ │ │ │ │ │ │ ├── FrontMatterPostRenderListener.php │ │ │ │ │ │ └── FrontMatterPreParser.php │ │ │ │ │ └── Output/ │ │ │ │ │ └── RenderedContentWithFrontMatter.php │ │ │ │ ├── GithubFlavoredMarkdownExtension.php │ │ │ │ ├── HeadingPermalink/ │ │ │ │ │ ├── HeadingPermalink.php │ │ │ │ │ ├── HeadingPermalinkExtension.php │ │ │ │ │ ├── HeadingPermalinkProcessor.php │ │ │ │ │ └── HeadingPermalinkRenderer.php │ │ │ │ ├── InlinesOnly/ │ │ │ │ │ ├── ChildRenderer.php │ │ │ │ │ └── InlinesOnlyExtension.php │ │ │ │ ├── Mention/ │ │ │ │ │ ├── Generator/ │ │ │ │ │ │ ├── CallbackGenerator.php │ │ │ │ │ │ ├── MentionGeneratorInterface.php │ │ │ │ │ │ └── StringTemplateLinkGenerator.php │ │ │ │ │ ├── Mention.php │ │ │ │ │ ├── MentionExtension.php │ │ │ │ │ └── MentionParser.php │ │ │ │ ├── SmartPunct/ │ │ │ │ │ ├── DashParser.php │ │ │ │ │ ├── EllipsesParser.php │ │ │ │ │ ├── Quote.php │ │ │ │ │ ├── QuoteParser.php │ │ │ │ │ ├── QuoteProcessor.php │ │ │ │ │ ├── ReplaceUnpairedQuotesListener.php │ │ │ │ │ └── SmartPunctExtension.php │ │ │ │ ├── Strikethrough/ │ │ │ │ │ ├── Strikethrough.php │ │ │ │ │ ├── StrikethroughDelimiterProcessor.php │ │ │ │ │ ├── StrikethroughExtension.php │ │ │ │ │ └── StrikethroughRenderer.php │ │ │ │ ├── Table/ │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── TableCell.php │ │ │ │ │ ├── TableCellRenderer.php │ │ │ │ │ ├── TableExtension.php │ │ │ │ │ ├── TableParser.php │ │ │ │ │ ├── TableRenderer.php │ │ │ │ │ ├── TableRow.php │ │ │ │ │ ├── TableRowRenderer.php │ │ │ │ │ ├── TableSection.php │ │ │ │ │ ├── TableSectionRenderer.php │ │ │ │ │ └── TableStartParser.php │ │ │ │ ├── TableOfContents/ │ │ │ │ │ ├── Node/ │ │ │ │ │ │ ├── TableOfContents.php │ │ │ │ │ │ └── TableOfContentsPlaceholder.php │ │ │ │ │ ├── Normalizer/ │ │ │ │ │ │ ├── AsIsNormalizerStrategy.php │ │ │ │ │ │ ├── FlatNormalizerStrategy.php │ │ │ │ │ │ ├── NormalizerStrategyInterface.php │ │ │ │ │ │ └── RelativeNormalizerStrategy.php │ │ │ │ │ ├── TableOfContentsBuilder.php │ │ │ │ │ ├── TableOfContentsExtension.php │ │ │ │ │ ├── TableOfContentsGenerator.php │ │ │ │ │ ├── TableOfContentsGeneratorInterface.php │ │ │ │ │ ├── TableOfContentsPlaceholderParser.php │ │ │ │ │ ├── TableOfContentsPlaceholderRenderer.php │ │ │ │ │ └── TableOfContentsRenderer.php │ │ │ │ └── TaskList/ │ │ │ │ ├── TaskListExtension.php │ │ │ │ ├── TaskListItemMarker.php │ │ │ │ ├── TaskListItemMarkerParser.php │ │ │ │ └── TaskListItemMarkerRenderer.php │ │ │ ├── GithubFlavoredMarkdownConverter.php │ │ │ ├── Input/ │ │ │ │ ├── MarkdownInput.php │ │ │ │ └── MarkdownInputInterface.php │ │ │ ├── MarkdownConverter.php │ │ │ ├── MarkdownConverterInterface.php │ │ │ ├── Node/ │ │ │ │ ├── Block/ │ │ │ │ │ ├── AbstractBlock.php │ │ │ │ │ ├── Document.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ └── TightBlockInterface.php │ │ │ │ ├── Inline/ │ │ │ │ │ ├── AbstractInline.php │ │ │ │ │ ├── AbstractStringContainer.php │ │ │ │ │ ├── AdjacentTextMerger.php │ │ │ │ │ ├── DelimitedInterface.php │ │ │ │ │ ├── Newline.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Node.php │ │ │ │ ├── NodeIterator.php │ │ │ │ ├── NodeWalker.php │ │ │ │ ├── NodeWalkerEvent.php │ │ │ │ ├── Query/ │ │ │ │ │ ├── AndExpr.php │ │ │ │ │ ├── ExpressionInterface.php │ │ │ │ │ └── OrExpr.php │ │ │ │ ├── Query.php │ │ │ │ ├── RawMarkupContainerInterface.php │ │ │ │ ├── StringContainerHelper.php │ │ │ │ └── StringContainerInterface.php │ │ │ ├── Normalizer/ │ │ │ │ ├── SlugNormalizer.php │ │ │ │ ├── TextNormalizer.php │ │ │ │ ├── TextNormalizerInterface.php │ │ │ │ ├── UniqueSlugNormalizer.php │ │ │ │ └── UniqueSlugNormalizerInterface.php │ │ │ ├── Output/ │ │ │ │ ├── RenderedContent.php │ │ │ │ └── RenderedContentInterface.php │ │ │ ├── Parser/ │ │ │ │ ├── Block/ │ │ │ │ │ ├── AbstractBlockContinueParser.php │ │ │ │ │ ├── BlockContinue.php │ │ │ │ │ ├── BlockContinueParserInterface.php │ │ │ │ │ ├── BlockContinueParserWithInlinesInterface.php │ │ │ │ │ ├── BlockStart.php │ │ │ │ │ ├── BlockStartParserInterface.php │ │ │ │ │ ├── DocumentBlockParser.php │ │ │ │ │ ├── ParagraphParser.php │ │ │ │ │ └── SkipLinesStartingWithLettersParser.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── CursorState.php │ │ │ │ ├── Inline/ │ │ │ │ │ ├── InlineParserInterface.php │ │ │ │ │ ├── InlineParserMatch.php │ │ │ │ │ └── NewlineParser.php │ │ │ │ ├── InlineParserContext.php │ │ │ │ ├── InlineParserEngine.php │ │ │ │ ├── InlineParserEngineInterface.php │ │ │ │ ├── MarkdownParser.php │ │ │ │ ├── MarkdownParserInterface.php │ │ │ │ ├── MarkdownParserState.php │ │ │ │ ├── MarkdownParserStateInterface.php │ │ │ │ └── ParserLogicException.php │ │ │ ├── Reference/ │ │ │ │ ├── MemoryLimitedReferenceMap.php │ │ │ │ ├── Reference.php │ │ │ │ ├── ReferenceInterface.php │ │ │ │ ├── ReferenceMap.php │ │ │ │ ├── ReferenceMapInterface.php │ │ │ │ ├── ReferenceParser.php │ │ │ │ └── ReferenceableInterface.php │ │ │ ├── Renderer/ │ │ │ │ ├── Block/ │ │ │ │ │ ├── DocumentRenderer.php │ │ │ │ │ └── ParagraphRenderer.php │ │ │ │ ├── ChildNodeRendererInterface.php │ │ │ │ ├── DocumentRendererInterface.php │ │ │ │ ├── HtmlDecorator.php │ │ │ │ ├── HtmlRenderer.php │ │ │ │ ├── Inline/ │ │ │ │ │ ├── NewlineRenderer.php │ │ │ │ │ └── TextRenderer.php │ │ │ │ ├── MarkdownRendererInterface.php │ │ │ │ ├── NoMatchingRendererException.php │ │ │ │ └── NodeRendererInterface.php │ │ │ ├── Util/ │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── Html5EntityDecoder.php │ │ │ │ ├── HtmlElement.php │ │ │ │ ├── HtmlFilter.php │ │ │ │ ├── LinkParserHelper.php │ │ │ │ ├── PrioritizedList.php │ │ │ │ ├── RegexHelper.php │ │ │ │ ├── SpecReader.php │ │ │ │ ├── UrlEncoder.php │ │ │ │ └── Xml.php │ │ │ └── Xml/ │ │ │ ├── FallbackNodeXmlRenderer.php │ │ │ ├── MarkdownToXmlConverter.php │ │ │ ├── XmlNodeRendererInterface.php │ │ │ └── XmlRenderer.php │ │ ├── config/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationAwareInterface.php │ │ │ ├── ConfigurationBuilderInterface.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── ConfigurationProviderInterface.php │ │ │ ├── Exception/ │ │ │ │ ├── ConfigurationExceptionInterface.php │ │ │ │ ├── InvalidConfigurationException.php │ │ │ │ ├── UnknownOptionException.php │ │ │ │ └── ValidationException.php │ │ │ ├── MutableConfigurationInterface.php │ │ │ ├── ReadOnlyConfiguration.php │ │ │ └── SchemaBuilderInterface.php │ │ ├── flysystem/ │ │ │ ├── INFO.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── readme.md │ │ │ └── src/ │ │ │ ├── CalculateChecksumFromStream.php │ │ │ ├── ChecksumAlgoIsNotSupported.php │ │ │ ├── ChecksumProvider.php │ │ │ ├── Config.php │ │ │ ├── CorruptedPathDetected.php │ │ │ ├── DecoratedAdapter.php │ │ │ ├── DirectoryAttributes.php │ │ │ ├── DirectoryListing.php │ │ │ ├── FileAttributes.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemException.php │ │ │ ├── FilesystemOperationFailed.php │ │ │ ├── FilesystemOperator.php │ │ │ ├── FilesystemReader.php │ │ │ ├── FilesystemWriter.php │ │ │ ├── InvalidStreamProvided.php │ │ │ ├── InvalidVisibilityProvided.php │ │ │ ├── MountManager.php │ │ │ ├── PathNormalizer.php │ │ │ ├── PathPrefixer.php │ │ │ ├── PathTraversalDetected.php │ │ │ ├── PortableVisibilityGuard.php │ │ │ ├── ProxyArrayAccessToProperties.php │ │ │ ├── ResolveIdenticalPathConflict.php │ │ │ ├── StorageAttributes.php │ │ │ ├── SymbolicLinkEncountered.php │ │ │ ├── UnableToCheckDirectoryExistence.php │ │ │ ├── UnableToCheckExistence.php │ │ │ ├── UnableToCheckFileExistence.php │ │ │ ├── UnableToCopyFile.php │ │ │ ├── UnableToCreateDirectory.php │ │ │ ├── UnableToDeleteDirectory.php │ │ │ ├── UnableToDeleteFile.php │ │ │ ├── UnableToGeneratePublicUrl.php │ │ │ ├── UnableToGenerateTemporaryUrl.php │ │ │ ├── UnableToListContents.php │ │ │ ├── UnableToMountFilesystem.php │ │ │ ├── UnableToMoveFile.php │ │ │ ├── UnableToProvideChecksum.php │ │ │ ├── UnableToReadFile.php │ │ │ ├── UnableToResolveFilesystemMount.php │ │ │ ├── UnableToRetrieveMetadata.php │ │ │ ├── UnableToSetVisibility.php │ │ │ ├── UnableToWriteFile.php │ │ │ ├── UnixVisibility/ │ │ │ │ ├── PortableVisibilityConverter.php │ │ │ │ └── VisibilityConverter.php │ │ │ ├── UnreadableFileEncountered.php │ │ │ ├── UrlGeneration/ │ │ │ │ ├── ChainedPublicUrlGenerator.php │ │ │ │ ├── PrefixPublicUrlGenerator.php │ │ │ │ ├── PublicUrlGenerator.php │ │ │ │ ├── ShardedPrefixPublicUrlGenerator.php │ │ │ │ └── TemporaryUrlGenerator.php │ │ │ ├── Visibility.php │ │ │ └── WhitespacePathNormalizer.php │ │ ├── flysystem-aws-s3-v3/ │ │ │ ├── AwsS3V3Adapter.php │ │ │ ├── LICENSE │ │ │ ├── PortableVisibilityConverter.php │ │ │ ├── VisibilityConverter.php │ │ │ └── composer.json │ │ ├── flysystem-local/ │ │ │ ├── FallbackMimeTypeDetector.php │ │ │ ├── LICENSE │ │ │ ├── LocalFilesystemAdapter.php │ │ │ └── composer.json │ │ ├── mime-type-detection/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ │ ├── ExtensionLookup.php │ │ │ ├── ExtensionMimeTypeDetector.php │ │ │ ├── ExtensionToMimeTypeMap.php │ │ │ ├── FinfoMimeTypeDetector.php │ │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ │ ├── MimeTypeDetector.php │ │ │ └── OverridingExtensionToMimeTypeMap.php │ │ ├── uri/ │ │ │ ├── BaseUri.php │ │ │ ├── Http.php │ │ │ ├── HttpFactory.php │ │ │ ├── LICENSE │ │ │ ├── Uri.php │ │ │ ├── UriInfo.php │ │ │ ├── UriResolver.php │ │ │ ├── UriTemplate/ │ │ │ │ ├── Expression.php │ │ │ │ ├── Operator.php │ │ │ │ ├── Template.php │ │ │ │ ├── TemplateCanNotBeExpanded.php │ │ │ │ ├── VarSpecifier.php │ │ │ │ └── VariableBag.php │ │ │ ├── UriTemplate.php │ │ │ └── composer.json │ │ └── uri-interfaces/ │ │ ├── Contracts/ │ │ │ ├── AuthorityInterface.php │ │ │ ├── DataPathInterface.php │ │ │ ├── DomainHostInterface.php │ │ │ ├── FragmentInterface.php │ │ │ ├── HostInterface.php │ │ │ ├── IpHostInterface.php │ │ │ ├── PathInterface.php │ │ │ ├── PortInterface.php │ │ │ ├── QueryInterface.php │ │ │ ├── SegmentedPathInterface.php │ │ │ ├── UriAccess.php │ │ │ ├── UriComponentInterface.php │ │ │ ├── UriException.php │ │ │ ├── UriInterface.php │ │ │ └── UserInfoInterface.php │ │ ├── Encoder.php │ │ ├── Exceptions/ │ │ │ ├── ConversionFailed.php │ │ │ ├── MissingFeature.php │ │ │ ├── OffsetOutOfBounds.php │ │ │ └── SyntaxError.php │ │ ├── FeatureDetection.php │ │ ├── IPv4/ │ │ │ ├── BCMathCalculator.php │ │ │ ├── Calculator.php │ │ │ ├── Converter.php │ │ │ ├── GMPCalculator.php │ │ │ └── NativeCalculator.php │ │ ├── IPv6/ │ │ │ └── Converter.php │ │ ├── Idna/ │ │ │ ├── Converter.php │ │ │ ├── Error.php │ │ │ ├── Option.php │ │ │ └── Result.php │ │ ├── KeyValuePair/ │ │ │ └── Converter.php │ │ ├── LICENSE │ │ ├── QueryString.php │ │ ├── UriString.php │ │ └── composer.json │ ├── mockery/ │ │ └── mockery/ │ │ ├── .phpstorm.meta.php │ │ ├── .readthedocs.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── COPYRIGHT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── docs/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _static/ │ │ │ │ └── .gitkeep │ │ │ ├── conf.py │ │ │ ├── cookbook/ │ │ │ │ ├── big_parent_class.rst │ │ │ │ ├── class_constants.rst │ │ │ │ ├── default_expectations.rst │ │ │ │ ├── detecting_mock_objects.rst │ │ │ │ ├── index.rst │ │ │ │ ├── map.rst.inc │ │ │ │ ├── mockery_on.rst │ │ │ │ ├── mocking_class_within_class.rst │ │ │ │ ├── mocking_hard_dependencies.rst │ │ │ │ └── not_calling_the_constructor.rst │ │ │ ├── getting_started/ │ │ │ │ ├── index.rst │ │ │ │ ├── installation.rst │ │ │ │ ├── map.rst.inc │ │ │ │ ├── quick_reference.rst │ │ │ │ ├── simple_example.rst │ │ │ │ └── upgrading.rst │ │ │ ├── index.rst │ │ │ ├── mockery/ │ │ │ │ ├── configuration.rst │ │ │ │ ├── exceptions.rst │ │ │ │ ├── gotchas.rst │ │ │ │ ├── index.rst │ │ │ │ ├── map.rst.inc │ │ │ │ └── reserved_method_names.rst │ │ │ ├── reference/ │ │ │ │ ├── alternative_should_receive_syntax.rst │ │ │ │ ├── argument_validation.rst │ │ │ │ ├── creating_test_doubles.rst │ │ │ │ ├── demeter_chains.rst │ │ │ │ ├── expectations.rst │ │ │ │ ├── final_methods_classes.rst │ │ │ │ ├── index.rst │ │ │ │ ├── instance_mocking.rst │ │ │ │ ├── magic_methods.rst │ │ │ │ ├── map.rst.inc │ │ │ │ ├── partial_mocks.rst │ │ │ │ ├── pass_by_reference_behaviours.rst │ │ │ │ ├── phpunit_integration.rst │ │ │ │ ├── protected_methods.rst │ │ │ │ ├── public_properties.rst │ │ │ │ ├── public_static_properties.rst │ │ │ │ └── spies.rst │ │ │ └── requirements.txt │ │ └── library/ │ │ ├── Mockery/ │ │ │ ├── Adapter/ │ │ │ │ └── Phpunit/ │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditions.php │ │ │ │ ├── MockeryTestCase.php │ │ │ │ ├── MockeryTestCaseSetUp.php │ │ │ │ ├── TestListener.php │ │ │ │ └── TestListenerTrait.php │ │ │ ├── ClosureWrapper.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator/ │ │ │ │ ├── AtLeast.php │ │ │ │ ├── AtMost.php │ │ │ │ ├── CountValidatorAbstract.php │ │ │ │ ├── CountValidatorInterface.php │ │ │ │ ├── Exact.php │ │ │ │ └── Exception.php │ │ │ ├── Exception/ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidCountException.php │ │ │ │ ├── InvalidOrderException.php │ │ │ │ ├── MockeryExceptionInterface.php │ │ │ │ ├── NoMatchingExpectationException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Exception.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── ExpectationInterface.php │ │ │ ├── ExpectsHigherOrderMessage.php │ │ │ ├── Generator/ │ │ │ │ ├── CachingGenerator.php │ │ │ │ ├── DefinedTargetClass.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Method.php │ │ │ │ ├── MockConfiguration.php │ │ │ │ ├── MockConfigurationBuilder.php │ │ │ │ ├── MockDefinition.php │ │ │ │ ├── MockNameBuilder.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── StringManipulation/ │ │ │ │ │ └── Pass/ │ │ │ │ │ ├── AvoidMethodClashPass.php │ │ │ │ │ ├── CallTypeHintPass.php │ │ │ │ │ ├── ClassAttributesPass.php │ │ │ │ │ ├── ClassNamePass.php │ │ │ │ │ ├── ClassPass.php │ │ │ │ │ ├── ConstantsPass.php │ │ │ │ │ ├── InstanceMockPass.php │ │ │ │ │ ├── InterfacePass.php │ │ │ │ │ ├── MagicMethodTypeHintsPass.php │ │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ │ ├── Pass.php │ │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ │ ├── RemoveDestructorPass.php │ │ │ │ │ ├── RemoveUnserializeForInternalSerializableClassesPass.php │ │ │ │ │ └── TraitPass.php │ │ │ │ ├── StringManipulationGenerator.php │ │ │ │ ├── TargetClassInterface.php │ │ │ │ └── UndefinedTargetClass.php │ │ │ ├── HigherOrderMessage.php │ │ │ ├── Instantiator.php │ │ │ ├── LegacyMockInterface.php │ │ │ ├── Loader/ │ │ │ │ ├── EvalLoader.php │ │ │ │ ├── Loader.php │ │ │ │ └── RequireLoader.php │ │ │ ├── Matcher/ │ │ │ │ ├── AndAnyOtherArgs.php │ │ │ │ ├── Any.php │ │ │ │ ├── AnyArgs.php │ │ │ │ ├── AnyOf.php │ │ │ │ ├── ArgumentListMatcher.php │ │ │ │ ├── Closure.php │ │ │ │ ├── Contains.php │ │ │ │ ├── Ducktype.php │ │ │ │ ├── HasKey.php │ │ │ │ ├── HasValue.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsSame.php │ │ │ │ ├── MatcherAbstract.php │ │ │ │ ├── MatcherInterface.php │ │ │ │ ├── MultiArgumentClosure.php │ │ │ │ ├── MustBe.php │ │ │ │ ├── NoArgs.php │ │ │ │ ├── Not.php │ │ │ │ ├── NotAnyOf.php │ │ │ │ ├── Pattern.php │ │ │ │ ├── Subset.php │ │ │ │ └── Type.php │ │ │ ├── MethodCall.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── QuickDefinitionsConfiguration.php │ │ │ ├── ReceivedMethodCalls.php │ │ │ ├── Reflector.php │ │ │ ├── Undefined.php │ │ │ ├── VerificationDirector.php │ │ │ └── VerificationExpectation.php │ │ ├── Mockery.php │ │ └── helpers.php │ ├── monolog/ │ │ └── monolog/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Monolog/ │ │ ├── Attribute/ │ │ │ ├── AsMonologProcessor.php │ │ │ └── WithMonologChannel.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter/ │ │ │ ├── ChromePHPFormatter.php │ │ │ ├── ElasticaFormatter.php │ │ │ ├── ElasticsearchFormatter.php │ │ │ ├── FlowdockFormatter.php │ │ │ ├── FluentdFormatter.php │ │ │ ├── FormatterInterface.php │ │ │ ├── GelfMessageFormatter.php │ │ │ ├── GoogleCloudLoggingFormatter.php │ │ │ ├── HtmlFormatter.php │ │ │ ├── JsonFormatter.php │ │ │ ├── LineFormatter.php │ │ │ ├── LogglyFormatter.php │ │ │ ├── LogmaticFormatter.php │ │ │ ├── LogstashFormatter.php │ │ │ ├── MongoDBFormatter.php │ │ │ ├── NormalizerFormatter.php │ │ │ ├── ScalarFormatter.php │ │ │ ├── SyslogFormatter.php │ │ │ └── WildfireFormatter.php │ │ ├── Handler/ │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── AbstractSyslogHandler.php │ │ │ ├── AmqpHandler.php │ │ │ ├── BrowserConsoleHandler.php │ │ │ ├── BufferHandler.php │ │ │ ├── ChromePHPHandler.php │ │ │ ├── CouchDBHandler.php │ │ │ ├── CubeHandler.php │ │ │ ├── Curl/ │ │ │ │ └── Util.php │ │ │ ├── DeduplicationHandler.php │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ ├── DynamoDbHandler.php │ │ │ ├── ElasticaHandler.php │ │ │ ├── ElasticsearchHandler.php │ │ │ ├── ErrorLogHandler.php │ │ │ ├── FallbackGroupHandler.php │ │ │ ├── FilterHandler.php │ │ │ ├── FingersCrossed/ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ ├── FingersCrossedHandler.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── FleepHookHandler.php │ │ │ ├── FlowdockHandler.php │ │ │ ├── FormattableHandlerInterface.php │ │ │ ├── FormattableHandlerTrait.php │ │ │ ├── GelfHandler.php │ │ │ ├── GroupHandler.php │ │ │ ├── Handler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HandlerWrapper.php │ │ │ ├── IFTTTHandler.php │ │ │ ├── InsightOpsHandler.php │ │ │ ├── LogEntriesHandler.php │ │ │ ├── LogglyHandler.php │ │ │ ├── LogmaticHandler.php │ │ │ ├── MailHandler.php │ │ │ ├── MandrillHandler.php │ │ │ ├── MissingExtensionException.php │ │ │ ├── MongoDBHandler.php │ │ │ ├── NativeMailerHandler.php │ │ │ ├── NewRelicHandler.php │ │ │ ├── NoopHandler.php │ │ │ ├── NullHandler.php │ │ │ ├── OverflowHandler.php │ │ │ ├── PHPConsoleHandler.php │ │ │ ├── ProcessHandler.php │ │ │ ├── ProcessableHandlerInterface.php │ │ │ ├── ProcessableHandlerTrait.php │ │ │ ├── PsrHandler.php │ │ │ ├── PushoverHandler.php │ │ │ ├── RedisHandler.php │ │ │ ├── RedisPubSubHandler.php │ │ │ ├── RollbarHandler.php │ │ │ ├── RotatingFileHandler.php │ │ │ ├── SamplingHandler.php │ │ │ ├── SendGridHandler.php │ │ │ ├── Slack/ │ │ │ │ └── SlackRecord.php │ │ │ ├── SlackHandler.php │ │ │ ├── SlackWebhookHandler.php │ │ │ ├── SocketHandler.php │ │ │ ├── SqsHandler.php │ │ │ ├── StreamHandler.php │ │ │ ├── SymfonyMailerHandler.php │ │ │ ├── SyslogHandler.php │ │ │ ├── SyslogUdp/ │ │ │ │ └── UdpSocket.php │ │ │ ├── SyslogUdpHandler.php │ │ │ ├── TelegramBotHandler.php │ │ │ ├── TestHandler.php │ │ │ ├── WebRequestRecognizerTrait.php │ │ │ ├── WhatFailureGroupHandler.php │ │ │ └── ZendMonitorHandler.php │ │ ├── JsonSerializableDateTimeImmutable.php │ │ ├── Level.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor/ │ │ │ ├── ClosureContextProcessor.php │ │ │ ├── GitProcessor.php │ │ │ ├── HostnameProcessor.php │ │ │ ├── IntrospectionProcessor.php │ │ │ ├── LoadAverageProcessor.php │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ ├── MemoryProcessor.php │ │ │ ├── MemoryUsageProcessor.php │ │ │ ├── MercurialProcessor.php │ │ │ ├── ProcessIdProcessor.php │ │ │ ├── ProcessorInterface.php │ │ │ ├── PsrLogMessageProcessor.php │ │ │ ├── TagProcessor.php │ │ │ ├── UidProcessor.php │ │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ ├── Test/ │ │ │ ├── MonologTestCase.php │ │ │ └── TestCase.php │ │ └── Utils.php │ ├── mtdowling/ │ │ └── jmespath.php/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── bin/ │ │ │ ├── jp.php │ │ │ └── perf.php │ │ ├── composer.json │ │ └── src/ │ │ ├── AstRuntime.php │ │ ├── CompilerRuntime.php │ │ ├── DebugRuntime.php │ │ ├── Env.php │ │ ├── FnDispatcher.php │ │ ├── JmesPath.php │ │ ├── Lexer.php │ │ ├── Parser.php │ │ ├── SyntaxErrorException.php │ │ ├── TreeCompiler.php │ │ ├── TreeInterpreter.php │ │ └── Utils.php │ ├── myclabs/ │ │ └── deep-copy/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── DeepCopy/ │ │ ├── DeepCopy.php │ │ ├── Exception/ │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ ├── Filter/ │ │ │ ├── ChainableFilter.php │ │ │ ├── Doctrine/ │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ └── DoctrineProxyFilter.php │ │ │ ├── Filter.php │ │ │ ├── KeepFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ └── SetNullFilter.php │ │ ├── Matcher/ │ │ │ ├── Doctrine/ │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ ├── Matcher.php │ │ │ ├── PropertyMatcher.php │ │ │ ├── PropertyNameMatcher.php │ │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection/ │ │ │ └── ReflectionHelper.php │ │ ├── TypeFilter/ │ │ │ ├── Date/ │ │ │ │ ├── DateIntervalFilter.php │ │ │ │ └── DatePeriodFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ ├── ShallowCopyFilter.php │ │ │ ├── Spl/ │ │ │ │ ├── ArrayObjectFilter.php │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ ├── TypeMatcher/ │ │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── nesbot/ │ │ └── carbon/ │ │ ├── .phpstorm.meta.php │ │ ├── LICENSE │ │ ├── bin/ │ │ │ ├── carbon │ │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy/ │ │ │ └── Carbon/ │ │ │ ├── MessageFormatter/ │ │ │ │ ├── MessageFormatterMapperStrongType.php │ │ │ │ └── MessageFormatterMapperWeakType.php │ │ │ ├── ProtectedDatePeriod.php │ │ │ ├── TranslatorStrongType.php │ │ │ ├── TranslatorWeakType.php │ │ │ └── UnprotectedDatePeriod.php │ │ ├── readme.md │ │ ├── sponsors.php │ │ └── src/ │ │ └── Carbon/ │ │ ├── AbstractTranslator.php │ │ ├── Callback.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonPeriodImmutable.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli/ │ │ │ └── Invoker.php │ │ ├── Exceptions/ │ │ │ ├── BadComparisonUnitException.php │ │ │ ├── BadFluentConstructorException.php │ │ │ ├── BadFluentSetterException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── EndLessPeriodException.php │ │ │ ├── Exception.php │ │ │ ├── ImmutableException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCastException.php │ │ │ ├── InvalidDateException.php │ │ │ ├── InvalidFormatException.php │ │ │ ├── InvalidIntervalException.php │ │ │ ├── InvalidPeriodDateException.php │ │ │ ├── InvalidPeriodParameterException.php │ │ │ ├── InvalidTimeZoneException.php │ │ │ ├── InvalidTypeException.php │ │ │ ├── NotACarbonClassException.php │ │ │ ├── NotAPeriodException.php │ │ │ ├── NotLocaleAwareException.php │ │ │ ├── OutOfRangeException.php │ │ │ ├── ParseErrorException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnitException.php │ │ │ ├── UnitNotConfiguredException.php │ │ │ ├── UnknownGetterException.php │ │ │ ├── UnknownMethodException.php │ │ │ ├── UnknownSetterException.php │ │ │ ├── UnknownUnitException.php │ │ │ ├── UnreachableException.php │ │ │ └── UnsupportedUnitException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang/ │ │ │ ├── aa.php │ │ │ ├── aa_DJ.php │ │ │ ├── aa_ER.php │ │ │ ├── aa_ER@saaho.php │ │ │ ├── aa_ET.php │ │ │ ├── af.php │ │ │ ├── af_NA.php │ │ │ ├── af_ZA.php │ │ │ ├── agq.php │ │ │ ├── agr.php │ │ │ ├── agr_PE.php │ │ │ ├── ak.php │ │ │ ├── ak_GH.php │ │ │ ├── am.php │ │ │ ├── am_ET.php │ │ │ ├── an.php │ │ │ ├── an_ES.php │ │ │ ├── anp.php │ │ │ ├── anp_IN.php │ │ │ ├── ar.php │ │ │ ├── ar_AE.php │ │ │ ├── ar_BH.php │ │ │ ├── ar_DJ.php │ │ │ ├── ar_DZ.php │ │ │ ├── ar_EG.php │ │ │ ├── ar_EH.php │ │ │ ├── ar_ER.php │ │ │ ├── ar_IL.php │ │ │ ├── ar_IN.php │ │ │ ├── ar_IQ.php │ │ │ ├── ar_JO.php │ │ │ ├── ar_KM.php │ │ │ ├── ar_KW.php │ │ │ ├── ar_LB.php │ │ │ ├── ar_LY.php │ │ │ ├── ar_MA.php │ │ │ ├── ar_MR.php │ │ │ ├── ar_OM.php │ │ │ ├── ar_PS.php │ │ │ ├── ar_QA.php │ │ │ ├── ar_SA.php │ │ │ ├── ar_SD.php │ │ │ ├── ar_SO.php │ │ │ ├── ar_SS.php │ │ │ ├── ar_SY.php │ │ │ ├── ar_Shakl.php │ │ │ ├── ar_TD.php │ │ │ ├── ar_TN.php │ │ │ ├── ar_YE.php │ │ │ ├── as.php │ │ │ ├── as_IN.php │ │ │ ├── asa.php │ │ │ ├── ast.php │ │ │ ├── ast_ES.php │ │ │ ├── ayc.php │ │ │ ├── ayc_PE.php │ │ │ ├── az.php │ │ │ ├── az_AZ.php │ │ │ ├── az_Cyrl.php │ │ │ ├── az_IR.php │ │ │ ├── az_Latn.php │ │ │ ├── bas.php │ │ │ ├── be.php │ │ │ ├── be_BY.php │ │ │ ├── be_BY@latin.php │ │ │ ├── bem.php │ │ │ ├── bem_ZM.php │ │ │ ├── ber.php │ │ │ ├── ber_DZ.php │ │ │ ├── ber_MA.php │ │ │ ├── bez.php │ │ │ ├── bg.php │ │ │ ├── bg_BG.php │ │ │ ├── bhb.php │ │ │ ├── bhb_IN.php │ │ │ ├── bho.php │ │ │ ├── bho_IN.php │ │ │ ├── bi.php │ │ │ ├── bi_VU.php │ │ │ ├── bm.php │ │ │ ├── bn.php │ │ │ ├── bn_BD.php │ │ │ ├── bn_IN.php │ │ │ ├── bo.php │ │ │ ├── bo_CN.php │ │ │ ├── bo_IN.php │ │ │ ├── br.php │ │ │ ├── br_FR.php │ │ │ ├── brx.php │ │ │ ├── brx_IN.php │ │ │ ├── bs.php │ │ │ ├── bs_BA.php │ │ │ ├── bs_Cyrl.php │ │ │ ├── bs_Latn.php │ │ │ ├── byn.php │ │ │ ├── byn_ER.php │ │ │ ├── ca.php │ │ │ ├── ca_AD.php │ │ │ ├── ca_ES.php │ │ │ ├── ca_ES_Valencia.php │ │ │ ├── ca_FR.php │ │ │ ├── ca_IT.php │ │ │ ├── ccp.php │ │ │ ├── ccp_IN.php │ │ │ ├── ce.php │ │ │ ├── ce_RU.php │ │ │ ├── cgg.php │ │ │ ├── chr.php │ │ │ ├── chr_US.php │ │ │ ├── ckb.php │ │ │ ├── cmn.php │ │ │ ├── cmn_TW.php │ │ │ ├── crh.php │ │ │ ├── crh_UA.php │ │ │ ├── cs.php │ │ │ ├── cs_CZ.php │ │ │ ├── csb.php │ │ │ ├── csb_PL.php │ │ │ ├── cu.php │ │ │ ├── cv.php │ │ │ ├── cv_RU.php │ │ │ ├── cy.php │ │ │ ├── cy_GB.php │ │ │ ├── da.php │ │ │ ├── da_DK.php │ │ │ ├── da_GL.php │ │ │ ├── dav.php │ │ │ ├── de.php │ │ │ ├── de_AT.php │ │ │ ├── de_BE.php │ │ │ ├── de_CH.php │ │ │ ├── de_DE.php │ │ │ ├── de_IT.php │ │ │ ├── de_LI.php │ │ │ ├── de_LU.php │ │ │ ├── dje.php │ │ │ ├── doi.php │ │ │ ├── doi_IN.php │ │ │ ├── dsb.php │ │ │ ├── dsb_DE.php │ │ │ ├── dua.php │ │ │ ├── dv.php │ │ │ ├── dv_MV.php │ │ │ ├── dyo.php │ │ │ ├── dz.php │ │ │ ├── dz_BT.php │ │ │ ├── ebu.php │ │ │ ├── ee.php │ │ │ ├── ee_TG.php │ │ │ ├── el.php │ │ │ ├── el_CY.php │ │ │ ├── el_GR.php │ │ │ ├── en.php │ │ │ ├── en_001.php │ │ │ ├── en_150.php │ │ │ ├── en_AG.php │ │ │ ├── en_AI.php │ │ │ ├── en_AS.php │ │ │ ├── en_AT.php │ │ │ ├── en_AU.php │ │ │ ├── en_BB.php │ │ │ ├── en_BE.php │ │ │ ├── en_BI.php │ │ │ ├── en_BM.php │ │ │ ├── en_BS.php │ │ │ ├── en_BW.php │ │ │ ├── en_BZ.php │ │ │ ├── en_CA.php │ │ │ ├── en_CC.php │ │ │ ├── en_CH.php │ │ │ ├── en_CK.php │ │ │ ├── en_CM.php │ │ │ ├── en_CX.php │ │ │ ├── en_CY.php │ │ │ ├── en_DE.php │ │ │ ├── en_DG.php │ │ │ ├── en_DK.php │ │ │ ├── en_DM.php │ │ │ ├── en_ER.php │ │ │ ├── en_FI.php │ │ │ ├── en_FJ.php │ │ │ ├── en_FK.php │ │ │ ├── en_FM.php │ │ │ ├── en_GB.php │ │ │ ├── en_GD.php │ │ │ ├── en_GG.php │ │ │ ├── en_GH.php │ │ │ ├── en_GI.php │ │ │ ├── en_GM.php │ │ │ ├── en_GU.php │ │ │ ├── en_GY.php │ │ │ ├── en_HK.php │ │ │ ├── en_IE.php │ │ │ ├── en_IL.php │ │ │ ├── en_IM.php │ │ │ ├── en_IN.php │ │ │ ├── en_IO.php │ │ │ ├── en_ISO.php │ │ │ ├── en_JE.php │ │ │ ├── en_JM.php │ │ │ ├── en_KE.php │ │ │ ├── en_KI.php │ │ │ ├── en_KN.php │ │ │ ├── en_KY.php │ │ │ ├── en_LC.php │ │ │ ├── en_LR.php │ │ │ ├── en_LS.php │ │ │ ├── en_MG.php │ │ │ ├── en_MH.php │ │ │ ├── en_MO.php │ │ │ ├── en_MP.php │ │ │ ├── en_MS.php │ │ │ ├── en_MT.php │ │ │ ├── en_MU.php │ │ │ ├── en_MW.php │ │ │ ├── en_MY.php │ │ │ ├── en_NA.php │ │ │ ├── en_NF.php │ │ │ ├── en_NG.php │ │ │ ├── en_NL.php │ │ │ ├── en_NR.php │ │ │ ├── en_NU.php │ │ │ ├── en_NZ.php │ │ │ ├── en_PG.php │ │ │ ├── en_PH.php │ │ │ ├── en_PK.php │ │ │ ├── en_PN.php │ │ │ ├── en_PR.php │ │ │ ├── en_PW.php │ │ │ ├── en_RW.php │ │ │ ├── en_SB.php │ │ │ ├── en_SC.php │ │ │ ├── en_SD.php │ │ │ ├── en_SE.php │ │ │ ├── en_SG.php │ │ │ ├── en_SH.php │ │ │ ├── en_SI.php │ │ │ ├── en_SL.php │ │ │ ├── en_SS.php │ │ │ ├── en_SX.php │ │ │ ├── en_SZ.php │ │ │ ├── en_TC.php │ │ │ ├── en_TK.php │ │ │ ├── en_TO.php │ │ │ ├── en_TT.php │ │ │ ├── en_TV.php │ │ │ ├── en_TZ.php │ │ │ ├── en_UG.php │ │ │ ├── en_UM.php │ │ │ ├── en_US.php │ │ │ ├── en_US_Posix.php │ │ │ ├── en_VC.php │ │ │ ├── en_VG.php │ │ │ ├── en_VI.php │ │ │ ├── en_VU.php │ │ │ ├── en_WS.php │ │ │ ├── en_ZA.php │ │ │ ├── en_ZM.php │ │ │ ├── en_ZW.php │ │ │ ├── eo.php │ │ │ ├── es.php │ │ │ ├── es_419.php │ │ │ ├── es_AR.php │ │ │ ├── es_BO.php │ │ │ ├── es_BR.php │ │ │ ├── es_BZ.php │ │ │ ├── es_CL.php │ │ │ ├── es_CO.php │ │ │ ├── es_CR.php │ │ │ ├── es_CU.php │ │ │ ├── es_DO.php │ │ │ ├── es_EA.php │ │ │ ├── es_EC.php │ │ │ ├── es_ES.php │ │ │ ├── es_GQ.php │ │ │ ├── es_GT.php │ │ │ ├── es_HN.php │ │ │ ├── es_IC.php │ │ │ ├── es_MX.php │ │ │ ├── es_NI.php │ │ │ ├── es_PA.php │ │ │ ├── es_PE.php │ │ │ ├── es_PH.php │ │ │ ├── es_PR.php │ │ │ ├── es_PY.php │ │ │ ├── es_SV.php │ │ │ ├── es_US.php │ │ │ ├── es_UY.php │ │ │ ├── es_VE.php │ │ │ ├── et.php │ │ │ ├── et_EE.php │ │ │ ├── eu.php │ │ │ ├── eu_ES.php │ │ │ ├── ewo.php │ │ │ ├── fa.php │ │ │ ├── fa_AF.php │ │ │ ├── fa_IR.php │ │ │ ├── ff.php │ │ │ ├── ff_CM.php │ │ │ ├── ff_GN.php │ │ │ ├── ff_MR.php │ │ │ ├── ff_SN.php │ │ │ ├── fi.php │ │ │ ├── fi_FI.php │ │ │ ├── fil.php │ │ │ ├── fil_PH.php │ │ │ ├── fo.php │ │ │ ├── fo_DK.php │ │ │ ├── fo_FO.php │ │ │ ├── fr.php │ │ │ ├── fr_BE.php │ │ │ ├── fr_BF.php │ │ │ ├── fr_BI.php │ │ │ ├── fr_BJ.php │ │ │ ├── fr_BL.php │ │ │ ├── fr_CA.php │ │ │ ├── fr_CD.php │ │ │ ├── fr_CF.php │ │ │ ├── fr_CG.php │ │ │ ├── fr_CH.php │ │ │ ├── fr_CI.php │ │ │ ├── fr_CM.php │ │ │ ├── fr_DJ.php │ │ │ ├── fr_DZ.php │ │ │ ├── fr_FR.php │ │ │ ├── fr_GA.php │ │ │ ├── fr_GF.php │ │ │ ├── fr_GN.php │ │ │ ├── fr_GP.php │ │ │ ├── fr_GQ.php │ │ │ ├── fr_HT.php │ │ │ ├── fr_KM.php │ │ │ ├── fr_LU.php │ │ │ ├── fr_MA.php │ │ │ ├── fr_MC.php │ │ │ ├── fr_MF.php │ │ │ ├── fr_MG.php │ │ │ ├── fr_ML.php │ │ │ ├── fr_MQ.php │ │ │ ├── fr_MR.php │ │ │ ├── fr_MU.php │ │ │ ├── fr_NC.php │ │ │ ├── fr_NE.php │ │ │ ├── fr_PF.php │ │ │ ├── fr_PM.php │ │ │ ├── fr_RE.php │ │ │ ├── fr_RW.php │ │ │ ├── fr_SC.php │ │ │ ├── fr_SN.php │ │ │ ├── fr_SY.php │ │ │ ├── fr_TD.php │ │ │ ├── fr_TG.php │ │ │ ├── fr_TN.php │ │ │ ├── fr_VU.php │ │ │ ├── fr_WF.php │ │ │ ├── fr_YT.php │ │ │ ├── fur.php │ │ │ ├── fur_IT.php │ │ │ ├── fy.php │ │ │ ├── fy_DE.php │ │ │ ├── fy_NL.php │ │ │ ├── ga.php │ │ │ ├── ga_IE.php │ │ │ ├── gd.php │ │ │ ├── gd_GB.php │ │ │ ├── gez.php │ │ │ ├── gez_ER.php │ │ │ ├── gez_ET.php │ │ │ ├── gl.php │ │ │ ├── gl_ES.php │ │ │ ├── gom.php │ │ │ ├── gom_Latn.php │ │ │ ├── gsw.php │ │ │ ├── gsw_CH.php │ │ │ ├── gsw_FR.php │ │ │ ├── gsw_LI.php │ │ │ ├── gu.php │ │ │ ├── gu_IN.php │ │ │ ├── guz.php │ │ │ ├── gv.php │ │ │ ├── gv_GB.php │ │ │ ├── ha.php │ │ │ ├── ha_GH.php │ │ │ ├── ha_NE.php │ │ │ ├── ha_NG.php │ │ │ ├── hak.php │ │ │ ├── hak_TW.php │ │ │ ├── haw.php │ │ │ ├── he.php │ │ │ ├── he_IL.php │ │ │ ├── hi.php │ │ │ ├── hi_IN.php │ │ │ ├── hif.php │ │ │ ├── hif_FJ.php │ │ │ ├── hne.php │ │ │ ├── hne_IN.php │ │ │ ├── hr.php │ │ │ ├── hr_BA.php │ │ │ ├── hr_HR.php │ │ │ ├── hsb.php │ │ │ ├── hsb_DE.php │ │ │ ├── ht.php │ │ │ ├── ht_HT.php │ │ │ ├── hu.php │ │ │ ├── hu_HU.php │ │ │ ├── hy.php │ │ │ ├── hy_AM.php │ │ │ ├── i18n.php │ │ │ ├── ia.php │ │ │ ├── ia_FR.php │ │ │ ├── id.php │ │ │ ├── id_ID.php │ │ │ ├── ig.php │ │ │ ├── ig_NG.php │ │ │ ├── ii.php │ │ │ ├── ik.php │ │ │ ├── ik_CA.php │ │ │ ├── in.php │ │ │ ├── is.php │ │ │ ├── is_IS.php │ │ │ ├── it.php │ │ │ ├── it_CH.php │ │ │ ├── it_IT.php │ │ │ ├── it_SM.php │ │ │ ├── it_VA.php │ │ │ ├── iu.php │ │ │ ├── iu_CA.php │ │ │ ├── iw.php │ │ │ ├── ja.php │ │ │ ├── ja_JP.php │ │ │ ├── jgo.php │ │ │ ├── jmc.php │ │ │ ├── jv.php │ │ │ ├── ka.php │ │ │ ├── ka_GE.php │ │ │ ├── kab.php │ │ │ ├── kab_DZ.php │ │ │ ├── kam.php │ │ │ ├── kde.php │ │ │ ├── kea.php │ │ │ ├── khq.php │ │ │ ├── ki.php │ │ │ ├── kk.php │ │ │ ├── kk_KZ.php │ │ │ ├── kkj.php │ │ │ ├── kl.php │ │ │ ├── kl_GL.php │ │ │ ├── kln.php │ │ │ ├── km.php │ │ │ ├── km_KH.php │ │ │ ├── kn.php │ │ │ ├── kn_IN.php │ │ │ ├── ko.php │ │ │ ├── ko_KP.php │ │ │ ├── ko_KR.php │ │ │ ├── kok.php │ │ │ ├── kok_IN.php │ │ │ ├── ks.php │ │ │ ├── ks_IN.php │ │ │ ├── ks_IN@devanagari.php │ │ │ ├── ksb.php │ │ │ ├── ksf.php │ │ │ ├── ksh.php │ │ │ ├── ku.php │ │ │ ├── ku_TR.php │ │ │ ├── kw.php │ │ │ ├── kw_GB.php │ │ │ ├── ky.php │ │ │ ├── ky_KG.php │ │ │ ├── lag.php │ │ │ ├── lb.php │ │ │ ├── lb_LU.php │ │ │ ├── lg.php │ │ │ ├── lg_UG.php │ │ │ ├── li.php │ │ │ ├── li_NL.php │ │ │ ├── lij.php │ │ │ ├── lij_IT.php │ │ │ ├── lkt.php │ │ │ ├── ln.php │ │ │ ├── ln_AO.php │ │ │ ├── ln_CD.php │ │ │ ├── ln_CF.php │ │ │ ├── ln_CG.php │ │ │ ├── lo.php │ │ │ ├── lo_LA.php │ │ │ ├── lrc.php │ │ │ ├── lrc_IQ.php │ │ │ ├── lt.php │ │ │ ├── lt_LT.php │ │ │ ├── lu.php │ │ │ ├── luo.php │ │ │ ├── luy.php │ │ │ ├── lv.php │ │ │ ├── lv_LV.php │ │ │ ├── lzh.php │ │ │ ├── lzh_TW.php │ │ │ ├── mag.php │ │ │ ├── mag_IN.php │ │ │ ├── mai.php │ │ │ ├── mai_IN.php │ │ │ ├── mas.php │ │ │ ├── mas_TZ.php │ │ │ ├── mer.php │ │ │ ├── mfe.php │ │ │ ├── mfe_MU.php │ │ │ ├── mg.php │ │ │ ├── mg_MG.php │ │ │ ├── mgh.php │ │ │ ├── mgo.php │ │ │ ├── mhr.php │ │ │ ├── mhr_RU.php │ │ │ ├── mi.php │ │ │ ├── mi_NZ.php │ │ │ ├── miq.php │ │ │ ├── miq_NI.php │ │ │ ├── mjw.php │ │ │ ├── mjw_IN.php │ │ │ ├── mk.php │ │ │ ├── mk_MK.php │ │ │ ├── ml.php │ │ │ ├── ml_IN.php │ │ │ ├── mn.php │ │ │ ├── mn_MN.php │ │ │ ├── mni.php │ │ │ ├── mni_IN.php │ │ │ ├── mo.php │ │ │ ├── mr.php │ │ │ ├── mr_IN.php │ │ │ ├── ms.php │ │ │ ├── ms_BN.php │ │ │ ├── ms_MY.php │ │ │ ├── ms_SG.php │ │ │ ├── mt.php │ │ │ ├── mt_MT.php │ │ │ ├── mua.php │ │ │ ├── my.php │ │ │ ├── my_MM.php │ │ │ ├── mzn.php │ │ │ ├── nan.php │ │ │ ├── nan_TW.php │ │ │ ├── nan_TW@latin.php │ │ │ ├── naq.php │ │ │ ├── nb.php │ │ │ ├── nb_NO.php │ │ │ ├── nb_SJ.php │ │ │ ├── nd.php │ │ │ ├── nds.php │ │ │ ├── nds_DE.php │ │ │ ├── nds_NL.php │ │ │ ├── ne.php │ │ │ ├── ne_IN.php │ │ │ ├── ne_NP.php │ │ │ ├── nhn.php │ │ │ ├── nhn_MX.php │ │ │ ├── niu.php │ │ │ ├── niu_NU.php │ │ │ ├── nl.php │ │ │ ├── nl_AW.php │ │ │ ├── nl_BE.php │ │ │ ├── nl_BQ.php │ │ │ ├── nl_CW.php │ │ │ ├── nl_NL.php │ │ │ ├── nl_SR.php │ │ │ ├── nl_SX.php │ │ │ ├── nmg.php │ │ │ ├── nn.php │ │ │ ├── nn_NO.php │ │ │ ├── nnh.php │ │ │ ├── no.php │ │ │ ├── nr.php │ │ │ ├── nr_ZA.php │ │ │ ├── nso.php │ │ │ ├── nso_ZA.php │ │ │ ├── nus.php │ │ │ ├── nyn.php │ │ │ ├── oc.php │ │ │ ├── oc_FR.php │ │ │ ├── om.php │ │ │ ├── om_ET.php │ │ │ ├── om_KE.php │ │ │ ├── or.php │ │ │ ├── or_IN.php │ │ │ ├── os.php │ │ │ ├── os_RU.php │ │ │ ├── pa.php │ │ │ ├── pa_Arab.php │ │ │ ├── pa_Guru.php │ │ │ ├── pa_IN.php │ │ │ ├── pa_PK.php │ │ │ ├── pap.php │ │ │ ├── pap_AW.php │ │ │ ├── pap_CW.php │ │ │ ├── pl.php │ │ │ ├── pl_PL.php │ │ │ ├── prg.php │ │ │ ├── ps.php │ │ │ ├── ps_AF.php │ │ │ ├── pt.php │ │ │ ├── pt_AO.php │ │ │ ├── pt_BR.php │ │ │ ├── pt_CH.php │ │ │ ├── pt_CV.php │ │ │ ├── pt_GQ.php │ │ │ ├── pt_GW.php │ │ │ ├── pt_LU.php │ │ │ ├── pt_MO.php │ │ │ ├── pt_MZ.php │ │ │ ├── pt_PT.php │ │ │ ├── pt_ST.php │ │ │ ├── pt_TL.php │ │ │ ├── qu.php │ │ │ ├── qu_BO.php │ │ │ ├── qu_EC.php │ │ │ ├── quz.php │ │ │ ├── quz_PE.php │ │ │ ├── raj.php │ │ │ ├── raj_IN.php │ │ │ ├── rm.php │ │ │ ├── rn.php │ │ │ ├── ro.php │ │ │ ├── ro_MD.php │ │ │ ├── ro_RO.php │ │ │ ├── rof.php │ │ │ ├── ru.php │ │ │ ├── ru_BY.php │ │ │ ├── ru_KG.php │ │ │ ├── ru_KZ.php │ │ │ ├── ru_MD.php │ │ │ ├── ru_RU.php │ │ │ ├── ru_UA.php │ │ │ ├── rw.php │ │ │ ├── rw_RW.php │ │ │ ├── rwk.php │ │ │ ├── sa.php │ │ │ ├── sa_IN.php │ │ │ ├── sah.php │ │ │ ├── sah_RU.php │ │ │ ├── saq.php │ │ │ ├── sat.php │ │ │ ├── sat_IN.php │ │ │ ├── sbp.php │ │ │ ├── sc.php │ │ │ ├── sc_IT.php │ │ │ ├── sd.php │ │ │ ├── sd_IN.php │ │ │ ├── sd_IN@devanagari.php │ │ │ ├── se.php │ │ │ ├── se_FI.php │ │ │ ├── se_NO.php │ │ │ ├── se_SE.php │ │ │ ├── seh.php │ │ │ ├── ses.php │ │ │ ├── sg.php │ │ │ ├── sgs.php │ │ │ ├── sgs_LT.php │ │ │ ├── sh.php │ │ │ ├── shi.php │ │ │ ├── shi_Latn.php │ │ │ ├── shi_Tfng.php │ │ │ ├── shn.php │ │ │ ├── shn_MM.php │ │ │ ├── shs.php │ │ │ ├── shs_CA.php │ │ │ ├── si.php │ │ │ ├── si_LK.php │ │ │ ├── sid.php │ │ │ ├── sid_ET.php │ │ │ ├── sk.php │ │ │ ├── sk_SK.php │ │ │ ├── sl.php │ │ │ ├── sl_SI.php │ │ │ ├── sm.php │ │ │ ├── sm_WS.php │ │ │ ├── smn.php │ │ │ ├── sn.php │ │ │ ├── so.php │ │ │ ├── so_DJ.php │ │ │ ├── so_ET.php │ │ │ ├── so_KE.php │ │ │ ├── so_SO.php │ │ │ ├── sq.php │ │ │ ├── sq_AL.php │ │ │ ├── sq_MK.php │ │ │ ├── sq_XK.php │ │ │ ├── sr.php │ │ │ ├── sr_Cyrl.php │ │ │ ├── sr_Cyrl_BA.php │ │ │ ├── sr_Cyrl_ME.php │ │ │ ├── sr_Cyrl_XK.php │ │ │ ├── sr_Latn.php │ │ │ ├── sr_Latn_BA.php │ │ │ ├── sr_Latn_ME.php │ │ │ ├── sr_Latn_XK.php │ │ │ ├── sr_ME.php │ │ │ ├── sr_RS.php │ │ │ ├── sr_RS@latin.php │ │ │ ├── ss.php │ │ │ ├── ss_ZA.php │ │ │ ├── st.php │ │ │ ├── st_ZA.php │ │ │ ├── sv.php │ │ │ ├── sv_AX.php │ │ │ ├── sv_FI.php │ │ │ ├── sv_SE.php │ │ │ ├── sw.php │ │ │ ├── sw_CD.php │ │ │ ├── sw_KE.php │ │ │ ├── sw_TZ.php │ │ │ ├── sw_UG.php │ │ │ ├── szl.php │ │ │ ├── szl_PL.php │ │ │ ├── ta.php │ │ │ ├── ta_IN.php │ │ │ ├── ta_LK.php │ │ │ ├── ta_MY.php │ │ │ ├── ta_SG.php │ │ │ ├── tcy.php │ │ │ ├── tcy_IN.php │ │ │ ├── te.php │ │ │ ├── te_IN.php │ │ │ ├── teo.php │ │ │ ├── teo_KE.php │ │ │ ├── tet.php │ │ │ ├── tg.php │ │ │ ├── tg_TJ.php │ │ │ ├── th.php │ │ │ ├── th_TH.php │ │ │ ├── the.php │ │ │ ├── the_NP.php │ │ │ ├── ti.php │ │ │ ├── ti_ER.php │ │ │ ├── ti_ET.php │ │ │ ├── tig.php │ │ │ ├── tig_ER.php │ │ │ ├── tk.php │ │ │ ├── tk_TM.php │ │ │ ├── tl.php │ │ │ ├── tl_PH.php │ │ │ ├── tlh.php │ │ │ ├── tn.php │ │ │ ├── tn_ZA.php │ │ │ ├── to.php │ │ │ ├── to_TO.php │ │ │ ├── tpi.php │ │ │ ├── tpi_PG.php │ │ │ ├── tr.php │ │ │ ├── tr_CY.php │ │ │ ├── tr_TR.php │ │ │ ├── ts.php │ │ │ ├── ts_ZA.php │ │ │ ├── tt.php │ │ │ ├── tt_RU.php │ │ │ ├── tt_RU@iqtelif.php │ │ │ ├── twq.php │ │ │ ├── tzl.php │ │ │ ├── tzm.php │ │ │ ├── tzm_Latn.php │ │ │ ├── ug.php │ │ │ ├── ug_CN.php │ │ │ ├── uk.php │ │ │ ├── uk_UA.php │ │ │ ├── unm.php │ │ │ ├── unm_US.php │ │ │ ├── ur.php │ │ │ ├── ur_IN.php │ │ │ ├── ur_PK.php │ │ │ ├── uz.php │ │ │ ├── uz_Arab.php │ │ │ ├── uz_Cyrl.php │ │ │ ├── uz_Latn.php │ │ │ ├── uz_UZ.php │ │ │ ├── uz_UZ@cyrillic.php │ │ │ ├── vai.php │ │ │ ├── vai_Latn.php │ │ │ ├── vai_Vaii.php │ │ │ ├── ve.php │ │ │ ├── ve_ZA.php │ │ │ ├── vi.php │ │ │ ├── vi_VN.php │ │ │ ├── vo.php │ │ │ ├── vun.php │ │ │ ├── wa.php │ │ │ ├── wa_BE.php │ │ │ ├── wae.php │ │ │ ├── wae_CH.php │ │ │ ├── wal.php │ │ │ ├── wal_ET.php │ │ │ ├── wo.php │ │ │ ├── wo_SN.php │ │ │ ├── xh.php │ │ │ ├── xh_ZA.php │ │ │ ├── xog.php │ │ │ ├── yav.php │ │ │ ├── yi.php │ │ │ ├── yi_US.php │ │ │ ├── yo.php │ │ │ ├── yo_BJ.php │ │ │ ├── yo_NG.php │ │ │ ├── yue.php │ │ │ ├── yue_HK.php │ │ │ ├── yue_Hans.php │ │ │ ├── yue_Hant.php │ │ │ ├── yuw.php │ │ │ ├── yuw_PG.php │ │ │ ├── zgh.php │ │ │ ├── zh.php │ │ │ ├── zh_CN.php │ │ │ ├── zh_HK.php │ │ │ ├── zh_Hans.php │ │ │ ├── zh_Hans_HK.php │ │ │ ├── zh_Hans_MO.php │ │ │ ├── zh_Hans_SG.php │ │ │ ├── zh_Hant.php │ │ │ ├── zh_Hant_HK.php │ │ │ ├── zh_Hant_MO.php │ │ │ ├── zh_Hant_TW.php │ │ │ ├── zh_MO.php │ │ │ ├── zh_SG.php │ │ │ ├── zh_TW.php │ │ │ ├── zh_YUE.php │ │ │ ├── zu.php │ │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel/ │ │ │ └── ServiceProvider.php │ │ ├── List/ │ │ │ ├── languages.php │ │ │ └── regions.php │ │ ├── MessageFormatter/ │ │ │ └── MessageFormatterMapper.php │ │ ├── Month.php │ │ ├── PHPStan/ │ │ │ ├── MacroExtension.php │ │ │ └── MacroMethodReflection.php │ │ ├── Traits/ │ │ │ ├── Boundaries.php │ │ │ ├── Cast.php │ │ │ ├── Comparison.php │ │ │ ├── Converter.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── DeprecatedPeriodProperties.php │ │ │ ├── Difference.php │ │ │ ├── IntervalRounding.php │ │ │ ├── IntervalStep.php │ │ │ ├── LocalFactory.php │ │ │ ├── Localization.php │ │ │ ├── Macro.php │ │ │ ├── MagicParameter.php │ │ │ ├── Mixin.php │ │ │ ├── Modifiers.php │ │ │ ├── Mutability.php │ │ │ ├── ObjectInitialisation.php │ │ │ ├── Options.php │ │ │ ├── Rounding.php │ │ │ ├── Serialization.php │ │ │ ├── StaticLocalization.php │ │ │ ├── StaticOptions.php │ │ │ ├── Test.php │ │ │ ├── Timestamp.php │ │ │ ├── ToStringFormat.php │ │ │ ├── Units.php │ │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ ├── TranslatorStrongTypeInterface.php │ │ ├── Unit.php │ │ ├── WeekDay.php │ │ └── WrapperClock.php │ ├── nette/ │ │ ├── schema/ │ │ │ ├── composer.json │ │ │ ├── license.md │ │ │ ├── readme.md │ │ │ └── src/ │ │ │ └── Schema/ │ │ │ ├── Context.php │ │ │ ├── DynamicParameter.php │ │ │ ├── Elements/ │ │ │ │ ├── AnyOf.php │ │ │ │ ├── Base.php │ │ │ │ ├── Structure.php │ │ │ │ └── Type.php │ │ │ ├── Expect.php │ │ │ ├── Helpers.php │ │ │ ├── Message.php │ │ │ ├── Processor.php │ │ │ ├── Schema.php │ │ │ └── ValidationException.php │ │ └── utils/ │ │ ├── .phpstorm.meta.php │ │ ├── composer.json │ │ ├── license.md │ │ ├── readme.md │ │ └── src/ │ │ ├── HtmlStringable.php │ │ ├── Iterators/ │ │ │ ├── CachingIterator.php │ │ │ └── Mapper.php │ │ ├── SmartObject.php │ │ ├── StaticClass.php │ │ ├── Translator.php │ │ ├── Utils/ │ │ │ ├── ArrayHash.php │ │ │ ├── ArrayList.php │ │ │ ├── Arrays.php │ │ │ ├── Callback.php │ │ │ ├── DateTime.php │ │ │ ├── FileInfo.php │ │ │ ├── FileSystem.php │ │ │ ├── Finder.php │ │ │ ├── Floats.php │ │ │ ├── Helpers.php │ │ │ ├── Html.php │ │ │ ├── Image.php │ │ │ ├── ImageColor.php │ │ │ ├── ImageType.php │ │ │ ├── Iterables.php │ │ │ ├── Json.php │ │ │ ├── ObjectHelpers.php │ │ │ ├── Paginator.php │ │ │ ├── Random.php │ │ │ ├── Reflection.php │ │ │ ├── ReflectionMethod.php │ │ │ ├── Strings.php │ │ │ ├── Type.php │ │ │ ├── Validators.php │ │ │ └── exceptions.php │ │ ├── compatibility.php │ │ └── exceptions.php │ ├── nikic/ │ │ └── php-parser/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin/ │ │ │ └── php-parse │ │ ├── composer.json │ │ └── lib/ │ │ └── PhpParser/ │ │ ├── Builder/ │ │ │ ├── ClassConst.php │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ ├── Builder.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment/ │ │ │ └── Doc.php │ │ ├── Comment.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler/ │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ ├── ErrorHandler.php │ │ ├── Internal/ │ │ │ ├── DiffElem.php │ │ │ ├── Differ.php │ │ │ ├── PrintableNewAnonClassNode.php │ │ │ ├── TokenPolyfill.php │ │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer/ │ │ │ ├── Emulative.php │ │ │ └── TokenEmulator/ │ │ │ ├── AsymmetricVisibilityTokenEmulator.php │ │ │ ├── AttributeEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── PropertyTokenEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── Lexer.php │ │ ├── Modifiers.php │ │ ├── NameContext.php │ │ ├── Node/ │ │ │ ├── Arg.php │ │ │ ├── ArrayItem.php │ │ │ ├── Attribute.php │ │ │ ├── AttributeGroup.php │ │ │ ├── ClosureUse.php │ │ │ ├── ComplexType.php │ │ │ ├── Const_.php │ │ │ ├── DeclareItem.php │ │ │ ├── Expr/ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── ArrowFunction.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp/ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ └── ShiftRight.php │ │ │ │ ├── AssignOp.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp/ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ ├── Identical.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ ├── Smaller.php │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── BinaryOp.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── CallLike.php │ │ │ │ ├── Cast/ │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── Cast.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Empty_.php │ │ │ │ ├── Error.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval_.php │ │ │ │ ├── Exit_.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Include_.php │ │ │ │ ├── Instanceof_.php │ │ │ │ ├── Isset_.php │ │ │ │ ├── List_.php │ │ │ │ ├── Match_.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── New_.php │ │ │ │ ├── NullsafeMethodCall.php │ │ │ │ ├── NullsafePropertyFetch.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print_.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── Throw_.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── Yield_.php │ │ │ ├── Expr.php │ │ │ ├── FunctionLike.php │ │ │ ├── Identifier.php │ │ │ ├── InterpolatedStringPart.php │ │ │ ├── IntersectionType.php │ │ │ ├── MatchArm.php │ │ │ ├── Name/ │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── Name.php │ │ │ ├── NullableType.php │ │ │ ├── Param.php │ │ │ ├── PropertyHook.php │ │ │ ├── PropertyItem.php │ │ │ ├── Scalar/ │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── Float_.php │ │ │ │ ├── Int_.php │ │ │ │ ├── InterpolatedString.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst/ │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ ├── Property.php │ │ │ │ │ └── Trait_.php │ │ │ │ ├── MagicConst.php │ │ │ │ └── String_.php │ │ │ ├── Scalar.php │ │ │ ├── StaticVar.php │ │ │ ├── Stmt/ │ │ │ │ ├── Block.php │ │ │ │ ├── Break_.php │ │ │ │ ├── Case_.php │ │ │ │ ├── Catch_.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassLike.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Continue_.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Declare_.php │ │ │ │ ├── Do_.php │ │ │ │ ├── Echo_.php │ │ │ │ ├── ElseIf_.php │ │ │ │ ├── Else_.php │ │ │ │ ├── EnumCase.php │ │ │ │ ├── Enum_.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Finally_.php │ │ │ │ ├── For_.php │ │ │ │ ├── Foreach_.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Global_.php │ │ │ │ ├── Goto_.php │ │ │ │ ├── GroupUse.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If_.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface_.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Nop.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return_.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Static_.php │ │ │ │ ├── Switch_.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation/ │ │ │ │ │ ├── Alias.php │ │ │ │ │ └── Precedence.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ │ ├── Stmt.php │ │ │ ├── UnionType.php │ │ │ ├── UseItem.php │ │ │ ├── VarLikeIdentifier.php │ │ │ └── VariadicPlaceholder.php │ │ ├── Node.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor/ │ │ │ ├── CloningVisitor.php │ │ │ ├── CommentAnnotatingVisitor.php │ │ │ ├── FindingVisitor.php │ │ │ ├── FirstFindingVisitor.php │ │ │ ├── NameResolver.php │ │ │ ├── NodeConnectingVisitor.php │ │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser/ │ │ │ ├── Php7.php │ │ │ └── Php8.php │ │ ├── Parser.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PhpVersion.php │ │ ├── PrettyPrinter/ │ │ │ └── Standard.php │ │ ├── PrettyPrinter.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Token.php │ │ └── compatibility_tokens.php │ ├── nunomaduro/ │ │ ├── collision/ │ │ │ ├── .temp/ │ │ │ │ └── .gitkeep │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Adapters/ │ │ │ │ ├── Laravel/ │ │ │ │ │ ├── CollisionServiceProvider.php │ │ │ │ │ ├── Commands/ │ │ │ │ │ │ └── TestCommand.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ ├── Exceptions/ │ │ │ │ │ │ ├── NotSupportedYetException.php │ │ │ │ │ │ └── RequirementsException.php │ │ │ │ │ ├── IgnitionSolutionsRepository.php │ │ │ │ │ └── Inspector.php │ │ │ │ └── Phpunit/ │ │ │ │ ├── Autoload.php │ │ │ │ ├── ConfigureIO.php │ │ │ │ ├── Printers/ │ │ │ │ │ ├── DefaultPrinter.php │ │ │ │ │ └── ReportablePrinter.php │ │ │ │ ├── State.php │ │ │ │ ├── Style.php │ │ │ │ ├── Subscribers/ │ │ │ │ │ ├── EnsurePrinterIsRegisteredSubscriber.php │ │ │ │ │ └── Subscriber.php │ │ │ │ ├── Support/ │ │ │ │ │ └── ResultReflection.php │ │ │ │ └── TestResult.php │ │ │ ├── ArgumentFormatter.php │ │ │ ├── ConsoleColor.php │ │ │ ├── Contracts/ │ │ │ │ ├── Adapters/ │ │ │ │ │ └── Phpunit/ │ │ │ │ │ └── HasPrintableTestCaseName.php │ │ │ │ ├── RenderableOnCollisionEditor.php │ │ │ │ ├── RenderlessEditor.php │ │ │ │ ├── RenderlessTrace.php │ │ │ │ └── SolutionsRepository.php │ │ │ ├── Coverage.php │ │ │ ├── Exceptions/ │ │ │ │ ├── InvalidStyleException.php │ │ │ │ ├── ShouldNotHappen.php │ │ │ │ ├── TestException.php │ │ │ │ └── TestOutcome.php │ │ │ ├── Handler.php │ │ │ ├── Highlighter.php │ │ │ ├── Provider.php │ │ │ ├── SolutionsRepositories/ │ │ │ │ └── NullSolutionsRepository.php │ │ │ └── Writer.php │ │ └── termwind/ │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── playground.php │ │ └── src/ │ │ ├── Actions/ │ │ │ └── StyleToMethod.php │ │ ├── Components/ │ │ │ ├── Anchor.php │ │ │ ├── BreakLine.php │ │ │ ├── Dd.php │ │ │ ├── Div.php │ │ │ ├── Dl.php │ │ │ ├── Dt.php │ │ │ ├── Element.php │ │ │ ├── Hr.php │ │ │ ├── Li.php │ │ │ ├── Ol.php │ │ │ ├── Paragraph.php │ │ │ ├── Raw.php │ │ │ ├── Span.php │ │ │ └── Ul.php │ │ ├── Enums/ │ │ │ └── Color.php │ │ ├── Exceptions/ │ │ │ ├── ColorNotFound.php │ │ │ ├── InvalidChild.php │ │ │ ├── InvalidColor.php │ │ │ ├── InvalidStyle.php │ │ │ └── StyleNotFound.php │ │ ├── Functions.php │ │ ├── Helpers/ │ │ │ └── QuestionHelper.php │ │ ├── Html/ │ │ │ ├── CodeRenderer.php │ │ │ ├── InheritStyles.php │ │ │ ├── PreRenderer.php │ │ │ └── TableRenderer.php │ │ ├── HtmlRenderer.php │ │ ├── Laravel/ │ │ │ └── TermwindServiceProvider.php │ │ ├── Question.php │ │ ├── Repositories/ │ │ │ └── Styles.php │ │ ├── Terminal.php │ │ ├── Termwind.php │ │ └── ValueObjects/ │ │ ├── Node.php │ │ ├── Style.php │ │ └── Styles.php │ ├── phar-io/ │ │ ├── manifest/ │ │ │ ├── .github/ │ │ │ │ ├── FUNDING.yml │ │ │ │ └── workflows/ │ │ │ │ └── ci.yml │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── manifest.xsd │ │ │ ├── src/ │ │ │ │ ├── ManifestDocumentMapper.php │ │ │ │ ├── ManifestLoader.php │ │ │ │ ├── ManifestSerializer.php │ │ │ │ ├── exceptions/ │ │ │ │ │ ├── ElementCollectionException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidApplicationNameException.php │ │ │ │ │ ├── InvalidEmailException.php │ │ │ │ │ ├── InvalidUrlException.php │ │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ │ ├── ManifestElementException.php │ │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ │ └── NoEmailAddressException.php │ │ │ │ ├── values/ │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── ApplicationName.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── AuthorCollection.php │ │ │ │ │ ├── AuthorCollectionIterator.php │ │ │ │ │ ├── BundledComponent.php │ │ │ │ │ ├── BundledComponentCollection.php │ │ │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ │ │ ├── CopyrightInformation.php │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Extension.php │ │ │ │ │ ├── Library.php │ │ │ │ │ ├── License.php │ │ │ │ │ ├── Manifest.php │ │ │ │ │ ├── PhpExtensionRequirement.php │ │ │ │ │ ├── PhpVersionRequirement.php │ │ │ │ │ ├── Requirement.php │ │ │ │ │ ├── RequirementCollection.php │ │ │ │ │ ├── RequirementCollectionIterator.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Url.php │ │ │ │ └── xml/ │ │ │ │ ├── AuthorElement.php │ │ │ │ ├── AuthorElementCollection.php │ │ │ │ ├── BundlesElement.php │ │ │ │ ├── ComponentElement.php │ │ │ │ ├── ComponentElementCollection.php │ │ │ │ ├── ContainsElement.php │ │ │ │ ├── CopyrightElement.php │ │ │ │ ├── ElementCollection.php │ │ │ │ ├── ExtElement.php │ │ │ │ ├── ExtElementCollection.php │ │ │ │ ├── ExtensionElement.php │ │ │ │ ├── LicenseElement.php │ │ │ │ ├── ManifestDocument.php │ │ │ │ ├── ManifestElement.php │ │ │ │ ├── PhpElement.php │ │ │ │ └── RequiresElement.php │ │ │ └── tools/ │ │ │ └── php-cs-fixer.d/ │ │ │ ├── PhpdocSingleLineVarFixer.php │ │ │ └── header.txt │ │ └── version/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints/ │ │ │ ├── AbstractVersionConstraint.php │ │ │ ├── AndVersionConstraintGroup.php │ │ │ ├── AnyVersionConstraint.php │ │ │ ├── ExactVersionConstraint.php │ │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ │ ├── OrVersionConstraintGroup.php │ │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ │ ├── SpecificMajorVersionConstraint.php │ │ │ └── VersionConstraint.php │ │ └── exceptions/ │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php │ ├── php-http/ │ │ ├── cache-plugin/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpstan.neon.dist │ │ │ └── src/ │ │ │ ├── Cache/ │ │ │ │ ├── Generator/ │ │ │ │ │ ├── CacheKeyGenerator.php │ │ │ │ │ ├── HeaderCacheKeyGenerator.php │ │ │ │ │ └── SimpleGenerator.php │ │ │ │ └── Listener/ │ │ │ │ ├── AddHeaderCacheListener.php │ │ │ │ └── CacheListener.php │ │ │ ├── CachePlugin.php │ │ │ └── Exception/ │ │ │ └── RewindStreamException.php │ │ ├── client-common/ │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── .php_cs.dist │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── BatchClient.php │ │ │ ├── BatchClientInterface.php │ │ │ ├── BatchResult.php │ │ │ ├── Deferred.php │ │ │ ├── EmulatedHttpAsyncClient.php │ │ │ ├── EmulatedHttpClient.php │ │ │ ├── Exception/ │ │ │ │ ├── BatchException.php │ │ │ │ ├── CircularRedirectionException.php │ │ │ │ ├── ClientErrorException.php │ │ │ │ ├── HttpClientNoMatchException.php │ │ │ │ ├── HttpClientNotFoundException.php │ │ │ │ ├── LoopException.php │ │ │ │ ├── MultipleRedirectionException.php │ │ │ │ └── ServerErrorException.php │ │ │ ├── FlexibleHttpClient.php │ │ │ ├── HttpAsyncClientDecorator.php │ │ │ ├── HttpAsyncClientEmulator.php │ │ │ ├── HttpClientDecorator.php │ │ │ ├── HttpClientEmulator.php │ │ │ ├── HttpClientPool/ │ │ │ │ ├── HttpClientPool.php │ │ │ │ ├── HttpClientPoolItem.php │ │ │ │ ├── LeastUsedClientPool.php │ │ │ │ ├── RandomClientPool.php │ │ │ │ └── RoundRobinClientPool.php │ │ │ ├── HttpClientPool.php │ │ │ ├── HttpClientRouter.php │ │ │ ├── HttpClientRouterInterface.php │ │ │ ├── HttpMethodsClient.php │ │ │ ├── HttpMethodsClientInterface.php │ │ │ ├── Plugin/ │ │ │ │ ├── AddHostPlugin.php │ │ │ │ ├── AddPathPlugin.php │ │ │ │ ├── AuthenticationPlugin.php │ │ │ │ ├── BaseUriPlugin.php │ │ │ │ ├── ContentLengthPlugin.php │ │ │ │ ├── ContentTypePlugin.php │ │ │ │ ├── CookiePlugin.php │ │ │ │ ├── DecoderPlugin.php │ │ │ │ ├── ErrorPlugin.php │ │ │ │ ├── HeaderAppendPlugin.php │ │ │ │ ├── HeaderDefaultsPlugin.php │ │ │ │ ├── HeaderRemovePlugin.php │ │ │ │ ├── HeaderSetPlugin.php │ │ │ │ ├── HistoryPlugin.php │ │ │ │ ├── Journal.php │ │ │ │ ├── QueryDefaultsPlugin.php │ │ │ │ ├── RedirectPlugin.php │ │ │ │ ├── RequestMatcherPlugin.php │ │ │ │ ├── RequestSeekableBodyPlugin.php │ │ │ │ ├── ResponseSeekableBodyPlugin.php │ │ │ │ ├── RetryPlugin.php │ │ │ │ ├── SeekableBodyPlugin.php │ │ │ │ └── VersionBridgePlugin.php │ │ │ ├── Plugin.php │ │ │ ├── PluginChain.php │ │ │ ├── PluginClient.php │ │ │ ├── PluginClientBuilder.php │ │ │ ├── PluginClientFactory.php │ │ │ └── VersionBridgeClient.php │ │ ├── discovery/ │ │ │ ├── .php-cs-fixer.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ClassDiscovery.php │ │ │ ├── Composer/ │ │ │ │ └── Plugin.php │ │ │ ├── Exception/ │ │ │ │ ├── ClassInstantiationFailedException.php │ │ │ │ ├── DiscoveryFailedException.php │ │ │ │ ├── NoCandidateFoundException.php │ │ │ │ ├── NotFoundException.php │ │ │ │ ├── PuliUnavailableException.php │ │ │ │ └── StrategyUnavailableException.php │ │ │ ├── Exception.php │ │ │ ├── HttpAsyncClientDiscovery.php │ │ │ ├── HttpClientDiscovery.php │ │ │ ├── MessageFactoryDiscovery.php │ │ │ ├── NotFoundException.php │ │ │ ├── Psr17Factory.php │ │ │ ├── Psr17FactoryDiscovery.php │ │ │ ├── Psr18Client.php │ │ │ ├── Psr18ClientDiscovery.php │ │ │ ├── Strategy/ │ │ │ │ ├── CommonClassesStrategy.php │ │ │ │ ├── CommonPsr17ClassesStrategy.php │ │ │ │ ├── DiscoveryStrategy.php │ │ │ │ ├── MockClientStrategy.php │ │ │ │ └── PuliBetaStrategy.php │ │ │ ├── StreamFactoryDiscovery.php │ │ │ └── UriFactoryDiscovery.php │ │ ├── httplug/ │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src/ │ │ │ ├── Exception/ │ │ │ │ ├── HttpException.php │ │ │ │ ├── NetworkException.php │ │ │ │ ├── RequestAwareTrait.php │ │ │ │ ├── RequestException.php │ │ │ │ └── TransferException.php │ │ │ ├── Exception.php │ │ │ ├── HttpAsyncClient.php │ │ │ ├── HttpClient.php │ │ │ └── Promise/ │ │ │ ├── HttpFulfilledPromise.php │ │ │ └── HttpRejectedPromise.php │ │ ├── message/ │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── apigen.neon │ │ │ ├── composer.json │ │ │ ├── puli.json │ │ │ └── src/ │ │ │ ├── Authentication/ │ │ │ │ ├── AutoBasicAuth.php │ │ │ │ ├── BasicAuth.php │ │ │ │ ├── Bearer.php │ │ │ │ ├── Chain.php │ │ │ │ ├── Header.php │ │ │ │ ├── Matching.php │ │ │ │ ├── QueryParam.php │ │ │ │ ├── RequestConditional.php │ │ │ │ └── Wsse.php │ │ │ ├── Authentication.php │ │ │ ├── Builder/ │ │ │ │ └── ResponseBuilder.php │ │ │ ├── Cookie.php │ │ │ ├── CookieJar.php │ │ │ ├── CookieUtil.php │ │ │ ├── Decorator/ │ │ │ │ ├── MessageDecorator.php │ │ │ │ ├── RequestDecorator.php │ │ │ │ ├── ResponseDecorator.php │ │ │ │ └── StreamDecorator.php │ │ │ ├── Encoding/ │ │ │ │ ├── ChunkStream.php │ │ │ │ ├── CompressStream.php │ │ │ │ ├── DechunkStream.php │ │ │ │ ├── DecompressStream.php │ │ │ │ ├── DeflateStream.php │ │ │ │ ├── Filter/ │ │ │ │ │ └── Chunk.php │ │ │ │ ├── FilteredStream.php │ │ │ │ ├── GzipDecodeStream.php │ │ │ │ ├── GzipEncodeStream.php │ │ │ │ └── InflateStream.php │ │ │ ├── Exception/ │ │ │ │ └── UnexpectedValueException.php │ │ │ ├── Exception.php │ │ │ ├── Formatter/ │ │ │ │ ├── CurlCommandFormatter.php │ │ │ │ ├── FullHttpMessageFormatter.php │ │ │ │ └── SimpleFormatter.php │ │ │ ├── Formatter.php │ │ │ ├── MessageFactory/ │ │ │ │ ├── DiactorosMessageFactory.php │ │ │ │ ├── GuzzleMessageFactory.php │ │ │ │ └── SlimMessageFactory.php │ │ │ ├── RequestMatcher/ │ │ │ │ ├── CallbackRequestMatcher.php │ │ │ │ ├── RegexRequestMatcher.php │ │ │ │ └── RequestMatcher.php │ │ │ ├── RequestMatcher.php │ │ │ ├── Stream/ │ │ │ │ └── BufferedStream.php │ │ │ ├── StreamFactory/ │ │ │ │ ├── DiactorosStreamFactory.php │ │ │ │ ├── GuzzleStreamFactory.php │ │ │ │ └── SlimStreamFactory.php │ │ │ ├── UriFactory/ │ │ │ │ ├── DiactorosUriFactory.php │ │ │ │ ├── GuzzleUriFactory.php │ │ │ │ └── SlimUriFactory.php │ │ │ └── filters.php │ │ ├── multipart-stream-builder/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ApacheMimetypeHelper.php │ │ │ ├── CustomMimetypeHelper.php │ │ │ ├── MimetypeHelper.php │ │ │ └── MultipartStreamBuilder.php │ │ └── promise/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ └── src/ │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ └── RejectedPromise.php │ ├── phpoption/ │ │ └── phpoption/ │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ └── PhpOption/ │ │ ├── LazyOption.php │ │ ├── None.php │ │ ├── Option.php │ │ └── Some.php │ ├── phpunit/ │ │ ├── php-code-coverage/ │ │ │ ├── ChangeLog-10.1.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── CodeCoverage.php │ │ │ ├── Data/ │ │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ │ └── RawCodeCoverageData.php │ │ │ ├── Driver/ │ │ │ │ ├── Driver.php │ │ │ │ ├── PcovDriver.php │ │ │ │ ├── Selector.php │ │ │ │ └── XdebugDriver.php │ │ │ ├── Exception/ │ │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FileCouldNotBeWrittenException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ │ ├── ParserException.php │ │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ │ ├── PcovNotAvailableException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ │ ├── TestIdMissingException.php │ │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ │ ├── WriteOperationFailedException.php │ │ │ │ ├── XdebugNotAvailableException.php │ │ │ │ ├── XdebugNotEnabledException.php │ │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node/ │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── CrapIndex.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report/ │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html/ │ │ │ │ │ ├── Colors.php │ │ │ │ │ ├── CustomCssFile.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer/ │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template/ │ │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ │ ├── css/ │ │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ │ ├── octicons.css │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ │ ├── js/ │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ ├── line.html.dist │ │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ │ └── paths.html.dist │ │ │ │ │ └── Renderer.php │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ ├── Thresholds.php │ │ │ │ └── Xml/ │ │ │ │ ├── BuildInformation.php │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ │ ├── StaticAnalysis/ │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CachingFileAnalyser.php │ │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ │ ├── FileAnalyser.php │ │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── TestSize/ │ │ │ │ ├── Known.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── Small.php │ │ │ │ ├── TestSize.php │ │ │ │ └── Unknown.php │ │ │ ├── TestStatus/ │ │ │ │ ├── Failure.php │ │ │ │ ├── Known.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestStatus.php │ │ │ │ └── Unknown.php │ │ │ ├── Util/ │ │ │ │ ├── Filesystem.php │ │ │ │ └── Percentage.php │ │ │ └── Version.php │ │ ├── php-file-iterator/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ExcludeIterator.php │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ │ ├── php-invoker/ │ │ │ ├── .psalm/ │ │ │ │ ├── baseline.xml │ │ │ │ └── config.xml │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Invoker.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ │ ├── php-text-template/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Template.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── php-timer/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ │ └── phpunit/ │ │ ├── ChangeLog-10.5.md │ │ ├── DEPRECATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema/ │ │ │ ├── 10.0.xsd │ │ │ ├── 10.1.xsd │ │ │ ├── 10.2.xsd │ │ │ ├── 10.3.xsd │ │ │ ├── 10.4.xsd │ │ │ ├── 8.5.xsd │ │ │ ├── 9.0.xsd │ │ │ ├── 9.1.xsd │ │ │ ├── 9.2.xsd │ │ │ ├── 9.3.xsd │ │ │ ├── 9.4.xsd │ │ │ └── 9.5.xsd │ │ └── src/ │ │ ├── Event/ │ │ │ ├── Dispatcher/ │ │ │ │ ├── CollectingDispatcher.php │ │ │ │ ├── DeferringDispatcher.php │ │ │ │ ├── DirectDispatcher.php │ │ │ │ ├── Dispatcher.php │ │ │ │ └── SubscribableDispatcher.php │ │ │ ├── Emitter/ │ │ │ │ ├── DispatchingEmitter.php │ │ │ │ └── Emitter.php │ │ │ ├── Events/ │ │ │ │ ├── Application/ │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── Started.php │ │ │ │ │ └── StartedSubscriber.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventCollection.php │ │ │ │ ├── EventCollectionIterator.php │ │ │ │ ├── Test/ │ │ │ │ │ ├── Assertion/ │ │ │ │ │ │ ├── AssertionFailed.php │ │ │ │ │ │ ├── AssertionFailedSubscriber.php │ │ │ │ │ │ ├── AssertionSucceeded.php │ │ │ │ │ │ └── AssertionSucceededSubscriber.php │ │ │ │ │ ├── ComparatorRegistered.php │ │ │ │ │ ├── ComparatorRegisteredSubscriber.php │ │ │ │ │ ├── HookMethod/ │ │ │ │ │ │ ├── AfterLastTestMethodCalled.php │ │ │ │ │ │ ├── AfterLastTestMethodCalledSubscriber.php │ │ │ │ │ │ ├── AfterLastTestMethodErrored.php │ │ │ │ │ │ ├── AfterLastTestMethodErroredSubscriber.php │ │ │ │ │ │ ├── AfterLastTestMethodFinished.php │ │ │ │ │ │ ├── AfterLastTestMethodFinishedSubscriber.php │ │ │ │ │ │ ├── AfterTestMethodCalled.php │ │ │ │ │ │ ├── AfterTestMethodCalledSubscriber.php │ │ │ │ │ │ ├── AfterTestMethodErrored.php │ │ │ │ │ │ ├── AfterTestMethodErroredSubscriber.php │ │ │ │ │ │ ├── AfterTestMethodFinished.php │ │ │ │ │ │ ├── AfterTestMethodFinishedSubscriber.php │ │ │ │ │ │ ├── BeforeFirstTestMethodCalled.php │ │ │ │ │ │ ├── BeforeFirstTestMethodCalledSubscriber.php │ │ │ │ │ │ ├── BeforeFirstTestMethodErrored.php │ │ │ │ │ │ ├── BeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ │ ├── BeforeFirstTestMethodFinished.php │ │ │ │ │ │ ├── BeforeFirstTestMethodFinishedSubscriber.php │ │ │ │ │ │ ├── BeforeTestMethodCalled.php │ │ │ │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ │ │ │ ├── BeforeTestMethodErrored.php │ │ │ │ │ │ ├── BeforeTestMethodErroredSubscriber.php │ │ │ │ │ │ ├── BeforeTestMethodFinished.php │ │ │ │ │ │ ├── BeforeTestMethodFinishedSubscriber.php │ │ │ │ │ │ ├── PostConditionCalled.php │ │ │ │ │ │ ├── PostConditionCalledSubscriber.php │ │ │ │ │ │ ├── PostConditionErrored.php │ │ │ │ │ │ ├── PostConditionErroredSubscriber.php │ │ │ │ │ │ ├── PostConditionFinished.php │ │ │ │ │ │ ├── PostConditionFinishedSubscriber.php │ │ │ │ │ │ ├── PreConditionCalled.php │ │ │ │ │ │ ├── PreConditionCalledSubscriber.php │ │ │ │ │ │ ├── PreConditionErrored.php │ │ │ │ │ │ ├── PreConditionErroredSubscriber.php │ │ │ │ │ │ ├── PreConditionFinished.php │ │ │ │ │ │ └── PreConditionFinishedSubscriber.php │ │ │ │ │ ├── Issue/ │ │ │ │ │ │ ├── ConsideredRisky.php │ │ │ │ │ │ ├── ConsideredRiskySubscriber.php │ │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ │ ├── ErrorTriggered.php │ │ │ │ │ │ ├── ErrorTriggeredSubscriber.php │ │ │ │ │ │ ├── NoticeTriggered.php │ │ │ │ │ │ ├── NoticeTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpDeprecationTriggered.php │ │ │ │ │ │ ├── PhpDeprecationTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpNoticeTriggered.php │ │ │ │ │ │ ├── PhpNoticeTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpWarningTriggered.php │ │ │ │ │ │ ├── PhpWarningTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpunitDeprecationTriggered.php │ │ │ │ │ │ ├── PhpunitDeprecationTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpunitErrorTriggered.php │ │ │ │ │ │ ├── PhpunitErrorTriggeredSubscriber.php │ │ │ │ │ │ ├── PhpunitWarningTriggered.php │ │ │ │ │ │ ├── PhpunitWarningTriggeredSubscriber.php │ │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ │ ├── Lifecycle/ │ │ │ │ │ │ ├── DataProviderMethodCalled.php │ │ │ │ │ │ ├── DataProviderMethodCalledSubscriber.php │ │ │ │ │ │ ├── DataProviderMethodFinished.php │ │ │ │ │ │ ├── DataProviderMethodFinishedSubscriber.php │ │ │ │ │ │ ├── Finished.php │ │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ │ ├── PreparationFailed.php │ │ │ │ │ │ ├── PreparationFailedSubscriber.php │ │ │ │ │ │ ├── PreparationStarted.php │ │ │ │ │ │ ├── PreparationStartedSubscriber.php │ │ │ │ │ │ ├── Prepared.php │ │ │ │ │ │ └── PreparedSubscriber.php │ │ │ │ │ ├── Outcome/ │ │ │ │ │ │ ├── Errored.php │ │ │ │ │ │ ├── ErroredSubscriber.php │ │ │ │ │ │ ├── Failed.php │ │ │ │ │ │ ├── FailedSubscriber.php │ │ │ │ │ │ ├── MarkedIncomplete.php │ │ │ │ │ │ ├── MarkedIncompleteSubscriber.php │ │ │ │ │ │ ├── Passed.php │ │ │ │ │ │ ├── PassedSubscriber.php │ │ │ │ │ │ ├── Skipped.php │ │ │ │ │ │ └── SkippedSubscriber.php │ │ │ │ │ ├── PrintedUnexpectedOutput.php │ │ │ │ │ ├── PrintedUnexpectedOutputSubscriber.php │ │ │ │ │ └── TestDouble/ │ │ │ │ │ ├── MockObjectCreated.php │ │ │ │ │ ├── MockObjectCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForAbstractClassCreated.php │ │ │ │ │ ├── MockObjectForAbstractClassCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreated.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForTraitCreated.php │ │ │ │ │ ├── MockObjectForTraitCreatedSubscriber.php │ │ │ │ │ ├── MockObjectFromWsdlCreated.php │ │ │ │ │ ├── MockObjectFromWsdlCreatedSubscriber.php │ │ │ │ │ ├── PartialMockObjectCreated.php │ │ │ │ │ ├── PartialMockObjectCreatedSubscriber.php │ │ │ │ │ ├── TestProxyCreated.php │ │ │ │ │ ├── TestProxyCreatedSubscriber.php │ │ │ │ │ ├── TestStubCreated.php │ │ │ │ │ ├── TestStubCreatedSubscriber.php │ │ │ │ │ ├── TestStubForIntersectionOfInterfacesCreated.php │ │ │ │ │ └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ ├── TestRunner/ │ │ │ │ │ ├── BootstrapFinished.php │ │ │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ │ │ ├── Configured.php │ │ │ │ │ ├── ConfiguredSubscriber.php │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ ├── EventFacadeSealed.php │ │ │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ │ │ ├── ExecutionAborted.php │ │ │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ │ │ ├── ExecutionFinished.php │ │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ │ ├── ExecutionStarted.php │ │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ │ ├── ExtensionBootstrapped.php │ │ │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── GarbageCollectionDisabled.php │ │ │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ │ │ ├── GarbageCollectionEnabled.php │ │ │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ │ │ ├── GarbageCollectionTriggered.php │ │ │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ │ │ ├── Started.php │ │ │ │ │ ├── StartedSubscriber.php │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ └── TestSuite/ │ │ │ │ ├── Filtered.php │ │ │ │ ├── FilteredSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Loaded.php │ │ │ │ ├── LoadedSubscriber.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── SkippedSubscriber.php │ │ │ │ ├── Sorted.php │ │ │ │ ├── SortedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ │ ├── Exception/ │ │ │ │ ├── EventAlreadyAssignedException.php │ │ │ │ ├── EventFacadeIsSealedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidEventException.php │ │ │ │ ├── InvalidSubscriberException.php │ │ │ │ ├── MapError.php │ │ │ │ ├── MoreThanOneDataSetFromDataProviderException.php │ │ │ │ ├── NoComparisonFailureException.php │ │ │ │ ├── NoDataSetFromDataProviderException.php │ │ │ │ ├── NoPreviousThrowableException.php │ │ │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ │ │ ├── UnknownEventException.php │ │ │ │ ├── UnknownEventTypeException.php │ │ │ │ ├── UnknownSubscriberException.php │ │ │ │ └── UnknownSubscriberTypeException.php │ │ │ ├── Facade.php │ │ │ ├── Subscriber.php │ │ │ ├── Tracer.php │ │ │ ├── TypeMap.php │ │ │ └── Value/ │ │ │ ├── ClassMethod.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── ComparisonFailureBuilder.php │ │ │ ├── Runtime/ │ │ │ │ ├── OperatingSystem.php │ │ │ │ ├── PHP.php │ │ │ │ ├── PHPUnit.php │ │ │ │ └── Runtime.php │ │ │ ├── Telemetry/ │ │ │ │ ├── Duration.php │ │ │ │ ├── GarbageCollectorStatus.php │ │ │ │ ├── GarbageCollectorStatusProvider.php │ │ │ │ ├── HRTime.php │ │ │ │ ├── Info.php │ │ │ │ ├── MemoryMeter.php │ │ │ │ ├── MemoryUsage.php │ │ │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ │ │ ├── Snapshot.php │ │ │ │ ├── StopWatch.php │ │ │ │ ├── System.php │ │ │ │ ├── SystemMemoryMeter.php │ │ │ │ ├── SystemStopWatch.php │ │ │ │ └── SystemStopWatchWithOffset.php │ │ │ ├── Test/ │ │ │ │ ├── Phpt.php │ │ │ │ ├── Test.php │ │ │ │ ├── TestCollection.php │ │ │ │ ├── TestCollectionIterator.php │ │ │ │ ├── TestData/ │ │ │ │ │ ├── DataFromDataProvider.php │ │ │ │ │ ├── DataFromTestDependency.php │ │ │ │ │ ├── TestData.php │ │ │ │ │ ├── TestDataCollection.php │ │ │ │ │ └── TestDataCollectionIterator.php │ │ │ │ ├── TestDox.php │ │ │ │ ├── TestDoxBuilder.php │ │ │ │ ├── TestMethod.php │ │ │ │ └── TestMethodBuilder.php │ │ │ ├── TestSuite/ │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteBuilder.php │ │ │ │ ├── TestSuiteForTestClass.php │ │ │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ │ │ └── TestSuiteWithName.php │ │ │ ├── Throwable.php │ │ │ └── ThrowableBuilder.php │ │ ├── Exception.php │ │ ├── Framework/ │ │ │ ├── Assert/ │ │ │ │ └── Functions.php │ │ │ ├── Assert.php │ │ │ ├── Attributes/ │ │ │ │ ├── After.php │ │ │ │ ├── AfterClass.php │ │ │ │ ├── BackupGlobals.php │ │ │ │ ├── BackupStaticProperties.php │ │ │ │ ├── Before.php │ │ │ │ ├── BeforeClass.php │ │ │ │ ├── CodeCoverageIgnore.php │ │ │ │ ├── CoversClass.php │ │ │ │ ├── CoversFunction.php │ │ │ │ ├── CoversNothing.php │ │ │ │ ├── DataProvider.php │ │ │ │ ├── DataProviderExternal.php │ │ │ │ ├── Depends.php │ │ │ │ ├── DependsExternal.php │ │ │ │ ├── DependsExternalUsingDeepClone.php │ │ │ │ ├── DependsExternalUsingShallowClone.php │ │ │ │ ├── DependsOnClass.php │ │ │ │ ├── DependsOnClassUsingDeepClone.php │ │ │ │ ├── DependsOnClassUsingShallowClone.php │ │ │ │ ├── DependsUsingDeepClone.php │ │ │ │ ├── DependsUsingShallowClone.php │ │ │ │ ├── DoesNotPerformAssertions.php │ │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ │ ├── Group.php │ │ │ │ ├── IgnoreClassForCodeCoverage.php │ │ │ │ ├── IgnoreDeprecations.php │ │ │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ │ │ ├── IgnoreMethodForCodeCoverage.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── PostCondition.php │ │ │ │ ├── PreCondition.php │ │ │ │ ├── PreserveGlobalState.php │ │ │ │ ├── RequiresFunction.php │ │ │ │ ├── RequiresMethod.php │ │ │ │ ├── RequiresOperatingSystem.php │ │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ │ ├── RequiresPhp.php │ │ │ │ ├── RequiresPhpExtension.php │ │ │ │ ├── RequiresPhpunit.php │ │ │ │ ├── RequiresSetting.php │ │ │ │ ├── RunClassInSeparateProcess.php │ │ │ │ ├── RunInSeparateProcess.php │ │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ │ ├── Small.php │ │ │ │ ├── Test.php │ │ │ │ ├── TestDox.php │ │ │ │ ├── TestWith.php │ │ │ │ ├── TestWithJson.php │ │ │ │ ├── Ticket.php │ │ │ │ ├── UsesClass.php │ │ │ │ ├── UsesFunction.php │ │ │ │ └── WithoutErrorHandler.php │ │ │ ├── Constraint/ │ │ │ │ ├── Boolean/ │ │ │ │ │ ├── IsFalse.php │ │ │ │ │ └── IsTrue.php │ │ │ │ ├── Callback.php │ │ │ │ ├── Cardinality/ │ │ │ │ │ ├── Count.php │ │ │ │ │ ├── GreaterThan.php │ │ │ │ │ ├── IsEmpty.php │ │ │ │ │ ├── LessThan.php │ │ │ │ │ └── SameSize.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Equality/ │ │ │ │ │ ├── IsEqual.php │ │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ │ └── IsEqualWithDelta.php │ │ │ │ ├── Exception/ │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── ExceptionCode.php │ │ │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ │ │ ├── Filesystem/ │ │ │ │ │ ├── DirectoryExists.php │ │ │ │ │ ├── FileExists.php │ │ │ │ │ ├── IsReadable.php │ │ │ │ │ └── IsWritable.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── Math/ │ │ │ │ │ ├── IsFinite.php │ │ │ │ │ ├── IsInfinite.php │ │ │ │ │ └── IsNan.php │ │ │ │ ├── Object/ │ │ │ │ │ ├── ObjectEquals.php │ │ │ │ │ └── ObjectHasProperty.php │ │ │ │ ├── Operator/ │ │ │ │ │ ├── BinaryOperator.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalNot.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Operator.php │ │ │ │ │ └── UnaryOperator.php │ │ │ │ ├── String/ │ │ │ │ │ ├── IsJson.php │ │ │ │ │ ├── RegularExpression.php │ │ │ │ │ ├── StringContains.php │ │ │ │ │ ├── StringEndsWith.php │ │ │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ │ └── StringStartsWith.php │ │ │ │ ├── Traversable/ │ │ │ │ │ ├── ArrayHasKey.php │ │ │ │ │ ├── IsList.php │ │ │ │ │ ├── TraversableContains.php │ │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ │ └── TraversableContainsOnly.php │ │ │ │ └── Type/ │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ │ ├── DataProviderTestSuite.php │ │ │ ├── Exception/ │ │ │ │ ├── AssertionFailedError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── EmptyStringException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExpectationFailedException.php │ │ │ │ ├── GeneratorNotSupportedException.php │ │ │ │ ├── Incomplete/ │ │ │ │ │ ├── IncompleteTest.php │ │ │ │ │ └── IncompleteTestError.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── InvalidDataProviderException.php │ │ │ │ ├── InvalidDependencyException.php │ │ │ │ ├── NoChildTestSuiteException.php │ │ │ │ ├── ObjectEquals/ │ │ │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ │ │ ├── PHPTAssertionFailedError.php │ │ │ │ ├── ProcessIsolationException.php │ │ │ │ ├── Skipped/ │ │ │ │ │ ├── SkippedTest.php │ │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ │ └── SkippedWithMessageException.php │ │ │ │ ├── UnknownClassOrInterfaceException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── ExecutionOrderDependency.php │ │ │ ├── MockObject/ │ │ │ │ ├── ConfigurableMethod.php │ │ │ │ ├── Exception/ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ │ ├── NeverReturningMethodException.php │ │ │ │ │ ├── NoMoreReturnValuesConfiguredException.php │ │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator/ │ │ │ │ │ ├── Exception/ │ │ │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ │ │ ├── NameAlreadyInUseException.php │ │ │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ │ │ ├── ReflectionException.php │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ │ │ ├── UnknownClassException.php │ │ │ │ │ │ ├── UnknownTraitException.php │ │ │ │ │ │ └── UnknownTypeException.php │ │ │ │ │ ├── Generator.php │ │ │ │ │ ├── MockClass.php │ │ │ │ │ ├── MockMethod.php │ │ │ │ │ ├── MockMethodSet.php │ │ │ │ │ ├── MockTrait.php │ │ │ │ │ ├── MockType.php │ │ │ │ │ ├── TemplateLoader.php │ │ │ │ │ └── templates/ │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ ├── doubled_method.tpl │ │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ │ ├── intersection.tpl │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ ├── test_double_class.tpl │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ └── wsdl_method.tpl │ │ │ │ ├── MockBuilder.php │ │ │ │ └── Runtime/ │ │ │ │ ├── Api/ │ │ │ │ │ ├── DoubledCloneMethod.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── MockObjectApi.php │ │ │ │ │ ├── ProxiedCloneMethod.php │ │ │ │ │ └── StubApi.php │ │ │ │ ├── Builder/ │ │ │ │ │ ├── Identity.php │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ ├── InvocationStubber.php │ │ │ │ │ ├── MethodNameMatch.php │ │ │ │ │ ├── ParametersMatch.php │ │ │ │ │ └── Stub.php │ │ │ │ ├── Interface/ │ │ │ │ │ ├── MockObject.php │ │ │ │ │ ├── MockObjectInternal.php │ │ │ │ │ ├── Stub.php │ │ │ │ │ └── StubInternal.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvocationHandler.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ ├── ReturnValueGenerator.php │ │ │ │ ├── Rule/ │ │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ │ ├── AnyParameters.php │ │ │ │ │ ├── InvocationOrder.php │ │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ │ ├── InvokedCount.php │ │ │ │ │ ├── MethodName.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ └── ParametersRule.php │ │ │ │ └── Stub/ │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ │ ├── Reorderable.php │ │ │ ├── SelfDescribing.php │ │ │ ├── Test.php │ │ │ ├── TestBuilder.php │ │ │ ├── TestCase.php │ │ │ ├── TestRunner.php │ │ │ ├── TestSize/ │ │ │ │ ├── Known.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── Small.php │ │ │ │ ├── TestSize.php │ │ │ │ └── Unknown.php │ │ │ ├── TestStatus/ │ │ │ │ ├── Deprecation.php │ │ │ │ ├── Error.php │ │ │ │ ├── Failure.php │ │ │ │ ├── Incomplete.php │ │ │ │ ├── Known.php │ │ │ │ ├── Notice.php │ │ │ │ ├── Risky.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestStatus.php │ │ │ │ ├── Unknown.php │ │ │ │ └── Warning.php │ │ │ ├── TestSuite.php │ │ │ └── TestSuiteIterator.php │ │ ├── Logging/ │ │ │ ├── EventLogger.php │ │ │ ├── JUnit/ │ │ │ │ ├── JunitXmlLogger.php │ │ │ │ └── Subscriber/ │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparationFailedSubscriber.php │ │ │ │ ├── TestPreparationStartedSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestPrintedUnexpectedOutputSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ ├── TeamCity/ │ │ │ │ ├── Subscriber/ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteBeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ │ └── TeamCityLogger.php │ │ │ └── TestDox/ │ │ │ ├── HtmlRenderer.php │ │ │ ├── NamePrettifier.php │ │ │ ├── PlainTextRenderer.php │ │ │ └── TestResult/ │ │ │ ├── Subscriber/ │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPassedSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ ├── TestResult.php │ │ │ ├── TestResultCollection.php │ │ │ ├── TestResultCollectionIterator.php │ │ │ └── TestResultCollector.php │ │ ├── Metadata/ │ │ │ ├── After.php │ │ │ ├── AfterClass.php │ │ │ ├── Api/ │ │ │ │ ├── CodeCoverage.php │ │ │ │ ├── DataProvider.php │ │ │ │ ├── Dependencies.php │ │ │ │ ├── Groups.php │ │ │ │ ├── HookMethods.php │ │ │ │ └── Requirements.php │ │ │ ├── BackupGlobals.php │ │ │ ├── BackupStaticProperties.php │ │ │ ├── Before.php │ │ │ ├── BeforeClass.php │ │ │ ├── Covers.php │ │ │ ├── CoversClass.php │ │ │ ├── CoversDefaultClass.php │ │ │ ├── CoversFunction.php │ │ │ ├── CoversNothing.php │ │ │ ├── DataProvider.php │ │ │ ├── DependsOnClass.php │ │ │ ├── DependsOnMethod.php │ │ │ ├── DoesNotPerformAssertions.php │ │ │ ├── Exception/ │ │ │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidAttributeException.php │ │ │ │ ├── InvalidVersionRequirementException.php │ │ │ │ ├── NoVersionRequirementException.php │ │ │ │ └── ReflectionException.php │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ ├── Group.php │ │ │ ├── IgnoreClassForCodeCoverage.php │ │ │ ├── IgnoreDeprecations.php │ │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ │ ├── IgnoreMethodForCodeCoverage.php │ │ │ ├── Metadata.php │ │ │ ├── MetadataCollection.php │ │ │ ├── MetadataCollectionIterator.php │ │ │ ├── Parser/ │ │ │ │ ├── Annotation/ │ │ │ │ │ ├── DocBlock.php │ │ │ │ │ └── Registry.php │ │ │ │ ├── AnnotationParser.php │ │ │ │ ├── AttributeParser.php │ │ │ │ ├── CachingParser.php │ │ │ │ ├── Parser.php │ │ │ │ ├── ParserChain.php │ │ │ │ └── Registry.php │ │ │ ├── PostCondition.php │ │ │ ├── PreCondition.php │ │ │ ├── PreserveGlobalState.php │ │ │ ├── RequiresFunction.php │ │ │ ├── RequiresMethod.php │ │ │ ├── RequiresOperatingSystem.php │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ ├── RequiresPhp.php │ │ │ ├── RequiresPhpExtension.php │ │ │ ├── RequiresPhpunit.php │ │ │ ├── RequiresSetting.php │ │ │ ├── RunClassInSeparateProcess.php │ │ │ ├── RunInSeparateProcess.php │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ ├── Test.php │ │ │ ├── TestDox.php │ │ │ ├── TestWith.php │ │ │ ├── Uses.php │ │ │ ├── UsesClass.php │ │ │ ├── UsesDefaultClass.php │ │ │ ├── UsesFunction.php │ │ │ ├── Version/ │ │ │ │ ├── ComparisonRequirement.php │ │ │ │ ├── ConstraintRequirement.php │ │ │ │ └── Requirement.php │ │ │ └── WithoutErrorHandler.php │ │ ├── Runner/ │ │ │ ├── Baseline/ │ │ │ │ ├── Baseline.php │ │ │ │ ├── Exception/ │ │ │ │ │ ├── CannotLoadBaselineException.php │ │ │ │ │ └── FileDoesNotHaveLineException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Issue.php │ │ │ │ ├── Reader.php │ │ │ │ ├── RelativePathCalculator.php │ │ │ │ ├── Subscriber/ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ └── Writer.php │ │ │ ├── CodeCoverage.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception/ │ │ │ │ ├── ClassCannotBeFoundException.php │ │ │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ │ │ ├── ClassIsAbstractException.php │ │ │ │ ├── DirectoryDoesNotExistException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FileDoesNotExistException.php │ │ │ │ ├── InvalidOrderException.php │ │ │ │ ├── InvalidPhptFileException.php │ │ │ │ ├── ParameterDoesNotExistException.php │ │ │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ │ │ └── UnsupportedPhptSectionException.php │ │ │ ├── Extension/ │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionBootstrapper.php │ │ │ │ ├── Facade.php │ │ │ │ ├── ParameterCollection.php │ │ │ │ └── PharLoader.php │ │ │ ├── Filter/ │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── GroupFilterIterator.php │ │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ │ ├── NameFilterIterator.php │ │ │ │ └── TestIdFilterIterator.php │ │ │ ├── GarbageCollection/ │ │ │ │ ├── GarbageCollectionHandler.php │ │ │ │ └── Subscriber/ │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ └── TestFinishedSubscriber.php │ │ │ ├── PhptTestCase.php │ │ │ ├── ResultCache/ │ │ │ │ ├── DefaultResultCache.php │ │ │ │ ├── NullResultCache.php │ │ │ │ ├── ResultCache.php │ │ │ │ ├── ResultCacheHandler.php │ │ │ │ └── Subscriber/ │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ ├── TestResult/ │ │ │ │ ├── Collector.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Issue.php │ │ │ │ ├── PassedTests.php │ │ │ │ ├── Subscriber/ │ │ │ │ │ ├── AfterTestClassMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ └── TestResult.php │ │ │ ├── TestSuiteLoader.php │ │ │ ├── TestSuiteSorter.php │ │ │ └── Version.php │ │ ├── TextUI/ │ │ │ ├── Application.php │ │ │ ├── Command/ │ │ │ │ ├── Command.php │ │ │ │ ├── Commands/ │ │ │ │ │ ├── AtLeastVersionCommand.php │ │ │ │ │ ├── GenerateConfigurationCommand.php │ │ │ │ │ ├── ListGroupsCommand.php │ │ │ │ │ ├── ListTestSuitesCommand.php │ │ │ │ │ ├── ListTestsAsTextCommand.php │ │ │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ │ │ ├── MigrateConfigurationCommand.php │ │ │ │ │ ├── ShowHelpCommand.php │ │ │ │ │ ├── ShowVersionCommand.php │ │ │ │ │ ├── VersionCheckCommand.php │ │ │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ │ │ └── Result.php │ │ │ ├── Configuration/ │ │ │ │ ├── Builder.php │ │ │ │ ├── Cli/ │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── XmlConfigurationFileFinder.php │ │ │ │ ├── CodeCoverageFilterRegistry.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Exception/ │ │ │ │ │ ├── CannotFindSchemaException.php │ │ │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── FilterNotConfiguredException.php │ │ │ │ │ ├── LoggingNotConfiguredException.php │ │ │ │ │ ├── NoBaselineException.php │ │ │ │ │ ├── NoBootstrapException.php │ │ │ │ │ ├── NoCacheDirectoryException.php │ │ │ │ │ ├── NoCliArgumentException.php │ │ │ │ │ ├── NoConfigurationFileException.php │ │ │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ │ │ ├── NoCustomCssFileException.php │ │ │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ │ │ └── NoPharExtensionDirectoryException.php │ │ │ │ ├── Merger.php │ │ │ │ ├── PhpHandler.php │ │ │ │ ├── Registry.php │ │ │ │ ├── SourceFilter.php │ │ │ │ ├── SourceMapper.php │ │ │ │ ├── TestSuiteBuilder.php │ │ │ │ ├── Value/ │ │ │ │ │ ├── Constant.php │ │ │ │ │ ├── ConstantCollection.php │ │ │ │ │ ├── ConstantCollectionIterator.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── DirectoryCollection.php │ │ │ │ │ ├── DirectoryCollectionIterator.php │ │ │ │ │ ├── ExtensionBootstrap.php │ │ │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── FileCollection.php │ │ │ │ │ ├── FileCollectionIterator.php │ │ │ │ │ ├── FilterDirectory.php │ │ │ │ │ ├── FilterDirectoryCollection.php │ │ │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── GroupCollection.php │ │ │ │ │ ├── GroupCollectionIterator.php │ │ │ │ │ ├── IniSetting.php │ │ │ │ │ ├── IniSettingCollection.php │ │ │ │ │ ├── IniSettingCollectionIterator.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── TestDirectory.php │ │ │ │ │ ├── TestDirectoryCollection.php │ │ │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ │ │ ├── TestFile.php │ │ │ │ │ ├── TestFileCollection.php │ │ │ │ │ ├── TestFileCollectionIterator.php │ │ │ │ │ ├── TestSuite.php │ │ │ │ │ ├── TestSuiteCollection.php │ │ │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ │ │ ├── Variable.php │ │ │ │ │ ├── VariableCollection.php │ │ │ │ │ └── VariableCollectionIterator.php │ │ │ │ └── Xml/ │ │ │ │ ├── CodeCoverage/ │ │ │ │ │ ├── CodeCoverage.php │ │ │ │ │ └── Report/ │ │ │ │ │ ├── Clover.php │ │ │ │ │ ├── Cobertura.php │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ ├── Html.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Text.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── DefaultConfiguration.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Groups.php │ │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Logging/ │ │ │ │ │ ├── Junit.php │ │ │ │ │ ├── Logging.php │ │ │ │ │ ├── TeamCity.php │ │ │ │ │ └── TestDox/ │ │ │ │ │ ├── Html.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Migration/ │ │ │ │ │ ├── MigrationBuilder.php │ │ │ │ │ ├── MigrationException.php │ │ │ │ │ ├── Migrations/ │ │ │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ │ │ ├── LogToReportMigration.php │ │ │ │ │ │ ├── Migration.php │ │ │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ │ │ ├── RemoveListeners.php │ │ │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ │ │ └── UpdateSchemaLocation.php │ │ │ │ │ ├── Migrator.php │ │ │ │ │ └── SnapshotNodeList.php │ │ │ │ ├── PHPUnit.php │ │ │ │ ├── SchemaDetector/ │ │ │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ │ │ ├── SchemaDetectionResult.php │ │ │ │ │ ├── SchemaDetector.php │ │ │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ │ ├── SchemaFinder.php │ │ │ │ ├── TestSuiteMapper.php │ │ │ │ └── Validator/ │ │ │ │ ├── ValidationResult.php │ │ │ │ └── Validator.php │ │ │ ├── Exception/ │ │ │ │ ├── CannotOpenSocketException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidSocketException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ │ └── TestFileNotFoundException.php │ │ │ ├── Help.php │ │ │ ├── Output/ │ │ │ │ ├── Default/ │ │ │ │ │ ├── ProgressPrinter/ │ │ │ │ │ │ ├── ProgressPrinter.php │ │ │ │ │ │ └── Subscriber/ │ │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ │ ├── ResultPrinter.php │ │ │ │ │ └── UnexpectedOutputPrinter.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Printer/ │ │ │ │ │ ├── DefaultPrinter.php │ │ │ │ │ ├── NullPrinter.php │ │ │ │ │ └── Printer.php │ │ │ │ ├── SummaryPrinter.php │ │ │ │ └── TestDox/ │ │ │ │ └── ResultPrinter.php │ │ │ ├── ShellExitCodeCalculator.php │ │ │ ├── TestRunner.php │ │ │ └── TestSuiteFilterProcessor.php │ │ └── Util/ │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── Exception/ │ │ │ ├── Exception.php │ │ │ ├── InvalidDirectoryException.php │ │ │ ├── InvalidJsonException.php │ │ │ ├── InvalidVersionOperatorException.php │ │ │ ├── PhpProcessException.php │ │ │ └── XmlException.php │ │ ├── ExcludeList.php │ │ ├── Exporter.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── Http/ │ │ │ ├── Downloader.php │ │ │ └── PhpDownloader.php │ │ ├── Json.php │ │ ├── PHP/ │ │ │ ├── AbstractPhpProcess.php │ │ │ ├── DefaultPhpProcess.php │ │ │ └── Template/ │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ ├── Reflection.php │ │ ├── Test.php │ │ ├── ThrowableToStringMapper.php │ │ ├── VersionComparisonOperator.php │ │ └── Xml/ │ │ ├── Loader.php │ │ └── Xml.php │ ├── psr/ │ │ ├── cache/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ │ ├── clock/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── ClockInterface.php │ │ ├── http-client/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ │ ├── http-factory/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ │ ├── http-message/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs/ │ │ │ │ ├── PSR7-Interfaces.md │ │ │ │ └── PSR7-Usage.md │ │ │ └── src/ │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ │ ├── log/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ │ └── simple-cache/ │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── psy/ │ │ └── psysh/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin/ │ │ │ └── psysh │ │ ├── composer.json │ │ └── src/ │ │ ├── CodeCleaner/ │ │ │ ├── AbstractClassPass.php │ │ │ ├── AssignThisVariablePass.php │ │ │ ├── CallTimePassByReferencePass.php │ │ │ ├── CalledClassPass.php │ │ │ ├── CodeCleanerPass.php │ │ │ ├── EmptyArrayDimFetchPass.php │ │ │ ├── ExitPass.php │ │ │ ├── FinalClassPass.php │ │ │ ├── FunctionContextPass.php │ │ │ ├── FunctionReturnInWriteContextPass.php │ │ │ ├── ImplicitReturnPass.php │ │ │ ├── IssetPass.php │ │ │ ├── LabelContextPass.php │ │ │ ├── LeavePsyshAlonePass.php │ │ │ ├── ListPass.php │ │ │ ├── LoopContextPass.php │ │ │ ├── MagicConstantsPass.php │ │ │ ├── NamespaceAwarePass.php │ │ │ ├── NamespacePass.php │ │ │ ├── NoReturnValue.php │ │ │ ├── PassableByReferencePass.php │ │ │ ├── RequirePass.php │ │ │ ├── ReturnTypePass.php │ │ │ ├── StrictTypesPass.php │ │ │ ├── UseStatementPass.php │ │ │ ├── ValidClassNamePass.php │ │ │ ├── ValidConstructorPass.php │ │ │ └── ValidFunctionNamePass.php │ │ ├── CodeCleaner.php │ │ ├── Command/ │ │ │ ├── BufferCommand.php │ │ │ ├── ClearCommand.php │ │ │ ├── CodeArgumentParser.php │ │ │ ├── Command.php │ │ │ ├── DocCommand.php │ │ │ ├── DumpCommand.php │ │ │ ├── EditCommand.php │ │ │ ├── ExitCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── HistoryCommand.php │ │ │ ├── ListCommand/ │ │ │ │ ├── ClassConstantEnumerator.php │ │ │ │ ├── ClassEnumerator.php │ │ │ │ ├── ConstantEnumerator.php │ │ │ │ ├── Enumerator.php │ │ │ │ ├── FunctionEnumerator.php │ │ │ │ ├── GlobalVariableEnumerator.php │ │ │ │ ├── MethodEnumerator.php │ │ │ │ ├── PropertyEnumerator.php │ │ │ │ └── VariableEnumerator.php │ │ │ ├── ListCommand.php │ │ │ ├── ParseCommand.php │ │ │ ├── PsyVersionCommand.php │ │ │ ├── ReflectingCommand.php │ │ │ ├── ShowCommand.php │ │ │ ├── SudoCommand.php │ │ │ ├── ThrowUpCommand.php │ │ │ ├── TimeitCommand/ │ │ │ │ └── TimeitVisitor.php │ │ │ ├── TimeitCommand.php │ │ │ ├── TraceCommand.php │ │ │ ├── WhereamiCommand.php │ │ │ └── WtfCommand.php │ │ ├── ConfigPaths.php │ │ ├── Configuration.php │ │ ├── Context.php │ │ ├── ContextAware.php │ │ ├── EnvInterface.php │ │ ├── Exception/ │ │ │ ├── BreakException.php │ │ │ ├── DeprecatedException.php │ │ │ ├── ErrorException.php │ │ │ ├── Exception.php │ │ │ ├── FatalErrorException.php │ │ │ ├── ParseErrorException.php │ │ │ ├── RuntimeException.php │ │ │ ├── ThrowUpException.php │ │ │ └── UnexpectedTargetException.php │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop/ │ │ │ ├── AbstractListener.php │ │ │ ├── Listener.php │ │ │ ├── ProcessForker.php │ │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter/ │ │ │ ├── CodeFormatter.php │ │ │ ├── DocblockFormatter.php │ │ │ ├── ReflectorFormatter.php │ │ │ ├── SignatureFormatter.php │ │ │ └── TraceFormatter.php │ │ ├── Input/ │ │ │ ├── CodeArgument.php │ │ │ ├── FilterOptions.php │ │ │ ├── ShellInput.php │ │ │ └── SilentInput.php │ │ ├── Output/ │ │ │ ├── OutputPager.php │ │ │ ├── PassthruPager.php │ │ │ ├── ProcOutputPager.php │ │ │ ├── ShellOutput.php │ │ │ └── Theme.php │ │ ├── ParserFactory.php │ │ ├── Readline/ │ │ │ ├── GNUReadline.php │ │ │ ├── Hoa/ │ │ │ │ ├── Autocompleter.php │ │ │ │ ├── AutocompleterAggregate.php │ │ │ │ ├── AutocompleterPath.php │ │ │ │ ├── AutocompleterWord.php │ │ │ │ ├── Console.php │ │ │ │ ├── ConsoleCursor.php │ │ │ │ ├── ConsoleException.php │ │ │ │ ├── ConsoleInput.php │ │ │ │ ├── ConsoleOutput.php │ │ │ │ ├── ConsoleProcessus.php │ │ │ │ ├── ConsoleTput.php │ │ │ │ ├── ConsoleWindow.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventBucket.php │ │ │ │ ├── EventException.php │ │ │ │ ├── EventListenable.php │ │ │ │ ├── EventListener.php │ │ │ │ ├── EventListens.php │ │ │ │ ├── EventSource.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionIdle.php │ │ │ │ ├── File.php │ │ │ │ ├── FileDirectory.php │ │ │ │ ├── FileDoesNotExistException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileFinder.php │ │ │ │ ├── FileGeneric.php │ │ │ │ ├── FileLink.php │ │ │ │ ├── FileLinkRead.php │ │ │ │ ├── FileLinkReadWrite.php │ │ │ │ ├── FileRead.php │ │ │ │ ├── FileReadWrite.php │ │ │ │ ├── IStream.php │ │ │ │ ├── IteratorFileSystem.php │ │ │ │ ├── IteratorRecursiveDirectory.php │ │ │ │ ├── IteratorSplFileInfo.php │ │ │ │ ├── Protocol.php │ │ │ │ ├── ProtocolException.php │ │ │ │ ├── ProtocolNode.php │ │ │ │ ├── ProtocolNodeLibrary.php │ │ │ │ ├── ProtocolWrapper.php │ │ │ │ ├── Readline.php │ │ │ │ ├── Stream.php │ │ │ │ ├── StreamBufferable.php │ │ │ │ ├── StreamContext.php │ │ │ │ ├── StreamException.php │ │ │ │ ├── StreamIn.php │ │ │ │ ├── StreamLockable.php │ │ │ │ ├── StreamOut.php │ │ │ │ ├── StreamPathable.php │ │ │ │ ├── StreamPointable.php │ │ │ │ ├── StreamStatable.php │ │ │ │ ├── StreamTouchable.php │ │ │ │ ├── Terminfo/ │ │ │ │ │ ├── 77/ │ │ │ │ │ │ └── windows-ansi │ │ │ │ │ └── 78/ │ │ │ │ │ ├── xterm │ │ │ │ │ └── xterm-256color │ │ │ │ ├── Ustring.php │ │ │ │ └── Xcallable.php │ │ │ ├── Libedit.php │ │ │ ├── Readline.php │ │ │ ├── Transient.php │ │ │ └── Userland.php │ │ ├── Reflection/ │ │ │ ├── ReflectionConstant.php │ │ │ ├── ReflectionLanguageConstruct.php │ │ │ ├── ReflectionLanguageConstructParameter.php │ │ │ └── ReflectionNamespace.php │ │ ├── Shell.php │ │ ├── Sudo/ │ │ │ └── SudoVisitor.php │ │ ├── Sudo.php │ │ ├── SuperglobalsEnv.php │ │ ├── SystemEnv.php │ │ ├── TabCompletion/ │ │ │ ├── AutoCompleter.php │ │ │ └── Matcher/ │ │ │ ├── AbstractContextAwareMatcher.php │ │ │ ├── AbstractDefaultParametersMatcher.php │ │ │ ├── AbstractMatcher.php │ │ │ ├── ClassAttributesMatcher.php │ │ │ ├── ClassMethodDefaultParametersMatcher.php │ │ │ ├── ClassMethodsMatcher.php │ │ │ ├── ClassNamesMatcher.php │ │ │ ├── CommandsMatcher.php │ │ │ ├── ConstantsMatcher.php │ │ │ ├── FunctionDefaultParametersMatcher.php │ │ │ ├── FunctionsMatcher.php │ │ │ ├── KeywordsMatcher.php │ │ │ ├── MongoClientMatcher.php │ │ │ ├── MongoDatabaseMatcher.php │ │ │ ├── ObjectAttributesMatcher.php │ │ │ ├── ObjectMethodDefaultParametersMatcher.php │ │ │ ├── ObjectMethodsMatcher.php │ │ │ └── VariablesMatcher.php │ │ ├── Util/ │ │ │ ├── Docblock.php │ │ │ ├── Json.php │ │ │ ├── Mirror.php │ │ │ └── Str.php │ │ ├── VarDumper/ │ │ │ ├── Cloner.php │ │ │ ├── Dumper.php │ │ │ ├── Presenter.php │ │ │ └── PresenterAware.php │ │ ├── VersionUpdater/ │ │ │ ├── Checker.php │ │ │ ├── Downloader/ │ │ │ │ ├── CurlDownloader.php │ │ │ │ ├── Factory.php │ │ │ │ └── FileDownloader.php │ │ │ ├── Downloader.php │ │ │ ├── GitHubChecker.php │ │ │ ├── Installer.php │ │ │ ├── IntervalChecker.php │ │ │ ├── NoopChecker.php │ │ │ └── SelfUpdate.php │ │ └── functions.php │ ├── ralouphie/ │ │ └── getallheaders/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── getallheaders.php │ ├── ramsey/ │ │ ├── collection/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── AbstractArray.php │ │ │ ├── AbstractCollection.php │ │ │ ├── AbstractSet.php │ │ │ ├── ArrayInterface.php │ │ │ ├── Collection.php │ │ │ ├── CollectionInterface.php │ │ │ ├── DoubleEndedQueue.php │ │ │ ├── DoubleEndedQueueInterface.php │ │ │ ├── Exception/ │ │ │ │ ├── CollectionException.php │ │ │ │ ├── CollectionMismatchException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidPropertyOrMethod.php │ │ │ │ ├── NoSuchElementException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ └── UnsupportedOperationException.php │ │ │ ├── GenericArray.php │ │ │ ├── Map/ │ │ │ │ ├── AbstractMap.php │ │ │ │ ├── AbstractTypedMap.php │ │ │ │ ├── AssociativeArrayMap.php │ │ │ │ ├── MapInterface.php │ │ │ │ ├── NamedParameterMap.php │ │ │ │ ├── TypedMap.php │ │ │ │ └── TypedMapInterface.php │ │ │ ├── Queue.php │ │ │ ├── QueueInterface.php │ │ │ ├── Set.php │ │ │ ├── Sort.php │ │ │ └── Tool/ │ │ │ ├── TypeTrait.php │ │ │ ├── ValueExtractorTrait.php │ │ │ └── ValueToStringTrait.php │ │ └── uuid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── BinaryUtils.php │ │ ├── Builder/ │ │ │ ├── BuilderCollection.php │ │ │ ├── DefaultUuidBuilder.php │ │ │ ├── DegradedUuidBuilder.php │ │ │ ├── FallbackBuilder.php │ │ │ └── UuidBuilderInterface.php │ │ ├── Codec/ │ │ │ ├── CodecInterface.php │ │ │ ├── GuidStringCodec.php │ │ │ ├── OrderedTimeCodec.php │ │ │ ├── StringCodec.php │ │ │ ├── TimestampFirstCombCodec.php │ │ │ └── TimestampLastCombCodec.php │ │ ├── Converter/ │ │ │ ├── Number/ │ │ │ │ ├── BigNumberConverter.php │ │ │ │ ├── DegradedNumberConverter.php │ │ │ │ └── GenericNumberConverter.php │ │ │ ├── NumberConverterInterface.php │ │ │ ├── Time/ │ │ │ │ ├── BigNumberTimeConverter.php │ │ │ │ ├── DegradedTimeConverter.php │ │ │ │ ├── GenericTimeConverter.php │ │ │ │ ├── PhpTimeConverter.php │ │ │ │ └── UnixTimeConverter.php │ │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── DeprecatedUuidInterface.php │ │ ├── DeprecatedUuidMethodsTrait.php │ │ ├── Exception/ │ │ │ ├── BuilderNotFoundException.php │ │ │ ├── DateTimeException.php │ │ │ ├── DceSecurityException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidBytesException.php │ │ │ ├── InvalidUuidStringException.php │ │ │ ├── NameException.php │ │ │ ├── NodeException.php │ │ │ ├── RandomSourceException.php │ │ │ ├── TimeSourceException.php │ │ │ ├── UnableToBuildUuidException.php │ │ │ ├── UnsupportedOperationException.php │ │ │ └── UuidExceptionInterface.php │ │ ├── FeatureSet.php │ │ ├── Fields/ │ │ │ ├── FieldsInterface.php │ │ │ └── SerializableFieldsTrait.php │ │ ├── Generator/ │ │ │ ├── CombGenerator.php │ │ │ ├── DceSecurityGenerator.php │ │ │ ├── DceSecurityGeneratorInterface.php │ │ │ ├── DefaultNameGenerator.php │ │ │ ├── DefaultTimeGenerator.php │ │ │ ├── NameGeneratorFactory.php │ │ │ ├── NameGeneratorInterface.php │ │ │ ├── PeclUuidNameGenerator.php │ │ │ ├── PeclUuidRandomGenerator.php │ │ │ ├── PeclUuidTimeGenerator.php │ │ │ ├── RandomBytesGenerator.php │ │ │ ├── RandomGeneratorFactory.php │ │ │ ├── RandomGeneratorInterface.php │ │ │ ├── RandomLibAdapter.php │ │ │ ├── TimeGeneratorFactory.php │ │ │ ├── TimeGeneratorInterface.php │ │ │ └── UnixTimeGenerator.php │ │ ├── Guid/ │ │ │ ├── Fields.php │ │ │ ├── Guid.php │ │ │ └── GuidBuilder.php │ │ ├── Lazy/ │ │ │ └── LazyUuidFromString.php │ │ ├── Math/ │ │ │ ├── BrickMathCalculator.php │ │ │ ├── CalculatorInterface.php │ │ │ └── RoundingMode.php │ │ ├── Nonstandard/ │ │ │ ├── Fields.php │ │ │ ├── Uuid.php │ │ │ ├── UuidBuilder.php │ │ │ └── UuidV6.php │ │ ├── Provider/ │ │ │ ├── Dce/ │ │ │ │ └── SystemDceSecurityProvider.php │ │ │ ├── DceSecurityProviderInterface.php │ │ │ ├── Node/ │ │ │ │ ├── FallbackNodeProvider.php │ │ │ │ ├── NodeProviderCollection.php │ │ │ │ ├── RandomNodeProvider.php │ │ │ │ ├── StaticNodeProvider.php │ │ │ │ └── SystemNodeProvider.php │ │ │ ├── NodeProviderInterface.php │ │ │ ├── Time/ │ │ │ │ ├── FixedTimeProvider.php │ │ │ │ └── SystemTimeProvider.php │ │ │ └── TimeProviderInterface.php │ │ ├── Rfc4122/ │ │ │ ├── Fields.php │ │ │ ├── FieldsInterface.php │ │ │ ├── MaxTrait.php │ │ │ ├── MaxUuid.php │ │ │ ├── NilTrait.php │ │ │ ├── NilUuid.php │ │ │ ├── TimeTrait.php │ │ │ ├── UuidBuilder.php │ │ │ ├── UuidInterface.php │ │ │ ├── UuidV1.php │ │ │ ├── UuidV2.php │ │ │ ├── UuidV3.php │ │ │ ├── UuidV4.php │ │ │ ├── UuidV5.php │ │ │ ├── UuidV6.php │ │ │ ├── UuidV7.php │ │ │ ├── UuidV8.php │ │ │ ├── Validator.php │ │ │ ├── VariantTrait.php │ │ │ └── VersionTrait.php │ │ ├── Type/ │ │ │ ├── Decimal.php │ │ │ ├── Hexadecimal.php │ │ │ ├── Integer.php │ │ │ ├── NumberInterface.php │ │ │ ├── Time.php │ │ │ └── TypeInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ ├── UuidInterface.php │ │ ├── Validator/ │ │ │ ├── GenericValidator.php │ │ │ └── ValidatorInterface.php │ │ └── functions.php │ ├── sebastian/ │ │ ├── cli-parser/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Parser.php │ │ │ └── exceptions/ │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ │ ├── code-unit/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FileUnit.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ │ ├── code-unit-reverse-lookup/ │ │ │ ├── .psalm/ │ │ │ │ ├── baseline.xml │ │ │ │ └── config.xml │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── Wizard.php │ │ ├── comparator/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ ├── TypeComparator.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ ├── complexity/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Calculator.php │ │ │ ├── Complexity/ │ │ │ │ ├── Complexity.php │ │ │ │ ├── ComplexityCollection.php │ │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception/ │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ └── Visitor/ │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ │ ├── diff/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception/ │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output/ │ │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ │ ├── environment/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Console.php │ │ │ └── Runtime.php │ │ ├── exporter/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── Exporter.php │ │ ├── global-state/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions/ │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ ├── lines-of-code/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Counter.php │ │ │ ├── Exception/ │ │ │ │ ├── Exception.php │ │ │ │ ├── IllogicalValuesException.php │ │ │ │ ├── NegativeValueException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ │ ├── object-enumerator/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ └── src/ │ │ │ └── Enumerator.php │ │ ├── object-reflector/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── ObjectReflector.php │ │ ├── recursion-context/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── Context.php │ │ ├── type/ │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── infection.json │ │ │ └── src/ │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception/ │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ └── type/ │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ │ └── version/ │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src/ │ │ └── Version.php │ ├── spatie/ │ │ ├── backtrace/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Arguments/ │ │ │ │ ├── ArgumentReducers.php │ │ │ │ ├── ProvidedArgument.php │ │ │ │ ├── ReduceArgumentPayloadAction.php │ │ │ │ ├── ReduceArgumentsAction.php │ │ │ │ ├── ReducedArgument/ │ │ │ │ │ ├── ReducedArgument.php │ │ │ │ │ ├── ReducedArgumentContract.php │ │ │ │ │ ├── TruncatedReducedArgument.php │ │ │ │ │ ├── UnReducedArgument.php │ │ │ │ │ └── VariadicReducedArgument.php │ │ │ │ └── Reducers/ │ │ │ │ ├── ArgumentReducer.php │ │ │ │ ├── ArrayArgumentReducer.php │ │ │ │ ├── BaseTypeArgumentReducer.php │ │ │ │ ├── ClosureArgumentReducer.php │ │ │ │ ├── DateTimeArgumentReducer.php │ │ │ │ ├── DateTimeZoneArgumentReducer.php │ │ │ │ ├── EnumArgumentReducer.php │ │ │ │ ├── MinimalArrayArgumentReducer.php │ │ │ │ ├── SensitiveParameterArrayReducer.php │ │ │ │ ├── StdClassArgumentReducer.php │ │ │ │ ├── StringableArgumentReducer.php │ │ │ │ └── SymphonyRequestArgumentReducer.php │ │ │ ├── Backtrace.php │ │ │ ├── CodeSnippets/ │ │ │ │ ├── CodeSnippet.php │ │ │ │ ├── FileSnippetProvider.php │ │ │ │ ├── LaravelSerializableClosureSnippetProvider.php │ │ │ │ ├── NullSnippetProvider.php │ │ │ │ └── SnippetProvider.php │ │ │ └── Frame.php │ │ ├── error-solutions/ │ │ │ ├── .php_cs.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── legacy/ │ │ │ │ ├── ignition/ │ │ │ │ │ ├── Contracts/ │ │ │ │ │ │ ├── BaseSolution.php │ │ │ │ │ │ ├── HasSolutionsForThrowable.php │ │ │ │ │ │ ├── ProvidesSolution.php │ │ │ │ │ │ ├── RunnableSolution.php │ │ │ │ │ │ ├── Solution.php │ │ │ │ │ │ └── SolutionProviderRepository.php │ │ │ │ │ └── Solutions/ │ │ │ │ │ ├── OpenAi/ │ │ │ │ │ │ ├── DummyCache.php │ │ │ │ │ │ ├── OpenAiPromptViewModel.php │ │ │ │ │ │ ├── OpenAiSolution.php │ │ │ │ │ │ ├── OpenAiSolutionProvider.php │ │ │ │ │ │ └── OpenAiSolutionResponse.php │ │ │ │ │ ├── SolutionProviders/ │ │ │ │ │ │ ├── BadMethodCallSolutionProvider.php │ │ │ │ │ │ ├── MergeConflictSolutionProvider.php │ │ │ │ │ │ ├── SolutionProviderRepository.php │ │ │ │ │ │ └── UndefinedPropertySolutionProvider.php │ │ │ │ │ ├── SolutionTransformer.php │ │ │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ │ │ └── SuggestImportSolution.php │ │ │ │ └── laravel-ignition/ │ │ │ │ ├── Solutions/ │ │ │ │ │ ├── GenerateAppKeySolution.php │ │ │ │ │ ├── LivewireDiscoverSolution.php │ │ │ │ │ ├── MakeViewVariableOptionalSolution.php │ │ │ │ │ ├── RunMigrationsSolution.php │ │ │ │ │ ├── SolutionProviders/ │ │ │ │ │ │ ├── DefaultDbNameSolutionProvider.php │ │ │ │ │ │ ├── GenericLaravelExceptionSolutionProvider.php │ │ │ │ │ │ ├── IncorrectValetDbCredentialsSolutionProvider.php │ │ │ │ │ │ ├── InvalidRouteActionSolutionProvider.php │ │ │ │ │ │ ├── LazyLoadingViolationSolutionProvider.php │ │ │ │ │ │ ├── MissingAppKeySolutionProvider.php │ │ │ │ │ │ ├── MissingColumnSolutionProvider.php │ │ │ │ │ │ ├── MissingImportSolutionProvider.php │ │ │ │ │ │ ├── MissingLivewireComponentSolutionProvider.php │ │ │ │ │ │ ├── MissingMixManifestSolutionProvider.php │ │ │ │ │ │ ├── MissingViteManifestSolutionProvider.php │ │ │ │ │ │ ├── OpenAiSolutionProvider.php │ │ │ │ │ │ ├── RouteNotDefinedSolutionProvider.php │ │ │ │ │ │ ├── RunningLaravelDuskInProductionProvider.php │ │ │ │ │ │ ├── SailNetworkSolutionProvider.php │ │ │ │ │ │ ├── SolutionProviderRepository.php │ │ │ │ │ │ ├── TableNotFoundSolutionProvider.php │ │ │ │ │ │ ├── UndefinedLivewireMethodSolutionProvider.php │ │ │ │ │ │ ├── UndefinedLivewirePropertySolutionProvider.php │ │ │ │ │ │ ├── UndefinedViewVariableSolutionProvider.php │ │ │ │ │ │ ├── UnknownMariadbCollationSolutionProvider.php │ │ │ │ │ │ ├── UnknownMysql8CollationSolutionProvider.php │ │ │ │ │ │ ├── UnknownValidationSolutionProvider.php │ │ │ │ │ │ └── ViewNotFoundSolutionProvider.php │ │ │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ │ │ ├── SuggestImportSolution.php │ │ │ │ │ ├── SuggestLivewireMethodNameSolution.php │ │ │ │ │ ├── SuggestLivewirePropertyNameSolution.php │ │ │ │ │ ├── SuggestUsingCorrectDbNameSolution.php │ │ │ │ │ ├── SuggestUsingMariadbDatabaseSolution.php │ │ │ │ │ ├── SuggestUsingMysql8DatabaseSolution.php │ │ │ │ │ └── UseDefaultValetDbCredentialsSolution.php │ │ │ │ └── Support/ │ │ │ │ └── StringComparator.php │ │ │ ├── phpstan-baseline.neon │ │ │ ├── phpstan.neon.dist │ │ │ ├── resources/ │ │ │ │ └── views/ │ │ │ │ └── aiPrompt.php │ │ │ └── src/ │ │ │ ├── Contracts/ │ │ │ │ ├── BaseSolution.php │ │ │ │ ├── HasSolutionsForThrowable.php │ │ │ │ ├── ProvidesSolution.php │ │ │ │ ├── RunnableSolution.php │ │ │ │ ├── Solution.php │ │ │ │ └── SolutionProviderRepository.php │ │ │ ├── DiscoverSolutionProviders.php │ │ │ ├── SolutionProviderRepository.php │ │ │ ├── SolutionProviders/ │ │ │ │ ├── BadMethodCallSolutionProvider.php │ │ │ │ ├── Laravel/ │ │ │ │ │ ├── DefaultDbNameSolutionProvider.php │ │ │ │ │ ├── GenericLaravelExceptionSolutionProvider.php │ │ │ │ │ ├── IncorrectValetDbCredentialsSolutionProvider.php │ │ │ │ │ ├── InvalidRouteActionSolutionProvider.php │ │ │ │ │ ├── LazyLoadingViolationSolutionProvider.php │ │ │ │ │ ├── MissingAppKeySolutionProvider.php │ │ │ │ │ ├── MissingColumnSolutionProvider.php │ │ │ │ │ ├── MissingImportSolutionProvider.php │ │ │ │ │ ├── MissingLivewireComponentSolutionProvider.php │ │ │ │ │ ├── MissingMixManifestSolutionProvider.php │ │ │ │ │ ├── MissingViteManifestSolutionProvider.php │ │ │ │ │ ├── OpenAiSolutionProvider.php │ │ │ │ │ ├── RouteNotDefinedSolutionProvider.php │ │ │ │ │ ├── RunningLaravelDuskInProductionProvider.php │ │ │ │ │ ├── SailNetworkSolutionProvider.php │ │ │ │ │ ├── TableNotFoundSolutionProvider.php │ │ │ │ │ ├── UndefinedLivewireMethodSolutionProvider.php │ │ │ │ │ ├── UndefinedLivewirePropertySolutionProvider.php │ │ │ │ │ ├── UndefinedViewVariableSolutionProvider.php │ │ │ │ │ ├── UnknownMariadbCollationSolutionProvider.php │ │ │ │ │ ├── UnknownMysql8CollationSolutionProvider.php │ │ │ │ │ ├── UnknownValidationSolutionProvider.php │ │ │ │ │ └── ViewNotFoundSolutionProvider.php │ │ │ │ ├── MergeConflictSolutionProvider.php │ │ │ │ └── UndefinedPropertySolutionProvider.php │ │ │ ├── Solutions/ │ │ │ │ ├── Concerns/ │ │ │ │ │ └── IsProvidedByFlare.php │ │ │ │ ├── Laravel/ │ │ │ │ │ ├── GenerateAppKeySolution.php │ │ │ │ │ ├── LivewireDiscoverSolution.php │ │ │ │ │ ├── MakeViewVariableOptionalSolution.php │ │ │ │ │ ├── RunMigrationsSolution.php │ │ │ │ │ ├── SuggestLivewireMethodNameSolution.php │ │ │ │ │ ├── SuggestLivewirePropertyNameSolution.php │ │ │ │ │ ├── SuggestUsingCorrectDbNameSolution.php │ │ │ │ │ ├── SuggestUsingMariadbDatabaseSolution.php │ │ │ │ │ ├── SuggestUsingMysql8DatabaseSolution.php │ │ │ │ │ └── UseDefaultValetDbCredentialsSolution.php │ │ │ │ ├── OpenAi/ │ │ │ │ │ ├── DummyCache.php │ │ │ │ │ ├── OpenAiPromptViewModel.php │ │ │ │ │ ├── OpenAiSolution.php │ │ │ │ │ ├── OpenAiSolutionProvider.php │ │ │ │ │ └── OpenAiSolutionResponse.php │ │ │ │ ├── SolutionTransformer.php │ │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ │ └── SuggestImportSolution.php │ │ │ └── Support/ │ │ │ ├── AiPromptRenderer.php │ │ │ └── Laravel/ │ │ │ ├── Composer/ │ │ │ │ ├── Composer.php │ │ │ │ ├── ComposerClassMap.php │ │ │ │ └── FakeComposer.php │ │ │ ├── LaravelVersion.php │ │ │ ├── LivewireComponentParser.php │ │ │ └── StringComparator.php │ │ ├── flare-client-php/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Api.php │ │ │ ├── Concerns/ │ │ │ │ ├── HasContext.php │ │ │ │ └── UsesTime.php │ │ │ ├── Context/ │ │ │ │ ├── BaseContextProviderDetector.php │ │ │ │ ├── ConsoleContextProvider.php │ │ │ │ ├── ContextProvider.php │ │ │ │ ├── ContextProviderDetector.php │ │ │ │ └── RequestContextProvider.php │ │ │ ├── Contracts/ │ │ │ │ └── ProvidesFlareContext.php │ │ │ ├── Enums/ │ │ │ │ ├── MessageLevels.php │ │ │ │ └── OverriddenGrouping.php │ │ │ ├── Flare.php │ │ │ ├── FlareMiddleware/ │ │ │ │ ├── AddDocumentationLinks.php │ │ │ │ ├── AddEnvironmentInformation.php │ │ │ │ ├── AddGitInformation.php │ │ │ │ ├── AddGlows.php │ │ │ │ ├── AddNotifierName.php │ │ │ │ ├── AddSolutions.php │ │ │ │ ├── CensorRequestBodyFields.php │ │ │ │ ├── CensorRequestHeaders.php │ │ │ │ ├── FlareMiddleware.php │ │ │ │ └── RemoveRequestIp.php │ │ │ ├── Frame.php │ │ │ ├── Glows/ │ │ │ │ ├── Glow.php │ │ │ │ └── GlowRecorder.php │ │ │ ├── Http/ │ │ │ │ ├── Client.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── BadResponse.php │ │ │ │ │ ├── BadResponseCode.php │ │ │ │ │ ├── InvalidData.php │ │ │ │ │ ├── MissingParameter.php │ │ │ │ │ └── NotFound.php │ │ │ │ └── Response.php │ │ │ ├── Report.php │ │ │ ├── Solutions/ │ │ │ │ └── ReportSolution.php │ │ │ ├── Support/ │ │ │ │ └── PhpStackFrameArgumentsFixer.php │ │ │ ├── Time/ │ │ │ │ ├── SystemTime.php │ │ │ │ └── Time.php │ │ │ ├── Truncation/ │ │ │ │ ├── AbstractTruncationStrategy.php │ │ │ │ ├── ReportTrimmer.php │ │ │ │ ├── TrimContextItemsStrategy.php │ │ │ │ ├── TrimStackFrameArgumentsStrategy.php │ │ │ │ ├── TrimStringsStrategy.php │ │ │ │ └── TruncationStrategy.php │ │ │ ├── View.php │ │ │ └── helpers.php │ │ ├── ignition/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── resources/ │ │ │ │ ├── compiled/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── ignition.css │ │ │ │ │ └── ignition.js │ │ │ │ └── views/ │ │ │ │ ├── aiPrompt.php │ │ │ │ └── errorPage.php │ │ │ └── src/ │ │ │ ├── Config/ │ │ │ │ ├── FileConfigManager.php │ │ │ │ └── IgnitionConfig.php │ │ │ ├── Contracts/ │ │ │ │ └── ConfigManager.php │ │ │ ├── ErrorPage/ │ │ │ │ ├── ErrorPageViewModel.php │ │ │ │ └── Renderer.php │ │ │ └── Ignition.php │ │ ├── laravel-html/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Attributes.php │ │ │ ├── BaseElement.php │ │ │ ├── Elements/ │ │ │ │ ├── A.php │ │ │ │ ├── Attributes/ │ │ │ │ │ ├── Autocomplete.php │ │ │ │ │ ├── Autofocus.php │ │ │ │ │ ├── Disabled.php │ │ │ │ │ ├── MinMaxLength.php │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Placeholder.php │ │ │ │ │ ├── ReadonlyTrait.php │ │ │ │ │ ├── Required.php │ │ │ │ │ ├── Target.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Value.php │ │ │ │ ├── Button.php │ │ │ │ ├── Div.php │ │ │ │ ├── Element.php │ │ │ │ ├── Fieldset.php │ │ │ │ ├── File.php │ │ │ │ ├── Form.php │ │ │ │ ├── I.php │ │ │ │ ├── Img.php │ │ │ │ ├── Input.php │ │ │ │ ├── Label.php │ │ │ │ ├── Legend.php │ │ │ │ ├── Optgroup.php │ │ │ │ ├── Option.php │ │ │ │ ├── P.php │ │ │ │ ├── Select.php │ │ │ │ ├── Span.php │ │ │ │ └── Textarea.php │ │ │ ├── Exceptions/ │ │ │ │ ├── InvalidChild.php │ │ │ │ ├── InvalidHtml.php │ │ │ │ └── MissingTag.php │ │ │ ├── Facades/ │ │ │ │ └── Html.php │ │ │ ├── Helpers/ │ │ │ │ └── Arr.php │ │ │ ├── Html.php │ │ │ ├── HtmlElement.php │ │ │ ├── HtmlServiceProvider.php │ │ │ ├── Selectable.php │ │ │ └── helpers.php │ │ └── laravel-ignition/ │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config/ │ │ │ ├── flare.php │ │ │ └── ignition.php │ │ └── src/ │ │ ├── ArgumentReducers/ │ │ │ ├── CollectionArgumentReducer.php │ │ │ └── ModelArgumentReducer.php │ │ ├── Commands/ │ │ │ ├── SolutionMakeCommand.php │ │ │ ├── SolutionProviderMakeCommand.php │ │ │ ├── TestCommand.php │ │ │ └── stubs/ │ │ │ ├── runnable-solution.stub │ │ │ ├── solution-provider.stub │ │ │ └── solution.stub │ │ ├── ContextProviders/ │ │ │ ├── LaravelConsoleContextProvider.php │ │ │ ├── LaravelContextProviderDetector.php │ │ │ ├── LaravelLivewireRequestContextProvider.php │ │ │ └── LaravelRequestContextProvider.php │ │ ├── Exceptions/ │ │ │ ├── CannotExecuteSolutionForNonLocalIp.php │ │ │ ├── InvalidConfig.php │ │ │ ├── ViewException.php │ │ │ └── ViewExceptionWithSolution.php │ │ ├── Facades/ │ │ │ └── Flare.php │ │ ├── FlareMiddleware/ │ │ │ ├── AddContext.php │ │ │ ├── AddDumps.php │ │ │ ├── AddEnvironmentInformation.php │ │ │ ├── AddExceptionHandledStatus.php │ │ │ ├── AddExceptionInformation.php │ │ │ ├── AddJobs.php │ │ │ ├── AddLogs.php │ │ │ ├── AddNotifierName.php │ │ │ └── AddQueries.php │ │ ├── Http/ │ │ │ ├── Controllers/ │ │ │ │ ├── ExecuteSolutionController.php │ │ │ │ ├── HealthCheckController.php │ │ │ │ └── UpdateConfigController.php │ │ │ ├── Middleware/ │ │ │ │ └── RunnableSolutionsEnabled.php │ │ │ └── Requests/ │ │ │ ├── ExecuteSolutionRequest.php │ │ │ └── UpdateConfigRequest.php │ │ ├── IgnitionServiceProvider.php │ │ ├── Recorders/ │ │ │ ├── DumpRecorder/ │ │ │ │ ├── Dump.php │ │ │ │ ├── DumpHandler.php │ │ │ │ ├── DumpRecorder.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ └── MultiDumpHandler.php │ │ │ ├── JobRecorder/ │ │ │ │ └── JobRecorder.php │ │ │ ├── LogRecorder/ │ │ │ │ ├── LogMessage.php │ │ │ │ └── LogRecorder.php │ │ │ └── QueryRecorder/ │ │ │ ├── Query.php │ │ │ └── QueryRecorder.php │ │ ├── Renderers/ │ │ │ ├── ErrorPageRenderer.php │ │ │ └── IgnitionExceptionRenderer.php │ │ ├── Solutions/ │ │ │ └── SolutionTransformers/ │ │ │ └── LaravelSolutionTransformer.php │ │ ├── Support/ │ │ │ ├── FlareLogHandler.php │ │ │ ├── LaravelDocumentationLinkFinder.php │ │ │ ├── LaravelVersion.php │ │ │ ├── RunnableSolutionsGuard.php │ │ │ └── SentReports.php │ │ ├── Views/ │ │ │ ├── BladeSourceMapCompiler.php │ │ │ └── ViewExceptionMapper.php │ │ ├── helpers.php │ │ └── ignition-routes.php │ ├── squizlabs/ │ │ └── php_codesniffer/ │ │ ├── CHANGELOG.md │ │ ├── CodeSniffer.conf.dist │ │ ├── README.md │ │ ├── autoload.php │ │ ├── bin/ │ │ │ ├── phpcbf │ │ │ ├── phpcbf.bat │ │ │ ├── phpcs │ │ │ └── phpcs.bat │ │ ├── composer.json │ │ ├── licence.txt │ │ ├── phpcs.xsd │ │ ├── src/ │ │ │ ├── Config.php │ │ │ ├── Exceptions/ │ │ │ │ ├── DeepExitException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── TokenizerException.php │ │ │ ├── Files/ │ │ │ │ ├── DummyFile.php │ │ │ │ ├── File.php │ │ │ │ ├── FileList.php │ │ │ │ └── LocalFile.php │ │ │ ├── Filters/ │ │ │ │ ├── ExactMatch.php │ │ │ │ ├── Filter.php │ │ │ │ ├── GitModified.php │ │ │ │ └── GitStaged.php │ │ │ ├── Fixer.php │ │ │ ├── Generators/ │ │ │ │ ├── Generator.php │ │ │ │ ├── HTML.php │ │ │ │ ├── Markdown.php │ │ │ │ └── Text.php │ │ │ ├── Reporter.php │ │ │ ├── Reports/ │ │ │ │ ├── Cbf.php │ │ │ │ ├── Checkstyle.php │ │ │ │ ├── Code.php │ │ │ │ ├── Csv.php │ │ │ │ ├── Diff.php │ │ │ │ ├── Emacs.php │ │ │ │ ├── Full.php │ │ │ │ ├── Gitblame.php │ │ │ │ ├── Hgblame.php │ │ │ │ ├── Info.php │ │ │ │ ├── Json.php │ │ │ │ ├── Junit.php │ │ │ │ ├── Notifysend.php │ │ │ │ ├── Performance.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Summary.php │ │ │ │ ├── Svnblame.php │ │ │ │ ├── VersionControl.php │ │ │ │ └── Xml.php │ │ │ ├── Ruleset.php │ │ │ ├── Runner.php │ │ │ ├── Sniffs/ │ │ │ │ ├── AbstractArraySniff.php │ │ │ │ ├── AbstractPatternSniff.php │ │ │ │ ├── AbstractScopeSniff.php │ │ │ │ ├── AbstractVariableSniff.php │ │ │ │ ├── DeprecatedSniff.php │ │ │ │ └── Sniff.php │ │ │ ├── Standards/ │ │ │ │ ├── Generic/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayIndentStandard.xml │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxStandard.xml │ │ │ │ │ │ │ └── DisallowShortArraySyntaxStandard.xml │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ │ │ │ ├── CodeAnalysis/ │ │ │ │ │ │ │ ├── AssignmentInConditionStandard.xml │ │ │ │ │ │ │ ├── EmptyPHPStatementStandard.xml │ │ │ │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceStandard.xml │ │ │ │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── DocCommentStandard.xml │ │ │ │ │ │ │ ├── FixmeStandard.xml │ │ │ │ │ │ │ └── TodoStandard.xml │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── DisallowYodaConditionsStandard.xml │ │ │ │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ │ │ │ └── JSHintStandard.xml │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ │ │ ├── ExecutableFileStandard.xml │ │ │ │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ │ │ │ ├── OneInterfacePerFileStandard.xml │ │ │ │ │ │ │ ├── OneObjectStructurePerFileStandard.xml │ │ │ │ │ │ │ └── OneTraitPerFileStandard.xml │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ │ │ │ ├── SpaceAfterCastStandard.xml │ │ │ │ │ │ │ ├── SpaceAfterNotStandard.xml │ │ │ │ │ │ │ └── SpaceBeforeCastStandard.xml │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ │ │ │ ├── Metrics/ │ │ │ │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ │ │ │ └── NestingLevelStandard.xml │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── AbstractClassNamePrefixStandard.xml │ │ │ │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ │ │ │ ├── InterfaceNameSuffixStandard.xml │ │ │ │ │ │ │ ├── TraitNameSuffixStandard.xml │ │ │ │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ │ │ │ ├── DisallowRequestSuperglobalStandard.xml │ │ │ │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ │ │ │ ├── DiscourageGotoStandard.xml │ │ │ │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ │ │ │ ├── LowerCaseTypeStandard.xml │ │ │ │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ │ │ │ ├── RequireStrictTypesStandard.xml │ │ │ │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ │ │ │ ├── SyntaxStandard.xml │ │ │ │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ ├── UnnecessaryHeredocStandard.xml │ │ │ │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ │ │ │ ├── VersionControl/ │ │ │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingStandard.xml │ │ │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ │ ├── HereNowdocIdentifierSpacingStandard.xml │ │ │ │ │ │ ├── IncrementDecrementSpacingStandard.xml │ │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ │ ├── ScopeIndentStandard.xml │ │ │ │ │ │ └── SpreadOperatorSpacingAfterStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayIndentSniff.php │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ │ │ │ ├── CodeAnalysis/ │ │ │ │ │ │ │ ├── AssignmentInConditionSniff.php │ │ │ │ │ │ │ ├── EmptyPHPStatementSniff.php │ │ │ │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceSniff.php │ │ │ │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── DocCommentSniff.php │ │ │ │ │ │ │ ├── FixmeSniff.php │ │ │ │ │ │ │ └── TodoSniff.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── DisallowYodaConditionsSniff.php │ │ │ │ │ │ │ └── InlineControlStructureSniff.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── CSSLintSniff.php │ │ │ │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ │ │ │ ├── ESLintSniff.php │ │ │ │ │ │ │ └── JSHintSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ │ │ │ ├── ExecutableFileSniff.php │ │ │ │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ │ │ │ ├── LineLengthSniff.php │ │ │ │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ │ │ │ ├── OneObjectStructurePerFileSniff.php │ │ │ │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ │ │ │ ├── SpaceAfterNotSniff.php │ │ │ │ │ │ │ └── SpaceBeforeCastSniff.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ │ │ │ ├── Metrics/ │ │ │ │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ │ │ │ └── NestingLevelSniff.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── AbstractClassNamePrefixSniff.php │ │ │ │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ │ │ │ ├── InterfaceNameSuffixSniff.php │ │ │ │ │ │ │ ├── TraitNameSuffixSniff.php │ │ │ │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ │ │ │ ├── DisallowRequestSuperglobalSniff.php │ │ │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ │ │ ├── DiscourageGotoSniff.php │ │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ │ │ │ ├── LowerCaseTypeSniff.php │ │ │ │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ │ │ │ ├── RequireStrictTypesSniff.php │ │ │ │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ │ │ │ ├── SyntaxSniff.php │ │ │ │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ ├── UnnecessaryHeredocSniff.php │ │ │ │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ │ │ │ ├── VersionControl/ │ │ │ │ │ │ │ ├── GitMergeConflictSniff.php │ │ │ │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingSniff.php │ │ │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ │ │ ├── HereNowdocIdentifierSpacingSniff.php │ │ │ │ │ │ ├── IncrementDecrementSpacingSniff.php │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ ├── ScopeIndentSniff.php │ │ │ │ │ │ └── SpreadOperatorSpacingAfterSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayIndentUnitTest.inc │ │ │ │ │ │ │ ├── ArrayIndentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ArrayIndentUnitTest.php │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.3.inc │ │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.php │ │ │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc │ │ │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc.fixed │ │ │ │ │ │ │ └── DisallowShortArraySyntaxUnitTest.php │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.1.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.10.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.11.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.2.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.3.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.4.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.5.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.6.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.7.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.8.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.9.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.97.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.98.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.99.inc │ │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.php │ │ │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc │ │ │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc.fixed │ │ │ │ │ │ │ └── OpeningBraceSameLineUnitTest.php │ │ │ │ │ │ ├── CodeAnalysis/ │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.1.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.2.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.3.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.4.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.5.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.6.inc │ │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.php │ │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.1.inc │ │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.2.inc │ │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.php │ │ │ │ │ │ │ ├── EmptyStatementUnitTest.inc │ │ │ │ │ │ │ ├── EmptyStatementUnitTest.php │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.1.inc │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.2.inc │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.3.inc │ │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.php │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.1.inc │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.2.inc │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.3.inc │ │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.php │ │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.1.inc │ │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.2.inc │ │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.3.inc │ │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.4.inc │ │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.php │ │ │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.inc │ │ │ │ │ │ │ ├── RequireExplicitBooleanOperatorPrecedenceUnitTest.php │ │ │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.1.inc │ │ │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.2.inc │ │ │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.php │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.1.inc │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.2.inc │ │ │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.php │ │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.1.inc │ │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.2.inc │ │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.3.inc │ │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.php │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.1.inc │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.2.inc │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.3.inc │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.4.inc │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.5.inc │ │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.6.inc │ │ │ │ │ │ │ └── UselessOverridingMethodUnitTest.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── DocCommentUnitTest.1.inc │ │ │ │ │ │ │ ├── DocCommentUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── DocCommentUnitTest.1.js │ │ │ │ │ │ │ ├── DocCommentUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── DocCommentUnitTest.2.inc │ │ │ │ │ │ │ ├── DocCommentUnitTest.2.js │ │ │ │ │ │ │ ├── DocCommentUnitTest.php │ │ │ │ │ │ │ ├── FixmeUnitTest.inc │ │ │ │ │ │ │ ├── FixmeUnitTest.js │ │ │ │ │ │ │ ├── FixmeUnitTest.php │ │ │ │ │ │ │ ├── TodoUnitTest.inc │ │ │ │ │ │ │ ├── TodoUnitTest.js │ │ │ │ │ │ │ └── TodoUnitTest.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.inc │ │ │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.php │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.js │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.2.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.2.js │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.3.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.3.js │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.4.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.5.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.6.inc │ │ │ │ │ │ │ ├── InlineControlStructureUnitTest.7.inc │ │ │ │ │ │ │ └── InlineControlStructureUnitTest.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── CSSLintUnitTest.css │ │ │ │ │ │ │ ├── CSSLintUnitTest.php │ │ │ │ │ │ │ ├── ClosureLinterUnitTest.js │ │ │ │ │ │ │ ├── ClosureLinterUnitTest.php │ │ │ │ │ │ │ ├── ESLintUnitTest.js │ │ │ │ │ │ │ ├── ESLintUnitTest.php │ │ │ │ │ │ │ ├── JSHintUnitTest.js │ │ │ │ │ │ │ └── JSHintUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.1.inc │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.2.inc │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.3.inc │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.4.inc │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.5.inc │ │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.php │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.css │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.js │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.css │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.js │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.php │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.10.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.css │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.js │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.4.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.5.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.7.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.8.inc.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.9.inc.fixed │ │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.php │ │ │ │ │ │ │ ├── ExecutableFileUnitTest.1.inc │ │ │ │ │ │ │ ├── ExecutableFileUnitTest.2.inc │ │ │ │ │ │ │ ├── ExecutableFileUnitTest.3.inc │ │ │ │ │ │ │ ├── ExecutableFileUnitTest.4.inc │ │ │ │ │ │ │ ├── ExecutableFileUnitTest.php │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.1.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.2.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.3.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.4.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.5.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.6.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.7.inc │ │ │ │ │ │ │ ├── InlineHTMLUnitTest.php │ │ │ │ │ │ │ ├── LineEndingsUnitTest.1.inc │ │ │ │ │ │ │ ├── LineEndingsUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── LineEndingsUnitTest.2.inc │ │ │ │ │ │ │ ├── LineEndingsUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── LineEndingsUnitTest.css │ │ │ │ │ │ │ ├── LineEndingsUnitTest.css.fixed │ │ │ │ │ │ │ ├── LineEndingsUnitTest.js │ │ │ │ │ │ │ ├── LineEndingsUnitTest.js.fixed │ │ │ │ │ │ │ ├── LineEndingsUnitTest.php │ │ │ │ │ │ │ ├── LineLengthUnitTest.1.inc │ │ │ │ │ │ │ ├── LineLengthUnitTest.2.inc │ │ │ │ │ │ │ ├── LineLengthUnitTest.3.inc │ │ │ │ │ │ │ ├── LineLengthUnitTest.4.inc │ │ │ │ │ │ │ ├── LineLengthUnitTest.php │ │ │ │ │ │ │ ├── LowercasedFilenameUnitTest.1.inc │ │ │ │ │ │ │ ├── LowercasedFilenameUnitTest.2.inc │ │ │ │ │ │ │ ├── LowercasedFilenameUnitTest.php │ │ │ │ │ │ │ ├── OneClassPerFileUnitTest.inc │ │ │ │ │ │ │ ├── OneClassPerFileUnitTest.php │ │ │ │ │ │ │ ├── OneInterfacePerFileUnitTest.inc │ │ │ │ │ │ │ ├── OneInterfacePerFileUnitTest.php │ │ │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.inc │ │ │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.php │ │ │ │ │ │ │ ├── OneTraitPerFileUnitTest.inc │ │ │ │ │ │ │ ├── OneTraitPerFileUnitTest.php │ │ │ │ │ │ │ └── lowercased_filename_unit_test.inc │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc │ │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc.fixed │ │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.php │ │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc │ │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js │ │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js.fixed │ │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.php │ │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc │ │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc.fixed │ │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.php │ │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.1.inc │ │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.2.inc │ │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.php │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.1.inc │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.2.inc │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.js │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.js.fixed │ │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.php │ │ │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc │ │ │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc.fixed │ │ │ │ │ │ │ └── SpaceBeforeCastUnitTest.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.1.inc │ │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.2.inc │ │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.3.inc │ │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.php │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.1.inc │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.2.inc │ │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.php │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed │ │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.php │ │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.1.inc │ │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.2.inc │ │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.3.inc │ │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieUnitTest.php │ │ │ │ │ │ ├── Metrics/ │ │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.1.inc │ │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.2.inc │ │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.3.inc │ │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.php │ │ │ │ │ │ │ ├── NestingLevelUnitTest.1.inc │ │ │ │ │ │ │ ├── NestingLevelUnitTest.2.inc │ │ │ │ │ │ │ ├── NestingLevelUnitTest.3.inc │ │ │ │ │ │ │ └── NestingLevelUnitTest.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.1.inc │ │ │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.2.inc │ │ │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.php │ │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.1.inc │ │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.2.inc │ │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.3.inc │ │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.php │ │ │ │ │ │ │ ├── ConstructorNameUnitTest.1.inc │ │ │ │ │ │ │ ├── ConstructorNameUnitTest.2.inc │ │ │ │ │ │ │ ├── ConstructorNameUnitTest.php │ │ │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.1.inc │ │ │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.2.inc │ │ │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.php │ │ │ │ │ │ │ ├── TraitNameSuffixUnitTest.1.inc │ │ │ │ │ │ │ ├── TraitNameSuffixUnitTest.2.inc │ │ │ │ │ │ │ ├── TraitNameSuffixUnitTest.php │ │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.1.inc │ │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.2.inc │ │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.3.inc │ │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.4.inc │ │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.5.inc │ │ │ │ │ │ │ └── UpperCaseConstantNameUnitTest.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── BacktickOperatorUnitTest.inc │ │ │ │ │ │ │ ├── BacktickOperatorUnitTest.php │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.1.inc │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.2.inc │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.3.inc │ │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.php │ │ │ │ │ │ │ ├── ClosingPHPTagUnitTest.1.inc │ │ │ │ │ │ │ ├── ClosingPHPTagUnitTest.2.inc │ │ │ │ │ │ │ ├── ClosingPHPTagUnitTest.php │ │ │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.php │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.3.inc │ │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.php │ │ │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.inc │ │ │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.php │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.3.inc │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.4.inc │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.5.inc │ │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.php │ │ │ │ │ │ │ ├── DiscourageGotoUnitTest.inc │ │ │ │ │ │ │ ├── DiscourageGotoUnitTest.php │ │ │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.inc │ │ │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.php │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.1.inc │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.2.inc │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.js │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.js.fixed │ │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.php │ │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc │ │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.php │ │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc │ │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.php │ │ │ │ │ │ │ ├── NoSilencedErrorsUnitTest.inc │ │ │ │ │ │ │ ├── NoSilencedErrorsUnitTest.php │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.1.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.10.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.11.inc.fixed │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.12.inc.fixed │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.13.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.14.inc.fixed │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.15.inc.fixed │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.2.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.3.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.4.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.5.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.6.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.7.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.8.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.9.inc │ │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.php │ │ │ │ │ │ │ ├── SAPIUsageUnitTest.inc │ │ │ │ │ │ │ ├── SAPIUsageUnitTest.php │ │ │ │ │ │ │ ├── SyntaxUnitTest.1.inc │ │ │ │ │ │ │ ├── SyntaxUnitTest.2.inc │ │ │ │ │ │ │ ├── SyntaxUnitTest.php │ │ │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc │ │ │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc.fixed │ │ │ │ │ │ │ └── UpperCaseConstantUnitTest.php │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.1.inc │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.2.inc │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.3.inc │ │ │ │ │ │ │ ├── UnnecessaryHeredocUnitTest.php │ │ │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.1.inc │ │ │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.2.inc │ │ │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.js │ │ │ │ │ │ │ └── UnnecessaryStringConcatUnitTest.php │ │ │ │ │ │ ├── VersionControl/ │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.1.css │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.1.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.2.css │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.2.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.3.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.4.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.5.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.6.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.7.inc │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.js │ │ │ │ │ │ │ ├── GitMergeConflictUnitTest.php │ │ │ │ │ │ │ ├── SubversionPropertiesUnitTest.inc │ │ │ │ │ │ │ └── SubversionPropertiesUnitTest.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.2.inc │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.php │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.3.inc.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.4.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.php │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.3.inc │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.css │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.css.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.js │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.js.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.php │ │ │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.inc │ │ │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── HereNowdocIdentifierSpacingUnitTest.php │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.php │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.2.inc │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.js │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.js.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.4.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.php │ │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.1.inc │ │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.1.inc.fixed │ │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.2.inc │ │ │ │ │ │ └── SpreadOperatorSpacingAfterUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── MySource/ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── CSS/ │ │ │ │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ │ │ │ ├── Channels/ │ │ │ │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ │ │ │ └── UnusedSystemSniff.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ └── FunctionCommentSniff.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ │ │ │ └── FirebugConsoleSniff.php │ │ │ │ │ │ ├── Objects/ │ │ │ │ │ │ │ ├── AssignThisSniff.php │ │ │ │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ │ │ │ └── Strings/ │ │ │ │ │ │ └── JoinStringsSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── CSS/ │ │ │ │ │ │ │ ├── BrowserSpecificStylesUnitTest.css │ │ │ │ │ │ │ └── BrowserSpecificStylesUnitTest.php │ │ │ │ │ │ ├── Channels/ │ │ │ │ │ │ │ ├── DisallowSelfActionsUnitTest.inc │ │ │ │ │ │ │ ├── DisallowSelfActionsUnitTest.php │ │ │ │ │ │ │ ├── IncludeSystemUnitTest.inc │ │ │ │ │ │ │ ├── IncludeSystemUnitTest.php │ │ │ │ │ │ │ ├── UnusedSystemUnitTest.inc │ │ │ │ │ │ │ └── UnusedSystemUnitTest.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ │ └── FunctionCommentUnitTest.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── DebugCodeUnitTest.inc │ │ │ │ │ │ │ ├── DebugCodeUnitTest.php │ │ │ │ │ │ │ ├── FirebugConsoleUnitTest.js │ │ │ │ │ │ │ └── FirebugConsoleUnitTest.php │ │ │ │ │ │ ├── Objects/ │ │ │ │ │ │ │ ├── AssignThisUnitTest.js │ │ │ │ │ │ │ ├── AssignThisUnitTest.php │ │ │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.js │ │ │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.php │ │ │ │ │ │ │ ├── DisallowNewWidgetUnitTest.inc │ │ │ │ │ │ │ └── DisallowNewWidgetUnitTest.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── AjaxNullComparisonUnitTest.inc │ │ │ │ │ │ │ ├── AjaxNullComparisonUnitTest.php │ │ │ │ │ │ │ ├── EvalObjectFactoryUnitTest.inc │ │ │ │ │ │ │ ├── EvalObjectFactoryUnitTest.php │ │ │ │ │ │ │ ├── GetRequestDataUnitTest.inc │ │ │ │ │ │ │ ├── GetRequestDataUnitTest.php │ │ │ │ │ │ │ ├── ReturnFunctionValueUnitTest.inc │ │ │ │ │ │ │ └── ReturnFunctionValueUnitTest.php │ │ │ │ │ │ └── Strings/ │ │ │ │ │ │ ├── JoinStringsUnitTest.js │ │ │ │ │ │ └── JoinStringsUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PEAR/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ │ │ │ └── InlineCommentStandard.xml │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ └── IncludingFileStandard.xml │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ └── InlineCommentSniff.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ └── MultiLineConditionSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ └── IncludingFileSniff.php │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ │ │ └── InlineCommentUnitTest.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ │ │ ├── MultiLineConditionUnitTest.inc │ │ │ │ │ │ │ ├── MultiLineConditionUnitTest.inc.fixed │ │ │ │ │ │ │ ├── MultiLineConditionUnitTest.js │ │ │ │ │ │ │ ├── MultiLineConditionUnitTest.js.fixed │ │ │ │ │ │ │ └── MultiLineConditionUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── IncludingFileUnitTest.inc │ │ │ │ │ │ │ ├── IncludingFileUnitTest.inc.fixed │ │ │ │ │ │ │ └── IncludingFileUnitTest.php │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ ├── MultiLineAssignmentUnitTest.inc │ │ │ │ │ │ │ └── MultiLineAssignmentUnitTest.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js.fixed │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.2.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.3.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.4.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.js │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.js.fixed │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ValidDefaultValueUnitTest.1.inc │ │ │ │ │ │ │ ├── ValidDefaultValueUnitTest.2.inc │ │ │ │ │ │ │ └── ValidDefaultValueUnitTest.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ │ │ ├── ValidClassNameUnitTest.php │ │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc.fixed │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.php │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ │ ├── ScopeIndentUnitTest.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.inc.fixed │ │ │ │ │ │ └── ScopeIndentUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PSR1/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ └── SideEffectsStandard.xml │ │ │ │ │ │ └── Methods/ │ │ │ │ │ │ └── CamelCapsMethodNameStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ └── SideEffectsSniff.php │ │ │ │ │ │ └── Methods/ │ │ │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.3.inc │ │ │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── SideEffectsUnitTest.1.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.10.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.11.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.12.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.13.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.14.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.15.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.16.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.17.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.2.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.3.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.4.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.5.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.6.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.7.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.8.inc │ │ │ │ │ │ │ ├── SideEffectsUnitTest.9.inc │ │ │ │ │ │ │ └── SideEffectsUnitTest.php │ │ │ │ │ │ └── Methods/ │ │ │ │ │ │ ├── CamelCapsMethodNameUnitTest.inc │ │ │ │ │ │ └── CamelCapsMethodNameUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PSR12/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassInstantiationStandard.xml │ │ │ │ │ │ │ ├── ClosingBraceStandard.xml │ │ │ │ │ │ │ └── OpeningBraceSpaceStandard.xml │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── BooleanOperatorPlacementStandard.xml │ │ │ │ │ │ │ └── ControlStructureSpacingStandard.xml │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ImportStatementStandard.xml │ │ │ │ │ │ │ └── OpenTagStandard.xml │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── NullableTypeDeclarationStandard.xml │ │ │ │ │ │ │ └── ReturnTypeDeclarationStandard.xml │ │ │ │ │ │ ├── Keywords/ │ │ │ │ │ │ │ └── ShortFormTypeKeywordsStandard.xml │ │ │ │ │ │ ├── Namespaces/ │ │ │ │ │ │ │ └── CompoundNamespaceDepthStandard.xml │ │ │ │ │ │ ├── Operators/ │ │ │ │ │ │ │ └── OperatorSpacingStandard.xml │ │ │ │ │ │ └── Properties/ │ │ │ │ │ │ └── ConstantVisibilityStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── AnonClassDeclarationSniff.php │ │ │ │ │ │ │ ├── ClassInstantiationSniff.php │ │ │ │ │ │ │ ├── ClosingBraceSniff.php │ │ │ │ │ │ │ └── OpeningBraceSpaceSniff.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── BooleanOperatorPlacementSniff.php │ │ │ │ │ │ │ └── ControlStructureSpacingSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── DeclareStatementSniff.php │ │ │ │ │ │ │ ├── FileHeaderSniff.php │ │ │ │ │ │ │ ├── ImportStatementSniff.php │ │ │ │ │ │ │ └── OpenTagSniff.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── NullableTypeDeclarationSniff.php │ │ │ │ │ │ │ └── ReturnTypeDeclarationSniff.php │ │ │ │ │ │ ├── Keywords/ │ │ │ │ │ │ │ └── ShortFormTypeKeywordsSniff.php │ │ │ │ │ │ ├── Namespaces/ │ │ │ │ │ │ │ └── CompoundNamespaceDepthSniff.php │ │ │ │ │ │ ├── Operators/ │ │ │ │ │ │ │ └── OperatorSpacingSniff.php │ │ │ │ │ │ ├── Properties/ │ │ │ │ │ │ │ └── ConstantVisibilitySniff.php │ │ │ │ │ │ └── Traits/ │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ClassInstantiationUnitTest.inc │ │ │ │ │ │ │ ├── ClassInstantiationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ClassInstantiationUnitTest.php │ │ │ │ │ │ │ ├── ClosingBraceUnitTest.inc │ │ │ │ │ │ │ ├── ClosingBraceUnitTest.php │ │ │ │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc │ │ │ │ │ │ │ ├── OpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ │ │ │ └── OpeningBraceSpaceUnitTest.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc │ │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc.fixed │ │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.php │ │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ │ └── ControlStructureSpacingUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── DeclareStatementUnitTest.1.inc │ │ │ │ │ │ │ ├── DeclareStatementUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── DeclareStatementUnitTest.2.inc │ │ │ │ │ │ │ ├── DeclareStatementUnitTest.php │ │ │ │ │ │ │ ├── FileHeaderUnitTest.1.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.10.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.10.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.11.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.11.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.12.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.12.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.13.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.14.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.15.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.16.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.17.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.18.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.19.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.2.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.3.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.4.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.5.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.6.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.7.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.7.inc.fixed │ │ │ │ │ │ │ ├── FileHeaderUnitTest.8.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.9.inc │ │ │ │ │ │ │ ├── FileHeaderUnitTest.php │ │ │ │ │ │ │ ├── ImportStatementUnitTest.inc │ │ │ │ │ │ │ ├── ImportStatementUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ImportStatementUnitTest.php │ │ │ │ │ │ │ ├── OpenTagUnitTest.1.inc │ │ │ │ │ │ │ ├── OpenTagUnitTest.2.inc │ │ │ │ │ │ │ ├── OpenTagUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── OpenTagUnitTest.3.inc │ │ │ │ │ │ │ ├── OpenTagUnitTest.4.inc │ │ │ │ │ │ │ ├── OpenTagUnitTest.5.inc │ │ │ │ │ │ │ └── OpenTagUnitTest.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ └── ReturnTypeDeclarationUnitTest.php │ │ │ │ │ │ ├── Keywords/ │ │ │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc │ │ │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc.fixed │ │ │ │ │ │ │ └── ShortFormTypeKeywordsUnitTest.php │ │ │ │ │ │ ├── Namespaces/ │ │ │ │ │ │ │ ├── CompoundNamespaceDepthUnitTest.inc │ │ │ │ │ │ │ └── CompoundNamespaceDepthUnitTest.php │ │ │ │ │ │ ├── Operators/ │ │ │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ │ │ │ ├── OperatorSpacingUnitTest.3.inc │ │ │ │ │ │ │ └── OperatorSpacingUnitTest.php │ │ │ │ │ │ ├── Properties/ │ │ │ │ │ │ │ ├── ConstantVisibilityUnitTest.1.inc │ │ │ │ │ │ │ ├── ConstantVisibilityUnitTest.2.inc │ │ │ │ │ │ │ └── ConstantVisibilityUnitTest.php │ │ │ │ │ │ └── Traits/ │ │ │ │ │ │ ├── UseDeclarationUnitTest.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── PSR2/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ClosingTagStandard.xml │ │ │ │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ │ │ │ ├── Methods/ │ │ │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ │ │ ├── FunctionClosingBraceStandard.xml │ │ │ │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ │ │ │ └── Namespaces/ │ │ │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ │ │ └── UseDeclarationStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ │ │ │ └── EndFileNewlineSniff.php │ │ │ │ │ │ ├── Methods/ │ │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ │ │ │ └── MethodDeclarationSniff.php │ │ │ │ │ │ └── Namespaces/ │ │ │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ └── PropertyDeclarationUnitTest.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ │ │ │ ├── ClosingTagUnitTest.php │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.11.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.11.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.12.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.12.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.13.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.13.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.14.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc │ │ │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc.fixed │ │ │ │ │ │ │ └── EndFileNewlineUnitTest.php │ │ │ │ │ │ ├── Methods/ │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc │ │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.php │ │ │ │ │ │ │ ├── MethodDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── MethodDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ └── MethodDeclarationUnitTest.php │ │ │ │ │ │ └── Namespaces/ │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.php │ │ │ │ │ │ ├── UseDeclarationUnitTest.1.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.15.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.17.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.18.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.4.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.6.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.7.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.8.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.9.inc │ │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── Squiz/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassFileNameStandard.xml │ │ │ │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ │ │ │ ├── SelfMemberReferenceStandard.xml │ │ │ │ │ │ │ └── ValidClassNameStandard.xml │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── BlockCommentStandard.xml │ │ │ │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ └── HeredocStandard.xml │ │ │ │ │ │ ├── Scope/ │ │ │ │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ └── EchoedStringsStandard.xml │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ │ │ ├── FunctionClosingBraceSpaceStandard.xml │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceStandard.xml │ │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ │ ├── MemberVarSpacingStandard.xml │ │ │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ │ │ ├── SemicolonSpacingStandard.xml │ │ │ │ │ │ └── SuperfluousWhitespaceStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ │ │ │ ├── CSS/ │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ │ │ │ ├── MissingColonSniff.php │ │ │ │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ │ │ │ ├── OpacitySniff.php │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ └── ShorthandSizeSniff.php │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ │ │ │ └── ValidClassNameSniff.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ │ │ │ └── VariableCommentSniff.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── JSLintSniff.php │ │ │ │ │ │ │ └── JavaScriptLintSniff.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ └── FileExtensionSniff.php │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ └── OperatorBracketSniff.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ │ ├── Objects/ │ │ │ │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ │ │ │ ├── Operators/ │ │ │ │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ │ │ │ ├── EvalSniff.php │ │ │ │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ │ │ │ ├── HeredocSniff.php │ │ │ │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ │ │ │ ├── Scope/ │ │ │ │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ │ │ │ └── StaticThisUsageSniff.php │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ │ │ │ └── EchoedStringsSniff.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ │ │ │ ├── Tests/ │ │ │ │ │ │ ├── Arrays/ │ │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc │ │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.php │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.3.inc │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.4.inc │ │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.4.inc.fixed │ │ │ │ │ │ │ └── ArrayDeclarationUnitTest.php │ │ │ │ │ │ ├── CSS/ │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css.fixed │ │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.php │ │ │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.css │ │ │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.php │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed │ │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.php │ │ │ │ │ │ │ ├── ColonSpacingUnitTest.css │ │ │ │ │ │ │ ├── ColonSpacingUnitTest.css.fixed │ │ │ │ │ │ │ ├── ColonSpacingUnitTest.php │ │ │ │ │ │ │ ├── ColourDefinitionUnitTest.css │ │ │ │ │ │ │ ├── ColourDefinitionUnitTest.css.fixed │ │ │ │ │ │ │ ├── ColourDefinitionUnitTest.php │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css.fixed │ │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.php │ │ │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.css │ │ │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.php │ │ │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.css │ │ │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.php │ │ │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.css │ │ │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.php │ │ │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.css │ │ │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.php │ │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.css │ │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.css.fixed │ │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.php │ │ │ │ │ │ │ ├── IndentationUnitTest.1.css │ │ │ │ │ │ │ ├── IndentationUnitTest.1.css.fixed │ │ │ │ │ │ │ ├── IndentationUnitTest.2.css │ │ │ │ │ │ │ ├── IndentationUnitTest.php │ │ │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.css │ │ │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.php │ │ │ │ │ │ │ ├── MissingColonUnitTest.css │ │ │ │ │ │ │ ├── MissingColonUnitTest.php │ │ │ │ │ │ │ ├── NamedColoursUnitTest.css │ │ │ │ │ │ │ ├── NamedColoursUnitTest.php │ │ │ │ │ │ │ ├── OpacityUnitTest.css │ │ │ │ │ │ │ ├── OpacityUnitTest.css.fixed │ │ │ │ │ │ │ ├── OpacityUnitTest.php │ │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.css │ │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.css.fixed │ │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ │ │ ├── ShorthandSizeUnitTest.1.css │ │ │ │ │ │ │ ├── ShorthandSizeUnitTest.1.css.fixed │ │ │ │ │ │ │ ├── ShorthandSizeUnitTest.2.css │ │ │ │ │ │ │ └── ShorthandSizeUnitTest.php │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ClassFileName Spaces In FilenameUnitTest.inc │ │ │ │ │ │ │ ├── ClassFileName-Dashes-In-FilenameUnitTest.inc │ │ │ │ │ │ │ ├── ClassFileNameLiveCodingFailUnitTest.inc │ │ │ │ │ │ │ ├── ClassFileNameLiveCodingPassUnitTest.inc │ │ │ │ │ │ │ ├── ClassFileNameParseError1UnitTest.inc │ │ │ │ │ │ │ ├── ClassFileNameUnitTest.inc │ │ │ │ │ │ │ ├── ClassFileNameUnitTest.php │ │ │ │ │ │ │ ├── DuplicatePropertyUnitTest.js │ │ │ │ │ │ │ ├── DuplicatePropertyUnitTest.php │ │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc │ │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.php │ │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc │ │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc.fixed │ │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.php │ │ │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ │ │ └── ValidClassNameUnitTest.php │ │ │ │ │ │ ├── Commenting/ │ │ │ │ │ │ │ ├── BlockCommentUnitTest.inc │ │ │ │ │ │ │ ├── BlockCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── BlockCommentUnitTest.php │ │ │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.2.inc │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.3.inc │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.5.inc.fixed │ │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.php │ │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc │ │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js │ │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js.fixed │ │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.php │ │ │ │ │ │ │ ├── EmptyCatchCommentUnitTest.inc │ │ │ │ │ │ │ ├── EmptyCatchCommentUnitTest.php │ │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── FileCommentUnitTest.1.js │ │ │ │ │ │ │ ├── FileCommentUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── FileCommentUnitTest.10.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.2.js │ │ │ │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.5.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.6.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.7.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.8.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.9.inc │ │ │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.inc │ │ │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.php │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── InlineCommentUnitTest.js │ │ │ │ │ │ │ ├── InlineCommentUnitTest.js.fixed │ │ │ │ │ │ │ ├── InlineCommentUnitTest.php │ │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc │ │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js │ │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js.fixed │ │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.php │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.2.js │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.inc │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.inc.fixed │ │ │ │ │ │ │ ├── PostStatementCommentUnitTest.php │ │ │ │ │ │ │ ├── VariableCommentUnitTest.inc │ │ │ │ │ │ │ ├── VariableCommentUnitTest.inc.fixed │ │ │ │ │ │ │ └── VariableCommentUnitTest.php │ │ │ │ │ │ ├── ControlStructures/ │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.1.inc │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.2.inc │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.js │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.js.fixed │ │ │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.php │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.js │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.1.js.fixed │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.2.inc │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.2.js │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.3.inc │ │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.php │ │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.php │ │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.php │ │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.js │ │ │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ │ ├── JSLintUnitTest.js │ │ │ │ │ │ │ ├── JSLintUnitTest.php │ │ │ │ │ │ │ ├── JavaScriptLintUnitTest.js │ │ │ │ │ │ │ └── JavaScriptLintUnitTest.php │ │ │ │ │ │ ├── Files/ │ │ │ │ │ │ │ ├── FileExtensionUnitTest.1.inc │ │ │ │ │ │ │ ├── FileExtensionUnitTest.2.inc │ │ │ │ │ │ │ ├── FileExtensionUnitTest.3.inc │ │ │ │ │ │ │ ├── FileExtensionUnitTest.4.inc │ │ │ │ │ │ │ ├── FileExtensionUnitTest.5.inc │ │ │ │ │ │ │ └── FileExtensionUnitTest.php │ │ │ │ │ │ ├── Formatting/ │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.1.inc │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.2.inc │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.3.inc │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.js │ │ │ │ │ │ │ ├── OperatorBracketUnitTest.js.fixed │ │ │ │ │ │ │ └── OperatorBracketUnitTest.php │ │ │ │ │ │ ├── Functions/ │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.1.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.2.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.3.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.4.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.5.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.6.inc │ │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.php │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.1.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.2.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.3.inc │ │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.inc │ │ │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.php │ │ │ │ │ │ │ ├── GlobalFunctionUnitTest.inc │ │ │ │ │ │ │ ├── GlobalFunctionUnitTest.php │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.php │ │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc │ │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc.fixed │ │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js │ │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js.fixed │ │ │ │ │ │ │ └── MultiLineFunctionDeclarationUnitTest.php │ │ │ │ │ │ ├── NamingConventions/ │ │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ │ │ ├── Objects/ │ │ │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.js │ │ │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.php │ │ │ │ │ │ │ ├── ObjectInstantiationUnitTest.inc │ │ │ │ │ │ │ ├── ObjectInstantiationUnitTest.php │ │ │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js │ │ │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js.fixed │ │ │ │ │ │ │ └── ObjectMemberCommaUnitTest.php │ │ │ │ │ │ ├── Operators/ │ │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.inc │ │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.js │ │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.php │ │ │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.inc │ │ │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.php │ │ │ │ │ │ │ ├── ValidLogicalOperatorsUnitTest.inc │ │ │ │ │ │ │ └── ValidLogicalOperatorsUnitTest.php │ │ │ │ │ │ ├── PHP/ │ │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.css │ │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.inc │ │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.php │ │ │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.inc │ │ │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.php │ │ │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.inc │ │ │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.php │ │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.inc │ │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.js │ │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.php │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.1.inc │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.2.inc │ │ │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.php │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.inc │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.js │ │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.php │ │ │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.php │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.1.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.10.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.11.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.12.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.13.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.14.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.15.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.16.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.17.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.18.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.19.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.2.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.20.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.21.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.22.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.23.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.24.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.24.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.25.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.25.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.3.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.4.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.5.inc.fixed │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.6.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.7.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.8.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.9.inc │ │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.php │ │ │ │ │ │ │ ├── EvalUnitTest.inc │ │ │ │ │ │ │ ├── EvalUnitTest.php │ │ │ │ │ │ │ ├── GlobalKeywordUnitTest.inc │ │ │ │ │ │ │ ├── GlobalKeywordUnitTest.php │ │ │ │ │ │ │ ├── HeredocUnitTest.1.inc │ │ │ │ │ │ │ ├── HeredocUnitTest.2.inc │ │ │ │ │ │ │ ├── HeredocUnitTest.php │ │ │ │ │ │ │ ├── InnerFunctionsUnitTest.inc │ │ │ │ │ │ │ ├── InnerFunctionsUnitTest.php │ │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc │ │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc.fixed │ │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.php │ │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.1.inc │ │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.2.inc │ │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.3.inc │ │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.4.inc │ │ │ │ │ │ │ └── NonExecutableCodeUnitTest.php │ │ │ │ │ │ ├── Scope/ │ │ │ │ │ │ │ ├── MemberVarScopeUnitTest.inc │ │ │ │ │ │ │ ├── MemberVarScopeUnitTest.php │ │ │ │ │ │ │ ├── MethodScopeUnitTest.inc │ │ │ │ │ │ │ ├── MethodScopeUnitTest.php │ │ │ │ │ │ │ ├── StaticThisUsageUnitTest.inc │ │ │ │ │ │ │ └── StaticThisUsageUnitTest.php │ │ │ │ │ │ ├── Strings/ │ │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc │ │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc.fixed │ │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.php │ │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc │ │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc.fixed │ │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.php │ │ │ │ │ │ │ ├── EchoedStringsUnitTest.inc │ │ │ │ │ │ │ ├── EchoedStringsUnitTest.inc.fixed │ │ │ │ │ │ │ └── EchoedStringsUnitTest.php │ │ │ │ │ │ └── WhiteSpace/ │ │ │ │ │ │ ├── CastSpacingUnitTest.inc │ │ │ │ │ │ ├── CastSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── CastSpacingUnitTest.php │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.php │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.php │ │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.4.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.7.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.php │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.php │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.1.inc │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.2.inc │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.3.inc │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.php │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.php │ │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc │ │ │ │ │ │ ├── OperatorSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── OperatorSpacingUnitTest.2.inc │ │ │ │ │ │ ├── OperatorSpacingUnitTest.3.inc │ │ │ │ │ │ ├── OperatorSpacingUnitTest.js │ │ │ │ │ │ ├── OperatorSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── OperatorSpacingUnitTest.php │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.php │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.2.inc │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.3.inc.fixed │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.4.inc │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.php │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.js │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc.fixed │ │ │ │ │ │ └── SuperfluousWhitespaceUnitTest.php │ │ │ │ │ └── ruleset.xml │ │ │ │ └── Zend/ │ │ │ │ ├── Docs/ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ └── CodeAnalyzerStandard.xml │ │ │ │ │ ├── Files/ │ │ │ │ │ │ └── ClosingTagStandard.xml │ │ │ │ │ └── NamingConventions/ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ ├── Sniffs/ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ └── CodeAnalyzerSniff.php │ │ │ │ │ ├── Files/ │ │ │ │ │ │ └── ClosingTagSniff.php │ │ │ │ │ └── NamingConventions/ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ ├── Tests/ │ │ │ │ │ ├── Debug/ │ │ │ │ │ │ ├── CodeAnalyzerUnitTest.inc │ │ │ │ │ │ └── CodeAnalyzerUnitTest.php │ │ │ │ │ ├── Files/ │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.3.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ │ │ └── ClosingTagUnitTest.php │ │ │ │ │ └── NamingConventions/ │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── Tokenizers/ │ │ │ │ ├── CSS.php │ │ │ │ ├── Comment.php │ │ │ │ ├── JS.php │ │ │ │ ├── PHP.php │ │ │ │ └── Tokenizer.php │ │ │ └── Util/ │ │ │ ├── Cache.php │ │ │ ├── Common.php │ │ │ ├── Help.php │ │ │ ├── MessageCollector.php │ │ │ ├── Standards.php │ │ │ ├── Timing.php │ │ │ └── Tokens.php │ │ └── tests/ │ │ ├── AllTests.php │ │ ├── ConfigDouble.php │ │ ├── Core/ │ │ │ ├── AbstractMethodUnitTest.php │ │ │ ├── AllTests.php │ │ │ ├── Autoloader/ │ │ │ │ ├── DetermineLoadedClassTest.php │ │ │ │ └── TestFiles/ │ │ │ │ ├── A.inc │ │ │ │ ├── B.inc │ │ │ │ ├── C.inc │ │ │ │ └── Sub/ │ │ │ │ └── C.inc │ │ │ ├── Config/ │ │ │ │ ├── AbstractRealConfigTestCase.php │ │ │ │ ├── ExtensionsArgTest.php │ │ │ │ ├── GeneratorArgTest.php │ │ │ │ ├── ReportArgsTest.php │ │ │ │ ├── ReportWidthTest.php │ │ │ │ └── SniffsExcludeArgsTest.php │ │ │ ├── ErrorSuppressionTest.php │ │ │ ├── Files/ │ │ │ │ └── File/ │ │ │ │ ├── FindEndOfStatementTest.inc │ │ │ │ ├── FindEndOfStatementTest.php │ │ │ │ ├── FindExtendedClassNameTest.inc │ │ │ │ ├── FindExtendedClassNameTest.php │ │ │ │ ├── FindImplementedInterfaceNamesTest.inc │ │ │ │ ├── FindImplementedInterfaceNamesTest.php │ │ │ │ ├── FindStartOfStatementTest.inc │ │ │ │ ├── FindStartOfStatementTest.php │ │ │ │ ├── GetClassPropertiesTest.inc │ │ │ │ ├── GetClassPropertiesTest.php │ │ │ │ ├── GetConditionTest.inc │ │ │ │ ├── GetConditionTest.php │ │ │ │ ├── GetDeclarationNameJSTest.js │ │ │ │ ├── GetDeclarationNameJSTest.php │ │ │ │ ├── GetDeclarationNameParseError1Test.inc │ │ │ │ ├── GetDeclarationNameParseError1Test.php │ │ │ │ ├── GetDeclarationNameParseError2Test.inc │ │ │ │ ├── GetDeclarationNameParseError2Test.php │ │ │ │ ├── GetDeclarationNameTest.inc │ │ │ │ ├── GetDeclarationNameTest.php │ │ │ │ ├── GetMemberPropertiesTest.inc │ │ │ │ ├── GetMemberPropertiesTest.php │ │ │ │ ├── GetMethodParametersParseError1Test.inc │ │ │ │ ├── GetMethodParametersParseError1Test.php │ │ │ │ ├── GetMethodParametersParseError2Test.inc │ │ │ │ ├── GetMethodParametersParseError2Test.php │ │ │ │ ├── GetMethodParametersTest.inc │ │ │ │ ├── GetMethodParametersTest.php │ │ │ │ ├── GetMethodPropertiesTest.inc │ │ │ │ ├── GetMethodPropertiesTest.php │ │ │ │ ├── GetTokensAsStringTest.inc │ │ │ │ ├── GetTokensAsStringTest.php │ │ │ │ ├── IsReferenceTest.inc │ │ │ │ └── IsReferenceTest.php │ │ │ ├── Filters/ │ │ │ │ ├── AbstractFilterTestCase.php │ │ │ │ ├── Filter/ │ │ │ │ │ ├── AcceptTest.php │ │ │ │ │ └── AcceptTest.xml │ │ │ │ ├── GitModifiedTest.php │ │ │ │ └── GitStagedTest.php │ │ │ ├── Fixer/ │ │ │ │ ├── FixFileReturnValueAllGoodTest.xml │ │ │ │ ├── FixFileReturnValueConflictTest.xml │ │ │ │ ├── FixFileReturnValueNotEnoughLoopsTest.xml │ │ │ │ ├── FixFileReturnValueTest.php │ │ │ │ ├── Fixtures/ │ │ │ │ │ ├── GenerateDiffTest-BlankLinesAtEnd.diff │ │ │ │ │ ├── GenerateDiffTest-BlankLinesAtEnd.inc │ │ │ │ │ ├── GenerateDiffTest-BlankLinesAtStart.diff │ │ │ │ │ ├── GenerateDiffTest-BlankLinesAtStart.inc │ │ │ │ │ ├── GenerateDiffTest-LineAdded.diff │ │ │ │ │ ├── GenerateDiffTest-LineAdded.inc │ │ │ │ │ ├── GenerateDiffTest-LineRemoved.diff │ │ │ │ │ ├── GenerateDiffTest-LineRemoved.inc │ │ │ │ │ ├── GenerateDiffTest-NoDiff.diff │ │ │ │ │ ├── GenerateDiffTest-NoDiff.inc │ │ │ │ │ ├── GenerateDiffTest-NoTrailingWhitespace.diff │ │ │ │ │ ├── GenerateDiffTest-NoTrailingWhitespace.inc │ │ │ │ │ ├── GenerateDiffTest-TabsToSpaces.diff │ │ │ │ │ ├── GenerateDiffTest-TabsToSpaces.inc │ │ │ │ │ ├── GenerateDiffTest-VarNameChanged.diff │ │ │ │ │ ├── GenerateDiffTest-VarNameChanged.inc │ │ │ │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.diff │ │ │ │ │ ├── GenerateDiffTest-WhiteSpaceAtEnd.inc │ │ │ │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.diff │ │ │ │ │ ├── GenerateDiffTest-WhiteSpaceAtStart.inc │ │ │ │ │ ├── GenerateDiffTest-WindowsLineEndings.inc │ │ │ │ │ ├── GenerateDiffTest.inc │ │ │ │ │ ├── TestStandard/ │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ └── FixFileReturnValue/ │ │ │ │ │ │ │ ├── AllGoodSniff.php │ │ │ │ │ │ │ ├── ConflictSniff.php │ │ │ │ │ │ │ └── NotEnoughLoopsSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ └── test.inc │ │ │ │ └── GenerateDiffTest.php │ │ │ ├── Generators/ │ │ │ │ ├── AllValidDocsTest.xml │ │ │ │ ├── AnchorLinksTest.xml │ │ │ │ ├── Expectations/ │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlankLines.html │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlankLines.md │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlankLines.txt │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlockLength.html │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlockLength.md │ │ │ │ │ ├── ExpectedOutputCodeComparisonBlockLength.txt │ │ │ │ │ ├── ExpectedOutputCodeComparisonEncoding.html │ │ │ │ │ ├── ExpectedOutputCodeComparisonEncoding.md │ │ │ │ │ ├── ExpectedOutputCodeComparisonEncoding.txt │ │ │ │ │ ├── ExpectedOutputCodeComparisonLineLength.html │ │ │ │ │ ├── ExpectedOutputCodeComparisonLineLength.md │ │ │ │ │ ├── ExpectedOutputCodeComparisonLineLength.txt │ │ │ │ │ ├── ExpectedOutputCodeTitleLineWrapping.html │ │ │ │ │ ├── ExpectedOutputCodeTitleLineWrapping.md │ │ │ │ │ ├── ExpectedOutputCodeTitleLineWrapping.txt │ │ │ │ │ ├── ExpectedOutputCodeTitleWhitespace.html │ │ │ │ │ ├── ExpectedOutputCodeTitleWhitespace.md │ │ │ │ │ ├── ExpectedOutputCodeTitleWhitespace.txt │ │ │ │ │ ├── ExpectedOutputDocumentationTitleCase.html │ │ │ │ │ ├── ExpectedOutputDocumentationTitleCase.md │ │ │ │ │ ├── ExpectedOutputDocumentationTitleCase.txt │ │ │ │ │ ├── ExpectedOutputDocumentationTitleLength.html │ │ │ │ │ ├── ExpectedOutputDocumentationTitleLength.md │ │ │ │ │ ├── ExpectedOutputDocumentationTitleLength.txt │ │ │ │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.html │ │ │ │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.md │ │ │ │ │ ├── ExpectedOutputDocumentationTitlePCREFallback.txt │ │ │ │ │ ├── ExpectedOutputDocumentationTitleToAnchorSlug.html │ │ │ │ │ ├── ExpectedOutputEmpty.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonMissingCodeElm.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoCode.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonNoContent.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleEmpty.txt │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleMissing.html │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleMissing.md │ │ │ │ │ ├── ExpectedOutputInvalidCodeTitleMissing.txt │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.html │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.md │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleEmpty.txt │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.html │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.md │ │ │ │ │ ├── ExpectedOutputInvalidDocumentationTitleMissing.txt │ │ │ │ │ ├── ExpectedOutputInvalidStandardNoContent.html │ │ │ │ │ ├── ExpectedOutputInvalidStandardNoContent.md │ │ │ │ │ ├── ExpectedOutputInvalidStandardNoContent.txt │ │ │ │ │ ├── ExpectedOutputOneDoc.html │ │ │ │ │ ├── ExpectedOutputOneDoc.md │ │ │ │ │ ├── ExpectedOutputOneDoc.txt │ │ │ │ │ ├── ExpectedOutputStandardBlankLines.html │ │ │ │ │ ├── ExpectedOutputStandardBlankLines.md │ │ │ │ │ ├── ExpectedOutputStandardBlankLines.txt │ │ │ │ │ ├── ExpectedOutputStandardEncoding.html │ │ │ │ │ ├── ExpectedOutputStandardEncoding.md │ │ │ │ │ ├── ExpectedOutputStandardEncoding.txt │ │ │ │ │ ├── ExpectedOutputStandardIndent.html │ │ │ │ │ ├── ExpectedOutputStandardIndent.md │ │ │ │ │ ├── ExpectedOutputStandardIndent.txt │ │ │ │ │ ├── ExpectedOutputStandardLineWrapping.html │ │ │ │ │ ├── ExpectedOutputStandardLineWrapping.md │ │ │ │ │ ├── ExpectedOutputStandardLineWrapping.txt │ │ │ │ │ ├── ExpectedOutputStructureDocs.html │ │ │ │ │ ├── ExpectedOutputStructureDocs.md │ │ │ │ │ ├── ExpectedOutputStructureDocs.txt │ │ │ │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.html │ │ │ │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.md │ │ │ │ │ ├── ExpectedOutputUnsupportedOneElmAtWrongLevel.txt │ │ │ │ │ ├── ExpectedOutputUnsupportedSuperfluousCodeElement.html │ │ │ │ │ ├── ExpectedOutputUnsupportedSuperfluousCodeElement.md │ │ │ │ │ └── ExpectedOutputUnsupportedSuperfluousCodeElement.txt │ │ │ │ ├── Fixtures/ │ │ │ │ │ ├── HTMLDouble.php │ │ │ │ │ ├── MarkdownDouble.php │ │ │ │ │ ├── MockGenerator.php │ │ │ │ │ └── StandardWithDocs/ │ │ │ │ │ ├── Docs/ │ │ │ │ │ │ ├── Content/ │ │ │ │ │ │ │ ├── CodeComparisonBlankLinesStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonBlockLengthStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonEncodingStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonLineLengthStandard.xml │ │ │ │ │ │ │ ├── CodeTitleLineWrappingStandard.xml │ │ │ │ │ │ │ ├── CodeTitleWhitespaceStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitleCaseStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitleLengthStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitlePCREFallbackStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug1Standard.xml │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug2Standard.xml │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug3Standard.xml │ │ │ │ │ │ │ ├── StandardBlankLinesStandard.xml │ │ │ │ │ │ │ ├── StandardEncodingStandard.xml │ │ │ │ │ │ │ ├── StandardIndentStandard.xml │ │ │ │ │ │ │ └── StandardLineWrappingStandard.xml │ │ │ │ │ │ ├── Invalid/ │ │ │ │ │ │ │ ├── CodeComparisonMismatchedCodeElmsStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonMissingCodeElmStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonNoCodeStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonNoContentStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonOneEmptyCodeElmStandard.xml │ │ │ │ │ │ │ ├── CodeComparisonTwoEmptyCodeElmsStandard.xml │ │ │ │ │ │ │ ├── CodeTitleEmptyStandard.xml │ │ │ │ │ │ │ ├── CodeTitleMissingStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitleEmptyStandard.xml │ │ │ │ │ │ │ ├── DocumentationTitleMissingStandard.xml │ │ │ │ │ │ │ └── StandardNoContentStandard.xml │ │ │ │ │ │ ├── Structure/ │ │ │ │ │ │ │ ├── NoContentStandard.xml │ │ │ │ │ │ │ ├── NoDocumentationElementStandard.xml │ │ │ │ │ │ │ ├── OneCodeComparisonNoStandardStandard.xml │ │ │ │ │ │ │ ├── OneStandardBlockCodeComparisonStandard.xml │ │ │ │ │ │ │ ├── OneStandardBlockNoCodeStandard.xml │ │ │ │ │ │ │ ├── OneStandardBlockTwoCodeComparisonsStandard.xml │ │ │ │ │ │ │ ├── TwoStandardBlocksNoCodeStandard.xml │ │ │ │ │ │ │ ├── TwoStandardBlocksOneCodeComparisonStandard.xml │ │ │ │ │ │ │ └── TwoStandardBlocksThreeCodeComparisonsStandard.xml │ │ │ │ │ │ └── Unsupported/ │ │ │ │ │ │ ├── ElementAtWrongLevelStandard.xml │ │ │ │ │ │ ├── OneElmAtWrongLevelStandard.xml │ │ │ │ │ │ ├── SuperfluousCodeElementStandard.xml │ │ │ │ │ │ └── UnknownElementStandard.xml │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Content/ │ │ │ │ │ │ │ ├── CodeComparisonBlankLinesSniff.php │ │ │ │ │ │ │ ├── CodeComparisonBlockLengthSniff.php │ │ │ │ │ │ │ ├── CodeComparisonEncodingSniff.php │ │ │ │ │ │ │ ├── CodeComparisonLineLengthSniff.php │ │ │ │ │ │ │ ├── CodeTitleLineWrappingSniff.php │ │ │ │ │ │ │ ├── CodeTitleWhitespaceSniff.php │ │ │ │ │ │ │ ├── DocumentationTitleCaseSniff.php │ │ │ │ │ │ │ ├── DocumentationTitleLengthSniff.php │ │ │ │ │ │ │ ├── DocumentationTitlePCREFallbackSniff.php │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug1Sniff.php │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug2Sniff.php │ │ │ │ │ │ │ ├── DocumentationTitleToAnchorSlug3Sniff.php │ │ │ │ │ │ │ ├── StandardBlankLinesSniff.php │ │ │ │ │ │ │ ├── StandardEncodingSniff.php │ │ │ │ │ │ │ ├── StandardIndentSniff.php │ │ │ │ │ │ │ └── StandardLineWrappingSniff.php │ │ │ │ │ │ ├── DummySniff.php │ │ │ │ │ │ ├── Invalid/ │ │ │ │ │ │ │ ├── CodeComparisonMismatchedCodeElmsSniff.php │ │ │ │ │ │ │ ├── CodeComparisonMissingCodeElmSniff.php │ │ │ │ │ │ │ ├── CodeComparisonNoCodeSniff.php │ │ │ │ │ │ │ ├── CodeComparisonNoContentSniff.php │ │ │ │ │ │ │ ├── CodeComparisonOneEmptyCodeElmSniff.php │ │ │ │ │ │ │ ├── CodeComparisonTwoEmptyCodeElmsSniff.php │ │ │ │ │ │ │ ├── CodeTitleEmptySniff.php │ │ │ │ │ │ │ ├── CodeTitleMissingSniff.php │ │ │ │ │ │ │ ├── DocumentationTitleEmptySniff.php │ │ │ │ │ │ │ ├── DocumentationTitleMissingSniff.php │ │ │ │ │ │ │ └── StandardNoContentSniff.php │ │ │ │ │ │ ├── Structure/ │ │ │ │ │ │ │ ├── DocumentationMissingSniff.php │ │ │ │ │ │ │ ├── NoContentSniff.php │ │ │ │ │ │ │ ├── NoDocumentationElementSniff.php │ │ │ │ │ │ │ ├── OneCodeComparisonNoStandardSniff.php │ │ │ │ │ │ │ ├── OneStandardBlockCodeComparisonSniff.php │ │ │ │ │ │ │ ├── OneStandardBlockNoCodeSniff.php │ │ │ │ │ │ │ ├── OneStandardBlockTwoCodeComparisonsSniff.php │ │ │ │ │ │ │ ├── TwoStandardBlocksNoCodeSniff.php │ │ │ │ │ │ │ ├── TwoStandardBlocksOneCodeComparisonSniff.php │ │ │ │ │ │ │ └── TwoStandardBlocksThreeCodeComparisonsSniff.php │ │ │ │ │ │ └── Unsupported/ │ │ │ │ │ │ ├── ElementAtWrongLevelSniff.php │ │ │ │ │ │ ├── OneElmAtWrongLevelSniff.php │ │ │ │ │ │ ├── SuperfluousCodeElementSniff.php │ │ │ │ │ │ └── UnknownElementSniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── GeneratorTest.php │ │ │ │ ├── HTMLTest.php │ │ │ │ ├── MarkdownTest.php │ │ │ │ ├── NoDocsTest.xml │ │ │ │ ├── NoValidDocsTest.xml │ │ │ │ ├── OneDocTest.xml │ │ │ │ ├── StructureDocsTest.xml │ │ │ │ └── TextTest.php │ │ │ ├── Ruleset/ │ │ │ │ ├── AbstractRulesetTestCase.php │ │ │ │ ├── ConstructorNoSniffsTest.xml │ │ │ │ ├── ConstructorTest.php │ │ │ │ ├── DisplayCachedMessagesTest.php │ │ │ │ ├── ExpandRulesetReferenceCaseMismatch1Test.xml │ │ │ │ ├── ExpandRulesetReferenceCaseMismatch2Test.xml │ │ │ │ ├── ExpandRulesetReferenceHomePathFailTest.xml │ │ │ │ ├── ExpandRulesetReferenceHomePathTest.php │ │ │ │ ├── ExpandRulesetReferenceHomePathTest.xml │ │ │ │ ├── ExpandRulesetReferenceInternalIgnoreTest.xml │ │ │ │ ├── ExpandRulesetReferenceInternalStandardTest.xml │ │ │ │ ├── ExpandRulesetReferenceInternalTest.php │ │ │ │ ├── ExpandRulesetReferenceInvalidErrorCode1Test.xml │ │ │ │ ├── ExpandRulesetReferenceInvalidErrorCode2Test.xml │ │ │ │ ├── ExpandRulesetReferenceInvalidErrorCode3Test.xml │ │ │ │ ├── ExpandRulesetReferenceInvalidHomePathRefTest.xml │ │ │ │ ├── ExpandRulesetReferenceMissingFileTest.xml │ │ │ │ ├── ExpandRulesetReferenceTest.php │ │ │ │ ├── ExpandRulesetReferenceTest.xml │ │ │ │ ├── ExpandRulesetReferenceUnknownCategoryTest.xml │ │ │ │ ├── ExpandRulesetReferenceUnknownSniffTest.xml │ │ │ │ ├── ExpandRulesetReferenceUnknownStandardTest.xml │ │ │ │ ├── ExpandSniffDirectoryTest.php │ │ │ │ ├── ExpandSniffDirectoryTest.xml │ │ │ │ ├── ExplainCustomRulesetTest.xml │ │ │ │ ├── ExplainSingleSniffTest.xml │ │ │ │ ├── ExplainTest.php │ │ │ │ ├── Fixtures/ │ │ │ │ │ ├── BrokenNamingConventions/ │ │ │ │ │ │ └── Sniffs/ │ │ │ │ │ │ ├── Category/ │ │ │ │ │ │ │ ├── Sniff.php │ │ │ │ │ │ │ └── SubDir/ │ │ │ │ │ │ │ └── TooDeeplyNestedSniff.php │ │ │ │ │ │ ├── MissingCategoryDirSniff.php │ │ │ │ │ │ ├── NoNamespaceSniff.php │ │ │ │ │ │ ├── PartialNamespaceSniff.php │ │ │ │ │ │ └── Sniffs/ │ │ │ │ │ │ └── CategoryCalledSniffsSniff.php │ │ │ │ │ ├── DirectoryExpansion/ │ │ │ │ │ │ └── .hiddenAbove/ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── MyStandard/ │ │ │ │ │ │ ├── .hidden/ │ │ │ │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ │ │ ├── AbstractSniff.php │ │ │ │ │ │ ├── DummySniff.php │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ ├── .hidden/ │ │ │ │ │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ │ │ │ ├── AbstractSniff.php │ │ │ │ │ │ │ ├── CategoryA/ │ │ │ │ │ │ │ │ ├── .HiddenFileSniff.php │ │ │ │ │ │ │ │ ├── .hidden/ │ │ │ │ │ │ │ │ │ ├── DoNotFindMeSniff.txt │ │ │ │ │ │ │ │ │ └── HiddenDirShouldBeIgnoredSniff.php │ │ │ │ │ │ │ │ ├── DoNotFindMeSniff.txt │ │ │ │ │ │ │ │ ├── FindMeSniff.php │ │ │ │ │ │ │ │ ├── IncorrectFileExtensionSniff.inc │ │ │ │ │ │ │ │ └── MissingSniffSuffix.php │ │ │ │ │ │ │ └── CategoryB/ │ │ │ │ │ │ │ ├── AnotherAbstractSniff.php │ │ │ │ │ │ │ ├── FindMeSniff.php │ │ │ │ │ │ │ └── IncorrectFileExtensionSniff.php3 │ │ │ │ │ │ ├── Utils/ │ │ │ │ │ │ │ ├── NotInSniffsDirSniff.php │ │ │ │ │ │ │ └── SubDir/ │ │ │ │ │ │ │ └── NotInSniffsDirSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── ExternalA/ │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ └── CheckSomething/ │ │ │ │ │ │ │ └── ValidSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── ExternalB/ │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ └── CheckMore/ │ │ │ │ │ │ │ └── ValidSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── FakeHomePath/ │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── MyStandard/ │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ └── Category/ │ │ │ │ │ │ │ └── ValidSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── Internal/ │ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ │ └── Valid/ │ │ │ │ │ │ │ └── ValidSniff.php │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── InvalidNoSniffsDir/ │ │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── ProcessRulesetAutoloadLoadAlways.1.php │ │ │ │ │ ├── ProcessRulesetAutoloadLoadAlways.2.php │ │ │ │ │ ├── ProcessRulesetAutoloadLoadAlways.3.php │ │ │ │ │ ├── ProcessRulesetAutoloadLoadAlways.4.php │ │ │ │ │ ├── ProcessRulesetAutoloadLoadPhpcbfOnly.php │ │ │ │ │ ├── ProcessRulesetAutoloadLoadPhpcsOnly.php │ │ │ │ │ ├── PropertyTypeHandlingInline.inc │ │ │ │ │ └── TestStandard/ │ │ │ │ │ ├── Sniffs/ │ │ │ │ │ │ ├── Deprecated/ │ │ │ │ │ │ │ ├── WithLongReplacementSniff.php │ │ │ │ │ │ │ ├── WithReplacementContainingLinuxNewlinesSniff.php │ │ │ │ │ │ │ ├── WithReplacementContainingNewlinesSniff.php │ │ │ │ │ │ │ ├── WithReplacementSniff.php │ │ │ │ │ │ │ └── WithoutReplacementSniff.php │ │ │ │ │ │ ├── DeprecatedInvalid/ │ │ │ │ │ │ │ ├── EmptyDeprecationVersionSniff.php │ │ │ │ │ │ │ ├── EmptyRemovalVersionSniff.php │ │ │ │ │ │ │ ├── InvalidDeprecationMessageSniff.php │ │ │ │ │ │ │ ├── InvalidDeprecationVersionSniff.php │ │ │ │ │ │ │ └── InvalidRemovalVersionSniff.php │ │ │ │ │ │ ├── InvalidSniffError/ │ │ │ │ │ │ │ ├── NoImplementsNoProcessSniff.php │ │ │ │ │ │ │ ├── NoImplementsNoRegisterOrProcessSniff.php │ │ │ │ │ │ │ └── NoImplementsNoRegisterSniff.php │ │ │ │ │ │ ├── InvalidSniffs/ │ │ │ │ │ │ │ └── RegisterNoArraySniff.php │ │ │ │ │ │ ├── MissingInterface/ │ │ │ │ │ │ │ ├── InvalidImplementsWithoutImplementSniff.php │ │ │ │ │ │ │ ├── ValidImplementsSniff.php │ │ │ │ │ │ │ └── ValidImplementsViaAbstractSniff.php │ │ │ │ │ │ ├── SetProperty/ │ │ │ │ │ │ │ ├── AllowedAsDeclaredSniff.php │ │ │ │ │ │ │ ├── AllowedViaMagicMethodSniff.php │ │ │ │ │ │ │ ├── AllowedViaStdClassSniff.php │ │ │ │ │ │ │ ├── NotAllowedViaAttributeSniff.php │ │ │ │ │ │ │ └── PropertyTypeHandlingSniff.php │ │ │ │ │ │ ├── SupportedTokenizers/ │ │ │ │ │ │ │ ├── ImplementsDeprecatedInterfaceSniff.php │ │ │ │ │ │ │ ├── ListensForCSSAndJSSniff.php │ │ │ │ │ │ │ ├── ListensForCSSAndUnrecognizedSniff.php │ │ │ │ │ │ │ ├── ListensForCSSSniff.php │ │ │ │ │ │ │ ├── ListensForEmptySniff.php │ │ │ │ │ │ │ ├── ListensForJSSniff.php │ │ │ │ │ │ │ ├── ListensForPHPAndCSSAndJSSniff.php │ │ │ │ │ │ │ └── ListensForUnrecognizedTokenizersSniff.php │ │ │ │ │ │ └── ValidSniffs/ │ │ │ │ │ │ └── RegisterEmptyArraySniff.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── GetIgnorePatternsTest.php │ │ │ │ ├── GetIgnorePatternsTest.xml │ │ │ │ ├── GetIncludePatternsTest.php │ │ │ │ ├── GetIncludePatternsTest.xml │ │ │ │ ├── PopulateTokenListenersNamingConventionsTest.php │ │ │ │ ├── PopulateTokenListenersNamingConventionsTest.xml │ │ │ │ ├── PopulateTokenListenersRegisterNoArrayTest.xml │ │ │ │ ├── PopulateTokenListenersSupportedTokenizersTest.php │ │ │ │ ├── PopulateTokenListenersSupportedTokenizersTest.xml │ │ │ │ ├── PopulateTokenListenersTest.php │ │ │ │ ├── PopulateTokenListenersTest.xml │ │ │ │ ├── ProcessRuleInvalidTypeTest.php │ │ │ │ ├── ProcessRuleInvalidTypeTest.xml │ │ │ │ ├── ProcessRuleShouldProcessElementTest.php │ │ │ │ ├── ProcessRuleShouldProcessElementTest.xml │ │ │ │ ├── ProcessRulesetAutoExpandSniffsDirectoryTest.xml │ │ │ │ ├── ProcessRulesetAutoloadFileNotFoundTest.xml │ │ │ │ ├── ProcessRulesetAutoloadTest.php │ │ │ │ ├── ProcessRulesetAutoloadTest.xml │ │ │ │ ├── ProcessRulesetBrokenRulesetEmptyFileTest.xml │ │ │ │ ├── ProcessRulesetBrokenRulesetMultiErrorTest.xml │ │ │ │ ├── ProcessRulesetBrokenRulesetSingleErrorTest.xml │ │ │ │ ├── ProcessRulesetBrokenRulesetTest.php │ │ │ │ ├── ProcessRulesetExcludeSniffGroupTest.xml │ │ │ │ ├── ProcessRulesetInvalidNoSniffsDirTest.xml │ │ │ │ ├── ProcessRulesetMiscTest.xml │ │ │ │ ├── ProcessRulesetShouldProcessElementTest.php │ │ │ │ ├── ProcessRulesetShouldProcessElementTest.xml │ │ │ │ ├── ProcessRulesetTest.php │ │ │ │ ├── PropertyTypeHandlingInlineTest.xml │ │ │ │ ├── PropertyTypeHandlingTest.php │ │ │ │ ├── PropertyTypeHandlingTest.xml │ │ │ │ ├── RegisterSniffsMissingInterfaceInvalidTest.xml │ │ │ │ ├── RegisterSniffsMissingInterfaceTest.php │ │ │ │ ├── RegisterSniffsMissingInterfaceValidTest.xml │ │ │ │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoProcessTest.xml │ │ │ │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoRegisterOrProcessTest.xml │ │ │ │ ├── RegisterSniffsRejectsInvalidSniffNoImplementsNoRegisterTest.xml │ │ │ │ ├── RegisterSniffsRejectsInvalidSniffTest.php │ │ │ │ ├── RegisterSniffsTest.php │ │ │ │ ├── RuleInclusionAbsoluteLinuxTest.php │ │ │ │ ├── RuleInclusionAbsoluteLinuxTest.xml │ │ │ │ ├── RuleInclusionAbsoluteWindowsTest.php │ │ │ │ ├── RuleInclusionAbsoluteWindowsTest.xml │ │ │ │ ├── RuleInclusionTest-include.xml │ │ │ │ ├── RuleInclusionTest.php │ │ │ │ ├── RuleInclusionTest.xml │ │ │ │ ├── SetPropertyAllowedAsDeclaredTest.xml │ │ │ │ ├── SetPropertyAllowedViaMagicMethodTest.xml │ │ │ │ ├── SetPropertyAllowedViaStdClassTest.xml │ │ │ │ ├── SetPropertyAppliesPropertyToMultipleSniffsInCategoryTest.xml │ │ │ │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForCategoryTest.xml │ │ │ │ ├── SetPropertyDoesNotThrowErrorOnInvalidPropertyWhenSetForStandardTest.xml │ │ │ │ ├── SetPropertyNotAllowedViaAttributeTest.xml │ │ │ │ ├── SetPropertyThrowsErrorOnInvalidPropertyTest.xml │ │ │ │ ├── SetSniffPropertyTest.php │ │ │ │ ├── ShowSniffDeprecationsEmptyDeprecationVersionTest.xml │ │ │ │ ├── ShowSniffDeprecationsEmptyRemovalVersionTest.xml │ │ │ │ ├── ShowSniffDeprecationsInvalidDeprecationMessageTest.xml │ │ │ │ ├── ShowSniffDeprecationsInvalidDeprecationVersionTest.xml │ │ │ │ ├── ShowSniffDeprecationsInvalidRemovalVersionTest.xml │ │ │ │ ├── ShowSniffDeprecationsOrderTest.xml │ │ │ │ ├── ShowSniffDeprecationsReportWidthTest.xml │ │ │ │ ├── ShowSniffDeprecationsTest.php │ │ │ │ └── ShowSniffDeprecationsTest.xml │ │ │ ├── Runner/ │ │ │ │ ├── AbstractRunnerTestCase.php │ │ │ │ ├── PrintProgressDotsTest.php │ │ │ │ ├── PrintProgressTest.php │ │ │ │ ├── RunPHPCSExplainTest.php │ │ │ │ └── RunPHPCSGeneratorTest.php │ │ │ ├── Sniffs/ │ │ │ │ ├── AbstractArraySniffTest.inc │ │ │ │ ├── AbstractArraySniffTest.php │ │ │ │ └── AbstractArraySniffTestable.php │ │ │ ├── Standards/ │ │ │ │ └── StandardRulesetsQATest.php │ │ │ ├── Tokenizers/ │ │ │ │ ├── AbstractTokenizerTestCase.php │ │ │ │ ├── Comment/ │ │ │ │ │ ├── CommentTestCase.php │ │ │ │ │ ├── LiveCoding1Test.inc │ │ │ │ │ ├── LiveCoding1Test.php │ │ │ │ │ ├── LiveCoding2Test.inc │ │ │ │ │ ├── LiveCoding2Test.php │ │ │ │ │ ├── LiveCoding3Test.inc │ │ │ │ │ ├── LiveCoding3Test.php │ │ │ │ │ ├── LiveCoding4Test.inc │ │ │ │ │ ├── LiveCoding4Test.php │ │ │ │ │ ├── MultiLineDocBlockTest.inc │ │ │ │ │ ├── MultiLineDocBlockTest.php │ │ │ │ │ ├── PhpcsAnnotationsInDocBlockTest.inc │ │ │ │ │ ├── PhpcsAnnotationsInDocBlockTest.php │ │ │ │ │ ├── SingleLineDocBlockTest.inc │ │ │ │ │ └── SingleLineDocBlockTest.php │ │ │ │ ├── PHP/ │ │ │ │ │ ├── AnonClassParenthesisOwnerTest.inc │ │ │ │ │ ├── AnonClassParenthesisOwnerTest.php │ │ │ │ │ ├── ArrayKeywordTest.inc │ │ │ │ │ ├── ArrayKeywordTest.php │ │ │ │ │ ├── AttributesTest.inc │ │ │ │ │ ├── AttributesTest.php │ │ │ │ │ ├── BackfillAsymmetricVisibilityTest.inc │ │ │ │ │ ├── BackfillAsymmetricVisibilityTest.php │ │ │ │ │ ├── BackfillEnumTest.inc │ │ │ │ │ ├── BackfillEnumTest.php │ │ │ │ │ ├── BackfillExplicitOctalNotationTest.inc │ │ │ │ │ ├── BackfillExplicitOctalNotationTest.php │ │ │ │ │ ├── BackfillFnTokenParseErrorTest.inc │ │ │ │ │ ├── BackfillFnTokenParseErrorTest.php │ │ │ │ │ ├── BackfillFnTokenTest.inc │ │ │ │ │ ├── BackfillFnTokenTest.php │ │ │ │ │ ├── BackfillMatchTokenTest.inc │ │ │ │ │ ├── BackfillMatchTokenTest.php │ │ │ │ │ ├── BackfillNumericSeparatorTest.inc │ │ │ │ │ ├── BackfillNumericSeparatorTest.php │ │ │ │ │ ├── BackfillReadonlyTest.inc │ │ │ │ │ ├── BackfillReadonlyTest.php │ │ │ │ │ ├── BitwiseOrTest.inc │ │ │ │ │ ├── BitwiseOrTest.php │ │ │ │ │ ├── ContextSensitiveKeywordsTest.inc │ │ │ │ │ ├── ContextSensitiveKeywordsTest.php │ │ │ │ │ ├── DNFTypesParseError1Test.inc │ │ │ │ │ ├── DNFTypesParseError1Test.php │ │ │ │ │ ├── DNFTypesParseError2Test.inc │ │ │ │ │ ├── DNFTypesParseError2Test.php │ │ │ │ │ ├── DNFTypesTest.inc │ │ │ │ │ ├── DNFTypesTest.php │ │ │ │ │ ├── DefaultKeywordTest.inc │ │ │ │ │ ├── DefaultKeywordTest.php │ │ │ │ │ ├── DoubleArrowTest.inc │ │ │ │ │ ├── DoubleArrowTest.php │ │ │ │ │ ├── DoubleQuotedStringTest.inc │ │ │ │ │ ├── DoubleQuotedStringTest.php │ │ │ │ │ ├── EnumCaseTest.inc │ │ │ │ │ ├── EnumCaseTest.php │ │ │ │ │ ├── FinallyTest.inc │ │ │ │ │ ├── FinallyTest.php │ │ │ │ │ ├── GotoLabelTest.inc │ │ │ │ │ ├── GotoLabelTest.php │ │ │ │ │ ├── HeredocNowdocTest.inc │ │ │ │ │ ├── HeredocNowdocTest.php │ │ │ │ │ ├── HeredocParseErrorTest.inc │ │ │ │ │ ├── HeredocParseErrorTest.php │ │ │ │ │ ├── HeredocStringTest.inc │ │ │ │ │ ├── HeredocStringTest.php │ │ │ │ │ ├── NamedFunctionCallArgumentsTest.inc │ │ │ │ │ ├── NamedFunctionCallArgumentsTest.php │ │ │ │ │ ├── NullableVsInlineThenTest.inc │ │ │ │ │ ├── NullableVsInlineThenTest.php │ │ │ │ │ ├── NullsafeObjectOperatorTest.inc │ │ │ │ │ ├── NullsafeObjectOperatorTest.php │ │ │ │ │ ├── OtherContextSensitiveKeywordsTest.inc │ │ │ │ │ ├── OtherContextSensitiveKeywordsTest.php │ │ │ │ │ ├── PHPOpenTagEOF1Test.inc │ │ │ │ │ ├── PHPOpenTagEOF1Test.php │ │ │ │ │ ├── PHPOpenTagEOF2Test.inc │ │ │ │ │ ├── PHPOpenTagEOF2Test.php │ │ │ │ │ ├── PHPOpenTagEOF3Test.inc │ │ │ │ │ ├── PHPOpenTagEOF3Test.php │ │ │ │ │ ├── ResolveSimpleTokenTest.inc │ │ │ │ │ ├── ResolveSimpleTokenTest.php │ │ │ │ │ ├── ShortArrayTest.inc │ │ │ │ │ ├── ShortArrayTest.php │ │ │ │ │ ├── StableCommentWhitespaceTest.inc │ │ │ │ │ ├── StableCommentWhitespaceTest.php │ │ │ │ │ ├── StableCommentWhitespaceWinTest.inc │ │ │ │ │ ├── StableCommentWhitespaceWinTest.php │ │ │ │ │ ├── TypeIntersectionTest.inc │ │ │ │ │ ├── TypeIntersectionTest.php │ │ │ │ │ ├── TypedConstantsTest.inc │ │ │ │ │ ├── TypedConstantsTest.php │ │ │ │ │ ├── UndoNamespacedNameSingleTokenTest.inc │ │ │ │ │ ├── UndoNamespacedNameSingleTokenTest.php │ │ │ │ │ ├── YieldTest.inc │ │ │ │ │ └── YieldTest.php │ │ │ │ └── Tokenizer/ │ │ │ │ ├── CreateParenthesisNestingMapDNFTypesTest.inc │ │ │ │ ├── CreateParenthesisNestingMapDNFTypesTest.php │ │ │ │ ├── CreatePositionMapHeredocNowdocCloserTest.inc │ │ │ │ ├── CreatePositionMapHeredocNowdocCloserTest.php │ │ │ │ ├── CreatePositionMapHeredocNowdocOpenerTest.inc │ │ │ │ ├── CreatePositionMapHeredocNowdocOpenerTest.php │ │ │ │ ├── CreatePositionMapTabWidth0Test.php │ │ │ │ ├── CreatePositionMapYieldFromTest.inc │ │ │ │ ├── CreatePositionMapYieldFromTest.php │ │ │ │ ├── CreateTokenMapArrayParenthesesTest.inc │ │ │ │ ├── CreateTokenMapArrayParenthesesTest.php │ │ │ │ ├── RecurseScopeMapCaseKeywordConditionsTest.inc │ │ │ │ ├── RecurseScopeMapCaseKeywordConditionsTest.php │ │ │ │ ├── RecurseScopeMapDefaultKeywordConditionsTest.inc │ │ │ │ ├── RecurseScopeMapDefaultKeywordConditionsTest.php │ │ │ │ ├── RecurseScopeMapIfKeywordConditionsTest.inc │ │ │ │ ├── RecurseScopeMapIfKeywordConditionsTest.php │ │ │ │ ├── RecurseScopeMapSwitchTokenScopeTest.inc │ │ │ │ ├── RecurseScopeMapSwitchTokenScopeTest.php │ │ │ │ ├── RecurseScopeMapWithNamespaceOperatorTest.inc │ │ │ │ ├── RecurseScopeMapWithNamespaceOperatorTest.php │ │ │ │ ├── ReplaceTabsInTokenMiscTest.php │ │ │ │ ├── ReplaceTabsInTokenTabWidth1Test.php │ │ │ │ ├── ReplaceTabsInTokenTabWidth2Test.php │ │ │ │ ├── ReplaceTabsInTokenTabWidth4Test.php │ │ │ │ ├── ReplaceTabsInTokenTabWidth5Test.php │ │ │ │ ├── ReplaceTabsInTokenTest.inc │ │ │ │ └── ReplaceTabsInTokenTestCase.php │ │ │ └── Util/ │ │ │ ├── Common/ │ │ │ │ ├── EscapeshellcmdTest.php │ │ │ │ ├── GetSniffCodeTest.php │ │ │ │ ├── IsCamelCapsTest.php │ │ │ │ ├── PrepareForOutputTest.php │ │ │ │ ├── StripColorsTest.php │ │ │ │ └── SuggestTypeTest.php │ │ │ ├── Help/ │ │ │ │ └── HelpTest.php │ │ │ ├── MessageCollector/ │ │ │ │ └── MessageCollectorTest.php │ │ │ ├── Timing/ │ │ │ │ ├── GetHumanReadableDurationTest.php │ │ │ │ └── TimingTest.php │ │ │ └── Tokens/ │ │ │ ├── GetHighestWeightedTokenTest.php │ │ │ └── TokenNameTest.php │ │ ├── FileList.php │ │ ├── Standards/ │ │ │ ├── AbstractSniffUnitTest.php │ │ │ └── AllSniffs.php │ │ ├── TestSuite.php │ │ ├── TestSuite7.php │ │ └── bootstrap.php │ ├── symfony/ │ │ ├── cache/ │ │ │ ├── Adapter/ │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AbstractTagAwareAdapter.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── ApcuAdapter.php │ │ │ │ ├── ArrayAdapter.php │ │ │ │ ├── ChainAdapter.php │ │ │ │ ├── CouchbaseBucketAdapter.php │ │ │ │ ├── CouchbaseCollectionAdapter.php │ │ │ │ ├── DoctrineDbalAdapter.php │ │ │ │ ├── FilesystemAdapter.php │ │ │ │ ├── FilesystemTagAwareAdapter.php │ │ │ │ ├── MemcachedAdapter.php │ │ │ │ ├── NullAdapter.php │ │ │ │ ├── ParameterNormalizer.php │ │ │ │ ├── PdoAdapter.php │ │ │ │ ├── PhpArrayAdapter.php │ │ │ │ ├── PhpFilesAdapter.php │ │ │ │ ├── ProxyAdapter.php │ │ │ │ ├── Psr16Adapter.php │ │ │ │ ├── RedisAdapter.php │ │ │ │ ├── RedisTagAwareAdapter.php │ │ │ │ ├── TagAwareAdapter.php │ │ │ │ ├── TagAwareAdapterInterface.php │ │ │ │ ├── TraceableAdapter.php │ │ │ │ └── TraceableTagAwareAdapter.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheItem.php │ │ │ ├── DataCollector/ │ │ │ │ └── CacheDataCollector.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── CacheCollectorPass.php │ │ │ │ ├── CachePoolClearerPass.php │ │ │ │ ├── CachePoolPass.php │ │ │ │ └── CachePoolPrunerPass.php │ │ │ ├── Exception/ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CacheException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── LogicException.php │ │ │ ├── LICENSE │ │ │ ├── LockRegistry.php │ │ │ ├── Marshaller/ │ │ │ │ ├── DefaultMarshaller.php │ │ │ │ ├── DeflateMarshaller.php │ │ │ │ ├── MarshallerInterface.php │ │ │ │ ├── SodiumMarshaller.php │ │ │ │ └── TagAwareMarshaller.php │ │ │ ├── Messenger/ │ │ │ │ ├── EarlyExpirationDispatcher.php │ │ │ │ ├── EarlyExpirationHandler.php │ │ │ │ └── EarlyExpirationMessage.php │ │ │ ├── PruneableInterface.php │ │ │ ├── Psr16Cache.php │ │ │ ├── README.md │ │ │ ├── ResettableInterface.php │ │ │ ├── Traits/ │ │ │ │ ├── AbstractAdapterTrait.php │ │ │ │ ├── ContractsTrait.php │ │ │ │ ├── FilesystemCommonTrait.php │ │ │ │ ├── FilesystemTrait.php │ │ │ │ ├── ProxyTrait.php │ │ │ │ ├── Redis5Proxy.php │ │ │ │ ├── Redis6Proxy.php │ │ │ │ ├── Redis6ProxyTrait.php │ │ │ │ ├── RedisCluster5Proxy.php │ │ │ │ ├── RedisCluster6Proxy.php │ │ │ │ ├── RedisCluster6ProxyTrait.php │ │ │ │ ├── RedisClusterNodeProxy.php │ │ │ │ ├── RedisClusterProxy.php │ │ │ │ ├── RedisProxy.php │ │ │ │ ├── RedisProxyTrait.php │ │ │ │ ├── RedisTrait.php │ │ │ │ ├── Relay/ │ │ │ │ │ ├── BgsaveTrait.php │ │ │ │ │ ├── CopyTrait.php │ │ │ │ │ ├── GeosearchTrait.php │ │ │ │ │ ├── GetrangeTrait.php │ │ │ │ │ ├── HsetTrait.php │ │ │ │ │ ├── MoveTrait.php │ │ │ │ │ ├── NullableReturnTrait.php │ │ │ │ │ └── PfcountTrait.php │ │ │ │ ├── RelayClusterProxy.php │ │ │ │ ├── RelayProxy.php │ │ │ │ ├── RelayProxyTrait.php │ │ │ │ └── ValueWrapper.php │ │ │ └── composer.json │ │ ├── cache-contracts/ │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheInterface.php │ │ │ ├── CacheTrait.php │ │ │ ├── CallbackInterface.php │ │ │ ├── ItemInterface.php │ │ │ ├── LICENSE │ │ │ ├── NamespacedPoolInterface.php │ │ │ ├── README.md │ │ │ ├── TagAwareCacheInterface.php │ │ │ └── composer.json │ │ ├── clock/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Clock.php │ │ │ ├── ClockAwareTrait.php │ │ │ ├── ClockInterface.php │ │ │ ├── DatePoint.php │ │ │ ├── LICENSE │ │ │ ├── MockClock.php │ │ │ ├── MonotonicClock.php │ │ │ ├── NativeClock.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── now.php │ │ │ ├── Test/ │ │ │ │ └── ClockSensitiveTrait.php │ │ │ └── composer.json │ │ ├── console/ │ │ │ ├── Application.php │ │ │ ├── Attribute/ │ │ │ │ ├── Argument.php │ │ │ │ ├── AsCommand.php │ │ │ │ └── Option.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CI/ │ │ │ │ └── GithubActionReporter.php │ │ │ ├── Color.php │ │ │ ├── Command/ │ │ │ │ ├── Command.php │ │ │ │ ├── CompleteCommand.php │ │ │ │ ├── DumpCompletionCommand.php │ │ │ │ ├── HelpCommand.php │ │ │ │ ├── InvokableCommand.php │ │ │ │ ├── LazyCommand.php │ │ │ │ ├── ListCommand.php │ │ │ │ ├── LockableTrait.php │ │ │ │ ├── SignalableCommandInterface.php │ │ │ │ └── TraceableCommand.php │ │ │ ├── CommandLoader/ │ │ │ │ ├── CommandLoaderInterface.php │ │ │ │ ├── ContainerCommandLoader.php │ │ │ │ └── FactoryCommandLoader.php │ │ │ ├── Completion/ │ │ │ │ ├── CompletionInput.php │ │ │ │ ├── CompletionSuggestions.php │ │ │ │ ├── Output/ │ │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ │ ├── CompletionOutputInterface.php │ │ │ │ │ ├── FishCompletionOutput.php │ │ │ │ │ └── ZshCompletionOutput.php │ │ │ │ └── Suggestion.php │ │ │ ├── ConsoleEvents.php │ │ │ ├── Cursor.php │ │ │ ├── DataCollector/ │ │ │ │ └── CommandDataCollector.php │ │ │ ├── Debug/ │ │ │ │ └── CliRequest.php │ │ │ ├── DependencyInjection/ │ │ │ │ └── AddConsoleCommandPass.php │ │ │ ├── Descriptor/ │ │ │ │ ├── ApplicationDescription.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorInterface.php │ │ │ │ ├── JsonDescriptor.php │ │ │ │ ├── MarkdownDescriptor.php │ │ │ │ ├── ReStructuredTextDescriptor.php │ │ │ │ ├── TextDescriptor.php │ │ │ │ └── XmlDescriptor.php │ │ │ ├── Event/ │ │ │ │ ├── ConsoleAlarmEvent.php │ │ │ │ ├── ConsoleCommandEvent.php │ │ │ │ ├── ConsoleErrorEvent.php │ │ │ │ ├── ConsoleEvent.php │ │ │ │ ├── ConsoleSignalEvent.php │ │ │ │ └── ConsoleTerminateEvent.php │ │ │ ├── EventListener/ │ │ │ │ └── ErrorListener.php │ │ │ ├── Exception/ │ │ │ │ ├── CommandNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MissingInputException.php │ │ │ │ ├── NamespaceNotFoundException.php │ │ │ │ ├── RunCommandFailedException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Formatter/ │ │ │ │ ├── NullOutputFormatter.php │ │ │ │ ├── NullOutputFormatterStyle.php │ │ │ │ ├── OutputFormatter.php │ │ │ │ ├── OutputFormatterInterface.php │ │ │ │ ├── OutputFormatterStyle.php │ │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ │ ├── OutputFormatterStyleStack.php │ │ │ │ └── WrappableOutputFormatterInterface.php │ │ │ ├── Helper/ │ │ │ │ ├── DebugFormatterHelper.php │ │ │ │ ├── DescriptorHelper.php │ │ │ │ ├── Dumper.php │ │ │ │ ├── FormatterHelper.php │ │ │ │ ├── Helper.php │ │ │ │ ├── HelperInterface.php │ │ │ │ ├── HelperSet.php │ │ │ │ ├── InputAwareHelper.php │ │ │ │ ├── OutputWrapper.php │ │ │ │ ├── ProcessHelper.php │ │ │ │ ├── ProgressBar.php │ │ │ │ ├── ProgressIndicator.php │ │ │ │ ├── QuestionHelper.php │ │ │ │ ├── SymfonyQuestionHelper.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableCell.php │ │ │ │ ├── TableCellStyle.php │ │ │ │ ├── TableRows.php │ │ │ │ ├── TableSeparator.php │ │ │ │ ├── TableStyle.php │ │ │ │ ├── TreeHelper.php │ │ │ │ ├── TreeNode.php │ │ │ │ └── TreeStyle.php │ │ │ ├── Input/ │ │ │ │ ├── ArgvInput.php │ │ │ │ ├── ArrayInput.php │ │ │ │ ├── Input.php │ │ │ │ ├── InputArgument.php │ │ │ │ ├── InputAwareInterface.php │ │ │ │ ├── InputDefinition.php │ │ │ │ ├── InputInterface.php │ │ │ │ ├── InputOption.php │ │ │ │ ├── StreamableInputInterface.php │ │ │ │ └── StringInput.php │ │ │ ├── LICENSE │ │ │ ├── Logger/ │ │ │ │ └── ConsoleLogger.php │ │ │ ├── Messenger/ │ │ │ │ ├── RunCommandContext.php │ │ │ │ ├── RunCommandMessage.php │ │ │ │ └── RunCommandMessageHandler.php │ │ │ ├── Output/ │ │ │ │ ├── AnsiColorMode.php │ │ │ │ ├── BufferedOutput.php │ │ │ │ ├── ConsoleOutput.php │ │ │ │ ├── ConsoleOutputInterface.php │ │ │ │ ├── ConsoleSectionOutput.php │ │ │ │ ├── NullOutput.php │ │ │ │ ├── Output.php │ │ │ │ ├── OutputInterface.php │ │ │ │ ├── StreamOutput.php │ │ │ │ └── TrimmedBufferOutput.php │ │ │ ├── Question/ │ │ │ │ ├── ChoiceQuestion.php │ │ │ │ ├── ConfirmationQuestion.php │ │ │ │ └── Question.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ ├── completion.bash │ │ │ │ ├── completion.fish │ │ │ │ └── completion.zsh │ │ │ ├── SignalRegistry/ │ │ │ │ ├── SignalMap.php │ │ │ │ └── SignalRegistry.php │ │ │ ├── SingleCommandApplication.php │ │ │ ├── Style/ │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── StyleInterface.php │ │ │ │ └── SymfonyStyle.php │ │ │ ├── Terminal.php │ │ │ ├── Tester/ │ │ │ │ ├── ApplicationTester.php │ │ │ │ ├── CommandCompletionTester.php │ │ │ │ ├── CommandTester.php │ │ │ │ ├── Constraint/ │ │ │ │ │ └── CommandIsSuccessful.php │ │ │ │ └── TesterTrait.php │ │ │ └── composer.json │ │ ├── css-selector/ │ │ │ ├── CHANGELOG.md │ │ │ ├── CssSelectorConverter.php │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ExpressionErrorException.php │ │ │ │ ├── InternalErrorException.php │ │ │ │ ├── ParseException.php │ │ │ │ └── SyntaxErrorException.php │ │ │ ├── LICENSE │ │ │ ├── Node/ │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── AttributeNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ ├── CombinedSelectorNode.php │ │ │ │ ├── ElementNode.php │ │ │ │ ├── FunctionNode.php │ │ │ │ ├── HashNode.php │ │ │ │ ├── MatchingNode.php │ │ │ │ ├── NegationNode.php │ │ │ │ ├── NodeInterface.php │ │ │ │ ├── PseudoNode.php │ │ │ │ ├── SelectorNode.php │ │ │ │ ├── Specificity.php │ │ │ │ └── SpecificityAdjustmentNode.php │ │ │ ├── Parser/ │ │ │ │ ├── Handler/ │ │ │ │ │ ├── CommentHandler.php │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ ├── HashHandler.php │ │ │ │ │ ├── IdentifierHandler.php │ │ │ │ │ ├── NumberHandler.php │ │ │ │ │ ├── StringHandler.php │ │ │ │ │ └── WhitespaceHandler.php │ │ │ │ ├── Parser.php │ │ │ │ ├── ParserInterface.php │ │ │ │ ├── Reader.php │ │ │ │ ├── Shortcut/ │ │ │ │ │ ├── ClassParser.php │ │ │ │ │ ├── ElementParser.php │ │ │ │ │ ├── EmptyStringParser.php │ │ │ │ │ └── HashParser.php │ │ │ │ ├── Token.php │ │ │ │ ├── TokenStream.php │ │ │ │ └── Tokenizer/ │ │ │ │ ├── Tokenizer.php │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ └── TokenizerPatterns.php │ │ │ ├── README.md │ │ │ ├── XPath/ │ │ │ │ ├── Extension/ │ │ │ │ │ ├── AbstractExtension.php │ │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ │ ├── CombinationExtension.php │ │ │ │ │ ├── ExtensionInterface.php │ │ │ │ │ ├── FunctionExtension.php │ │ │ │ │ ├── HtmlExtension.php │ │ │ │ │ ├── NodeExtension.php │ │ │ │ │ └── PseudoClassExtension.php │ │ │ │ ├── Translator.php │ │ │ │ ├── TranslatorInterface.php │ │ │ │ └── XPathExpr.php │ │ │ └── composer.json │ │ ├── deprecation-contracts/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── function.php │ │ ├── error-handler/ │ │ │ ├── BufferingLogger.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Command/ │ │ │ │ └── ErrorDumpCommand.php │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── Error/ │ │ │ │ ├── ClassNotFoundError.php │ │ │ │ ├── FatalError.php │ │ │ │ ├── OutOfMemoryError.php │ │ │ │ ├── UndefinedFunctionError.php │ │ │ │ └── UndefinedMethodError.php │ │ │ ├── ErrorEnhancer/ │ │ │ │ ├── ClassNotFoundErrorEnhancer.php │ │ │ │ ├── ErrorEnhancerInterface.php │ │ │ │ ├── UndefinedFunctionErrorEnhancer.php │ │ │ │ └── UndefinedMethodErrorEnhancer.php │ │ │ ├── ErrorHandler.php │ │ │ ├── ErrorRenderer/ │ │ │ │ ├── CliErrorRenderer.php │ │ │ │ ├── ErrorRendererInterface.php │ │ │ │ ├── FileLinkFormatter.php │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ └── SerializerErrorRenderer.php │ │ │ ├── Exception/ │ │ │ │ ├── FlattenException.php │ │ │ │ └── SilencedErrorContext.php │ │ │ ├── Internal/ │ │ │ │ └── TentativeTypes.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ ├── assets/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── error.css │ │ │ │ │ │ ├── exception.css │ │ │ │ │ │ └── exception_full.css │ │ │ │ │ ├── images/ │ │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ │ └── symfony-ghost.svg.php │ │ │ │ │ └── js/ │ │ │ │ │ └── exception.js │ │ │ │ ├── bin/ │ │ │ │ │ ├── extract-tentative-return-types.php │ │ │ │ │ └── patch-type-declarations │ │ │ │ └── views/ │ │ │ │ ├── error.html.php │ │ │ │ ├── exception.html.php │ │ │ │ ├── exception_full.html.php │ │ │ │ ├── logs.html.php │ │ │ │ ├── trace.html.php │ │ │ │ ├── traces.html.php │ │ │ │ └── traces_text.html.php │ │ │ ├── ThrowableUtils.php │ │ │ └── composer.json │ │ ├── event-dispatcher/ │ │ │ ├── Attribute/ │ │ │ │ └── AsEventListener.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug/ │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── AddEventAliasesPass.php │ │ │ │ └── RegisterListenersPass.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── event-dispatcher-contracts/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Event.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── finder/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Comparator/ │ │ │ │ ├── Comparator.php │ │ │ │ ├── DateComparator.php │ │ │ │ └── NumberComparator.php │ │ │ ├── Exception/ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ └── DirectoryNotFoundException.php │ │ │ ├── Finder.php │ │ │ ├── Gitignore.php │ │ │ ├── Glob.php │ │ │ ├── Iterator/ │ │ │ │ ├── CustomFilterIterator.php │ │ │ │ ├── DateRangeFilterIterator.php │ │ │ │ ├── DepthRangeFilterIterator.php │ │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ │ ├── FileTypeFilterIterator.php │ │ │ │ ├── FilecontentFilterIterator.php │ │ │ │ ├── FilenameFilterIterator.php │ │ │ │ ├── LazyIterator.php │ │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ │ ├── PathFilterIterator.php │ │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ │ ├── SizeRangeFilterIterator.php │ │ │ │ ├── SortableIterator.php │ │ │ │ └── VcsIgnoredFilterIterator.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SplFileInfo.php │ │ │ └── composer.json │ │ ├── http-foundation/ │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── ChainRequestMatcher.php │ │ │ ├── Cookie.php │ │ │ ├── EventStreamResponse.php │ │ │ ├── Exception/ │ │ │ │ ├── BadRequestException.php │ │ │ │ ├── ConflictingHeadersException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ExpiredSignedUriException.php │ │ │ │ ├── JsonException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── RequestExceptionInterface.php │ │ │ │ ├── SessionNotFoundException.php │ │ │ │ ├── SignedUriException.php │ │ │ │ ├── SuspiciousOperationException.php │ │ │ │ ├── UnexpectedValueException.php │ │ │ │ ├── UnsignedUriException.php │ │ │ │ └── UnverifiedSignedUriException.php │ │ │ ├── File/ │ │ │ │ ├── Exception/ │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── CannotWriteFileException.php │ │ │ │ │ ├── ExtensionFileException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── FormSizeFileException.php │ │ │ │ │ ├── IniSizeFileException.php │ │ │ │ │ ├── NoFileException.php │ │ │ │ │ ├── NoTmpDirFileException.php │ │ │ │ │ ├── PartialFileException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── Stream.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── HeaderUtils.php │ │ │ ├── InputBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── RateLimiter/ │ │ │ │ ├── AbstractRequestRateLimiter.php │ │ │ │ ├── PeekableRequestRateLimiterInterface.php │ │ │ │ └── RequestRateLimiterInterface.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestMatcher/ │ │ │ │ ├── AttributesRequestMatcher.php │ │ │ │ ├── ExpressionRequestMatcher.php │ │ │ │ ├── HeaderRequestMatcher.php │ │ │ │ ├── HostRequestMatcher.php │ │ │ │ ├── IpsRequestMatcher.php │ │ │ │ ├── IsJsonRequestMatcher.php │ │ │ │ ├── MethodRequestMatcher.php │ │ │ │ ├── PathRequestMatcher.php │ │ │ │ ├── PortRequestMatcher.php │ │ │ │ ├── QueryParameterRequestMatcher.php │ │ │ │ └── SchemeRequestMatcher.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── RequestStack.php │ │ │ ├── Response.php │ │ │ ├── ResponseHeaderBag.php │ │ │ ├── ServerBag.php │ │ │ ├── ServerEvent.php │ │ │ ├── Session/ │ │ │ │ ├── Attribute/ │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ └── AttributeBagInterface.php │ │ │ │ ├── Flash/ │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ ├── FlashBagAwareSessionInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionBagInterface.php │ │ │ │ ├── SessionBagProxy.php │ │ │ │ ├── SessionFactory.php │ │ │ │ ├── SessionFactoryInterface.php │ │ │ │ ├── SessionInterface.php │ │ │ │ ├── SessionUtils.php │ │ │ │ └── Storage/ │ │ │ │ ├── Handler/ │ │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ │ ├── IdentityMarshaller.php │ │ │ │ │ ├── MarshallingSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MigratingSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ ├── RedisSessionHandler.php │ │ │ │ │ ├── SessionHandlerFactory.php │ │ │ │ │ └── StrictSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── NativeSessionStorageFactory.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ │ ├── Proxy/ │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedJsonResponse.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Test/ │ │ │ │ └── Constraint/ │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderLocationSame.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ │ ├── UriSigner.php │ │ │ ├── UrlHelper.php │ │ │ └── composer.json │ │ ├── http-kernel/ │ │ │ ├── Attribute/ │ │ │ │ ├── AsController.php │ │ │ │ ├── AsTargetedValueResolver.php │ │ │ │ ├── Cache.php │ │ │ │ ├── MapDateTime.php │ │ │ │ ├── MapQueryParameter.php │ │ │ │ ├── MapQueryString.php │ │ │ │ ├── MapRequestPayload.php │ │ │ │ ├── MapUploadedFile.php │ │ │ │ ├── ValueResolver.php │ │ │ │ ├── WithHttpStatus.php │ │ │ │ └── WithLogLevel.php │ │ │ ├── Bundle/ │ │ │ │ ├── AbstractBundle.php │ │ │ │ ├── Bundle.php │ │ │ │ ├── BundleExtension.php │ │ │ │ └── BundleInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheClearer/ │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ ├── ChainCacheClearer.php │ │ │ │ └── Psr6CacheClearer.php │ │ │ ├── CacheWarmer/ │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ └── WarmableInterface.php │ │ │ ├── Config/ │ │ │ │ └── FileLocator.php │ │ │ ├── Controller/ │ │ │ │ ├── ArgumentResolver/ │ │ │ │ │ ├── BackedEnumValueResolver.php │ │ │ │ │ ├── DateTimeValueResolver.php │ │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ │ │ ├── QueryParameterValueResolver.php │ │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ │ ├── RequestPayloadValueResolver.php │ │ │ │ │ ├── RequestValueResolver.php │ │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ │ ├── SessionValueResolver.php │ │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ │ ├── UidValueResolver.php │ │ │ │ │ └── VariadicValueResolver.php │ │ │ │ ├── ArgumentResolver.php │ │ │ │ ├── ArgumentResolverInterface.php │ │ │ │ ├── ContainerControllerResolver.php │ │ │ │ ├── ControllerReference.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── ControllerResolverInterface.php │ │ │ │ ├── ErrorController.php │ │ │ │ ├── TraceableArgumentResolver.php │ │ │ │ ├── TraceableControllerResolver.php │ │ │ │ └── ValueResolverInterface.php │ │ │ ├── ControllerMetadata/ │ │ │ │ ├── ArgumentMetadata.php │ │ │ │ ├── ArgumentMetadataFactory.php │ │ │ │ └── ArgumentMetadataFactoryInterface.php │ │ │ ├── DataCollector/ │ │ │ │ ├── AjaxDataCollector.php │ │ │ │ ├── ConfigDataCollector.php │ │ │ │ ├── DataCollector.php │ │ │ │ ├── DataCollectorInterface.php │ │ │ │ ├── DumpDataCollector.php │ │ │ │ ├── EventDataCollector.php │ │ │ │ ├── ExceptionDataCollector.php │ │ │ │ ├── LateDataCollectorInterface.php │ │ │ │ ├── LoggerDataCollector.php │ │ │ │ ├── MemoryDataCollector.php │ │ │ │ ├── RequestDataCollector.php │ │ │ │ ├── RouterDataCollector.php │ │ │ │ └── TimeDataCollector.php │ │ │ ├── Debug/ │ │ │ │ ├── ErrorHandlerConfigurator.php │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ └── VirtualRequestStack.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ │ ├── Extension.php │ │ │ │ ├── FragmentRendererPass.php │ │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ │ ├── LoggerPass.php │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ │ ├── RegisterLocaleAwareServicesPass.php │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ │ ├── ResettableServicePass.php │ │ │ │ ├── ServicesResetter.php │ │ │ │ └── ServicesResetterInterface.php │ │ │ ├── Event/ │ │ │ │ ├── ControllerArgumentsEvent.php │ │ │ │ ├── ControllerEvent.php │ │ │ │ ├── ExceptionEvent.php │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ ├── KernelEvent.php │ │ │ │ ├── RequestEvent.php │ │ │ │ ├── ResponseEvent.php │ │ │ │ ├── TerminateEvent.php │ │ │ │ └── ViewEvent.php │ │ │ ├── EventListener/ │ │ │ │ ├── AbstractSessionListener.php │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ ├── CacheAttributeListener.php │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ │ ├── DumpListener.php │ │ │ │ ├── ErrorListener.php │ │ │ │ ├── FragmentListener.php │ │ │ │ ├── LocaleAwareListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── ProfilerListener.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── RouterListener.php │ │ │ │ ├── SessionListener.php │ │ │ │ ├── SurrogateListener.php │ │ │ │ └── ValidateRequestListener.php │ │ │ ├── Exception/ │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ ├── ConflictHttpException.php │ │ │ │ ├── ControllerDoesNotReturnResponseException.php │ │ │ │ ├── GoneHttpException.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ ├── InvalidMetadataException.php │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ ├── LockedHttpException.php │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ ├── NearMissValueResolverException.php │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ ├── ResolverNotFoundException.php │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ ├── UnexpectedSessionUsageException.php │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ ├── Fragment/ │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ ├── FragmentHandler.php │ │ │ │ ├── FragmentRendererInterface.php │ │ │ │ ├── FragmentUriGenerator.php │ │ │ │ ├── FragmentUriGeneratorInterface.php │ │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ │ ├── InlineFragmentRenderer.php │ │ │ │ ├── RoutableFragmentRenderer.php │ │ │ │ └── SsiFragmentRenderer.php │ │ │ ├── HttpCache/ │ │ │ │ ├── AbstractSurrogate.php │ │ │ │ ├── CacheWasLockedException.php │ │ │ │ ├── Esi.php │ │ │ │ ├── HttpCache.php │ │ │ │ ├── ResponseCacheStrategy.php │ │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ │ ├── Ssi.php │ │ │ │ ├── Store.php │ │ │ │ ├── StoreInterface.php │ │ │ │ ├── SubRequestHandler.php │ │ │ │ └── SurrogateInterface.php │ │ │ ├── HttpClientKernel.php │ │ │ ├── HttpKernel.php │ │ │ ├── HttpKernelBrowser.php │ │ │ ├── HttpKernelInterface.php │ │ │ ├── Kernel.php │ │ │ ├── KernelEvents.php │ │ │ ├── KernelInterface.php │ │ │ ├── LICENSE │ │ │ ├── Log/ │ │ │ │ ├── DebugLoggerConfigurator.php │ │ │ │ ├── DebugLoggerInterface.php │ │ │ │ └── Logger.php │ │ │ ├── Profiler/ │ │ │ │ ├── FileProfilerStorage.php │ │ │ │ ├── Profile.php │ │ │ │ ├── Profiler.php │ │ │ │ ├── ProfilerStateChecker.php │ │ │ │ └── ProfilerStorageInterface.php │ │ │ ├── README.md │ │ │ ├── RebootableInterface.php │ │ │ ├── Resources/ │ │ │ │ └── welcome.html.php │ │ │ ├── TerminableInterface.php │ │ │ └── composer.json │ │ ├── mailer/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Command/ │ │ │ │ └── MailerTestCommand.php │ │ │ ├── DataCollector/ │ │ │ │ └── MessageDataCollector.php │ │ │ ├── DelayedEnvelope.php │ │ │ ├── Envelope.php │ │ │ ├── Event/ │ │ │ │ ├── FailedMessageEvent.php │ │ │ │ ├── MessageEvent.php │ │ │ │ ├── MessageEvents.php │ │ │ │ └── SentMessageEvent.php │ │ │ ├── EventListener/ │ │ │ │ ├── DkimSignedMessageListener.php │ │ │ │ ├── EnvelopeListener.php │ │ │ │ ├── MessageListener.php │ │ │ │ ├── MessageLoggerListener.php │ │ │ │ ├── MessengerTransportListener.php │ │ │ │ ├── SmimeCertificateRepositoryInterface.php │ │ │ │ ├── SmimeEncryptedMessageListener.php │ │ │ │ └── SmimeSignedMessageListener.php │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── HttpTransportException.php │ │ │ │ ├── IncompleteDsnException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── TransportException.php │ │ │ │ ├── TransportExceptionInterface.php │ │ │ │ ├── UnexpectedResponseException.php │ │ │ │ └── UnsupportedSchemeException.php │ │ │ ├── Header/ │ │ │ │ ├── MetadataHeader.php │ │ │ │ └── TagHeader.php │ │ │ ├── LICENSE │ │ │ ├── Mailer.php │ │ │ ├── MailerInterface.php │ │ │ ├── Messenger/ │ │ │ │ ├── MessageHandler.php │ │ │ │ └── SendEmailMessage.php │ │ │ ├── README.md │ │ │ ├── SentMessage.php │ │ │ ├── Test/ │ │ │ │ ├── AbstractTransportFactoryTestCase.php │ │ │ │ ├── Constraint/ │ │ │ │ │ ├── EmailCount.php │ │ │ │ │ └── EmailIsQueued.php │ │ │ │ ├── IncompleteDsnTestTrait.php │ │ │ │ └── TransportFactoryTestCase.php │ │ │ ├── Transport/ │ │ │ │ ├── AbstractApiTransport.php │ │ │ │ ├── AbstractHttpTransport.php │ │ │ │ ├── AbstractTransport.php │ │ │ │ ├── AbstractTransportFactory.php │ │ │ │ ├── Dsn.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── NativeTransportFactory.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── NullTransportFactory.php │ │ │ │ ├── RoundRobinTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SendmailTransportFactory.php │ │ │ │ ├── Smtp/ │ │ │ │ │ ├── Auth/ │ │ │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ ├── EsmtpTransport.php │ │ │ │ │ ├── EsmtpTransportFactory.php │ │ │ │ │ ├── SmtpTransport.php │ │ │ │ │ └── Stream/ │ │ │ │ │ ├── AbstractStream.php │ │ │ │ │ ├── ProcessStream.php │ │ │ │ │ └── SocketStream.php │ │ │ │ ├── TransportFactoryInterface.php │ │ │ │ ├── TransportInterface.php │ │ │ │ └── Transports.php │ │ │ ├── Transport.php │ │ │ └── composer.json │ │ ├── mime/ │ │ │ ├── Address.php │ │ │ ├── BodyRendererInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CharacterStream.php │ │ │ ├── Crypto/ │ │ │ │ ├── DkimOptions.php │ │ │ │ ├── DkimSigner.php │ │ │ │ ├── SMime.php │ │ │ │ ├── SMimeEncrypter.php │ │ │ │ └── SMimeSigner.php │ │ │ ├── DependencyInjection/ │ │ │ │ └── AddMimeTypeGuesserPass.php │ │ │ ├── DraftEmail.php │ │ │ ├── Email.php │ │ │ ├── Encoder/ │ │ │ │ ├── AddressEncoderInterface.php │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── Base64Encoder.php │ │ │ │ ├── Base64MimeHeaderEncoder.php │ │ │ │ ├── ContentEncoderInterface.php │ │ │ │ ├── EightBitContentEncoder.php │ │ │ │ ├── EncoderInterface.php │ │ │ │ ├── IdnAddressEncoder.php │ │ │ │ ├── MimeHeaderEncoderInterface.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpEncoder.php │ │ │ │ ├── QpMimeHeaderEncoder.php │ │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Exception/ │ │ │ │ ├── AddressEncoderException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── RfcComplianceException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ ├── Header/ │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── HeaderInterface.php │ │ │ │ ├── Headers.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── MailboxListHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── HtmlToTextConverter/ │ │ │ │ ├── DefaultHtmlToTextConverter.php │ │ │ │ ├── HtmlToTextConverterInterface.php │ │ │ │ └── LeagueHtmlToMarkdownConverter.php │ │ │ ├── LICENSE │ │ │ ├── Message.php │ │ │ ├── MessageConverter.php │ │ │ ├── MimeTypeGuesserInterface.php │ │ │ ├── MimeTypes.php │ │ │ ├── MimeTypesInterface.php │ │ │ ├── Part/ │ │ │ │ ├── AbstractMultipartPart.php │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── DataPart.php │ │ │ │ ├── File.php │ │ │ │ ├── MessagePart.php │ │ │ │ ├── Multipart/ │ │ │ │ │ ├── AlternativePart.php │ │ │ │ │ ├── DigestPart.php │ │ │ │ │ ├── FormDataPart.php │ │ │ │ │ ├── MixedPart.php │ │ │ │ │ └── RelatedPart.php │ │ │ │ ├── SMimePart.php │ │ │ │ └── TextPart.php │ │ │ ├── README.md │ │ │ ├── RawMessage.php │ │ │ ├── Test/ │ │ │ │ └── Constraint/ │ │ │ │ ├── EmailAddressContains.php │ │ │ │ ├── EmailAttachmentCount.php │ │ │ │ ├── EmailHasHeader.php │ │ │ │ ├── EmailHeaderSame.php │ │ │ │ ├── EmailHtmlBodyContains.php │ │ │ │ ├── EmailSubjectContains.php │ │ │ │ └── EmailTextBodyContains.php │ │ │ └── composer.json │ │ ├── options-resolver/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug/ │ │ │ │ └── OptionsResolverIntrospector.php │ │ │ ├── Exception/ │ │ │ │ ├── AccessException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionsException.php │ │ │ │ ├── MissingOptionsException.php │ │ │ │ ├── NoConfigurationException.php │ │ │ │ ├── NoSuchOptionException.php │ │ │ │ ├── OptionDefinitionException.php │ │ │ │ └── UndefinedOptionsException.php │ │ │ ├── LICENSE │ │ │ ├── OptionConfigurator.php │ │ │ ├── Options.php │ │ │ ├── OptionsResolver.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── polyfill-ctype/ │ │ │ ├── Ctype.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-intl-grapheme/ │ │ │ ├── Grapheme.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-intl-idn/ │ │ │ ├── Idn.php │ │ │ ├── Info.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── unidata/ │ │ │ │ ├── DisallowedRanges.php │ │ │ │ ├── Regex.php │ │ │ │ ├── deviation.php │ │ │ │ ├── disallowed.php │ │ │ │ ├── disallowed_STD3_mapped.php │ │ │ │ ├── disallowed_STD3_valid.php │ │ │ │ ├── ignored.php │ │ │ │ ├── mapped.php │ │ │ │ └── virama.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-intl-normalizer/ │ │ │ ├── LICENSE │ │ │ ├── Normalizer.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ ├── stubs/ │ │ │ │ │ └── Normalizer.php │ │ │ │ └── unidata/ │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-mbstring/ │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── unidata/ │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── polyfill-php80/ │ │ │ ├── LICENSE │ │ │ ├── Php80.php │ │ │ ├── PhpToken.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── stubs/ │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-php83/ │ │ │ ├── LICENSE │ │ │ ├── Php83.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── stubs/ │ │ │ │ ├── DateError.php │ │ │ │ ├── DateException.php │ │ │ │ ├── DateInvalidOperationException.php │ │ │ │ ├── DateInvalidTimeZoneException.php │ │ │ │ ├── DateMalformedIntervalStringException.php │ │ │ │ ├── DateMalformedPeriodStringException.php │ │ │ │ ├── DateMalformedStringException.php │ │ │ │ ├── DateObjectError.php │ │ │ │ ├── DateRangeError.php │ │ │ │ ├── Override.php │ │ │ │ └── SQLite3Exception.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap81.php │ │ │ └── composer.json │ │ ├── polyfill-uuid/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Uuid.php │ │ │ ├── bootstrap.php │ │ │ ├── bootstrap80.php │ │ │ └── composer.json │ │ ├── process/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── ProcessFailedException.php │ │ │ │ ├── ProcessSignaledException.php │ │ │ │ ├── ProcessStartFailedException.php │ │ │ │ ├── ProcessTimedOutException.php │ │ │ │ ├── RunProcessFailedException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── ExecutableFinder.php │ │ │ ├── InputStream.php │ │ │ ├── LICENSE │ │ │ ├── Messenger/ │ │ │ │ ├── RunProcessContext.php │ │ │ │ ├── RunProcessMessage.php │ │ │ │ └── RunProcessMessageHandler.php │ │ │ ├── PhpExecutableFinder.php │ │ │ ├── PhpProcess.php │ │ │ ├── PhpSubprocess.php │ │ │ ├── Pipes/ │ │ │ │ ├── AbstractPipes.php │ │ │ │ ├── PipesInterface.php │ │ │ │ ├── UnixPipes.php │ │ │ │ └── WindowsPipes.php │ │ │ ├── Process.php │ │ │ ├── ProcessUtils.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── routing/ │ │ │ ├── Alias.php │ │ │ ├── Annotation/ │ │ │ │ └── Route.php │ │ │ ├── Attribute/ │ │ │ │ ├── DeprecatedAlias.php │ │ │ │ └── Route.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CompiledRoute.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ │ └── RoutingResolverPass.php │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ ├── MissingMandatoryParametersException.php │ │ │ │ ├── NoConfigurationException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ ├── RouteCircularReferenceException.php │ │ │ │ ├── RouteNotFoundException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Generator/ │ │ │ │ ├── CompiledUrlGenerator.php │ │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ │ ├── Dumper/ │ │ │ │ │ ├── CompiledUrlGeneratorDumper.php │ │ │ │ │ ├── GeneratorDumper.php │ │ │ │ │ └── GeneratorDumperInterface.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlGeneratorInterface.php │ │ │ ├── LICENSE │ │ │ ├── Loader/ │ │ │ │ ├── AttributeClassLoader.php │ │ │ │ ├── AttributeDirectoryLoader.php │ │ │ │ ├── AttributeFileLoader.php │ │ │ │ ├── ClosureLoader.php │ │ │ │ ├── Configurator/ │ │ │ │ │ ├── AliasConfigurator.php │ │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ │ ├── ImportConfigurator.php │ │ │ │ │ ├── RouteConfigurator.php │ │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ │ └── Traits/ │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ ├── HostTrait.php │ │ │ │ │ ├── LocalizedRouteTrait.php │ │ │ │ │ ├── PrefixTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ │ ├── ContainerLoader.php │ │ │ │ ├── DirectoryLoader.php │ │ │ │ ├── GlobFileLoader.php │ │ │ │ ├── ObjectLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── Psr4DirectoryLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema/ │ │ │ │ └── routing/ │ │ │ │ └── routing-1.0.xsd │ │ │ ├── Matcher/ │ │ │ │ ├── CompiledUrlMatcher.php │ │ │ │ ├── Dumper/ │ │ │ │ │ ├── CompiledUrlMatcherDumper.php │ │ │ │ │ ├── CompiledUrlMatcherTrait.php │ │ │ │ │ ├── MatcherDumper.php │ │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ │ └── StaticPrefixCollection.php │ │ │ │ ├── ExpressionLanguageProvider.php │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ │ ├── RequestMatcherInterface.php │ │ │ │ ├── TraceableUrlMatcher.php │ │ │ │ ├── UrlMatcher.php │ │ │ │ └── UrlMatcherInterface.php │ │ │ ├── README.md │ │ │ ├── RequestContext.php │ │ │ ├── RequestContextAwareInterface.php │ │ │ ├── Requirement/ │ │ │ │ ├── EnumRequirement.php │ │ │ │ └── Requirement.php │ │ │ ├── Route.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteCompilerInterface.php │ │ │ ├── Router.php │ │ │ ├── RouterInterface.php │ │ │ └── composer.json │ │ ├── service-contracts/ │ │ │ ├── Attribute/ │ │ │ │ ├── Required.php │ │ │ │ └── SubscribedService.php │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ResetInterface.php │ │ │ ├── ServiceCollectionInterface.php │ │ │ ├── ServiceLocatorTrait.php │ │ │ ├── ServiceMethodsSubscriberTrait.php │ │ │ ├── ServiceProviderInterface.php │ │ │ ├── ServiceSubscriberInterface.php │ │ │ ├── ServiceSubscriberTrait.php │ │ │ ├── Test/ │ │ │ │ ├── ServiceLocatorTest.php │ │ │ │ └── ServiceLocatorTestCase.php │ │ │ └── composer.json │ │ ├── string/ │ │ │ ├── AbstractString.php │ │ │ ├── AbstractUnicodeString.php │ │ │ ├── ByteString.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CodePointString.php │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Inflector/ │ │ │ │ ├── EnglishInflector.php │ │ │ │ ├── FrenchInflector.php │ │ │ │ ├── InflectorInterface.php │ │ │ │ └── SpanishInflector.php │ │ │ ├── LICENSE │ │ │ ├── LazyString.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ ├── data/ │ │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ │ └── wcswidth_table_zero.php │ │ │ │ └── functions.php │ │ │ ├── Slugger/ │ │ │ │ ├── AsciiSlugger.php │ │ │ │ └── SluggerInterface.php │ │ │ ├── TruncateMode.php │ │ │ ├── UnicodeString.php │ │ │ └── composer.json │ │ ├── translation/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue/ │ │ │ │ ├── AbstractOperation.php │ │ │ │ ├── MergeOperation.php │ │ │ │ ├── OperationInterface.php │ │ │ │ └── TargetOperation.php │ │ │ ├── CatalogueMetadataAwareInterface.php │ │ │ ├── Command/ │ │ │ │ ├── TranslationLintCommand.php │ │ │ │ ├── TranslationPullCommand.php │ │ │ │ ├── TranslationPushCommand.php │ │ │ │ ├── TranslationTrait.php │ │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector/ │ │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection/ │ │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ │ ├── LoggingTranslatorPass.php │ │ │ │ ├── TranslationDumperPass.php │ │ │ │ ├── TranslationExtractorPass.php │ │ │ │ ├── TranslatorPass.php │ │ │ │ └── TranslatorPathsPass.php │ │ │ ├── Dumper/ │ │ │ │ ├── CsvFileDumper.php │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── FileDumper.php │ │ │ │ ├── IcuResFileDumper.php │ │ │ │ ├── IniFileDumper.php │ │ │ │ ├── JsonFileDumper.php │ │ │ │ ├── MoFileDumper.php │ │ │ │ ├── PhpFileDumper.php │ │ │ │ ├── PoFileDumper.php │ │ │ │ ├── QtFileDumper.php │ │ │ │ ├── XliffFileDumper.php │ │ │ │ └── YamlFileDumper.php │ │ │ ├── Exception/ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── IncompleteDsnException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidResourceException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MissingRequiredOptionException.php │ │ │ │ ├── NotFoundResourceException.php │ │ │ │ ├── ProviderException.php │ │ │ │ ├── ProviderExceptionInterface.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnsupportedSchemeException.php │ │ │ ├── Extractor/ │ │ │ │ ├── AbstractFileExtractor.php │ │ │ │ ├── ChainExtractor.php │ │ │ │ ├── ExtractorInterface.php │ │ │ │ ├── PhpAstExtractor.php │ │ │ │ └── Visitor/ │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── ConstraintVisitor.php │ │ │ │ ├── TransMethodVisitor.php │ │ │ │ └── TranslatableMessageVisitor.php │ │ │ ├── Formatter/ │ │ │ │ ├── IntlFormatter.php │ │ │ │ ├── IntlFormatterInterface.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ └── MessageFormatterInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── LICENSE │ │ │ ├── Loader/ │ │ │ │ ├── ArrayLoader.php │ │ │ │ ├── CsvFileLoader.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── IcuDatFileLoader.php │ │ │ │ ├── IcuResFileLoader.php │ │ │ │ ├── IniFileLoader.php │ │ │ │ ├── JsonFileLoader.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── MoFileLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── PoFileLoader.php │ │ │ │ ├── QtFileLoader.php │ │ │ │ ├── XliffFileLoader.php │ │ │ │ └── YamlFileLoader.php │ │ │ ├── LocaleSwitcher.php │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── Provider/ │ │ │ │ ├── AbstractProviderFactory.php │ │ │ │ ├── Dsn.php │ │ │ │ ├── FilteringProvider.php │ │ │ │ ├── NullProvider.php │ │ │ │ ├── NullProviderFactory.php │ │ │ │ ├── ProviderFactoryInterface.php │ │ │ │ ├── ProviderInterface.php │ │ │ │ ├── TranslationProviderCollection.php │ │ │ │ └── TranslationProviderCollectionFactory.php │ │ │ ├── PseudoLocalizationTranslator.php │ │ │ ├── README.md │ │ │ ├── Reader/ │ │ │ │ ├── TranslationReader.php │ │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources/ │ │ │ │ ├── bin/ │ │ │ │ │ └── translation-status.php │ │ │ │ ├── data/ │ │ │ │ │ └── parents.json │ │ │ │ ├── functions.php │ │ │ │ └── schemas/ │ │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ │ ├── Test/ │ │ │ │ ├── AbstractProviderFactoryTestCase.php │ │ │ │ ├── IncompleteDsnTestTrait.php │ │ │ │ ├── ProviderFactoryTestCase.php │ │ │ │ └── ProviderTestCase.php │ │ │ ├── TranslatableMessage.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorBag.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── Util/ │ │ │ │ ├── ArrayConverter.php │ │ │ │ └── XliffUtils.php │ │ │ ├── Writer/ │ │ │ │ ├── TranslationWriter.php │ │ │ │ └── TranslationWriterInterface.php │ │ │ └── composer.json │ │ ├── translation-contracts/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── LocaleAwareInterface.php │ │ │ ├── README.md │ │ │ ├── Test/ │ │ │ │ └── TranslatorTest.php │ │ │ ├── TranslatableInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── TranslatorTrait.php │ │ │ └── composer.json │ │ ├── uid/ │ │ │ ├── AbstractUid.php │ │ │ ├── BinaryUtil.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Command/ │ │ │ │ ├── GenerateUlidCommand.php │ │ │ │ ├── GenerateUuidCommand.php │ │ │ │ ├── InspectUlidCommand.php │ │ │ │ └── InspectUuidCommand.php │ │ │ ├── Exception/ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── LogicException.php │ │ │ ├── Factory/ │ │ │ │ ├── NameBasedUuidFactory.php │ │ │ │ ├── RandomBasedUuidFactory.php │ │ │ │ ├── TimeBasedUuidFactory.php │ │ │ │ ├── UlidFactory.php │ │ │ │ └── UuidFactory.php │ │ │ ├── HashableInterface.php │ │ │ ├── LICENSE │ │ │ ├── MaxUlid.php │ │ │ ├── MaxUuid.php │ │ │ ├── NilUlid.php │ │ │ ├── NilUuid.php │ │ │ ├── README.md │ │ │ ├── TimeBasedUidInterface.php │ │ │ ├── Ulid.php │ │ │ ├── Uuid.php │ │ │ ├── UuidV1.php │ │ │ ├── UuidV3.php │ │ │ ├── UuidV4.php │ │ │ ├── UuidV5.php │ │ │ ├── UuidV6.php │ │ │ ├── UuidV7.php │ │ │ ├── UuidV8.php │ │ │ └── composer.json │ │ ├── var-dumper/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Caster/ │ │ │ │ ├── AddressInfoCaster.php │ │ │ │ ├── AmqpCaster.php │ │ │ │ ├── ArgsStub.php │ │ │ │ ├── Caster.php │ │ │ │ ├── ClassStub.php │ │ │ │ ├── ConstStub.php │ │ │ │ ├── CurlCaster.php │ │ │ │ ├── CutArrayStub.php │ │ │ │ ├── CutStub.php │ │ │ │ ├── DOMCaster.php │ │ │ │ ├── DateCaster.php │ │ │ │ ├── DoctrineCaster.php │ │ │ │ ├── DsCaster.php │ │ │ │ ├── DsPairStub.php │ │ │ │ ├── EnumStub.php │ │ │ │ ├── ExceptionCaster.php │ │ │ │ ├── FFICaster.php │ │ │ │ ├── FiberCaster.php │ │ │ │ ├── FrameStub.php │ │ │ │ ├── GdCaster.php │ │ │ │ ├── GmpCaster.php │ │ │ │ ├── ImagineCaster.php │ │ │ │ ├── ImgStub.php │ │ │ │ ├── IntlCaster.php │ │ │ │ ├── LinkStub.php │ │ │ │ ├── MemcachedCaster.php │ │ │ │ ├── MysqliCaster.php │ │ │ │ ├── OpenSSLCaster.php │ │ │ │ ├── PdoCaster.php │ │ │ │ ├── PgSqlCaster.php │ │ │ │ ├── ProxyManagerCaster.php │ │ │ │ ├── RdKafkaCaster.php │ │ │ │ ├── RedisCaster.php │ │ │ │ ├── ReflectionCaster.php │ │ │ │ ├── ResourceCaster.php │ │ │ │ ├── ScalarStub.php │ │ │ │ ├── SocketCaster.php │ │ │ │ ├── SplCaster.php │ │ │ │ ├── SqliteCaster.php │ │ │ │ ├── StubCaster.php │ │ │ │ ├── SymfonyCaster.php │ │ │ │ ├── TraceStub.php │ │ │ │ ├── UninitializedStub.php │ │ │ │ ├── UuidCaster.php │ │ │ │ ├── VirtualStub.php │ │ │ │ ├── XmlReaderCaster.php │ │ │ │ └── XmlResourceCaster.php │ │ │ ├── Cloner/ │ │ │ │ ├── AbstractCloner.php │ │ │ │ ├── ClonerInterface.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── Data.php │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── Internal/ │ │ │ │ │ └── NoDefault.php │ │ │ │ ├── Stub.php │ │ │ │ └── VarCloner.php │ │ │ ├── Command/ │ │ │ │ ├── Descriptor/ │ │ │ │ │ ├── CliDescriptor.php │ │ │ │ │ ├── DumpDescriptorInterface.php │ │ │ │ │ └── HtmlDescriptor.php │ │ │ │ └── ServerDumpCommand.php │ │ │ ├── Dumper/ │ │ │ │ ├── AbstractDumper.php │ │ │ │ ├── CliDumper.php │ │ │ │ ├── ContextProvider/ │ │ │ │ │ ├── CliContextProvider.php │ │ │ │ │ ├── ContextProviderInterface.php │ │ │ │ │ ├── RequestContextProvider.php │ │ │ │ │ └── SourceContextProvider.php │ │ │ │ ├── ContextualizedDumper.php │ │ │ │ ├── DataDumperInterface.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ └── ServerDumper.php │ │ │ ├── Exception/ │ │ │ │ └── ThrowingCasterException.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ ├── bin/ │ │ │ │ │ └── var-dump-server │ │ │ │ ├── css/ │ │ │ │ │ └── htmlDescriptor.css │ │ │ │ ├── functions/ │ │ │ │ │ └── dump.php │ │ │ │ └── js/ │ │ │ │ └── htmlDescriptor.js │ │ │ ├── Server/ │ │ │ │ ├── Connection.php │ │ │ │ └── DumpServer.php │ │ │ ├── Test/ │ │ │ │ └── VarDumperTestTrait.php │ │ │ ├── VarDumper.php │ │ │ └── composer.json │ │ ├── var-exporter/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception/ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── LogicException.php │ │ │ │ └── NotInstantiableTypeException.php │ │ │ ├── Hydrator.php │ │ │ ├── Instantiator.php │ │ │ ├── Internal/ │ │ │ │ ├── Exporter.php │ │ │ │ ├── Hydrator.php │ │ │ │ ├── LazyDecoratorTrait.php │ │ │ │ ├── LazyObjectRegistry.php │ │ │ │ ├── LazyObjectState.php │ │ │ │ ├── LazyObjectTrait.php │ │ │ │ ├── Reference.php │ │ │ │ ├── Registry.php │ │ │ │ └── Values.php │ │ │ ├── LICENSE │ │ │ ├── LazyGhostTrait.php │ │ │ ├── LazyObjectInterface.php │ │ │ ├── LazyProxyTrait.php │ │ │ ├── ProxyHelper.php │ │ │ ├── README.md │ │ │ ├── VarExporter.php │ │ │ └── composer.json │ │ └── yaml/ │ │ ├── CHANGELOG.md │ │ ├── Command/ │ │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception/ │ │ │ ├── DumpException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── ParseException.php │ │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Resources/ │ │ │ └── bin/ │ │ │ └── yaml-lint │ │ ├── Tag/ │ │ │ └── TaggedValue.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ └── composer.json │ ├── theseer/ │ │ └── tokenizer/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php │ ├── tijsverkoyen/ │ │ └── css-to-inline-styles/ │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src/ │ │ ├── Css/ │ │ │ ├── Processor.php │ │ │ ├── Property/ │ │ │ │ ├── Processor.php │ │ │ │ └── Property.php │ │ │ └── Rule/ │ │ │ ├── Processor.php │ │ │ └── Rule.php │ │ └── CssToInlineStyles.php │ ├── vlucas/ │ │ └── phpdotenv/ │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src/ │ │ ├── Dotenv.php │ │ ├── Exception/ │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidEncodingException.php │ │ │ ├── InvalidFileException.php │ │ │ ├── InvalidPathException.php │ │ │ └── ValidationException.php │ │ ├── Loader/ │ │ │ ├── Loader.php │ │ │ ├── LoaderInterface.php │ │ │ └── Resolver.php │ │ ├── Parser/ │ │ │ ├── Entry.php │ │ │ ├── EntryParser.php │ │ │ ├── Lexer.php │ │ │ ├── Lines.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ └── Value.php │ │ ├── Repository/ │ │ │ ├── Adapter/ │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── ApacheAdapter.php │ │ │ │ ├── ArrayAdapter.php │ │ │ │ ├── EnvConstAdapter.php │ │ │ │ ├── GuardedWriter.php │ │ │ │ ├── ImmutableWriter.php │ │ │ │ ├── MultiReader.php │ │ │ │ ├── MultiWriter.php │ │ │ │ ├── PutenvAdapter.php │ │ │ │ ├── ReaderInterface.php │ │ │ │ ├── ReplacingWriter.php │ │ │ │ ├── ServerConstAdapter.php │ │ │ │ └── WriterInterface.php │ │ │ ├── AdapterRepository.php │ │ │ ├── RepositoryBuilder.php │ │ │ └── RepositoryInterface.php │ │ ├── Store/ │ │ │ ├── File/ │ │ │ │ ├── Paths.php │ │ │ │ └── Reader.php │ │ │ ├── FileStore.php │ │ │ ├── StoreBuilder.php │ │ │ ├── StoreInterface.php │ │ │ └── StringStore.php │ │ ├── Util/ │ │ │ ├── Regex.php │ │ │ └── Str.php │ │ └── Validator.php │ ├── voku/ │ │ └── portable-ascii/ │ │ ├── .deepsource.toml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── voku/ │ │ └── helper/ │ │ ├── ASCII.php │ │ └── data/ │ │ ├── ascii_by_languages.php │ │ ├── ascii_extras_by_languages.php │ │ ├── ascii_language_max_key.php │ │ ├── ascii_ord.php │ │ ├── x000.php │ │ ├── x001.php │ │ ├── x002.php │ │ ├── x003.php │ │ ├── x004.php │ │ ├── x005.php │ │ ├── x006.php │ │ ├── x007.php │ │ ├── x009.php │ │ ├── x00a.php │ │ ├── x00b.php │ │ ├── x00c.php │ │ ├── x00d.php │ │ ├── x00e.php │ │ ├── x00f.php │ │ ├── x010.php │ │ ├── x011.php │ │ ├── x012.php │ │ ├── x013.php │ │ ├── x014.php │ │ ├── x015.php │ │ ├── x016.php │ │ ├── x017.php │ │ ├── x018.php │ │ ├── x01d.php │ │ ├── x01e.php │ │ ├── x01f.php │ │ ├── x020.php │ │ ├── x021.php │ │ ├── x022.php │ │ ├── x023.php │ │ ├── x024.php │ │ ├── x025.php │ │ ├── x026.php │ │ ├── x027.php │ │ ├── x028.php │ │ ├── x029.php │ │ ├── x02a.php │ │ ├── x02c.php │ │ ├── x02e.php │ │ ├── x02f.php │ │ ├── x030.php │ │ ├── x031.php │ │ ├── x032.php │ │ ├── x033.php │ │ ├── x04d.php │ │ ├── x04e.php │ │ ├── x04f.php │ │ ├── x050.php │ │ ├── x051.php │ │ ├── x052.php │ │ ├── x053.php │ │ ├── x054.php │ │ ├── x055.php │ │ ├── x056.php │ │ ├── x057.php │ │ ├── x058.php │ │ ├── x059.php │ │ ├── x05a.php │ │ ├── x05b.php │ │ ├── x05c.php │ │ ├── x05d.php │ │ ├── x05e.php │ │ ├── x05f.php │ │ ├── x060.php │ │ ├── x061.php │ │ ├── x062.php │ │ ├── x063.php │ │ ├── x064.php │ │ ├── x065.php │ │ ├── x066.php │ │ ├── x067.php │ │ ├── x068.php │ │ ├── x069.php │ │ ├── x06a.php │ │ ├── x06b.php │ │ ├── x06c.php │ │ ├── x06d.php │ │ ├── x06e.php │ │ ├── x06f.php │ │ ├── x070.php │ │ ├── x071.php │ │ ├── x072.php │ │ ├── x073.php │ │ ├── x074.php │ │ ├── x075.php │ │ ├── x076.php │ │ ├── x077.php │ │ ├── x078.php │ │ ├── x079.php │ │ ├── x07a.php │ │ ├── x07b.php │ │ ├── x07c.php │ │ ├── x07d.php │ │ ├── x07e.php │ │ ├── x07f.php │ │ ├── x080.php │ │ ├── x081.php │ │ ├── x082.php │ │ ├── x083.php │ │ ├── x084.php │ │ ├── x085.php │ │ ├── x086.php │ │ ├── x087.php │ │ ├── x088.php │ │ ├── x089.php │ │ ├── x08a.php │ │ ├── x08b.php │ │ ├── x08c.php │ │ ├── x08d.php │ │ ├── x08e.php │ │ ├── x08f.php │ │ ├── x090.php │ │ ├── x091.php │ │ ├── x092.php │ │ ├── x093.php │ │ ├── x094.php │ │ ├── x095.php │ │ ├── x096.php │ │ ├── x097.php │ │ ├── x098.php │ │ ├── x099.php │ │ ├── x09a.php │ │ ├── x09b.php │ │ ├── x09c.php │ │ ├── x09d.php │ │ ├── x09e.php │ │ ├── x09f.php │ │ ├── x0a0.php │ │ ├── x0a1.php │ │ ├── x0a2.php │ │ ├── x0a3.php │ │ ├── x0a4.php │ │ ├── x0ac.php │ │ ├── x0ad.php │ │ ├── x0ae.php │ │ ├── x0af.php │ │ ├── x0b0.php │ │ ├── x0b1.php │ │ ├── x0b2.php │ │ ├── x0b3.php │ │ ├── x0b4.php │ │ ├── x0b5.php │ │ ├── x0b6.php │ │ ├── x0b7.php │ │ ├── x0b8.php │ │ ├── x0b9.php │ │ ├── x0ba.php │ │ ├── x0bb.php │ │ ├── x0bc.php │ │ ├── x0bd.php │ │ ├── x0be.php │ │ ├── x0bf.php │ │ ├── x0c0.php │ │ ├── x0c1.php │ │ ├── x0c2.php │ │ ├── x0c3.php │ │ ├── x0c4.php │ │ ├── x0c5.php │ │ ├── x0c6.php │ │ ├── x0c7.php │ │ ├── x0c8.php │ │ ├── x0c9.php │ │ ├── x0ca.php │ │ ├── x0cb.php │ │ ├── x0cc.php │ │ ├── x0cd.php │ │ ├── x0ce.php │ │ ├── x0cf.php │ │ ├── x0d0.php │ │ ├── x0d1.php │ │ ├── x0d2.php │ │ ├── x0d3.php │ │ ├── x0d4.php │ │ ├── x0d5.php │ │ ├── x0d6.php │ │ ├── x0d7.php │ │ ├── x0f9.php │ │ ├── x0fa.php │ │ ├── x0fb.php │ │ ├── x0fc.php │ │ ├── x0fd.php │ │ ├── x0fe.php │ │ ├── x0ff.php │ │ ├── x1d4.php │ │ ├── x1d5.php │ │ ├── x1d6.php │ │ ├── x1d7.php │ │ └── x1f1.php │ └── webmozart/ │ └── assert/ │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src/ │ ├── Assert.php │ ├── InvalidArgumentException.php │ └── Mixin.php ├── webpack.mix.js └── xdebug.ini