├── .env ├── .gitattributes ├── DOCUMENTATION ├── assets │ ├── admin.png │ ├── assign-db-rights.png │ ├── ccbill-create-flex-form.png │ ├── ccbill-webhooks.png │ ├── click-upload.png │ ├── config.png │ ├── create-db-user.png │ ├── db-created.png │ ├── docroot.png │ ├── docs.css │ ├── dont-collect-user.png │ ├── enter-db-name.png │ ├── extract.png │ ├── file-manager.png │ ├── go-inside-folder.png │ ├── install-1.png │ ├── install-2.png │ ├── install-3.png │ ├── livekit-generated.png │ ├── livekit-key.png │ ├── livekit-webhooks.png │ ├── mail.png │ ├── move-to-public_html.png │ ├── mysql-db-wizzard.png │ ├── nginx-rtmp.png │ ├── nginx.png │ ├── pusher-admin.png │ ├── pusher-app.png │ ├── pusher-keys.png │ ├── select-public-html.png │ ├── select-zip.png │ ├── stream-keys.png │ ├── streaming.png │ ├── stripe-admin.png │ ├── stripe-my-account.png │ ├── subaccount.png │ ├── tok-packs.png │ ├── tok-val.png │ ├── translate.png │ └── twitcher-logo-dark.png └── index.html ├── app ├── Console │ ├── Commands │ │ └── GenerateTranslationJSON.php │ └── Kernel.php ├── Events │ ├── ChatMessageEvent.php │ ├── LiveStreamBan.php │ ├── LiveStreamRefresh.php │ ├── LiveStreamStarted.php │ └── LiveStreamStopped.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── API │ │ │ └── LiveKitController.php │ │ ├── Admin.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── BankTransferController.php │ │ ├── BannedController.php │ │ ├── BrowseChannelsController.php │ │ ├── CCBillController.php │ │ ├── ChannelController.php │ │ ├── ChatController.php │ │ ├── ContactController.php │ │ ├── Controller.php │ │ ├── GoLiveController.php │ │ ├── HomeController.php │ │ ├── InstallController.php │ │ ├── MembershipController.php │ │ ├── NotificationsController.php │ │ ├── PageController.php │ │ ├── PayPalController.php │ │ ├── PayoutController.php │ │ ├── ProfileController.php │ │ ├── ScheduleController.php │ │ ├── StreamerVerificationController.php │ │ ├── StripeController.php │ │ ├── SubscriptionController.php │ │ ├── TipsController.php │ │ ├── TokensController.php │ │ └── VideosController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AdminMiddleware.php │ │ ├── Authenticate.php │ │ ├── BanMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ ├── VerifiedStreamer.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ ├── ChannelSettingsRequest.php │ │ └── ProfileUpdateRequest.php ├── Listeners │ ├── FollowListener.php │ ├── NotificationSentListener.php │ └── UserEventListener.php ├── Models │ ├── Banned.php │ ├── Category.php │ ├── Chat.php │ ├── Options.php │ ├── Page.php │ ├── RoomBans.php │ ├── Subscription.php │ ├── Tier.php │ ├── Tips.php │ ├── TokenPack.php │ ├── TokenSale.php │ ├── User.php │ ├── UserMeta.php │ ├── Video.php │ ├── VideoCategories.php │ ├── VideoSales.php │ └── Withdrawal.php ├── Notifications │ ├── AdminPayoutRequest.php │ ├── ContactFormEmail.php │ ├── NewBankTransferNotification.php │ ├── NewFollower.php │ ├── NewSubscriber.php │ ├── NewVideoSale.php │ ├── PaymentRequestProcessed.php │ ├── StreamerVerification.php │ ├── StreamerVerifiedNotification.php │ └── ThanksNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ ├── UniqueUsername.php │ └── UniqueUsernameOnSignup.php └── View │ └── Components │ └── Translations.php ├── artisan ├── bootstrap ├── app.php └── cache │ ├── packages.php │ └── services.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── flare.php ├── follow.php ├── hashing.php ├── ignition.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ └── 2022_05_02_000000_create_followables_table.php ├── seeders │ └── DatabaseSeeder.php └── twitcher.sql ├── helpers └── opt.helper.php ├── jsconfig.json ├── lang ├── en.json └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── packages └── crivion │ └── reladmini │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── config │ └── config.php │ ├── resources │ ├── js │ │ ├── Components │ │ │ └── Navi.jsx │ │ ├── Dashboard │ │ │ └── Dashboard.jsx │ │ └── Profile │ │ │ └── Profile.jsx │ └── views │ │ └── reladmini-base.blade.php │ ├── routes │ └── routes.php │ ├── src │ ├── Http │ │ ├── Controllers │ │ │ ├── DashboardController.php │ │ │ └── ProfileController.php │ │ └── Middleware │ │ │ └── HandleReladminiInertiaRequests.php │ ├── Reladmini.php │ ├── ReladminiFacade.php │ └── ReladminiServiceProvider.php │ └── vendor │ ├── autoload.php │ ├── bin │ ├── carbon │ ├── patch-type-declarations │ ├── php-parse │ ├── phpunit │ ├── testbench │ ├── var-dump-server │ └── yaml-lint │ ├── brick │ └── math │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── BigDecimal.php │ │ ├── BigInteger.php │ │ ├── BigNumber.php │ │ ├── BigRational.php │ │ ├── Exception │ │ ├── DivisionByZeroException.php │ │ ├── IntegerOverflowException.php │ │ ├── MathException.php │ │ ├── NegativeNumberException.php │ │ ├── NumberFormatException.php │ │ └── RoundingNecessaryException.php │ │ ├── Internal │ │ ├── Calculator.php │ │ └── Calculator │ │ │ ├── BcMathCalculator.php │ │ │ ├── GmpCalculator.php │ │ │ └── NativeCalculator.php │ │ └── RoundingMode.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 │ ├── installed.json │ ├── installed.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 │ ├── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ └── sidebar.rst │ │ ├── psalm.xml │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Lexer │ │ │ └── AbstractLexer.php │ │ └── psalm.xml │ ├── dragonmantank │ └── cron-expression │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── 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 │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── MessageIDParser.php │ │ ├── Parser.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 │ │ ├── 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 │ ├── fakerphp │ └── faker │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm.baseline.xml │ │ ├── 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 │ │ │ │ ├── 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 │ ├── fruitcake │ └── php-cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CorsService.php │ │ └── Exceptions │ │ └── InvalidOptionException.php │ ├── graham-campbell │ └── result-type │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── Error.php │ │ ├── Result.php │ │ └── Success.php │ ├── guzzlehttp │ └── 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 │ ├── hamcrest │ └── hamcrest-php │ │ ├── .coveralls.yml │ │ ├── .gush.yml │ │ ├── .travis.yml │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── generator │ │ ├── FactoryCall.php │ │ ├── FactoryClass.php │ │ ├── FactoryFile.php │ │ ├── FactoryGenerator.php │ │ ├── FactoryMethod.php │ │ ├── FactoryParameter.php │ │ ├── GlobalFunctionFile.php │ │ ├── StaticMethodFile.php │ │ ├── parts │ │ │ ├── file_header.txt │ │ │ ├── functions_footer.txt │ │ │ ├── functions_header.txt │ │ │ ├── functions_imports.txt │ │ │ ├── matchers_footer.txt │ │ │ ├── matchers_header.txt │ │ │ └── matchers_imports.txt │ │ └── run.php │ │ ├── hamcrest │ │ ├── Hamcrest.php │ │ └── Hamcrest │ │ │ ├── Arrays │ │ │ ├── IsArray.php │ │ │ ├── IsArrayContaining.php │ │ │ ├── IsArrayContainingInAnyOrder.php │ │ │ ├── IsArrayContainingInOrder.php │ │ │ ├── IsArrayContainingKey.php │ │ │ ├── IsArrayContainingKeyValuePair.php │ │ │ ├── IsArrayWithSize.php │ │ │ ├── MatchingOnce.php │ │ │ └── SeriesMatchingOnce.php │ │ │ ├── AssertionError.php │ │ │ ├── BaseDescription.php │ │ │ ├── BaseMatcher.php │ │ │ ├── Collection │ │ │ ├── IsEmptyTraversable.php │ │ │ └── IsTraversableWithSize.php │ │ │ ├── Core │ │ │ ├── AllOf.php │ │ │ ├── AnyOf.php │ │ │ ├── CombinableMatcher.php │ │ │ ├── DescribedAs.php │ │ │ ├── Every.php │ │ │ ├── HasToString.php │ │ │ ├── Is.php │ │ │ ├── IsAnything.php │ │ │ ├── IsCollectionContaining.php │ │ │ ├── IsEqual.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsNot.php │ │ │ ├── IsNull.php │ │ │ ├── IsSame.php │ │ │ ├── IsTypeOf.php │ │ │ ├── Set.php │ │ │ └── ShortcutCombination.php │ │ │ ├── Description.php │ │ │ ├── DiagnosingMatcher.php │ │ │ ├── FeatureMatcher.php │ │ │ ├── Internal │ │ │ └── SelfDescribingValue.php │ │ │ ├── Matcher.php │ │ │ ├── MatcherAssert.php │ │ │ ├── Matchers.php │ │ │ ├── NullDescription.php │ │ │ ├── Number │ │ │ ├── IsCloseTo.php │ │ │ └── OrderingComparison.php │ │ │ ├── SelfDescribing.php │ │ │ ├── StringDescription.php │ │ │ ├── Text │ │ │ ├── IsEmptyString.php │ │ │ ├── IsEqualIgnoringCase.php │ │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ │ ├── MatchesPattern.php │ │ │ ├── StringContains.php │ │ │ ├── StringContainsIgnoringCase.php │ │ │ ├── StringContainsInOrder.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringStartsWith.php │ │ │ └── SubstringMatcher.php │ │ │ ├── Type │ │ │ ├── IsArray.php │ │ │ ├── IsBoolean.php │ │ │ ├── IsCallable.php │ │ │ ├── IsDouble.php │ │ │ ├── IsInteger.php │ │ │ ├── IsNumeric.php │ │ │ ├── IsObject.php │ │ │ ├── IsResource.php │ │ │ ├── IsScalar.php │ │ │ └── IsString.php │ │ │ ├── TypeSafeDiagnosingMatcher.php │ │ │ ├── TypeSafeMatcher.php │ │ │ ├── Util.php │ │ │ └── Xml │ │ │ └── HasXPath.php │ │ └── tests │ │ ├── Hamcrest │ │ ├── AbstractMatcherTest.php │ │ ├── Array │ │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ │ ├── IsArrayContainingInOrderTest.php │ │ │ ├── IsArrayContainingKeyTest.php │ │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ │ ├── IsArrayContainingTest.php │ │ │ ├── IsArrayTest.php │ │ │ └── IsArrayWithSizeTest.php │ │ ├── BaseMatcherTest.php │ │ ├── Collection │ │ │ ├── IsEmptyTraversableTest.php │ │ │ └── IsTraversableWithSizeTest.php │ │ ├── Core │ │ │ ├── AllOfTest.php │ │ │ ├── AnyOfTest.php │ │ │ ├── CombinableMatcherTest.php │ │ │ ├── DescribedAsTest.php │ │ │ ├── EveryTest.php │ │ │ ├── HasToStringTest.php │ │ │ ├── IsAnythingTest.php │ │ │ ├── IsCollectionContainingTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsInstanceOfTest.php │ │ │ ├── IsNotTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsSameTest.php │ │ │ ├── IsTest.php │ │ │ ├── IsTypeOfTest.php │ │ │ ├── SampleBaseClass.php │ │ │ ├── SampleSubClass.php │ │ │ └── SetTest.php │ │ ├── FeatureMatcherTest.php │ │ ├── InvokedMatcherTest.php │ │ ├── MatcherAssertTest.php │ │ ├── Number │ │ │ ├── IsCloseToTest.php │ │ │ └── OrderingComparisonTest.php │ │ ├── StringDescriptionTest.php │ │ ├── Text │ │ │ ├── IsEmptyStringTest.php │ │ │ ├── IsEqualIgnoringCaseTest.php │ │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ │ ├── MatchesPatternTest.php │ │ │ ├── StringContainsIgnoringCaseTest.php │ │ │ ├── StringContainsInOrderTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ └── StringStartsWithTest.php │ │ ├── Type │ │ │ ├── IsArrayTest.php │ │ │ ├── IsBooleanTest.php │ │ │ ├── IsCallableTest.php │ │ │ ├── IsDoubleTest.php │ │ │ ├── IsIntegerTest.php │ │ │ ├── IsNumericTest.php │ │ │ ├── IsObjectTest.php │ │ │ ├── IsResourceTest.php │ │ │ ├── IsScalarTest.php │ │ │ └── IsStringTest.php │ │ ├── UtilTest.php │ │ └── Xml │ │ │ └── HasXPathTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml.dist │ ├── inertiajs │ └── inertia-laravel │ │ ├── LICENSE │ │ ├── _ide_helpers.php │ │ ├── composer.json │ │ ├── config │ │ └── inertia.php │ │ ├── helpers.php │ │ ├── readme.md │ │ ├── src │ │ ├── Console │ │ │ └── CreateMiddleware.php │ │ ├── Controller.php │ │ ├── Directive.php │ │ ├── Inertia.php │ │ ├── LazyProp.php │ │ ├── Middleware.php │ │ ├── Response.php │ │ ├── ResponseFactory.php │ │ ├── ServiceProvider.php │ │ ├── Ssr │ │ │ ├── Gateway.php │ │ │ ├── HttpGateway.php │ │ │ └── Response.php │ │ └── Testing │ │ │ ├── Assert.php │ │ │ ├── AssertableInertia.php │ │ │ ├── Concerns │ │ │ ├── Debugging.php │ │ │ ├── Has.php │ │ │ ├── Interaction.php │ │ │ ├── Matching.php │ │ │ └── PageObject.php │ │ │ └── TestResponseMacros.php │ │ └── stubs │ │ └── middleware.stub │ ├── laravel │ ├── framework │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.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 │ │ │ │ ├── Registered.php │ │ │ │ ├── Validated.php │ │ │ │ └── Verified.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── LICENSE.md │ │ │ ├── Listeners │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ ├── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ ├── Authorize.php │ │ │ │ ├── EnsureEmailIsVerified.php │ │ │ │ └── RequirePassword.php │ │ │ ├── MustVerifyEmail.php │ │ │ ├── Notifications │ │ │ │ ├── ResetPassword.php │ │ │ │ └── VerifyEmail.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── Recaller.php │ │ │ ├── RequestGuard.php │ │ │ ├── SessionGuard.php │ │ │ ├── TokenGuard.php │ │ │ └── composer.json │ │ │ ├── Broadcasting │ │ │ ├── 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 │ │ │ ├── DatabaseBatchRepository.php │ │ │ ├── Dispatcher.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 │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseLock.php │ │ │ ├── DatabaseStore.php │ │ │ ├── DynamoDbLock.php │ │ │ ├── DynamoDbStore.php │ │ │ ├── Events │ │ │ │ ├── CacheEvent.php │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.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 │ │ │ ├── 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 │ │ │ └── helpers.php │ │ │ ├── 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 │ │ │ │ ├── CreatesMatchingTest.php │ │ │ │ ├── HasParameters.php │ │ │ │ ├── InteractsWithIO.php │ │ │ │ └── InteractsWithSignals.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 │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── QuestionHelper.php │ │ │ ├── Scheduling │ │ │ │ ├── CacheAware.php │ │ │ │ ├── CacheEventMutex.php │ │ │ │ ├── CacheSchedulingMutex.php │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── CommandBuilder.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventMutex.php │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ ├── Schedule.php │ │ │ │ ├── ScheduleClearCacheCommand.php │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ ├── ScheduleListCommand.php │ │ │ │ ├── ScheduleRunCommand.php │ │ │ │ ├── ScheduleTestCommand.php │ │ │ │ ├── ScheduleWorkCommand.php │ │ │ │ └── SchedulingMutex.php │ │ │ ├── Signals.php │ │ │ ├── View │ │ │ │ └── Components │ │ │ │ │ ├── Alert.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 │ │ │ │ │ ├── Task.php │ │ │ │ │ ├── TwoColumnDetail.php │ │ │ │ │ └── Warn.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── components │ │ │ │ ├── alert.php │ │ │ │ ├── bullet-list.php │ │ │ │ ├── line.php │ │ │ │ └── two-column-detail.php │ │ │ ├── Container │ │ │ ├── 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 │ │ │ ├── Config │ │ │ │ └── Repository.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ ├── Isolatable.php │ │ │ │ └── Kernel.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── CircularDependencyException.php │ │ │ │ ├── Container.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 │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ ├── Encrypter.php │ │ │ │ └── StringEncrypter.php │ │ │ ├── Events │ │ │ │ └── Dispatcher.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── TableCommand.php │ │ │ │ └── WipeCommand.php │ │ │ ├── DBAL │ │ │ │ └── TimestampType.php │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DatabaseTransactionRecord.php │ │ │ ├── DatabaseTransactionsManager.php │ │ │ ├── DeadlockException.php │ │ │ ├── DetectsConcurrencyErrors.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── BroadcastableModelEventOccurred.php │ │ │ │ ├── BroadcastsEvents.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Casts │ │ │ │ │ ├── ArrayObject.php │ │ │ │ │ ├── AsArrayObject.php │ │ │ │ │ ├── AsCollection.php │ │ │ │ │ ├── AsEncryptedArrayObject.php │ │ │ │ │ ├── AsEncryptedCollection.php │ │ │ │ │ ├── AsStringable.php │ │ │ │ │ └── Attribute.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ ├── HasUlids.php │ │ │ │ │ ├── HasUuids.php │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ ├── Factories │ │ │ │ │ ├── BelongsToManyRelationship.php │ │ │ │ │ ├── BelongsToRelationship.php │ │ │ │ │ ├── CrossJoinSequence.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HasFactory.php │ │ │ │ │ ├── Relationship.php │ │ │ │ │ └── Sequence.php │ │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ │ ├── InvalidCastException.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── MassPrunable.php │ │ │ │ ├── MissingAttributeException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.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 │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.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 │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── DatabaseBusy.php │ │ │ │ ├── DatabaseRefreshed.php │ │ │ │ ├── MigrationEnded.php │ │ │ │ ├── MigrationEvent.php │ │ │ │ ├── MigrationStarted.php │ │ │ │ ├── MigrationsEnded.php │ │ │ │ ├── MigrationsEvent.php │ │ │ │ ├── MigrationsStarted.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 │ │ │ ├── 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 │ │ │ ├── PDO │ │ │ │ ├── Concerns │ │ │ │ │ └── ConnectsToDatabase.php │ │ │ │ ├── Connection.php │ │ │ │ ├── MySqlDriver.php │ │ │ │ ├── PostgresDriver.php │ │ │ │ ├── SQLiteDriver.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ └── SqlServerDriver.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── JoinClause.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── README.md │ │ │ ├── RecordsNotFoundException.php │ │ │ ├── SQLiteConnection.php │ │ │ ├── SQLiteDatabaseDoesNotExistException.php │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── ColumnDefinition.php │ │ │ │ ├── ForeignIdColumnDefinition.php │ │ │ │ ├── ForeignKeyDefinition.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── IndexDefinition.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ ├── MySqlSchemaState.php │ │ │ │ ├── PostgresBuilder.php │ │ │ │ ├── PostgresSchemaState.php │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ ├── SchemaState.php │ │ │ │ ├── SqlServerBuilder.php │ │ │ │ └── SqliteSchemaState.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.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 │ │ │ ├── LockableFile.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ ├── ComposerScripts.php │ │ │ ├── Concerns │ │ │ │ └── ResolvesDumpSource.php │ │ │ ├── Console │ │ │ │ ├── AboutCommand.php │ │ │ │ ├── CastMakeCommand.php │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── CliDumper.php │ │ │ │ ├── ClosureCommand.php │ │ │ │ ├── ComponentMakeCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DocsCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EnvironmentDecryptCommand.php │ │ │ │ ├── EnvironmentEncryptCommand.php │ │ │ │ ├── EventCacheCommand.php │ │ │ │ ├── EventClearCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventListCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.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 │ │ │ │ ├── ShowModelCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── StubPublishCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── cast.inbound.stub │ │ │ │ │ ├── cast.stub │ │ │ │ │ ├── channel.stub │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── job.queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-duck.stub │ │ │ │ │ ├── listener-queued-duck.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.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.invokable.implicit.stub │ │ │ │ │ ├── rule.invokable.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── scope.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ ├── test.unit.stub │ │ │ │ │ └── view-component.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Events │ │ │ │ ├── DiscoverEvents.php │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── LocaleUpdated.php │ │ │ │ ├── MaintenanceModeDisabled.php │ │ │ │ ├── MaintenanceModeEnabled.php │ │ │ │ └── VendorTagPublished.php │ │ │ ├── Exceptions │ │ │ │ ├── Handler.php │ │ │ │ ├── RegisterErrorViewPaths.php │ │ │ │ ├── ReportableHandler.php │ │ │ │ ├── Whoops │ │ │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ │ │ └── WhoopsHandler.php │ │ │ │ └── views │ │ │ │ │ ├── 401.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 │ │ │ │ ├── Exceptions │ │ │ │ │ └── MaintenanceModeException.php │ │ │ │ ├── FormRequest.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── MaintenanceModeBypassCookie.php │ │ │ │ └── Middleware │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Inspiring.php │ │ │ ├── MaintenanceModeManager.php │ │ │ ├── Mix.php │ │ │ ├── PackageManifest.php │ │ │ ├── Precognition.php │ │ │ ├── ProviderRepository.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ └── FoundationServiceProvider.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 │ │ │ │ │ ├── InteractsWithTime.php │ │ │ │ │ ├── InteractsWithViews.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── LazilyRefreshDatabase.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── Traits │ │ │ │ │ └── CanConfigureMigrationCommands.php │ │ │ │ ├── WithFaker.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ ├── WithoutMiddleware.php │ │ │ │ └── Wormhole.php │ │ │ ├── Validation │ │ │ │ └── ValidatesRequests.php │ │ │ ├── Vite.php │ │ │ ├── helpers.php │ │ │ ├── resources │ │ │ │ └── server.php │ │ │ └── stubs │ │ │ │ └── facade.stub │ │ │ ├── Hashing │ │ │ ├── AbstractHasher.php │ │ │ ├── Argon2IdHasher.php │ │ │ ├── ArgonHasher.php │ │ │ ├── BcryptHasher.php │ │ │ ├── HashManager.php │ │ │ ├── HashServiceProvider.php │ │ │ ├── LICENSE.md │ │ │ └── composer.json │ │ │ ├── Http │ │ │ ├── Client │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Events │ │ │ │ └── MessageLogged.php │ │ │ ├── LICENSE.md │ │ │ ├── LogManager.php │ │ │ ├── LogServiceProvider.php │ │ │ ├── Logger.php │ │ │ ├── ParsesLogConfiguration.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ ├── Transport │ │ │ │ ├── ArrayTransport.php │ │ │ │ ├── LogTransport.php │ │ │ │ └── SesTransport.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 │ │ │ ├── Queue │ │ │ ├── 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 │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ ├── JobQueued.php │ │ │ │ ├── JobReleasedAfterException.php │ │ │ │ ├── JobRetryRequested.php │ │ │ │ ├── Looping.php │ │ │ │ ├── QueueBusy.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── DatabaseUuidFailedJobProvider.php │ │ │ │ ├── DynamoDbFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ ├── NullFailedJobProvider.php │ │ │ │ └── PrunableFailedJobProvider.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── InvalidPayloadException.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── DatabaseJobRecord.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── RouteMatched.php │ │ │ │ └── Routing.php │ │ │ ├── Exceptions │ │ │ │ ├── BackedEnumCaseNotFoundException.php │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ ├── StreamedResponseException.php │ │ │ │ └── UrlGenerationException.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 │ │ │ ├── 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 │ │ │ ├── Env.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Broadcast.php │ │ │ │ ├── Bus.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── DB.php │ │ │ │ ├── Date.php │ │ │ │ ├── Event.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Gate.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Http.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Notification.php │ │ │ │ ├── ParallelTesting.php │ │ │ │ ├── Password.php │ │ │ │ ├── Queue.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Route.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 │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── Reflector.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Stringable.php │ │ │ ├── Testing │ │ │ │ └── Fakes │ │ │ │ │ ├── BatchFake.php │ │ │ │ │ ├── BatchRepositoryFake.php │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingBatchFake.php │ │ │ │ │ ├── PendingChainFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ ├── Timebox.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ ├── ForwardsCalls.php │ │ │ │ ├── Localizable.php │ │ │ │ ├── ReflectsClosures.php │ │ │ │ └── Tappable.php │ │ │ ├── ValidatedInput.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Testing │ │ │ ├── Assert.php │ │ │ ├── AssertableJsonString.php │ │ │ ├── Concerns │ │ │ │ └── TestDatabases.php │ │ │ ├── Constraints │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── CountInDatabase.php │ │ │ │ ├── HasInDatabase.php │ │ │ │ ├── NotSoftDeletedInDatabase.php │ │ │ │ ├── SeeInOrder.php │ │ │ │ └── SoftDeletedInDatabase.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 │ │ │ ├── TestView.php │ │ │ └── composer.json │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── LICENSE.md │ │ │ ├── MessageSelector.php │ │ │ ├── PotentiallyTranslatedString.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── Translator.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ │ ├── DatabaseRule.php │ │ │ │ ├── Dimensions.php │ │ │ │ ├── Enum.php │ │ │ │ ├── ExcludeIf.php │ │ │ │ ├── Exists.php │ │ │ │ ├── File.php │ │ │ │ ├── ImageFile.php │ │ │ │ ├── In.php │ │ │ │ ├── NotIn.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 │ │ │ │ ├── CompilesStacks.php │ │ │ │ └── CompilesTranslations.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 │ └── 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 │ ├── league │ ├── commonmark │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CommonMarkConverter.php │ │ │ ├── ConverterInterface.php │ │ │ ├── Delimiter │ │ │ ├── Delimiter.php │ │ │ ├── DelimiterInterface.php │ │ │ ├── DelimiterParser.php │ │ │ ├── DelimiterStack.php │ │ │ └── Processor │ │ │ │ ├── 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 │ │ │ └── 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.php │ │ │ ├── Query │ │ │ │ ├── AndExpr.php │ │ │ │ ├── ExpressionInterface.php │ │ │ │ └── OrExpr.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 │ │ │ ├── Reference │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── .dockerignore │ │ ├── INFO.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── readme.md │ │ └── src │ │ │ ├── CalculateChecksumFromStream.php │ │ │ ├── ChecksumAlgoIsNotSupported.php │ │ │ ├── ChecksumProvider.php │ │ │ ├── Config.php │ │ │ ├── CorruptedPathDetected.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 │ │ │ ├── Local │ │ │ ├── FallbackMimeTypeDetector.php │ │ │ └── LocalFilesystemAdapter.php │ │ │ ├── MountManager.php │ │ │ ├── PathNormalizer.php │ │ │ ├── PathPrefixer.php │ │ │ ├── PathTraversalDetected.php │ │ │ ├── PortableVisibilityGuard.php │ │ │ ├── ProxyArrayAccessToProperties.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 │ │ │ ├── PrefixPublicUrlGenerator.php │ │ │ ├── PublicUrlGenerator.php │ │ │ ├── ShardedPrefixPublicUrlGenerator.php │ │ │ └── TemporaryUrlGenerator.php │ │ │ ├── Visibility.php │ │ │ └── WhitespacePathNormalizer.php │ └── mime-type-detection │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php │ ├── mockery │ └── mockery │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── README.md │ │ ├── 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 │ │ └── library │ │ ├── Mockery.php │ │ ├── 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 │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── NoMatchingExpectationException.php │ │ │ └── RuntimeException.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 │ │ │ │ │ ├── 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 │ │ │ ├── MatcherAbstract.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 │ │ └── helpers.php │ ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ └── AsMonologProcessor.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 │ │ └── 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 │ │ ├── SwiftMailerHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.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 │ │ └── TestCase.php │ │ └── Utils.php │ ├── myclabs │ └── deep-copy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── 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 │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── nesbot │ └── carbon │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy │ │ └── Carbon │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.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 │ │ ├── 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 │ │ ├── PHPStan │ │ ├── AbstractMacro.php │ │ ├── Macro.php │ │ ├── MacroExtension.php │ │ └── MacroScanner.php │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── DeprecatedProperties.php │ │ ├── Difference.php │ │ ├── IntervalRounding.php │ │ ├── IntervalStep.php │ │ ├── Localization.php │ │ ├── Macro.php │ │ ├── MagicParameter.php │ │ ├── Mixin.php │ │ ├── Modifiers.php │ │ ├── Mutability.php │ │ ├── ObjectInitialisation.php │ │ ├── Options.php │ │ ├── Rounding.php │ │ ├── Serialization.php │ │ ├── Test.php │ │ ├── Timestamp.php │ │ ├── ToStringFormat.php │ │ ├── Units.php │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ └── TranslatorStrongTypeInterface.php │ ├── nette │ ├── schema │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── 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 │ │ ├── contributing.md │ │ ├── license.md │ │ ├── ncs.php │ │ ├── ncs.xml │ │ ├── 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 │ │ ├── FileSystem.php │ │ ├── Floats.php │ │ ├── Helpers.php │ │ ├── Html.php │ │ ├── Image.php │ │ ├── Json.php │ │ ├── ObjectHelpers.php │ │ ├── ObjectMixin.php │ │ ├── Paginator.php │ │ ├── Random.php │ │ ├── Reflection.php │ │ ├── Strings.php │ │ ├── Type.php │ │ ├── Validators.php │ │ └── exceptions.php │ │ ├── compatibility.php │ │ └── exceptions.php │ ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── phpyLang.php │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── 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 │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AttributeEmulator.php │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── FlexibleDocStringEmulator.php │ │ │ ├── FnTokenEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.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 │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.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 │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ └── Unset_.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 │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── 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 │ │ │ ├── Throw_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Multiple.php │ │ ├── Php5.php │ │ ├── Php7.php │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ └── PrettyPrinterAbstract.php │ ├── nunomaduro │ └── 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 │ ├── orchestra │ ├── testbench-core │ │ ├── composer.json │ │ ├── create-sqlite-db │ │ ├── drop-sqlite-db │ │ ├── laravel │ │ │ ├── .env.example │ │ │ ├── bootstrap │ │ │ │ └── app.php │ │ │ ├── composer.json │ │ │ ├── config │ │ │ │ ├── app.php │ │ │ │ ├── auth.php │ │ │ │ ├── broadcasting.php │ │ │ │ ├── cache.php │ │ │ │ ├── cors.php │ │ │ │ ├── database.php │ │ │ │ ├── filesystems.php │ │ │ │ ├── hashing.php │ │ │ │ ├── logging.php │ │ │ │ ├── mail.php │ │ │ │ ├── queue.php │ │ │ │ ├── services.php │ │ │ │ ├── session.php │ │ │ │ └── view.php │ │ │ ├── database │ │ │ │ └── database.sqlite.example │ │ │ ├── lang │ │ │ │ ├── en.json │ │ │ │ └── en │ │ │ │ │ ├── auth.php │ │ │ │ │ ├── pagination.php │ │ │ │ │ ├── passwords.php │ │ │ │ │ └── validation.php │ │ │ ├── migrations │ │ │ │ ├── 2014_10_12_000000_testbench_create_users_table.php │ │ │ │ ├── 2014_10_12_100000_testbench_create_password_resets_table.php │ │ │ │ └── 2019_08_19_000000_testbench_create_failed_jobs_table.php │ │ │ ├── public │ │ │ │ └── index.php │ │ │ ├── resources │ │ │ │ └── views │ │ │ │ │ ├── errors │ │ │ │ │ └── 503.blade.php │ │ │ │ │ └── welcome.blade.php │ │ │ ├── server.php │ │ │ └── tests │ │ │ │ └── CreatesApplication.php │ │ ├── src │ │ │ ├── Bootstrap │ │ │ │ ├── ConfigureRay.php │ │ │ │ ├── HandleExceptions.php │ │ │ │ └── LoadConfiguration.php │ │ │ ├── Concerns │ │ │ │ ├── CreatesApplication.php │ │ │ │ ├── Database │ │ │ │ │ ├── HandlesConnections.php │ │ │ │ │ └── WithSqlite.php │ │ │ │ ├── HandlesAnnotations.php │ │ │ │ ├── HandlesDatabases.php │ │ │ │ ├── HandlesRoutes.php │ │ │ │ ├── InteractsWithPublishedFiles.php │ │ │ │ ├── Testing.php │ │ │ │ ├── WithFactories.php │ │ │ │ ├── WithLaravelMigrations.php │ │ │ │ └── WithLoadMigrationsFrom.php │ │ │ ├── Console │ │ │ │ ├── Commander.php │ │ │ │ └── Kernel.php │ │ │ ├── Contracts │ │ │ │ ├── Laravel.stub │ │ │ │ └── TestCase.php │ │ │ ├── Database │ │ │ │ └── MigrateProcessor.php │ │ │ ├── Exceptions │ │ │ │ ├── ApplicationNotAvailableException.php │ │ │ │ ├── DeprecatedException.php │ │ │ │ └── Handler.php │ │ │ ├── Factories │ │ │ │ └── UserFactory.php │ │ │ ├── Foundation │ │ │ │ ├── Application.php │ │ │ │ ├── Bootstrap │ │ │ │ │ ├── CreateVendorSymlink.php │ │ │ │ │ └── LoadEnvironmentVariablesFromArray.php │ │ │ │ ├── Config.php │ │ │ │ ├── Console │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── CopyTestbenchFiles.php │ │ │ │ │ │ ├── HandleTerminatingConsole.php │ │ │ │ │ │ └── InteractsWithIO.php │ │ │ │ │ ├── CreateSqliteDbCommand.php │ │ │ │ │ ├── DevToolCommand.php │ │ │ │ │ ├── DropSqliteDbCommand.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── ServeCommand.php │ │ │ │ │ ├── TestCommand.php │ │ │ │ │ ├── TestFallbackCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── database.sqlite.example │ │ │ │ │ │ └── testbench.yaml │ │ │ │ ├── Http │ │ │ │ │ └── Kernel.php │ │ │ │ ├── PackageManifest.php │ │ │ │ ├── ParallelRunner.php │ │ │ │ └── TestbenchServiceProvider.php │ │ │ ├── Http │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrustProxies.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── TestCase.php │ │ │ └── helpers.php │ │ └── testbench │ └── testbench │ │ └── composer.json │ ├── phar-io │ ├── manifest │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── 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 │ │ │ ├── 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 │ └── 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 │ ├── phpoption │ └── phpoption │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── PhpOption │ │ ├── LazyOption.php │ │ ├── None.php │ │ ├── Option.php │ │ └── Some.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── PhpdbgDriver.php │ │ │ ├── Selector.php │ │ │ ├── Xdebug2Driver.php │ │ │ └── Xdebug3Driver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── PhpdbgNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── WrongXdebugVersionException.php │ │ │ ├── Xdebug2NotEnabledException.php │ │ │ ├── Xdebug3NotEnabledException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ ├── RawCodeCoverageData.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.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 │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.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 │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-8.5.md │ │ ├── ChangeLog-9.5.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 8.5.xsd │ │ └── 9.2.xsd │ │ └── src │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.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 │ │ │ │ ├── ExceptionMessage.php │ │ │ │ └── ExceptionMessageRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasAttribute.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 │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── ErrorTestCase.php │ │ ├── Exception │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotExistException.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── OutputError.php │ │ │ ├── PHPTAssertionFailedError.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── SyntheticSkippedError.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ └── Warning.php │ │ ├── ExceptionWrapper.php │ │ ├── ExecutionOrderDependency.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── InvalidParameterGroupException.php │ │ ├── MockObject │ │ │ ├── Api │ │ │ │ ├── Api.php │ │ │ │ └── Method.php │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ ├── UnknownClassException.php │ │ │ │ ├── UnknownTraitException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── mocked_method.tpl │ │ │ │ ├── mocked_method_never_or_void.tpl │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── proxied_method_never_or_void.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── wsdl_method.tpl │ │ │ ├── Invocation.php │ │ │ ├── InvocationHandler.php │ │ │ ├── Matcher.php │ │ │ ├── MethodNameConstraint.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockClass.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockObject.php │ │ │ ├── MockTrait.php │ │ │ ├── MockType.php │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ │ └── Verifiable.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestListenerDefaultImplementation.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuiteIterator.php │ │ └── WarningTestCase.php │ │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── DefaultTestResultCache.php │ │ ├── Exception.php │ │ ├── Extension │ │ │ ├── ExtensionHandler.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ └── NameFilterIterator.php │ │ ├── Hook │ │ │ ├── AfterIncompleteTestHook.php │ │ │ ├── AfterLastTestHook.php │ │ │ ├── AfterRiskyTestHook.php │ │ │ ├── AfterSkippedTestHook.php │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ ├── AfterTestErrorHook.php │ │ │ ├── AfterTestFailureHook.php │ │ │ ├── AfterTestHook.php │ │ │ ├── AfterTestWarningHook.php │ │ │ ├── BeforeFirstTestHook.php │ │ │ ├── BeforeTestHook.php │ │ │ ├── Hook.php │ │ │ ├── TestHook.php │ │ │ └── TestListenerAdapter.php │ │ ├── NullTestResultCache.php │ │ ├── PhptTestCase.php │ │ ├── ResultCacheExtension.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestResultCache.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── CliArguments │ │ │ ├── Builder.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ └── Mapper.php │ │ ├── Command.php │ │ ├── DefaultResultPrinter.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── ResultPrinter.php │ │ ├── TestRunner.php │ │ ├── TestSuiteMapper.php │ │ └── XmlConfiguration │ │ │ ├── CodeCoverage │ │ │ ├── CodeCoverage.php │ │ │ ├── Filter │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ └── DirectoryCollectionIterator.php │ │ │ ├── FilterMapper.php │ │ │ └── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html.php │ │ │ │ ├── Php.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ ├── Filesystem │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ ├── DirectoryCollectionIterator.php │ │ │ ├── File.php │ │ │ ├── FileCollection.php │ │ │ └── FileCollectionIterator.php │ │ │ ├── Generator.php │ │ │ ├── Group │ │ │ ├── Group.php │ │ │ ├── GroupCollection.php │ │ │ ├── GroupCollectionIterator.php │ │ │ └── Groups.php │ │ │ ├── Loader.php │ │ │ ├── Logging │ │ │ ├── Junit.php │ │ │ ├── Logging.php │ │ │ ├── TeamCity.php │ │ │ ├── TestDox │ │ │ │ ├── Html.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ └── Text.php │ │ │ ├── Migration │ │ │ ├── MigrationBuilder.php │ │ │ ├── MigrationBuilderException.php │ │ │ ├── MigrationException.php │ │ │ ├── Migrations │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ ├── LogToReportMigration.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ ├── MoveWhitelistDirectoriesToCoverage.php │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ └── UpdateSchemaLocationTo93.php │ │ │ └── Migrator.php │ │ │ ├── PHP │ │ │ ├── Constant.php │ │ │ ├── ConstantCollection.php │ │ │ ├── ConstantCollectionIterator.php │ │ │ ├── IniSetting.php │ │ │ ├── IniSettingCollection.php │ │ │ ├── IniSettingCollectionIterator.php │ │ │ ├── Php.php │ │ │ ├── PhpHandler.php │ │ │ ├── Variable.php │ │ │ ├── VariableCollection.php │ │ │ └── VariableCollectionIterator.php │ │ │ ├── PHPUnit │ │ │ ├── Extension.php │ │ │ ├── ExtensionCollection.php │ │ │ ├── ExtensionCollectionIterator.php │ │ │ └── PHPUnit.php │ │ │ └── TestSuite │ │ │ ├── TestDirectory.php │ │ │ ├── TestDirectoryCollection.php │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ ├── TestFile.php │ │ │ ├── TestFileCollection.php │ │ │ ├── TestFileCollectionIterator.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteCollection.php │ │ │ └── TestSuiteCollectionIterator.php │ │ └── Util │ │ ├── Annotation │ │ ├── DocBlock.php │ │ └── Registry.php │ │ ├── Blacklist.php │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── ErrorHandler.php │ │ ├── Exception.php │ │ ├── ExcludeList.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── InvalidDataSetException.php │ │ ├── Json.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── TeamCity.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Printer.php │ │ ├── Reflection.php │ │ ├── RegularExpression.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinter.php │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TestDoxPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── VersionComparisonOperator.php │ │ ├── XdebugFilterScriptGenerator.php │ │ ├── Xml.php │ │ ├── Xml │ │ ├── Exception.php │ │ ├── FailedSchemaDetectionResult.php │ │ ├── Loader.php │ │ ├── SchemaDetectionResult.php │ │ ├── SchemaDetector.php │ │ ├── SchemaFinder.php │ │ ├── SnapshotNodeList.php │ │ ├── SuccessfulSchemaDetectionResult.php │ │ ├── ValidationResult.php │ │ └── Validator.php │ │ └── XmlTestListRenderer.php │ ├── pimple │ └── pimple │ │ ├── .php_cs.dist │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── Pimple │ │ ├── Container.php │ │ ├── Exception │ │ ├── ExpectedInvokableException.php │ │ ├── FrozenServiceException.php │ │ ├── InvalidServiceIdentifierException.php │ │ └── UnknownIdentifierException.php │ │ ├── Psr11 │ │ ├── Container.php │ │ └── ServiceLocator.php │ │ ├── ServiceIterator.php │ │ ├── ServiceProviderInterface.php │ │ └── Tests │ │ ├── Fixtures │ │ ├── Invokable.php │ │ ├── NonInvokable.php │ │ ├── PimpleServiceProvider.php │ │ └── Service.php │ │ ├── PimpleServiceProviderInterfaceTest.php │ │ ├── PimpleTest.php │ │ ├── Psr11 │ │ ├── ContainerTest.php │ │ └── ServiceLocatorTest.php │ │ └── ServiceIteratorTest.php │ ├── psr │ ├── container │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── event-dispatcher │ │ ├── .editorconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ ├── http-factory │ │ ├── .pullapprove.yml │ │ ├── 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 │ │ └── 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 │ ├── 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 │ │ │ ├── CollectionMismatchException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidSortOrderException.php │ │ │ ├── NoSuchElementException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── UnsupportedOperationException.php │ │ │ └── ValueExtractionException.php │ │ │ ├── GenericArray.php │ │ │ ├── Map │ │ │ ├── AbstractMap.php │ │ │ ├── AbstractTypedMap.php │ │ │ ├── AssociativeArrayMap.php │ │ │ ├── MapInterface.php │ │ │ ├── NamedParameterMap.php │ │ │ ├── TypedMap.php │ │ │ └── TypedMapInterface.php │ │ │ ├── Queue.php │ │ │ ├── QueueInterface.php │ │ │ ├── Set.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 │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.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 │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.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 │ │ ├── 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 │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── object-reflector │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── resource-operations │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.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 │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── spatie │ ├── backtrace │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Backtrace.php │ │ │ ├── CodeSnippet.php │ │ │ ├── File.php │ │ │ └── Frame.php │ ├── laravel-ray │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── ide.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ ├── src │ │ │ ├── Commands │ │ │ │ └── PublishConfigCommand.php │ │ │ ├── DumpRecorder │ │ │ │ ├── DumpRecorder.php │ │ │ │ └── MultiDumpHandler.php │ │ │ ├── OriginFactory.php │ │ │ ├── Payloads │ │ │ │ ├── CachePayload.php │ │ │ │ ├── EnvironmentPayload.php │ │ │ │ ├── EventPayload.php │ │ │ │ ├── ExecutedQueryPayload.php │ │ │ │ ├── JobEventPayload.php │ │ │ │ ├── LoggedMailPayload.php │ │ │ │ ├── MailablePayload.php │ │ │ │ ├── MarkdownPayload.php │ │ │ │ ├── ModelPayload.php │ │ │ │ ├── QueryPayload.php │ │ │ │ ├── ResponsePayload.php │ │ │ │ └── ViewPayload.php │ │ │ ├── Ray.php │ │ │ ├── RayProxy.php │ │ │ ├── RayServiceProvider.php │ │ │ └── Watchers │ │ │ │ ├── ApplicationLogWatcher.php │ │ │ │ ├── CacheWatcher.php │ │ │ │ ├── DeprecatedNoticeWatcher.php │ │ │ │ ├── DumpWatcher.php │ │ │ │ ├── DuplicateQueryWatcher.php │ │ │ │ ├── EventWatcher.php │ │ │ │ ├── ExceptionWatcher.php │ │ │ │ ├── HttpClientWatcher.php │ │ │ │ ├── JobWatcher.php │ │ │ │ ├── LoggedMailWatcher.php │ │ │ │ ├── QueryWatcher.php │ │ │ │ ├── RequestWatcher.php │ │ │ │ ├── SlowQueryWatcher.php │ │ │ │ ├── ViewWatcher.php │ │ │ │ └── Watcher.php │ │ └── stub │ │ │ └── ray.php │ ├── macroable │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Macroable.php │ └── ray │ │ ├── .php_cs.dist.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ └── src │ │ ├── ArgumentConverter.php │ │ ├── Client.php │ │ ├── Concerns │ │ ├── RayColors.php │ │ ├── RayScreenColors.php │ │ ├── RaySizes.php │ │ └── RemovesRayFrames.php │ │ ├── Exceptions │ │ ├── CouldNotConnectToRay.php │ │ └── StopExecutionRequested.php │ │ ├── Origin │ │ ├── DefaultOriginFactory.php │ │ ├── Hostname.php │ │ ├── Origin.php │ │ └── OriginFactory.php │ │ ├── PayloadFactory.php │ │ ├── Payloads │ │ ├── ApplicationLogPayload.php │ │ ├── BoolPayload.php │ │ ├── CallerPayload.php │ │ ├── CarbonPayload.php │ │ ├── ClearAllPayload.php │ │ ├── ColorPayload.php │ │ ├── ConfettiPayload.php │ │ ├── CreateLockPayload.php │ │ ├── CustomPayload.php │ │ ├── DecodedJsonPayload.php │ │ ├── ExceptionPayload.php │ │ ├── FileContentsPayload.php │ │ ├── HideAppPayload.php │ │ ├── HidePayload.php │ │ ├── HtmlPayload.php │ │ ├── ImagePayload.php │ │ ├── JsonStringPayload.php │ │ ├── LabelPayload.php │ │ ├── LogPayload.php │ │ ├── MeasurePayload.php │ │ ├── NewScreenPayload.php │ │ ├── NotifyPayload.php │ │ ├── NullPayload.php │ │ ├── Payload.php │ │ ├── PhpInfoPayload.php │ │ ├── RemovePayload.php │ │ ├── ScreenColorPayload.php │ │ ├── SeparatorPayload.php │ │ ├── ShowAppPayload.php │ │ ├── SizePayload.php │ │ ├── TablePayload.php │ │ ├── TextPayload.php │ │ ├── TracePayload.php │ │ └── XmlPayload.php │ │ ├── Ray.php │ │ ├── Request.php │ │ ├── Settings │ │ ├── Settings.php │ │ └── SettingsFactory.php │ │ ├── Support │ │ ├── CacheStore.php │ │ ├── Clock.php │ │ ├── Counters.php │ │ ├── ExceptionHandler.php │ │ ├── IgnoredValue.php │ │ ├── Limiters.php │ │ ├── RateLimiter.php │ │ └── SystemClock.php │ │ └── helpers.php │ ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ └── CompletionOutputInterface.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.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 │ │ ├── Output │ │ │ ├── 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 │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ └── completion.bash │ │ ├── SignalRegistry │ │ │ └── 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 │ │ │ ├── NegationNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── PseudoNode.php │ │ │ ├── SelectorNode.php │ │ │ └── Specificity.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ ├── icon-book.svg │ │ │ │ │ ├── icon-copy.svg │ │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ │ ├── icon-minus-square.svg │ │ │ │ │ ├── icon-plus-square-o.svg │ │ │ │ │ ├── icon-plus-square.svg │ │ │ │ │ ├── icon-support.svg │ │ │ │ │ ├── symfony-ghost.svg.php │ │ │ │ │ └── symfony-logo.svg │ │ │ │ └── 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-contracts │ │ ├── CHANGELOG.md │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── 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 │ ├── 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 │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── BadRequestException.php │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── JsonException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ ├── SessionNotFoundException.php │ │ │ └── SuspiciousOperationException.php │ │ ├── ExpressionRequestMatcher.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 │ │ │ └── RequestRateLimiterInterface.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ └── AttributeBagInterface.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.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 │ │ ├── StreamedResponse.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ ├── UrlHelper.php │ │ └── composer.json │ ├── http-kernel │ │ ├── Attribute │ │ │ └── AsController.php │ │ ├── Bundle │ │ │ ├── Bundle.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.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── ErrorController.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ └── TraceableControllerResolver.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 │ │ │ ├── FileLinkFormatter.php │ │ │ └── TraceableEventDispatcher.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 │ │ ├── Event │ │ │ ├── ControllerArgumentsEvent.php │ │ │ ├── ControllerEvent.php │ │ │ ├── ExceptionEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── KernelEvent.php │ │ │ ├── RequestEvent.php │ │ │ ├── ResponseEvent.php │ │ │ ├── TerminateEvent.php │ │ │ └── ViewEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleAwareListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── ControllerDoesNotReturnResponseException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── InvalidMetadataException.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.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 │ │ │ ├── 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 │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── README.md │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ ├── UriSigner.php │ │ └── composer.json │ ├── mailer │ │ ├── CHANGELOG.md │ │ ├── DataCollector │ │ │ └── MessageDataCollector.php │ │ ├── DelayedEnvelope.php │ │ ├── Envelope.php │ │ ├── Event │ │ │ ├── MessageEvent.php │ │ │ └── MessageEvents.php │ │ ├── EventListener │ │ │ ├── EnvelopeListener.php │ │ │ ├── MessageListener.php │ │ │ └── MessageLoggerListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpTransportException.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TransportException.php │ │ │ ├── TransportExceptionInterface.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Header │ │ │ ├── MetadataHeader.php │ │ │ └── TagHeader.php │ │ ├── LICENSE │ │ ├── Mailer.php │ │ ├── MailerInterface.php │ │ ├── Messenger │ │ │ ├── MessageHandler.php │ │ │ └── SendEmailMessage.php │ │ ├── README.md │ │ ├── SentMessage.php │ │ ├── Test │ │ │ ├── Constraint │ │ │ │ ├── EmailCount.php │ │ │ │ └── EmailIsQueued.php │ │ │ └── TransportFactoryTestCase.php │ │ ├── Transport.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 │ │ └── 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 │ │ ├── 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 │ │ ├── LICENSE │ │ ├── Message.php │ │ ├── MessageConverter.php │ │ ├── MimeTypeGuesserInterface.php │ │ ├── MimeTypes.php │ │ ├── MimeTypesInterface.php │ │ ├── Part │ │ │ ├── AbstractMultipartPart.php │ │ │ ├── AbstractPart.php │ │ │ ├── DataPart.php │ │ │ ├── MessagePart.php │ │ │ ├── Multipart │ │ │ │ ├── AlternativePart.php │ │ │ │ ├── DigestPart.php │ │ │ │ ├── FormDataPart.php │ │ │ │ ├── MixedPart.php │ │ │ │ └── RelatedPart.php │ │ │ ├── SMimePart.php │ │ │ └── TextPart.php │ │ ├── README.md │ │ ├── RawMessage.php │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── update_mime_types.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── EmailAddressContains.php │ │ │ │ ├── EmailAttachmentCount.php │ │ │ │ ├── EmailHasHeader.php │ │ │ │ ├── EmailHeaderSame.php │ │ │ │ ├── EmailHtmlBodyContains.php │ │ │ │ └── EmailTextBodyContains.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-iconv │ │ ├── Iconv.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── charset │ │ │ │ ├── from.big5.php │ │ │ │ ├── from.cp037.php │ │ │ │ ├── from.cp1006.php │ │ │ │ ├── from.cp1026.php │ │ │ │ ├── from.cp424.php │ │ │ │ ├── from.cp437.php │ │ │ │ ├── from.cp500.php │ │ │ │ ├── from.cp737.php │ │ │ │ ├── from.cp775.php │ │ │ │ ├── from.cp850.php │ │ │ │ ├── from.cp852.php │ │ │ │ ├── from.cp855.php │ │ │ │ ├── from.cp856.php │ │ │ │ ├── from.cp857.php │ │ │ │ ├── from.cp860.php │ │ │ │ ├── from.cp861.php │ │ │ │ ├── from.cp862.php │ │ │ │ ├── from.cp863.php │ │ │ │ ├── from.cp864.php │ │ │ │ ├── from.cp865.php │ │ │ │ ├── from.cp866.php │ │ │ │ ├── from.cp869.php │ │ │ │ ├── from.cp874.php │ │ │ │ ├── from.cp875.php │ │ │ │ ├── from.cp932.php │ │ │ │ ├── from.cp936.php │ │ │ │ ├── from.cp949.php │ │ │ │ ├── from.cp950.php │ │ │ │ ├── from.iso-8859-1.php │ │ │ │ ├── from.iso-8859-10.php │ │ │ │ ├── from.iso-8859-11.php │ │ │ │ ├── from.iso-8859-13.php │ │ │ │ ├── from.iso-8859-14.php │ │ │ │ ├── from.iso-8859-15.php │ │ │ │ ├── from.iso-8859-16.php │ │ │ │ ├── from.iso-8859-2.php │ │ │ │ ├── from.iso-8859-3.php │ │ │ │ ├── from.iso-8859-4.php │ │ │ │ ├── from.iso-8859-5.php │ │ │ │ ├── from.iso-8859-6.php │ │ │ │ ├── from.iso-8859-7.php │ │ │ │ ├── from.iso-8859-8.php │ │ │ │ ├── from.iso-8859-9.php │ │ │ │ ├── from.koi8-r.php │ │ │ │ ├── from.koi8-u.php │ │ │ │ ├── from.us-ascii.php │ │ │ │ ├── from.windows-1250.php │ │ │ │ ├── from.windows-1251.php │ │ │ │ ├── from.windows-1252.php │ │ │ │ ├── from.windows-1253.php │ │ │ │ ├── from.windows-1254.php │ │ │ │ ├── from.windows-1255.php │ │ │ │ ├── from.windows-1256.php │ │ │ │ ├── from.windows-1257.php │ │ │ │ ├── from.windows-1258.php │ │ │ │ └── translit.php │ │ ├── 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 │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.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-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.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 │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── routing │ │ ├── Alias.php │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── CHANGELOG.md │ │ ├── CompiledRoute.php │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidParameterException.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 │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ └── composer.json │ ├── stopwatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Section.php │ │ ├── Stopwatch.php │ │ ├── StopwatchEvent.php │ │ ├── StopwatchPeriod.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 │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── data │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ └── wcswidth_table_zero.php │ │ │ └── functions.php │ │ ├── Slugger │ │ │ ├── AsciiSlugger.php │ │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json │ ├── translation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── translation │ │ ├── CHANGELOG.md │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── Command │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── 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 │ │ │ ├── PhpExtractor.php │ │ │ └── PhpStringTokenParser.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 │ │ ├── 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-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── Test │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ ├── TranslatableMessage.php │ │ ├── Translator.php │ │ ├── TranslatorBag.php │ │ ├── TranslatorBagInterface.php │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ ├── uid │ │ ├── AbstractUid.php │ │ ├── BinaryUtil.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── GenerateUlidCommand.php │ │ │ ├── GenerateUuidCommand.php │ │ │ ├── InspectUlidCommand.php │ │ │ └── InspectUuidCommand.php │ │ ├── Factory │ │ │ ├── NameBasedUuidFactory.php │ │ │ ├── RandomBasedUuidFactory.php │ │ │ ├── TimeBasedUuidFactory.php │ │ │ ├── UlidFactory.php │ │ │ └── UuidFactory.php │ │ ├── LICENSE │ │ ├── NilUlid.php │ │ ├── NilUuid.php │ │ ├── README.md │ │ ├── Ulid.php │ │ ├── Uuid.php │ │ ├── UuidV1.php │ │ ├── UuidV3.php │ │ ├── UuidV4.php │ │ ├── UuidV5.php │ │ ├── UuidV6.php │ │ └── composer.json │ ├── var-dumper │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FiberCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RdKafkaCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.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 │ └── 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 │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── 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 │ │ ├── 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 │ └── zbateson │ ├── mail-mime-parser │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── src │ │ ├── Container.php │ │ ├── Header │ │ │ ├── AbstractHeader.php │ │ │ ├── AddressHeader.php │ │ │ ├── Consumer │ │ │ │ ├── AbstractConsumer.php │ │ │ │ ├── AddressBaseConsumer.php │ │ │ │ ├── AddressConsumer.php │ │ │ │ ├── AddressEmailConsumer.php │ │ │ │ ├── AddressGroupConsumer.php │ │ │ │ ├── CommentConsumer.php │ │ │ │ ├── ConsumerService.php │ │ │ │ ├── DateConsumer.php │ │ │ │ ├── GenericConsumer.php │ │ │ │ ├── IdBaseConsumer.php │ │ │ │ ├── IdConsumer.php │ │ │ │ ├── ParameterConsumer.php │ │ │ │ ├── QuotedStringConsumer.php │ │ │ │ ├── Received │ │ │ │ │ ├── DomainConsumer.php │ │ │ │ │ ├── GenericReceivedConsumer.php │ │ │ │ │ └── ReceivedDateConsumer.php │ │ │ │ ├── ReceivedConsumer.php │ │ │ │ └── SubjectConsumer.php │ │ │ ├── DateHeader.php │ │ │ ├── GenericHeader.php │ │ │ ├── HeaderConsts.php │ │ │ ├── HeaderFactory.php │ │ │ ├── IHeader.php │ │ │ ├── IHeaderPart.php │ │ │ ├── IdHeader.php │ │ │ ├── MimeEncodedHeader.php │ │ │ ├── ParameterHeader.php │ │ │ ├── Part │ │ │ │ ├── AddressGroupPart.php │ │ │ │ ├── AddressPart.php │ │ │ │ ├── CommentPart.php │ │ │ │ ├── DatePart.php │ │ │ │ ├── HeaderPart.php │ │ │ │ ├── HeaderPartFactory.php │ │ │ │ ├── LiteralPart.php │ │ │ │ ├── MimeLiteralPart.php │ │ │ │ ├── MimeLiteralPartFactory.php │ │ │ │ ├── ParameterPart.php │ │ │ │ ├── ReceivedDomainPart.php │ │ │ │ ├── ReceivedPart.php │ │ │ │ ├── SplitParameterToken.php │ │ │ │ └── Token.php │ │ │ ├── ReceivedHeader.php │ │ │ └── SubjectHeader.php │ │ ├── IMessage.php │ │ ├── MailMimeParser.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── Factory │ │ │ │ ├── IMessagePartFactory.php │ │ │ │ ├── IMimePartFactory.php │ │ │ │ ├── IUUEncodedPartFactory.php │ │ │ │ ├── PartChildrenContainerFactory.php │ │ │ │ ├── PartHeaderContainerFactory.php │ │ │ │ └── PartStreamContainerFactory.php │ │ │ ├── Helper │ │ │ │ ├── AbstractHelper.php │ │ │ │ ├── GenericHelper.php │ │ │ │ ├── MultipartHelper.php │ │ │ │ └── PrivacyHelper.php │ │ │ ├── IMessagePart.php │ │ │ ├── IMimePart.php │ │ │ ├── IMultiPart.php │ │ │ ├── IUUEncodedPart.php │ │ │ ├── MessagePart.php │ │ │ ├── MimePart.php │ │ │ ├── MultiPart.php │ │ │ ├── NonMimePart.php │ │ │ ├── PartChildrenContainer.php │ │ │ ├── PartFilter.php │ │ │ ├── PartHeaderContainer.php │ │ │ ├── PartStreamContainer.php │ │ │ └── UUEncodedPart.php │ │ ├── Parser │ │ │ ├── AbstractParser.php │ │ │ ├── HeaderParser.php │ │ │ ├── IParser.php │ │ │ ├── MessageParser.php │ │ │ ├── MimeParser.php │ │ │ ├── NonMimeParser.php │ │ │ ├── ParserManager.php │ │ │ ├── Part │ │ │ │ ├── ParserPartChildrenContainer.php │ │ │ │ ├── ParserPartChildrenContainerFactory.php │ │ │ │ ├── ParserPartStreamContainer.php │ │ │ │ ├── ParserPartStreamContainerFactory.php │ │ │ │ ├── UUEncodedPartHeaderContainer.php │ │ │ │ └── UUEncodedPartHeaderContainerFactory.php │ │ │ ├── PartBuilder.php │ │ │ ├── PartBuilderFactory.php │ │ │ └── Proxy │ │ │ │ ├── ParserMessageProxy.php │ │ │ │ ├── ParserMessageProxyFactory.php │ │ │ │ ├── ParserMimePartProxy.php │ │ │ │ ├── ParserMimePartProxyFactory.php │ │ │ │ ├── ParserNonMimeMessageProxy.php │ │ │ │ ├── ParserNonMimeMessageProxyFactory.php │ │ │ │ ├── ParserPartProxy.php │ │ │ │ ├── ParserPartProxyFactory.php │ │ │ │ ├── ParserUUEncodedPartProxy.php │ │ │ │ └── ParserUUEncodedPartProxyFactory.php │ │ └── Stream │ │ │ ├── HeaderStream.php │ │ │ ├── MessagePartStream.php │ │ │ └── StreamFactory.php │ └── version.txt │ ├── mb-wrapper │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── src │ │ └── MbWrapper.php │ └── tests │ │ ├── MbWrapper │ │ └── MbWrapperTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml │ └── stream-decorators │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── src │ ├── Base64Stream.php │ ├── CharsetStream.php │ ├── ChunkSplitStream.php │ ├── NonClosingStream.php │ ├── PregReplaceFilterStream.php │ ├── QuotedPrintableStream.php │ ├── SeekingLimitStream.php │ └── UUStream.php ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── AccountNavi.07617d98.js │ │ ├── AuthenticatedLayout.e817ad62.js │ │ ├── BankTransfer.93e4a514.js │ │ ├── BankTransferProcessing.7e13b393.js │ │ ├── BannedFromRoom.d5f5262b.js │ │ ├── BannedUsers.2b8dbd73.js │ │ ├── BrowseVideos.451c76ad.js │ │ ├── CardSuccess.e7ac1aa1.js │ │ ├── ChannelForm.e1bf387f.js │ │ ├── ChannelVideos.6eb1ac13.js │ │ ├── Channels.2900f3d3.js │ │ ├── ChannelsLoop.6ac250e9.js │ │ ├── ChatRoom.d3dfdfb1.js │ │ ├── ConfirmPassword.41f9a9f5.js │ │ ├── Contact.ffc5adea.js │ │ ├── DangerButton.0912c037.js │ │ ├── Dashboard.72e9f240.js │ │ ├── Dashboard.a96a2cee.js │ │ ├── DeleteUserForm.c32ad1bb.js │ │ ├── Edit-Tier.a46efd65.js │ │ ├── Edit.580bb43e.js │ │ ├── Followers.9899c272.js │ │ ├── Following.d1d332d7.js │ │ ├── ForgotPassword.681f1c72.js │ │ ├── Front.167c3130.js │ │ ├── Front.2a37359d.css │ │ ├── GuestLayout.3a363245.js │ │ ├── History.c86e394d.js │ │ ├── Homepage.a506d623.js │ │ ├── InputError.4d53dcfa.js │ │ ├── InputLabel.b1adb635.js │ │ ├── LiveNow.bb0fa3f3.js │ │ ├── LiveStream.24474fd4.js │ │ ├── Login.d3bf0ac3.js │ │ ├── Modal.81f47e62.js │ │ ├── MySubscribers.1eb9a6b7.js │ │ ├── MySubscriptions.48113c0c.js │ │ ├── MyVideos.3d40f2ec.js │ │ ├── Navi.48c8776d.js │ │ ├── Notifications.1d0d97fe.js │ │ ├── NumberInput.e1e227a5.js │ │ ├── OrderedVideos.55bc279b.js │ │ ├── Packages.4e75960e.js │ │ ├── Page.701ccc59.js │ │ ├── PayPalProcessing.fe7c6733.js │ │ ├── Paypal.5439bb68.js │ │ ├── PrimaryButton.683939b2.js │ │ ├── ProfileTabs.d02d1fc7.js │ │ ├── Register.7adf8318.js │ │ ├── Request.bf31e062.js │ │ ├── ResetPassword.06e1bb01.js │ │ ├── ScheduleTab.909b95b0.js │ │ ├── SecondaryButton.b66e07c5.js │ │ ├── Select-Gateway.387065cd.js │ │ ├── Set-Tiers.5f2043ba.js │ │ ├── SetSchedule.16b86f90.js │ │ ├── SetSchedule.a2b1c21d.css │ │ ├── Settings.06d5f9ae.js │ │ ├── Settings.5a083775.js │ │ ├── Signup.5de520fd.js │ │ ├── SingleVideo.962e806a.js │ │ ├── Spinner.b056f180.js │ │ ├── StreamInstructions.1444b46d.js │ │ ├── StreamerVerification.1b4d06e9.js │ │ ├── StripeForm.aab1f409.js │ │ ├── Subscribe.0ca770a2.js │ │ ├── SubscribePopup.7c239fd8.js │ │ ├── TextInput.b942e667.js │ │ ├── Textarea.ca4513c0.js │ │ ├── TiersTab.af09ed1e.js │ │ ├── TipPopup.a40c08a4.js │ │ ├── TokenOrders.4cb3c169.js │ │ ├── Translate.dc83ae5b.js │ │ ├── Unlock.8de7a229.js │ │ ├── UpdatePasswordForm.216ccf56.js │ │ ├── UpdateProfileInformationForm.fb1b20fe.js │ │ ├── UploadVideo.d60c4b84.js │ │ ├── User.027c67d7.js │ │ ├── VerificationPending.6ecbbbac.js │ │ ├── VerifyEmail.1cd8f31e.js │ │ ├── VideoJs.34098433.js │ │ ├── VideoJs.a86a50f4.css │ │ ├── VideosLoop.88409b22.js │ │ ├── Withdraw.e490d1e0.js │ │ ├── WithdrawForm.415deba2.js │ │ ├── app.3c90c593.css │ │ ├── app.9e598114.js │ │ ├── iconBase.4930b98a.js │ │ ├── index.2c8b29ea.js │ │ ├── index.ad82f4f7.js │ │ ├── index.esm.04772378.js │ │ ├── index.esm.12370a64.js │ │ ├── index.esm.487ec2bb.js │ │ ├── index.esm.8e821fe8.js │ │ ├── index.esm.98b0ee44.js │ │ ├── index.esm.b099f767.js │ │ ├── index.esm.bac58b4a.js │ │ ├── index.esm.bb7aa99b.js │ │ ├── index.esm.c83823d4.js │ │ ├── react-toastify.esm.d2e42348.js │ │ ├── react-tooltip.c6950bbb.css │ │ ├── react-tooltip.esm.min.22bc2cab.js │ │ └── transition.955527f9.js │ └── manifest.json ├── coverPics │ ├── 1-63d79983c8f65.jpg │ ├── 1-63d799dd06a2d.jpg │ ├── 1-63d7ba84c34c7.jpg │ ├── 1-63d7ba918aadc.jpg │ ├── 1-6405eaedab124.jpg │ ├── 4-6429acfbd706e.jpg │ ├── 6-6405d02228568.jpg │ ├── 6-6405ead2e4d04.jpg │ └── default-cover-pic.png ├── css │ ├── cookieconsent.min.css │ ├── lightbox.css │ ├── lightbox.min.css │ ├── morris.css │ ├── style.css │ └── style.min.css ├── favicon.png ├── fonts │ ├── fontawesome │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-font-face.css │ │ │ ├── v4-font-face.min.css │ │ │ ├── v4-shims.css │ │ │ ├── v4-shims.min.css │ │ │ ├── v5-font-face.css │ │ │ └── v5-font-face.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 42-group.svg │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bilibili.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── bots.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudflare.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── cmplid.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── golang.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── guilded.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hashnode.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hive.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── meta.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nfc-directional.svg │ │ │ │ ├── nfc-symbol.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── octopus-deploy.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── padlet.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── perbyte.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── pix.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── screenpal.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sitrox.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── space-awesome.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── square-behance.svg │ │ │ │ ├── square-dribbble.svg │ │ │ │ ├── square-facebook.svg │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ ├── square-font-awesome.svg │ │ │ │ ├── square-git.svg │ │ │ │ ├── square-github.svg │ │ │ │ ├── square-gitlab.svg │ │ │ │ ├── square-google-plus.svg │ │ │ │ ├── square-hacker-news.svg │ │ │ │ ├── square-instagram.svg │ │ │ │ ├── square-js.svg │ │ │ │ ├── square-lastfm.svg │ │ │ │ ├── square-odnoklassniki.svg │ │ │ │ ├── square-pied-piper.svg │ │ │ │ ├── square-pinterest.svg │ │ │ │ ├── square-reddit.svg │ │ │ │ ├── square-snapchat.svg │ │ │ │ ├── square-steam.svg │ │ │ │ ├── square-tumblr.svg │ │ │ │ ├── square-twitter.svg │ │ │ │ ├── square-viadeo.svg │ │ │ │ ├── square-vimeo.svg │ │ │ │ ├── square-whatsapp.svg │ │ │ │ ├── square-xing.svg │ │ │ │ ├── square-youtube.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uncharted.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wodu.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-days.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-xmark.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── circle-check.svg │ │ │ │ ├── circle-dot.svg │ │ │ │ ├── circle-down.svg │ │ │ │ ├── circle-left.svg │ │ │ │ ├── circle-pause.svg │ │ │ │ ├── circle-play.svg │ │ │ │ ├── circle-question.svg │ │ │ │ ├── circle-right.svg │ │ │ │ ├── circle-stop.svg │ │ │ │ ├── circle-up.svg │ │ │ │ ├── circle-user.svg │ │ │ │ ├── circle-xmark.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-dizzy.svg │ │ │ │ ├── face-flushed.svg │ │ │ │ ├── face-frown-open.svg │ │ │ │ ├── face-frown.svg │ │ │ │ ├── face-grimace.svg │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ ├── face-grin-beam.svg │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ ├── face-grin-squint.svg │ │ │ │ ├── face-grin-stars.svg │ │ │ │ ├── face-grin-tears.svg │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ ├── face-grin-wide.svg │ │ │ │ ├── face-grin-wink.svg │ │ │ │ ├── face-grin.svg │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ ├── face-laugh.svg │ │ │ │ ├── face-meh-blank.svg │ │ │ │ ├── face-meh.svg │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ ├── face-sad-cry.svg │ │ │ │ ├── face-sad-tear.svg │ │ │ │ ├── face-smile-beam.svg │ │ │ │ ├── face-smile-wink.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-tired.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-lines.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-zipper.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── floppy-disk.svg │ │ │ │ ├── folder-closed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── hand-back-fist.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hard-drive.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── map.svg │ │ │ │ ├── message.svg │ │ │ │ ├── money-bill-1.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── note-sticky.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pen-to-square.svg │ │ │ │ ├── rectangle-list.svg │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── share-from-square.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square-caret-down.svg │ │ │ │ ├── square-caret-left.svg │ │ │ │ ├── square-caret-right.svg │ │ │ │ ├── square-caret-up.svg │ │ │ │ ├── square-check.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-minus.svg │ │ │ │ ├── square-plus.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half-stroke.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── trash-can.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── 0.svg │ │ │ │ ├── 1.svg │ │ │ │ ├── 2.svg │ │ │ │ ├── 3.svg │ │ │ │ ├── 4.svg │ │ │ │ ├── 5.svg │ │ │ │ ├── 6.svg │ │ │ │ ├── 7.svg │ │ │ │ ├── 8.svg │ │ │ │ ├── 9.svg │ │ │ │ ├── a.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ ├── anchor-lock.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angles-down.svg │ │ │ │ ├── angles-left.svg │ │ │ │ ├── angles-right.svg │ │ │ │ ├── angles-up.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-whole.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ ├── arrow-down-long.svg │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left-long.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-pointer.svg │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ ├── arrow-right-long.svg │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ ├── arrow-up-long.svg │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ ├── arrows-left-right.svg │ │ │ │ ├── arrows-rotate.svg │ │ │ │ ├── arrows-spin.svg │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ ├── arrows-up-down.svg │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── austral-sign.svg │ │ │ │ ├── award.svg │ │ │ │ ├── b.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backward-fast.svg │ │ │ │ ├── backward-step.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bag-shopping.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── baht-sign.svg │ │ │ │ ├── ban-smoking.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── bandage.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars-progress.svg │ │ │ │ ├── bars-staggered.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ ├── baseball.svg │ │ │ │ ├── basket-shopping.svg │ │ │ │ ├── basketball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed-pulse.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ ├── bell-concierge.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt-lightning.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-atlas.svg │ │ │ │ ├── book-bible.svg │ │ │ │ ├── book-bookmark.svg │ │ │ │ ├── book-journal-whills.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open-reader.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-quran.svg │ │ │ │ ├── book-skull.svg │ │ │ │ ├── book-tanakh.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-top-left.svg │ │ │ │ ├── bore-hole.svg │ │ │ │ ├── bottle-droplet.svg │ │ │ │ ├── bottle-water.svg │ │ │ │ ├── bowl-food.svg │ │ │ │ ├── bowl-rice.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-archive.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes-packing.svg │ │ │ │ ├── boxes-stacked.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ ├── bridge-lock.svg │ │ │ │ ├── bridge-water.svg │ │ │ │ ├── bridge.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broom-ball.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bucket.svg │ │ │ │ ├── bug-slash.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── bugs.svg │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ ├── building-circle-check.svg │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ ├── building-columns.svg │ │ │ │ ├── building-flag.svg │ │ │ │ ├── building-lock.svg │ │ │ │ ├── building-ngo.svg │ │ │ │ ├── building-shield.svg │ │ │ │ ├── building-un.svg │ │ │ │ ├── building-user.svg │ │ │ │ ├── building-wheat.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burger.svg │ │ │ │ ├── burst.svg │ │ │ │ ├── bus-simple.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── c.svg │ │ │ │ ├── cable-car.svg │ │ │ │ ├── cake-candles.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-days.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar-xmark.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera-rotate.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-burst.svg │ │ │ │ ├── car-on.svg │ │ │ │ ├── car-rear.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car-tunnel.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ ├── cart-flatbed.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cart-shopping.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── cedi-sign.svg │ │ │ │ ├── cent-sign.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-user.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── champagne-glasses.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-column.svg │ │ │ │ ├── chart-gantt.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── chart-simple.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-to-slot.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child-dress.svg │ │ │ │ ├── child-reaching.svg │ │ │ │ ├── child-rifle.svg │ │ │ │ ├── child.svg │ │ │ │ ├── children.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ ├── circle-check.svg │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ ├── circle-dot.svg │ │ │ │ ├── circle-down.svg │ │ │ │ ├── circle-exclamation.svg │ │ │ │ ├── circle-h.svg │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ ├── circle-info.svg │ │ │ │ ├── circle-left.svg │ │ │ │ ├── circle-minus.svg │ │ │ │ ├── circle-nodes.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle-pause.svg │ │ │ │ ├── circle-play.svg │ │ │ │ ├── circle-plus.svg │ │ │ │ ├── circle-question.svg │ │ │ │ ├── circle-radiation.svg │ │ │ │ ├── circle-right.svg │ │ │ │ ├── circle-stop.svg │ │ │ │ ├── circle-up.svg │ │ │ │ ├── circle-user.svg │ │ │ │ ├── circle-xmark.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clapperboard.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard-question.svg │ │ │ │ ├── clipboard-user.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ ├── cloud-bolt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── clover.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code-commit.svg │ │ │ │ ├── code-compare.svg │ │ │ │ ├── code-fork.svg │ │ │ │ ├── code-merge.svg │ │ │ │ ├── code-pull-request.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── colon-sign.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment-sms.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass-drafting.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── computer-mouse.svg │ │ │ │ ├── computer.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── cow.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-simple.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes-stacked.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── d.svg │ │ │ │ ├── database.svg │ │ │ │ ├── delete-left.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagram-next.svg │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ ├── diagram-project.svg │ │ │ │ ├── diagram-successor.svg │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ ├── diamond.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── display.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── dong-sign.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ ├── down-long.svg │ │ │ │ ├── download.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── droplet-slash.svg │ │ │ │ ├── droplet.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── e.svg │ │ │ │ ├── ear-deaf.svg │ │ │ │ ├── ear-listen.svg │ │ │ │ ├── earth-africa.svg │ │ │ │ ├── earth-americas.svg │ │ │ │ ├── earth-asia.svg │ │ │ │ ├── earth-europe.svg │ │ │ │ ├── earth-oceania.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── elevator.svg │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ ├── ellipsis.svg │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── explosion.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-low-vision.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── f.svg │ │ │ │ ├── face-angry.svg │ │ │ │ ├── face-dizzy.svg │ │ │ │ ├── face-flushed.svg │ │ │ │ ├── face-frown-open.svg │ │ │ │ ├── face-frown.svg │ │ │ │ ├── face-grimace.svg │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ ├── face-grin-beam.svg │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ ├── face-grin-squint.svg │ │ │ │ ├── face-grin-stars.svg │ │ │ │ ├── face-grin-tears.svg │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ ├── face-grin-wide.svg │ │ │ │ ├── face-grin-wink.svg │ │ │ │ ├── face-grin.svg │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ ├── face-kiss.svg │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ ├── face-laugh.svg │ │ │ │ ├── face-meh-blank.svg │ │ │ │ ├── face-meh.svg │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ ├── face-sad-cry.svg │ │ │ │ ├── face-sad-tear.svg │ │ │ │ ├── face-smile-beam.svg │ │ │ │ ├── face-smile-wink.svg │ │ │ │ ├── face-smile.svg │ │ │ │ ├── face-surprise.svg │ │ │ │ ├── face-tired.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── faucet-drip.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-pointed.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── ferry.svg │ │ │ │ ├── file-arrow-down.svg │ │ │ │ ├── file-arrow-up.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-circle-check.svg │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ ├── file-circle-minus.svg │ │ │ │ ├── file-circle-plus.svg │ │ │ │ ├── file-circle-question.svg │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-lines.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-pen.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-shield.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-waveform.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file-zipper.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-burner.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── fish-fins.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask-vial.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── floppy-disk.svg │ │ │ │ ├── florin-sign.svg │ │ │ │ ├── folder-closed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder-tree.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football.svg │ │ │ │ ├── forward-fast.svg │ │ │ │ ├── forward-step.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── franc-sign.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── g.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gauge-high.svg │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ ├── gauge-simple.svg │ │ │ │ ├── gauge.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── gears.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ ├── glass-water.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── grip.svg │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ ├── guarani-sign.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── gun.svg │ │ │ │ ├── h.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-back-fist.svg │ │ │ │ ├── hand-dots.svg │ │ │ │ ├── hand-fist.svg │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── handcuffs.svg │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ ├── hands-bound.svg │ │ │ │ ├── hands-bubbles.svg │ │ │ │ ├── hands-clapping.svg │ │ │ │ ├── hands-holding-child.svg │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ ├── hands-holding.svg │ │ │ │ ├── hands-praying.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-angle.svg │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ ├── handshake-simple.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-drive.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-simple.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ ├── heart-circle-check.svg │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ ├── heart-crack.svg │ │ │ │ ├── heart-pulse.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── helmet-safety.svg │ │ │ │ ├── helmet-un.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hill-avalanche.svg │ │ │ │ ├── hill-rockslide.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub-person.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ ├── house-chimney-user.svg │ │ │ │ ├── house-chimney-window.svg │ │ │ │ ├── house-chimney.svg │ │ │ │ ├── house-circle-check.svg │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ ├── house-crack.svg │ │ │ │ ├── house-fire.svg │ │ │ │ ├── house-flag.svg │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ ├── house-flood-water.svg │ │ │ │ ├── house-laptop.svg │ │ │ │ ├── house-lock.svg │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ ├── house-medical-flag.svg │ │ │ │ ├── house-medical.svg │ │ │ │ ├── house-signal.svg │ │ │ │ ├── house-tsunami.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── house.svg │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ ├── hurricane.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── i.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-clip.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image-portrait.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── j.svg │ │ │ │ ├── jar-wheat.svg │ │ │ │ ├── jar.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ ├── jet-fighter.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── jug-detergent.svg │ │ │ │ ├── k.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kip-sign.svg │ │ │ │ ├── kit-medical.svg │ │ │ │ ├── kitchen-set.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── l.svg │ │ │ │ ├── land-mine-on.svg │ │ │ │ ├── landmark-dome.svg │ │ │ │ ├── landmark-flag.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-file.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── lari-sign.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── left-long.svg │ │ │ │ ├── left-right.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── lines-leaning.svg │ │ │ │ ├── link-slash.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-check.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── litecoin-sign.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── location-crosshairs.svg │ │ │ │ ├── location-dot.svg │ │ │ │ ├── location-pin-lock.svg │ │ │ │ ├── location-pin.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── locust.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── m.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ ├── magnifying-glass.svg │ │ │ │ ├── manat-sign.svg │ │ │ │ ├── map-location-dot.svg │ │ │ │ ├── map-location.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ ├── mars-and-venus.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ ├── martini-glass.svg │ │ │ │ ├── mask-face.svg │ │ │ │ ├── mask-ventilator.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── masks-theater.svg │ │ │ │ ├── mattress-pillow.svg │ │ │ │ ├── maximize.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── message.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ ├── microphone-lines.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── mill-sign.svg │ │ │ │ ├── minimize.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-button.svg │ │ │ │ ├── mobile-retro.svg │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ ├── mobile-screen.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ ├── money-bill-1.svg │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-bills.svg │ │ │ │ ├── money-check-dollar.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── mosquito-net.svg │ │ │ │ ├── mosquito.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mound.svg │ │ │ │ ├── mountain-city.svg │ │ │ │ ├── mountain-sun.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── mug-saucer.svg │ │ │ │ ├── music.svg │ │ │ │ ├── n.svg │ │ │ │ ├── naira-sign.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── note-sticky.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── o.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── oil-well.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── p.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── paintbrush.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── panorama.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-clip.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-ruler.svg │ │ │ │ ├── pen-to-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry-box.svg │ │ │ │ ├── people-group.svg │ │ │ │ ├── people-line.svg │ │ │ │ ├── people-pulling.svg │ │ │ │ ├── people-robbery.svg │ │ │ │ ├── people-roof.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ ├── person-biking.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ ├── person-burst.svg │ │ │ │ ├── person-cane.svg │ │ │ │ ├── person-chalkboard.svg │ │ │ │ ├── person-circle-check.svg │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ ├── person-circle-minus.svg │ │ │ │ ├── person-circle-plus.svg │ │ │ │ ├── person-circle-question.svg │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ ├── person-digging.svg │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ ├── person-dress-burst.svg │ │ │ │ ├── person-dress.svg │ │ │ │ ├── person-drowning.svg │ │ │ │ ├── person-falling-burst.svg │ │ │ │ ├── person-falling.svg │ │ │ │ ├── person-half-dress.svg │ │ │ │ ├── person-harassing.svg │ │ │ │ ├── person-hiking.svg │ │ │ │ ├── person-military-pointing.svg │ │ │ │ ├── person-military-rifle.svg │ │ │ │ ├── person-military-to-person.svg │ │ │ │ ├── person-praying.svg │ │ │ │ ├── person-pregnant.svg │ │ │ │ ├── person-rays.svg │ │ │ │ ├── person-rifle.svg │ │ │ │ ├── person-running.svg │ │ │ │ ├── person-shelter.svg │ │ │ │ ├── person-skating.svg │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ ├── person-skiing.svg │ │ │ │ ├── person-snowboarding.svg │ │ │ │ ├── person-swimming.svg │ │ │ │ ├── person-through-window.svg │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ ├── person-walking.svg │ │ │ │ ├── person.svg │ │ │ │ ├── peseta-sign.svg │ │ │ │ ├── peso-sign.svg │ │ │ │ ├── phone-flip.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-film.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-circle-check.svg │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-lock.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane-up.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── plant-wilt.svg │ │ │ │ ├── plate-wheat.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ ├── plug-circle-check.svg │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-minus.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── q.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── r.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── ranking-star.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── rectangle-ad.svg │ │ │ │ ├── rectangle-list.svg │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── right-from-bracket.svg │ │ │ │ ├── right-left.svg │ │ │ │ ├── right-long.svg │ │ │ │ ├── right-to-bracket.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road-barrier.svg │ │ │ │ ├── road-bridge.svg │ │ │ │ ├── road-circle-check.svg │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ ├── road-lock.svg │ │ │ │ ├── road-spikes.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── rotate-left.svg │ │ │ │ ├── rotate-right.svg │ │ │ │ ├── rotate.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── rug.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── rupiah-sign.svg │ │ │ │ ├── s.svg │ │ │ │ ├── sack-dollar.svg │ │ │ │ ├── sack-xmark.svg │ │ │ │ ├── sailboat.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── scale-balanced.svg │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ ├── school-circle-check.svg │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ ├── school-flag.svg │ │ │ │ ├── school-lock.svg │ │ │ │ ├── school.svg │ │ │ │ ├── scissors.svg │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll-torah.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── section.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-from-square.svg │ │ │ │ ├── share-nodes.svg │ │ │ │ ├── share.svg │ │ │ │ ├── sheet-plastic.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-cat.svg │ │ │ │ ├── shield-dog.svg │ │ │ │ ├── shield-halved.svg │ │ │ │ ├── shield-heart.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shirt.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shop-lock.svg │ │ │ │ ├── shop-slash.svg │ │ │ │ ├── shop.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shrimp.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── shuttle-space.svg │ │ │ │ ├── sign-hanging.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── signs-post.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spoon.svg │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ ├── square-caret-down.svg │ │ │ │ ├── square-caret-left.svg │ │ │ │ ├── square-caret-right.svg │ │ │ │ ├── square-caret-up.svg │ │ │ │ ├── square-check.svg │ │ │ │ ├── square-envelope.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-h.svg │ │ │ │ ├── square-minus.svg │ │ │ │ ├── square-nfi.svg │ │ │ │ ├── square-parking.svg │ │ │ │ ├── square-pen.svg │ │ │ │ ├── square-person-confined.svg │ │ │ │ ├── square-phone-flip.svg │ │ │ │ ├── square-phone.svg │ │ │ │ ├── square-plus.svg │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ ├── square-root-variable.svg │ │ │ │ ├── square-rss.svg │ │ │ │ ├── square-share-nodes.svg │ │ │ │ ├── square-up-right.svg │ │ │ │ ├── square-virus.svg │ │ │ │ ├── square-xmark.svg │ │ │ │ ├── square.svg │ │ │ │ ├── staff-snake.svg │ │ │ │ ├── stairs.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── stapler.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-stroke.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sterling-sign.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── suitcase-medical.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── t.svg │ │ │ │ ├── table-cells-large.svg │ │ │ │ ├── table-cells.svg │ │ │ │ ├── table-columns.svg │ │ │ │ ├── table-list.svg │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-button.svg │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachograph-digital.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tarp-droplet.svg │ │ │ │ ├── tarp.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ ├── temperature-empty.svg │ │ │ │ ├── temperature-full.svg │ │ │ │ ├── temperature-half.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── temperature-quarter.svg │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ ├── tenge-sign.svg │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ ├── tent.svg │ │ │ │ ├── tents.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-slash.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-simple.svg │ │ │ │ ├── ticket.svg │ │ │ │ ├── timeline.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet-portable.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toilets-portable.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tornado.svg │ │ │ │ ├── tower-broadcast.svg │ │ │ │ ├── tower-cell.svg │ │ │ │ ├── tower-observation.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train-subway.svg │ │ │ │ ├── train-tram.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ ├── trash-can.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree-city.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── trowel-bricks.svg │ │ │ │ ├── trowel.svg │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ ├── truck-droplet.svg │ │ │ │ ├── truck-fast.svg │ │ │ │ ├── truck-field-un.svg │ │ │ │ ├── truck-field.svg │ │ │ │ ├── truck-front.svg │ │ │ │ ├── truck-medical.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck-plane.svg │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ ├── turn-down.svg │ │ │ │ ├── turn-up.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── u.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── up-down-left-right.svg │ │ │ │ ├── up-down.svg │ │ │ │ ├── up-long.svg │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ ├── up-right-from-square.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-doctor.svg │ │ │ │ ├── user-gear.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-group.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-large-slash.svg │ │ │ │ ├── user-large.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-pen.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-xmark.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-between-lines.svg │ │ │ │ ├── users-gear.svg │ │ │ │ ├── users-line.svg │ │ │ │ ├── users-rays.svg │ │ │ │ ├── users-rectangle.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users-viewfinder.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── v.svg │ │ │ │ ├── van-shuttle.svg │ │ │ │ ├── vault.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vest-patches.svg │ │ │ │ ├── vest.svg │ │ │ │ ├── vial-circle-check.svg │ │ │ │ ├── vial-virus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ ├── virus-covid.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volcano.svg │ │ │ │ ├── volleyball.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-xmark.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── w.svg │ │ │ │ ├── walkie-talkie.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ ├── wand-magic.svg │ │ │ │ ├── wand-sparkles.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water-ladder.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight-scale.svg │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ ├── wheat-awn.svg │ │ │ │ ├── wheelchair-move.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── whiskey-glass.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── worm.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── x.svg │ │ │ │ ├── xmark.svg │ │ │ │ ├── xmarks-lines.svg │ │ │ │ ├── y.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ ├── yin-yang.svg │ │ │ │ └── z.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ └── nunito │ │ ├── fonts.css │ │ ├── snunitov25xrxv3i6li01bkofimeabtmnfcqig.woff2 │ │ ├── snunitov25xrxv3i6li01bkofineabtmnfcq.woff2 │ │ ├── snunitov25xrxv3i6li01bkofio-abtmnfcqig.woff2 │ │ ├── snunitov25xrxv3i6li01bkofiooabtmnfcqig.woff2 │ │ └── snunitov25xrxv3i6li01bkofiouabtmnfcqig.woff2 ├── images │ ├── 1987845823642421a37c339.png │ ├── 20471154996427c16ff0435.png │ ├── 309757557642421cae559a.png │ ├── 403.png │ ├── 404.png │ ├── bank-transfer.png │ ├── browse-videos-icon.png │ ├── browse-videos.png │ ├── ccbill-pay.png │ ├── channels-offline.png │ ├── chat-service.png │ ├── contact-image.png │ ├── explore.png │ ├── get-tokens-icon.png │ ├── header.png │ ├── homepage-header-bg.png │ ├── homepage-icon.png │ ├── larix.jpeg │ ├── live-stream-icon.png │ ├── live-streaming-header.png │ ├── login.png │ ├── logo-v2.png │ ├── logo.png │ ├── obs.png │ ├── paypal-btn.png │ ├── server-error.png │ ├── streamer-icon.png │ ├── streaming-service.png │ ├── stripe-cards.png │ ├── sub-service.png │ ├── tips-service.png │ ├── token-packages.png │ ├── twitcher-logo-dark.png │ └── user-signup-icon.png ├── index.php ├── js │ ├── app.js │ ├── app.min.js │ ├── datatables │ │ ├── DataTables-1.13.4 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ ├── dataTables.bootstrap5.css │ │ │ │ ├── dataTables.bootstrap5.min.css │ │ │ │ ├── dataTables.bulma.css │ │ │ │ ├── dataTables.bulma.min.css │ │ │ │ ├── dataTables.dataTables.css │ │ │ │ ├── dataTables.dataTables.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ ├── dataTables.bootstrap5.js │ │ │ │ ├── dataTables.bootstrap5.min.js │ │ │ │ ├── dataTables.bulma.js │ │ │ │ ├── dataTables.bulma.min.js │ │ │ │ ├── dataTables.dataTables.js │ │ │ │ ├── dataTables.dataTables.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ └── datatables.min.js │ ├── jquery.min.js │ ├── morris.min.js │ ├── raphael-min.js │ └── tinymce │ │ ├── icons │ │ └── default │ │ │ └── icons.min.js │ │ ├── langs │ │ └── README.md │ │ ├── license.txt │ │ ├── models │ │ └── dom │ │ │ └── model.min.js │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── help │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ └── silver │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ └── tinymce.min.js ├── profilePics │ ├── 1-63d798bac8323.jpg │ ├── 1-63d7adf286256.jpg │ ├── 1-63d7b123361c7.jpg │ ├── 1-63d7b5019ca1c.jpeg │ ├── 1-63d7b511ccf34.jpg │ ├── 1-63d7b5cf658b1.jpg │ ├── 1-63d7b5f5962c4.jpg │ ├── 1-63d7b62d95973.jpg │ ├── 1-63d7b63359f2a.jpg │ ├── 1-63d7b8d2ae7b4.jpg │ ├── 1-63d7b8da3cf1c.jpg │ ├── 1-63d7ba3df01e9.jpg │ ├── 1-63d7ba5115f5a.jpg │ ├── 1-63d7ba91882aa.jpg │ ├── 1-63d7bacf177df.jpg │ ├── 1-63d7bb186cfe0.jpg │ ├── 1-63d7bb8328152.jpg │ ├── 1-63d7bb912a93b.jpg │ ├── 4-6429ace58acfa.jpg │ ├── 5-63e61e561608f.jpg │ ├── 6-6405d032acdd7.jpg │ └── default-profile-pic.png ├── robots.txt ├── sounds │ └── coins.mp3 ├── thumbnails │ ├── 64087ba7eebce-1.jpg │ ├── 6408a618befeb-1.jpg │ ├── 6408a6312598d-1.jpg │ ├── 6408aa152e33a-1.jpg │ ├── 6408aa404912a-1.jpg │ ├── 6408be6b32ae7-1.jpg │ ├── 6408bf8977ac6-1.jpg │ ├── 6408da81e1ad5-1.jpg │ ├── 6408de85a8fc8-1.jpg │ ├── 6408e0344b3b6-1.jpg │ ├── 640ad80766e35-1.jpg │ ├── 640ad9422c065-1.png │ ├── 640d8c9c41ba9-1.png │ ├── 640d8cdc78af3-1.png │ ├── 640d8e9364557-1.jpg │ ├── 640d8e9eb39d7-1.jpg │ ├── 640d8eb267b33-1.png │ ├── 640d8ebda4767-1.png │ └── 64268c7c9f977-1.png └── upgrader │ ├── filesList.php │ ├── index.php │ ├── process-upgrade.php │ ├── upgrade-files │ ├── app │ │ ├── Http │ │ │ └── Controllers │ │ │ │ ├── Admin.php │ │ │ │ ├── BannedController.php │ │ │ │ ├── ChannelController.php │ │ │ │ └── ProfileController.php │ │ └── Models │ │ │ ├── RoomBans.php │ │ │ └── User.php │ ├── build │ │ ├── assets │ │ │ ├── AccountNavi.ce160f74.js │ │ │ ├── AuthenticatedLayout.37d9e013.js │ │ │ ├── BankTransfer.5cbef589.js │ │ │ ├── BankTransferProcessing.8217959c.js │ │ │ ├── BannedFromRoom.d78d1a12.js │ │ │ ├── BannedUsers.9716f6d4.js │ │ │ ├── BrowseVideos.8106ffcf.js │ │ │ ├── CardSuccess.24b5d3e6.js │ │ │ ├── ChannelForm.b8507900.js │ │ │ ├── ChannelVideos.244f5af9.js │ │ │ ├── Channels.67340989.js │ │ │ ├── ChannelsLoop.4698f864.js │ │ │ ├── ChatRoom.92cfc47e.js │ │ │ ├── ConfirmPassword.9903ebb7.js │ │ │ ├── Contact.fc6914ca.js │ │ │ ├── DangerButton.dc51b525.js │ │ │ ├── Dashboard.58dae5de.js │ │ │ ├── Dashboard.929d61dc.js │ │ │ ├── DeleteUserForm.98e24694.js │ │ │ ├── Edit-Tier.1d811ef7.js │ │ │ ├── Edit.b626636d.js │ │ │ ├── Followers.601086e9.js │ │ │ ├── Following.47724511.js │ │ │ ├── ForgotPassword.af044b98.js │ │ │ ├── Front.2a37359d.css │ │ │ ├── Front.5dab1473.js │ │ │ ├── GuestLayout.8079e835.js │ │ │ ├── History.f54c49ef.js │ │ │ ├── Homepage.e0c52d46.js │ │ │ ├── InputError.afc03b2f.js │ │ │ ├── InputLabel.b913582c.js │ │ │ ├── LiveNow.54f1663c.js │ │ │ ├── LiveStream.98f499e9.js │ │ │ ├── Login.cb15b898.js │ │ │ ├── Modal.ea61d8f0.js │ │ │ ├── MySubscribers.fcda800f.js │ │ │ ├── MySubscriptions.610b1168.js │ │ │ ├── MyVideos.7491bcd0.js │ │ │ ├── Navi.7da85ea8.js │ │ │ ├── Notifications.3926eba0.js │ │ │ ├── NumberInput.2414086a.js │ │ │ ├── OrderedVideos.8b591228.js │ │ │ ├── Packages.2c9ffeb5.js │ │ │ ├── Page.2039b57c.js │ │ │ ├── PayPalProcessing.2672c1a4.js │ │ │ ├── Paypal.5c5acb74.js │ │ │ ├── PrimaryButton.09893f04.js │ │ │ ├── ProfileTabs.a6e0950c.js │ │ │ ├── Register.163e65bf.js │ │ │ ├── Request.411af94a.js │ │ │ ├── ResetPassword.a26b387e.js │ │ │ ├── ScheduleTab.3bb66488.js │ │ │ ├── SecondaryButton.d42a89f3.js │ │ │ ├── Select-Gateway.31dc8d8d.js │ │ │ ├── Set-Tiers.daac4afd.js │ │ │ ├── SetSchedule.01f657e3.js │ │ │ ├── SetSchedule.a2b1c21d.css │ │ │ ├── Settings.2d9f930d.js │ │ │ ├── Settings.8ac33ad4.js │ │ │ ├── Signup.444208a6.js │ │ │ ├── SingleVideo.ba5482de.js │ │ │ ├── Spinner.4065475d.js │ │ │ ├── StreamInstructions.01197abd.js │ │ │ ├── StreamerVerification.9b1329fd.js │ │ │ ├── StripeForm.efe26e5d.js │ │ │ ├── Subscribe.e47593aa.js │ │ │ ├── SubscribePopup.16ac647a.js │ │ │ ├── TextInput.9faad775.js │ │ │ ├── Textarea.d9722257.js │ │ │ ├── TiersTab.f76f5bf1.js │ │ │ ├── TipPopup.4b7e6cdd.js │ │ │ ├── TokenOrders.3e1fbd62.js │ │ │ ├── Translate.dc83ae5b.js │ │ │ ├── Unlock.bfb1a657.js │ │ │ ├── UpdatePasswordForm.1dc39db6.js │ │ │ ├── UpdateProfileInformationForm.498de4a6.js │ │ │ ├── UploadVideo.c4f2ae63.js │ │ │ ├── User.aea4fcd1.js │ │ │ ├── VerificationPending.a6d885f1.js │ │ │ ├── VerifyEmail.a9b8eded.js │ │ │ ├── VideoJs.a86a50f4.css │ │ │ ├── VideoJs.f0c60e52.js │ │ │ ├── VideosLoop.7246d702.js │ │ │ ├── Withdraw.32ca6e56.js │ │ │ ├── WithdrawForm.4a216099.js │ │ │ ├── app.3c90c593.css │ │ │ ├── app.70eb7c5f.js │ │ │ ├── iconBase.19c775b5.js │ │ │ ├── index.2c8b29ea.js │ │ │ ├── index.9a52c726.js │ │ │ ├── index.esm.0e26725f.js │ │ │ ├── index.esm.44a5a5e5.js │ │ │ ├── index.esm.46d65d59.js │ │ │ ├── index.esm.70b0eca2.js │ │ │ ├── index.esm.80e20a61.js │ │ │ ├── index.esm.ada88c82.js │ │ │ ├── index.esm.b47aa8e1.js │ │ │ ├── index.esm.b743b834.js │ │ │ ├── index.esm.dc99be0f.js │ │ │ ├── react-toastify.esm.b9d392e3.js │ │ │ ├── react-tooltip.c6950bbb.css │ │ │ ├── react-tooltip.esm.min.cb5a3799.js │ │ │ └── transition.a700d2e8.js │ │ └── manifest.json │ ├── index.php │ ├── resources │ │ └── views │ │ │ └── admin │ │ │ ├── admin-navi.blade.php │ │ │ ├── base.blade.php │ │ │ └── streamer-bans.blade.php │ └── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ └── upgrade-instructions.txt ├── resources ├── css │ └── app.css ├── js │ ├── Components │ │ ├── ApplicationLogo.jsx │ │ ├── ChannelsLoop.jsx │ │ ├── Checkbox.jsx │ │ ├── DangerButton.jsx │ │ ├── Dropdown.jsx │ │ ├── HomepageHeader.jsx │ │ ├── InputError.jsx │ │ ├── InputLabel.jsx │ │ ├── LeftSidebar.jsx │ │ ├── Modal.jsx │ │ ├── NavLink.jsx │ │ ├── NumberInput.jsx │ │ ├── PrimaryButton.jsx │ │ ├── ResponsiveNavLink.jsx │ │ ├── SecondaryButton.jsx │ │ ├── Spinner.jsx │ │ ├── TextInput.jsx │ │ ├── Textarea.jsx │ │ └── TopNavi.jsx │ ├── Functions │ │ └── Translate.jsx │ ├── Layouts │ │ ├── AuthenticatedLayout.jsx │ │ ├── Front.jsx │ │ └── GuestLayout.jsx │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.jsx │ │ │ ├── ForgotPassword.jsx │ │ │ ├── Login.jsx │ │ │ ├── Register.jsx │ │ │ ├── ResetPassword.jsx │ │ │ ├── Signup.jsx │ │ │ └── VerifyEmail.jsx │ │ ├── Channel │ │ │ ├── BannedFromRoom.jsx │ │ │ ├── BannedUsers.jsx │ │ │ ├── ChatRoom.jsx │ │ │ ├── Followers.jsx │ │ │ ├── LiveStream.jsx │ │ │ ├── MySubscribers.jsx │ │ │ ├── Partials │ │ │ │ ├── AccountNavi.jsx │ │ │ │ ├── ChannelForm.jsx │ │ │ │ ├── ChannelVideos.jsx │ │ │ │ ├── ProfileTabs.jsx │ │ │ │ ├── ScheduleTab.jsx │ │ │ │ ├── SetSchedule.jsx │ │ │ │ ├── SubscribePopup.jsx │ │ │ │ ├── TiersTab.jsx │ │ │ │ ├── TipPopup.jsx │ │ │ │ └── VideoJs.jsx │ │ │ ├── Settings.jsx │ │ │ ├── StreamInstructions.jsx │ │ │ ├── StreamerVerification.jsx │ │ │ ├── Subscribe.jsx │ │ │ ├── User.jsx │ │ │ └── VerificationPending.jsx │ │ ├── Channels.jsx │ │ ├── Contact.jsx │ │ ├── Dashboard.jsx │ │ ├── Homepage.jsx │ │ ├── LiveNow.jsx │ │ ├── Membership │ │ │ ├── Edit-Tier.jsx │ │ │ └── Set-Tiers.jsx │ │ ├── Page.jsx │ │ ├── Payout │ │ │ ├── History.jsx │ │ │ ├── Request.jsx │ │ │ ├── Settings.jsx │ │ │ ├── Withdraw.jsx │ │ │ └── WithdrawForm.jsx │ │ ├── Profile │ │ │ ├── Edit.jsx │ │ │ ├── Following.jsx │ │ │ ├── MySubscriptions.jsx │ │ │ ├── Notifications.jsx │ │ │ ├── Partials │ │ │ │ ├── DeleteUserForm.jsx │ │ │ │ ├── UpdatePasswordForm.jsx │ │ │ │ └── UpdateProfileInformationForm.jsx │ │ │ └── TokenOrders.jsx │ │ ├── Reladmini │ │ │ ├── Components │ │ │ │ └── Navi.jsx │ │ │ └── Dashboard │ │ │ │ └── Dashboard.jsx │ │ ├── Tokens │ │ │ ├── BankTransfer.jsx │ │ │ ├── BankTransferProcessing.jsx │ │ │ ├── CardSuccess.jsx │ │ │ ├── Packages.jsx │ │ │ ├── PayPalProcessing.jsx │ │ │ ├── Paypal.jsx │ │ │ ├── Select-Gateway.jsx │ │ │ └── StripeForm.jsx │ │ └── Videos │ │ │ ├── BrowseVideos.jsx │ │ │ ├── MyVideos.jsx │ │ │ ├── OrderedVideos.jsx │ │ │ ├── Partials │ │ │ ├── UploadVideo.jsx │ │ │ └── VideosLoop.jsx │ │ │ ├── SingleVideo.jsx │ │ │ └── Unlock.jsx │ ├── app.jsx │ └── bootstrap.js └── views │ ├── admin │ ├── add-token-sale.blade.php │ ├── adjust-token.blade.php │ ├── admin-login.blade.php │ ├── admin-navi.blade.php │ ├── base.blade.php │ ├── categories.blade.php │ ├── chat-config.blade.php │ ├── cloud-settings.blade.php │ ├── config-logins.blade.php │ ├── configuration-navi.blade.php │ ├── configuration.blade.php │ ├── content-moderation.blade.php │ ├── create-token-pack.blade.php │ ├── dashboard.blade.php │ ├── edit-coffee.blade.php │ ├── edit-platinum.blade.php │ ├── edit-post.blade.php │ ├── edit-product.blade.php │ ├── edit-subscription.blade.php │ ├── edit-token-pack.blade.php │ ├── edit-video.blade.php │ ├── mail-configuration.blade.php │ ├── pages.blade.php │ ├── payments-setup.blade.php │ ├── payout-requests.blade.php │ ├── products.blade.php │ ├── streamer-bans.blade.php │ ├── streaming-config.blade.php │ ├── subscriptions.blade.php │ ├── tips.blade.php │ ├── token-packs.blade.php │ ├── token-sales.blade.php │ ├── update-page.blade.php │ ├── users.blade.php │ ├── video-categories.blade.php │ └── videos.blade.php │ ├── app.blade.php │ ├── components │ ├── Translations.blade.php │ ├── account-navigation.blade.php │ ├── application-logo.blade.php │ ├── auth-card.blade.php │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── button.blade.php │ ├── drawer-navi.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── feature-item.blade.php │ ├── footer.blade.php │ ├── guest-layout.blade.php │ ├── home-features.blade.php │ ├── home-header.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── nav-link.blade.php │ ├── posts-limit.blade.php │ ├── pricing-table.blade.php │ ├── products-limit.blade.php │ ├── responsive-nav-link.blade.php │ ├── select.blade.php │ ├── td.blade.php │ ├── textarea.blade.php │ ├── th.blade.php │ └── topnavi.blade.php │ ├── emails │ └── test-email.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 500.blade.php │ └── layout.blade.php │ └── install │ ├── database.blade.php │ ├── finished.blade.php │ ├── install-base.blade.php │ └── requirements.blade.php ├── routes ├── admin.php ├── api.php ├── auth.php ├── channels.php ├── console.php ├── reladmini.php └── web.php ├── storage ├── app │ └── purifier │ │ ├── CSS │ │ └── 4.13.0,84a9cb681804f68773a2a36419faffda843c1870,1.ser │ │ └── HTML │ │ └── 4.13.0,92dc1812ec0887b3a609dfb0640a32f1345ce4c5,1.ser ├── framework │ ├── cache │ │ └── data │ │ │ ├── 25 │ │ │ └── 8f │ │ │ │ └── 258fe6320048b2937f4893b180f5b89dddba99a5 │ │ │ ├── 48 │ │ │ └── d4 │ │ │ │ └── 48d46288bcab7a47d2be642090bb729eb4a70b37 │ │ │ ├── 52 │ │ │ └── ac │ │ │ │ └── 52acebe9de48b9434598fa65d2ec8d0e111e90b0 │ │ │ ├── 60 │ │ │ └── 25 │ │ │ │ └── 60258c940f591d805fdfefc02a56944855011790 │ │ │ ├── 69 │ │ │ └── 6e │ │ │ │ └── 696e322450cab689a81fcb1d89a5adf27cb8f7e3 │ │ │ ├── 70 │ │ │ └── d5 │ │ │ │ └── 70d5789fb8fa04f157e2f175d8e9158bc3d2b5c6 │ │ │ ├── 71 │ │ │ └── 14 │ │ │ │ └── 71142ff14443f2bdb224a7d518967ceff2c666b8 │ │ │ ├── 91 │ │ │ └── 1b │ │ │ │ └── 911ba52b067d99ef4b0bada152cc351acf8ca52e │ │ │ ├── 93 │ │ │ └── 3c │ │ │ │ └── 933cee4a6a1ef0974adbef928a422c8cd6b034a2 │ │ │ ├── 0d │ │ │ └── 7f │ │ │ │ └── 0d7fc32258dc2a1f562ea5844edabd74178cfd81 │ │ │ ├── 1d │ │ │ └── 23 │ │ │ │ └── 1d2371ede0ec864915bdef1c5076496831d22f08 │ │ │ ├── 7b │ │ │ └── ca │ │ │ │ └── 7bca2d69d073243830c525220f536c8bc03b27e7 │ │ │ ├── 7e │ │ │ └── 8b │ │ │ │ └── 7e8b05a8889141cfcfa95e1c3361d7e0e59debc0 │ │ │ ├── 9c │ │ │ └── 1e │ │ │ │ └── 9c1e47b21486ddd4ace681eb63736af668db3941 │ │ │ ├── a1 │ │ │ └── 75 │ │ │ │ └── a17585b8df420c4e6dc516d7f317dfd4a84eaf1f │ │ │ ├── bb │ │ │ └── 57 │ │ │ │ └── bb5732e0babedd24b05555e861b46cce57dbbea5 │ │ │ ├── c0 │ │ │ └── 71 │ │ │ │ └── c071422490d526a8aada046adf3a9c9fa0593468 │ │ │ ├── ce │ │ │ └── aa │ │ │ │ └── ceaa4cf6f93ab740c8f21dd4c657596a5976ef1c │ │ │ ├── d7 │ │ │ └── 91 │ │ │ │ └── d791e4b913ee6656c8ff2877b81598572c9aa3c7 │ │ │ ├── dc │ │ │ └── d0 │ │ │ │ └── dcd0f655167ea2fcd936b2715f61febc23effa20 │ │ │ └── ec │ │ │ └── c4 │ │ │ ├── ecc49f49f4da6b940dcde13f0571e79c299871e6 │ │ │ └── ecc4a2ae84d83e19f3588613ed808e95ed483bac │ ├── sessions │ │ └── L7uDGjmYbLCvANJAwYsKQwSFccNp2NkkrU3dozAz │ └── views │ │ ├── 02f83baf766db56bc8855f272499bfe952d975fc.php │ │ ├── 03ba841fb55366106bb1ec74535a67090034c814.php │ │ ├── 069e41b40df414592de5763c44f4cacbda1f6386.php │ │ ├── 078d953ef726ffefc98ce802fc2aad22510ecfcc.php │ │ ├── 10894c1093d5eb4b749e96b4a6ed038cdaf579f6.php │ │ ├── 11f70a42fd976b7915ee4fd54f77239c40bff7d2.php │ │ ├── 12e31a482001569d234a443de2bb0a6b60ca138e.php │ │ ├── 15b384fe3d8f7bc44e3f568d3f54e60bef1ed69c.php │ │ ├── 185eee019236facaea65e2ee576625ddbdb0f3ad.php │ │ ├── 1d9aa21681bacf662f7363ceeef910ce47f9b3bd.php │ │ ├── 1fa18ae42113a69501ad8a8b1cf32c6103a439f2.php │ │ ├── 21221c5f771315a3d61775a5c79783c33a5c92f2.php │ │ ├── 21d1ca93c50eaa063db16d0a6bdf830c085811f4.php │ │ ├── 22beaddf7f3741fdefbe23ef55df9fd32b722510.php │ │ ├── 26c989d7fac962384b650f8669faab6a5ee789a0.php │ │ ├── 299dc7ff2ef72bc4b8022567e2d6837476dba042.php │ │ ├── 2a99728cb2d09dd6f73fffcf94e293a0e584c22a.php │ │ ├── 2b95a6f6c5b8626000552c939c1d564e26735cc9.php │ │ ├── 2f1867a1893d5adfe4170859c9233d79983321f7.php │ │ ├── 3133188b4dd235918fa22b22a4ad047847c67abd.php │ │ ├── 3237698945ce621e577e3988e5f982b2e32d20da.php │ │ ├── 33474663ea9a30679c0d44c40a2d688505dd9e73.php │ │ ├── 33f2eb7c842751ff9e1a6c711b8f4a2346f49a47.php │ │ ├── 3554c686eec30be422a4b7456419ba516b3a857d.php │ │ ├── 3658b35c408411843552da2035db7fd2b54719e0.php │ │ ├── 3701f065b29c1d7c19fd46a344855b180084ebf3.php │ │ ├── 3c27f4b71a439ca1672693b7328a432285228da0.php │ │ ├── 3cfcaa4fdc7c08e9a11a8b87a863a917e8d9828d.php │ │ ├── 3f5b14cbe8e8403113592450612f217c829d1b44.php │ │ ├── 40ca40bd28ecfcb9ba5728e217576c0778a77ed2.php │ │ ├── 4524dc740a6eed40777abec5434e85681b1c0212.php │ │ ├── 46fcbcafb29f7fed48fd5aab98ce9d6bfe46f38c.php │ │ ├── 470b59d6159d26897f8fd20c98d31b3cec8cf9c5.php │ │ ├── 49961940d849bfb28c9eb1a8693c57a30a4f2f8d.php │ │ ├── 4d777c28d76f05173dac8608ac42b8e8ca8b9e10.php │ │ ├── 4f20c51e5ec0e24bd13229e262641ce1ebfa9e5c.php │ │ ├── 4f833f3aba5e5fd7b393784aef8fc0b57c5cf8ac.php │ │ ├── 524408731ac4af5dc02dd7c0c556c818246b3d5c.php │ │ ├── 5281012fe2700eaba6a47f9bf5c7a929c8b2cbb8.php │ │ ├── 529eba829dced49eaab832a9e97ab0444241a8a9.php │ │ ├── 55c762ff2c8c680cd164cb5df99a42ab9dc72cee.php │ │ ├── 574b0a989652bb1b44906bbaa5db719e91ab2ebf.php │ │ ├── 581d72941d9639537b195e19e371d750cbb94eed.php │ │ ├── 5c314b823ea380e01b7dea8ea39090f1de9fc397.php │ │ ├── 5d6b4a864ee2a0906aea76f8089eb0df137ba43c.php │ │ ├── 5ef3710850cb010a79270c85820035410ad85903.php │ │ ├── 608dd194c05c0d02bf032a08a4434751b76e7267.php │ │ ├── 61b3a7b34c8a3113eff9389599bb6a2b0c9df3d8.php │ │ ├── 634dc8691cee2fe57c0dae36b02152774aa09a5f.php │ │ ├── 6452636d285b52b4a71c6559a0d6f9975a8fb8f0.php │ │ ├── 69e6c711f173c79be30f1435c716e257ef737ff9.php │ │ ├── 6d2bfa7875f5a08f8af77e9442d0f4e426493cf0.php │ │ ├── 74b88c95eefc12a6a8e1b6021f8e55f236ff5d0a.php │ │ ├── 765a286db12cb23736ad89163934808a7c2232f2.php │ │ ├── 791cba4b763eff13ba0ddd24f84547ff53adc7ff.php │ │ ├── 792a4d08b06484707f0ae425e0a3d04844188a0a.php │ │ ├── 81063dd4f80d096e9c6d4e3c8d82fda3978ef48b.php │ │ ├── 822a9e646454237e7267b9bafc838cd0226c77f0.php │ │ ├── 8298bf3a9be86bd3277255ed8c5ecb51c36f6632.php │ │ ├── 85aad66a0c2f44edac549f78947908e3473be058.php │ │ ├── 88502d646bdde36e0f1a515214957608a7ff7452.php │ │ ├── 8916e2cbdc90f1bd654fde556daf6c65e7a98584.php │ │ ├── 8aef2f616ed4b11b9af31346475c0fa73e97dd2b.php │ │ ├── 8b94ffaae7deea6a4a7b7244057085fba11d4e40.php │ │ ├── 900560bf1f7e94848ace019a65d251bc360051b7.php │ │ ├── 9303d5fcd6a4be60dfd72272b16f5f256b1f6dde.php │ │ ├── 939c03b5e3505ccf8c2422263d42a15a1a797283.php │ │ ├── 94ea554dfbd8f60a4f3aac54983a9fe480457fa1.php │ │ ├── 95f1bb0b445996e796e1b44a5b946cf0c099ae25.php │ │ ├── 96eac441833b4974a07ef1276c09d1b22ac21a37.php │ │ ├── 97a014d1bf619245596dab6ba01b759b8fe6487f.php │ │ ├── 98912c0f06f8956e7db601ea963ddd2c8f1ada40.php │ │ ├── a0cf666fd8825e44c8496d6b74d2c194dcc33e40.php │ │ ├── a140b8ccaa2402d73e23d3a2e188311d4897d5ee.php │ │ ├── a33fb12ef2d22518242386c4a1edab968785158c.php │ │ ├── a5e93b7ad0ef56dcad69a8970162016fe24388ee.php │ │ ├── aa2030cfe7517ae4a5628f7ccdcbd5398a9daeb5.php │ │ ├── aa5ff9cdefe1c673537e106a6d9097cd6bf79833.php │ │ ├── abcf0bd75cf490aa9f97d42126e4648981f671fd.php │ │ ├── af5d28f24d4739fc816800d9722f2e757589bcc4.php │ │ ├── b316ec13047716f3bfad023665415b38c7aaa3ae.php │ │ ├── b743e7d6da739bb52f34e5abec45ca8fc229f4d0.php │ │ ├── b888969d26554ad917ae462749b5e0b6fd808cbb.php │ │ ├── b8c09bb063bb4c571181e56353722d68506e50a9.php │ │ ├── ba2dcdcaea30ef7768a4667a11cbb1336d2d583f.php │ │ ├── bc73aae8b67ad757fc2bc49f59bbaee6163d3082.php │ │ ├── c04f823d6934db95f9504e7c4638014e0fab6b11.php │ │ ├── c4265af3c37b5cb8ea74f03caa196060d0d6345e.php │ │ ├── cf3e1f8779fef575c555260eea09f5e1e7742a50.php │ │ ├── cf8a0f410b8005fa2d489c3e7dd8e09bd2f9e28f.php │ │ ├── d1b7684bdf45a85572a87e6d8275302fcc2fd71d.php │ │ ├── d645c9c310584ba0743634fb69618af30a36d2f8.php │ │ ├── d6e31b9e5010304ae59e21c8974e4f6e307ff0fb.php │ │ ├── d869294855d3b21e97e85f155eb29e3431f3657a.php │ │ ├── d93334c09d3e5631556d2554cd28032cd536805c.php │ │ ├── db947d712c8da5734fe9f7d45dc1c0816ea5950b.php │ │ ├── dedaa1e48a17aa99456105fa726820bee3a6be56.php │ │ ├── e4d9506a20ddfd981d49c7a321ac46be97e9b1e5.php │ │ ├── e5ff917f62ab1d72eb250af8fa9b53e4812bc675.php │ │ ├── e6b270b9aac7c5dc9c42075994b8fd5dc2457186.php │ │ ├── e8df30ed30b042822d2fef8c0ac24ad0508fc6ea.php │ │ ├── e98ac562b21a1a1b93f73ba8711bf213c3328a7f.php │ │ ├── ea3f8d4ce880c858710360f91f94c6f1632b21c7.php │ │ ├── ebaf1f7578770be374d713e761ef5a6f52745089.php │ │ ├── ed91818fe6733c1a4afe296bdc181168f9fb88d2.php │ │ ├── ef638e4bdeda9c9322aeb71ce9b9f66a046300c9.php │ │ ├── efd3cdf469805d0ec2dd00cf01dede71b6c436d8.php │ │ ├── f0a7f79b310fbef014e9c721b9d63d3d477181f1.php │ │ ├── f20c55dd617212195bad462949ca37158e04a0ef.php │ │ ├── f25f924106880a0ea42a05b7d4b4a04b75846435.php │ │ ├── f2bec9e350ad8dc6d49534a56ad4d469240b5f0b.php │ │ ├── f599f4bceb2f90fe4c2f336f0184f0bb3de2b92d.php │ │ ├── f6a8c25d1014bf151cd0118149115cc46fffb9dd.php │ │ ├── f6d26344b1a3860bb239975d3aaf68bab8ff0d60.php │ │ ├── f71394df19c1830fc2254eecf97e03fdd5b24bab.php │ │ ├── f7a6335d52edb4a5d3d07186372855bc2076f4cf.php │ │ ├── f86a7ad26b6a55fc9607ff0d2a19c0f14e47e3ee.php │ │ └── fb6329b95c0f3a6dda567e358cf4a98d0f9be9d5.php └── logs │ └── laravel.log ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── vendor ├── ably │ └── ably-php │ │ ├── CHANGELOG.md │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Procfile │ │ ├── README.md │ │ ├── ably-loader.php │ │ ├── composer.json │ │ ├── demo │ │ └── index.php │ │ ├── phpunit.xml │ │ ├── src │ │ ├── AblyRest.php │ │ ├── Auth.php │ │ ├── Channel.php │ │ ├── Channels.php │ │ ├── Defaults.php │ │ ├── Exceptions │ │ │ ├── AblyException.php │ │ │ └── AblyRequestException.php │ │ ├── Host.php │ │ ├── HostCache.php │ │ ├── Http.php │ │ ├── Log.php │ │ ├── Models │ │ │ ├── AuthOptions.php │ │ │ ├── BaseMessage.php │ │ │ ├── BaseOptions.php │ │ │ ├── ChannelOptions.php │ │ │ ├── CipherParams.php │ │ │ ├── ClientOptions.php │ │ │ ├── DeviceDetails.php │ │ │ ├── DevicePushDetails.php │ │ │ ├── ErrorInfo.php │ │ │ ├── HttpPaginatedResponse.php │ │ │ ├── Message.php │ │ │ ├── PaginatedResult.php │ │ │ ├── PresenceMessage.php │ │ │ ├── PushChannelSubscription.php │ │ │ ├── Stats.php │ │ │ ├── Stats │ │ │ │ ├── ConnectionTypes.php │ │ │ │ ├── MessageCount.php │ │ │ │ ├── MessageTraffic.php │ │ │ │ ├── MessageTypes.php │ │ │ │ ├── RequestCount.php │ │ │ │ └── ResourceCount.php │ │ │ ├── Status │ │ │ │ └── ChannelDetails.php │ │ │ ├── TokenDetails.php │ │ │ ├── TokenParams.php │ │ │ ├── TokenRequest.php │ │ │ └── Untyped.php │ │ ├── Presence.php │ │ ├── Push.php │ │ ├── PushAdmin.php │ │ ├── PushChannelSubscriptions.php │ │ ├── PushDeviceRegistrations.php │ │ └── Utils │ │ │ ├── Crypto.php │ │ │ ├── CurlWrapper.php │ │ │ ├── Miscellaneous.php │ │ │ └── Stringifiable.php │ │ └── tests │ │ ├── AblyRestTest.php │ │ ├── AppStatsTest.php │ │ ├── AuthTest.php │ │ ├── ChannelHistoryTest.php │ │ ├── ChannelIdempotentTest.php │ │ ├── ChannelMessagesTest.php │ │ ├── ChannelStatusTest.php │ │ ├── ClientIdTest.php │ │ ├── ClientOptionsTest.php │ │ ├── CryptoTest.php │ │ ├── DefaultsTest.php │ │ ├── HostCacheTest.php │ │ ├── HostTest.php │ │ ├── HttpTest.php │ │ ├── LogTest.php │ │ ├── MiscellaneousTest.php │ │ ├── PresenceTest.php │ │ ├── PushAdminTest.php │ │ ├── PushChannelSubscriptionsTest.php │ │ ├── PushDeviceRegistrationsTest.php │ │ ├── TokenTest.php │ │ ├── TypesTest.php │ │ ├── Utils.php │ │ ├── UtilsTest.php │ │ ├── extensions │ │ └── DebugTestListener.php │ │ └── factories │ │ └── TestApp.php ├── agence104 │ └── livekit-server-sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AccessToken.php │ │ ├── AccessTokenOptions.php │ │ ├── BaseServiceClient.php │ │ ├── ClaimGrants.php │ │ ├── EgressServiceClient.php │ │ ├── IngressServiceClient.php │ │ ├── RoomCreateOptions.php │ │ ├── RoomServiceClient.php │ │ ├── VideoGrant.php │ │ ├── WebhookReceiver.php │ │ └── proto │ │ ├── GPBMetadata │ │ ├── LivekitEgress.php │ │ ├── LivekitIngress.php │ │ ├── LivekitModels.php │ │ ├── LivekitRoom.php │ │ └── LivekitWebhook.php │ │ ├── Google │ │ └── Protobuf │ │ │ └── TwirpError.php │ │ └── Livekit │ │ ├── ActiveSpeakerUpdate.php │ │ ├── AliOSSUpload.php │ │ ├── AudioCodec.php │ │ ├── AutoTrackEgress.php │ │ ├── AzureBlobUpload.php │ │ ├── ClientConfigSetting.php │ │ ├── ClientConfiguration.php │ │ ├── ClientInfo.php │ │ ├── ClientInfo │ │ └── SDK.php │ │ ├── ClientInfo_SDK.php │ │ ├── Codec.php │ │ ├── ConnectionQuality.php │ │ ├── CreateIngressRequest.php │ │ ├── CreateRoomRequest.php │ │ ├── DataPacket.php │ │ ├── DataPacket │ │ └── Kind.php │ │ ├── DataPacket_Kind.php │ │ ├── DeleteIngressRequest.php │ │ ├── DeleteRoomRequest.php │ │ ├── DeleteRoomResponse.php │ │ ├── DirectFileOutput.php │ │ ├── DisabledCodecs.php │ │ ├── DisconnectReason.php │ │ ├── Egress.php │ │ ├── EgressAbstractClient.php │ │ ├── EgressClient.php │ │ ├── EgressInfo.php │ │ ├── EgressJsonClient.php │ │ ├── EgressServer.php │ │ ├── EgressStatus.php │ │ ├── EncodedFileOutput.php │ │ ├── EncodedFileType.php │ │ ├── EncodingOptions.php │ │ ├── EncodingOptionsPreset.php │ │ ├── FileInfo.php │ │ ├── GCPUpload.php │ │ ├── Ingress.php │ │ ├── IngressAbstractClient.php │ │ ├── IngressAudioOptions.php │ │ ├── IngressClient.php │ │ ├── IngressInfo.php │ │ ├── IngressInput.php │ │ ├── IngressJsonClient.php │ │ ├── IngressServer.php │ │ ├── IngressState.php │ │ ├── IngressState │ │ └── Status.php │ │ ├── IngressState_Status.php │ │ ├── IngressVideoOptions.php │ │ ├── InputAudioState.php │ │ ├── InputVideoState.php │ │ ├── ListEgressRequest.php │ │ ├── ListEgressResponse.php │ │ ├── ListIngressRequest.php │ │ ├── ListIngressResponse.php │ │ ├── ListParticipantsRequest.php │ │ ├── ListParticipantsResponse.php │ │ ├── ListRoomsRequest.php │ │ ├── ListRoomsResponse.php │ │ ├── MuteRoomTrackRequest.php │ │ ├── MuteRoomTrackResponse.php │ │ ├── ParticipantInfo.php │ │ ├── ParticipantInfo │ │ └── State.php │ │ ├── ParticipantInfo_State.php │ │ ├── ParticipantPermission.php │ │ ├── ParticipantTracks.php │ │ ├── RTPStats.php │ │ ├── RemoveParticipantResponse.php │ │ ├── Room.php │ │ ├── RoomCompositeEgressRequest.php │ │ ├── RoomEgress.php │ │ ├── RoomParticipantIdentity.php │ │ ├── RoomService.php │ │ ├── RoomServiceAbstractClient.php │ │ ├── RoomServiceClient.php │ │ ├── RoomServiceJsonClient.php │ │ ├── RoomServiceServer.php │ │ ├── S3Upload.php │ │ ├── SegmentedFileOutput.php │ │ ├── SegmentedFileProtocol.php │ │ ├── SegmentsInfo.php │ │ ├── SendDataRequest.php │ │ ├── SendDataResponse.php │ │ ├── ServerInfo.php │ │ ├── ServerInfo │ │ └── Edition.php │ │ ├── ServerInfo_Edition.php │ │ ├── SimulcastCodecInfo.php │ │ ├── SpeakerInfo.php │ │ ├── StopEgressRequest.php │ │ ├── StreamInfo.php │ │ ├── StreamInfo │ │ └── Status.php │ │ ├── StreamInfoList.php │ │ ├── StreamInfo_Status.php │ │ ├── StreamOutput.php │ │ ├── StreamProtocol.php │ │ ├── TimedVersion.php │ │ ├── TrackCompositeEgressRequest.php │ │ ├── TrackEgressRequest.php │ │ ├── TrackInfo.php │ │ ├── TrackSource.php │ │ ├── TrackType.php │ │ ├── TwirpError.php │ │ ├── UpdateIngressRequest.php │ │ ├── UpdateLayoutRequest.php │ │ ├── UpdateParticipantRequest.php │ │ ├── UpdateRoomMetadataRequest.php │ │ ├── UpdateStreamRequest.php │ │ ├── UpdateSubscriptionsRequest.php │ │ ├── UpdateSubscriptionsResponse.php │ │ ├── UserPacket.php │ │ ├── VideoCodec.php │ │ ├── VideoConfiguration.php │ │ ├── VideoLayer.php │ │ ├── VideoQuality.php │ │ ├── WebEgressRequest.php │ │ └── WebhookEvent.php ├── autoload.php ├── aws │ ├── aws-crt-php │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── composer.json │ │ └── 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 │ │ ├── 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 │ │ ├── AlexaForBusiness │ │ ├── AlexaForBusinessClient.php │ │ └── Exception │ │ │ └── AlexaForBusinessException.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Athena │ │ ├── AthenaClient.php │ │ └── Exception │ │ │ └── AthenaException.php │ │ ├── AuditManager │ │ ├── AuditManagerClient.php │ │ └── Exception │ │ │ └── AuditManagerException.php │ │ ├── AugmentedAIRuntime │ │ ├── AugmentedAIRuntimeClient.php │ │ └── Exception │ │ │ └── AugmentedAIRuntimeException.php │ │ ├── AutoScaling │ │ ├── AutoScalingClient.php │ │ └── Exception │ │ │ └── AutoScalingException.php │ │ ├── AutoScalingPlans │ │ ├── AutoScalingPlansClient.php │ │ └── Exception │ │ │ └── AutoScalingPlansException.php │ │ ├── AwsClient.php │ │ ├── AwsClientInterface.php │ │ ├── AwsClientTrait.php │ │ ├── Backup │ │ ├── BackupClient.php │ │ └── Exception │ │ │ └── BackupException.php │ │ ├── BackupGateway │ │ ├── BackupGatewayClient.php │ │ └── Exception │ │ │ └── BackupGatewayException.php │ │ ├── BackupStorage │ │ ├── BackupStorageClient.php │ │ └── Exception │ │ │ └── BackupStorageException.php │ │ ├── Batch │ │ ├── BatchClient.php │ │ └── Exception │ │ │ └── BatchException.php │ │ ├── BillingConductor │ │ ├── BillingConductorClient.php │ │ └── Exception │ │ │ └── BillingConductorException.php │ │ ├── Braket │ │ ├── BraketClient.php │ │ └── Exception │ │ │ └── BraketException.php │ │ ├── Budgets │ │ ├── BudgetsClient.php │ │ └── Exception │ │ │ └── BudgetsException.php │ │ ├── CacheInterface.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── CodeDeploy │ │ ├── CodeDeployClient.php │ │ └── Exception │ │ │ └── CodeDeployException.php │ │ ├── CodeGuruProfiler │ │ ├── CodeGuruProfilerClient.php │ │ └── Exception │ │ │ └── CodeGuruProfilerException.php │ │ ├── CodeGuruReviewer │ │ ├── CodeGuruReviewerClient.php │ │ └── Exception │ │ │ └── CodeGuruReviewerException.php │ │ ├── CodePipeline │ │ ├── CodePipelineClient.php │ │ └── Exception │ │ │ └── CodePipelineException.php │ │ ├── CodeStar │ │ ├── CodeStarClient.php │ │ └── Exception │ │ │ └── CodeStarException.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 │ │ ├── ConfigurationProviderInterface.php │ │ ├── Connect │ │ ├── ConnectClient.php │ │ └── Exception │ │ │ └── ConnectException.php │ │ ├── ConnectCampaignService │ │ ├── ConnectCampaignServiceClient.php │ │ └── Exception │ │ │ └── ConnectCampaignServiceException.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 │ │ ├── ControlTower │ │ ├── ControlTowerClient.php │ │ └── Exception │ │ │ └── ControlTowerException.php │ │ ├── CostExplorer │ │ ├── CostExplorerClient.php │ │ └── Exception │ │ │ └── CostExplorerException.php │ │ ├── CostandUsageReportService │ │ ├── CostandUsageReportServiceClient.php │ │ └── Exception │ │ │ └── CostandUsageReportServiceException.php │ │ ├── Credentials │ │ ├── AssumeRoleCredentialProvider.php │ │ ├── AssumeRoleWithWebIdentityCredentialProvider.php │ │ ├── CredentialProvider.php │ │ ├── Credentials.php │ │ ├── CredentialsInterface.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 │ │ └── Polyfill │ │ │ ├── AesGcm.php │ │ │ ├── ByteArray.php │ │ │ ├── Gmac.php │ │ │ ├── Key.php │ │ │ └── NeedsTrait.php │ │ ├── CustomerProfiles │ │ ├── CustomerProfilesClient.php │ │ └── Exception │ │ │ └── CustomerProfilesException.php │ │ ├── DAX │ │ ├── DAXClient.php │ │ └── Exception │ │ │ └── DAXException.php │ │ ├── DLM │ │ ├── DLMClient.php │ │ └── Exception │ │ │ └── DLMException.php │ │ ├── DataExchange │ │ ├── DataExchangeClient.php │ │ └── Exception │ │ │ └── DataExchangeException.php │ │ ├── DataPipeline │ │ ├── DataPipelineClient.php │ │ └── Exception │ │ │ └── DataPipelineException.php │ │ ├── DataSync │ │ ├── DataSyncClient.php │ │ └── Exception │ │ │ └── DataSyncException.php │ │ ├── DatabaseMigrationService │ │ ├── DatabaseMigrationServiceClient.php │ │ └── Exception │ │ │ └── DatabaseMigrationServiceException.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── ElasticInference │ │ ├── ElasticInferenceClient.php │ │ └── Exception │ │ │ └── ElasticInferenceException.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 │ │ ├── EndpointV2SerializerTrait.php │ │ ├── Rule │ │ │ ├── AbstractRule.php │ │ │ ├── EndpointRule.php │ │ │ ├── ErrorRule.php │ │ │ ├── RuleCreator.php │ │ │ └── TreeRule.php │ │ └── Ruleset │ │ │ ├── Ruleset.php │ │ │ ├── RulesetEndpoint.php │ │ │ ├── RulesetParameter.php │ │ │ └── RulesetStandardLibrary.php │ │ ├── EventBridge │ │ ├── EventBridgeClient.php │ │ ├── EventBridgeEndpointMiddleware.php │ │ └── Exception │ │ │ └── EventBridgeException.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 │ │ ├── GameLift │ │ ├── Exception │ │ │ └── GameLiftException.php │ │ └── GameLiftClient.php │ │ ├── GameSparks │ │ ├── Exception │ │ │ └── GameSparksException.php │ │ └── GameSparksClient.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 │ │ ├── GuzzleV5 │ │ │ ├── GuzzleHandler.php │ │ │ ├── GuzzleStream.php │ │ │ └── PsrStream.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 │ │ ├── Honeycode │ │ ├── Exception │ │ │ └── HoneycodeException.php │ │ └── HoneycodeClient.php │ │ ├── IVS │ │ ├── Exception │ │ │ └── IVSException.php │ │ └── IVSClient.php │ │ ├── IVSRealTime │ │ ├── Exception │ │ │ └── IVSRealTimeException.php │ │ └── IVSRealTimeClient.php │ │ ├── Iam │ │ ├── Exception │ │ │ └── IamException.php │ │ └── IamClient.php │ │ ├── IdempotencyTokenMiddleware.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 │ │ ├── InternetMonitor │ │ ├── Exception │ │ │ └── InternetMonitorException.php │ │ └── InternetMonitorClient.php │ │ ├── IoT1ClickDevicesService │ │ ├── Exception │ │ │ └── IoT1ClickDevicesServiceException.php │ │ └── IoT1ClickDevicesServiceClient.php │ │ ├── IoT1ClickProjects │ │ ├── Exception │ │ │ └── IoT1ClickProjectsException.php │ │ └── IoT1ClickProjectsClient.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 │ │ ├── IoTRoboRunner │ │ ├── Exception │ │ │ └── IoTRoboRunnerException.php │ │ └── IoTRoboRunnerClient.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── MQ │ │ ├── Exception │ │ │ └── MQException.php │ │ └── MQClient.php │ │ ├── MTurk │ │ ├── Exception │ │ │ └── MTurkException.php │ │ └── MTurkClient.php │ │ ├── MWAA │ │ ├── Exception │ │ │ └── MWAAException.php │ │ └── MWAAClient.php │ │ ├── MachineLearning │ │ ├── Exception │ │ │ └── MachineLearningException.php │ │ └── MachineLearningClient.php │ │ ├── Macie │ │ ├── Exception │ │ │ └── MacieException.php │ │ └── MacieClient.php │ │ ├── Macie2 │ │ ├── Exception │ │ │ └── Macie2Exception.php │ │ └── Macie2Client.php │ │ ├── MainframeModernization │ │ ├── Exception │ │ │ └── MainframeModernizationException.php │ │ └── MainframeModernizationClient.php │ │ ├── ManagedBlockchain │ │ ├── Exception │ │ │ └── ManagedBlockchainException.php │ │ └── ManagedBlockchainClient.php │ │ ├── ManagedGrafana │ │ ├── Exception │ │ │ └── ManagedGrafanaException.php │ │ └── ManagedGrafanaClient.php │ │ ├── MarketplaceCatalog │ │ ├── Exception │ │ │ └── MarketplaceCatalogException.php │ │ └── MarketplaceCatalogClient.php │ │ ├── MarketplaceCommerceAnalytics │ │ ├── Exception │ │ │ └── MarketplaceCommerceAnalyticsException.php │ │ └── MarketplaceCommerceAnalyticsClient.php │ │ ├── MarketplaceEntitlementService │ │ ├── Exception │ │ │ └── MarketplaceEntitlementServiceException.php │ │ └── MarketplaceEntitlementServiceClient.php │ │ ├── MarketplaceMetering │ │ ├── Exception │ │ │ └── MarketplaceMeteringException.php │ │ └── MarketplaceMeteringClient.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 │ │ ├── MediaPackageVod │ │ ├── Exception │ │ │ └── MediaPackageVodException.php │ │ └── MediaPackageVodClient.php │ │ ├── MediaStore │ │ ├── Exception │ │ │ └── MediaStoreException.php │ │ └── MediaStoreClient.php │ │ ├── MediaStoreData │ │ ├── Exception │ │ │ └── MediaStoreDataException.php │ │ └── MediaStoreDataClient.php │ │ ├── MediaTailor │ │ ├── Exception │ │ │ └── MediaTailorException.php │ │ └── MediaTailorClient.php │ │ ├── MemoryDB │ │ ├── Exception │ │ │ └── MemoryDBException.php │ │ └── MemoryDBClient.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 │ │ ├── Mobile │ │ ├── Exception │ │ │ └── MobileException.php │ │ └── MobileClient.php │ │ ├── MockHandler.php │ │ ├── MonitoringEventsInterface.php │ │ ├── MultiRegionClient.php │ │ ├── Multipart │ │ ├── AbstractUploadManager.php │ │ ├── AbstractUploader.php │ │ └── UploadState.php │ │ ├── Neptune │ │ ├── Exception │ │ │ └── NeptuneException.php │ │ └── NeptuneClient.php │ │ ├── NetworkFirewall │ │ ├── Exception │ │ │ └── NetworkFirewallException.php │ │ └── NetworkFirewallClient.php │ │ ├── NetworkManager │ │ ├── Exception │ │ │ └── NetworkManagerException.php │ │ └── NetworkManagerClient.php │ │ ├── NimbleStudio │ │ ├── Exception │ │ │ └── NimbleStudioException.php │ │ └── NimbleStudioClient.php │ │ ├── OAM │ │ ├── Exception │ │ │ └── OAMException.php │ │ └── OAMClient.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 │ │ ├── PI │ │ ├── Exception │ │ │ └── PIException.php │ │ └── PIClient.php │ │ ├── Panorama │ │ ├── Exception │ │ │ └── PanoramaException.php │ │ └── PanoramaClient.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 │ │ ├── PrivateNetworks │ │ ├── Exception │ │ │ └── PrivateNetworksException.php │ │ └── PrivateNetworksClient.php │ │ ├── PrometheusService │ │ ├── Exception │ │ │ └── PrometheusServiceException.php │ │ └── PrometheusServiceClient.php │ │ ├── Proton │ │ ├── Exception │ │ │ └── ProtonException.php │ │ └── ProtonClient.php │ │ ├── Psr16CacheAdapter.php │ │ ├── PsrCacheAdapter.php │ │ ├── QLDB │ │ ├── Exception │ │ │ └── QLDBException.php │ │ └── QLDBClient.php │ │ ├── QLDBSession │ │ ├── Exception │ │ │ └── QLDBSessionException.php │ │ └── QLDBSessionClient.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── GetBucketLocationParser.php │ │ ├── MultipartCopy.php │ │ ├── MultipartUploader.php │ │ ├── MultipartUploadingTrait.php │ │ ├── ObjectCopier.php │ │ ├── ObjectUploader.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 │ │ ├── SSMContacts │ │ ├── Exception │ │ │ └── SSMContactsException.php │ │ └── SSMContactsClient.php │ │ ├── SSMIncidents │ │ ├── Exception │ │ │ └── SSMIncidentsException.php │ │ └── SSMIncidentsClient.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Support │ │ ├── Exception │ │ │ └── SupportException.php │ │ └── SupportClient.php │ │ ├── SupportApp │ │ ├── Exception │ │ │ └── SupportAppException.php │ │ └── SupportAppClient.php │ │ ├── Swf │ │ ├── Exception │ │ │ └── SwfException.php │ │ └── SwfClient.php │ │ ├── Synthetics │ │ ├── Exception │ │ │ └── SyntheticsException.php │ │ └── SyntheticsClient.php │ │ ├── Textract │ │ ├── Exception │ │ │ └── TextractException.php │ │ └── TextractClient.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 │ │ ├── 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 │ │ ├── WorkLink │ │ ├── Exception │ │ │ └── WorkLinkException.php │ │ └── WorkLinkClient.php │ │ ├── WorkMail │ │ ├── Exception │ │ │ └── WorkMailException.php │ │ └── WorkMailClient.php │ │ ├── WorkMailMessageFlow │ │ ├── Exception │ │ │ └── WorkMailMessageFlowException.php │ │ └── WorkMailMessageFlowClient.php │ │ ├── WorkSpaces │ │ ├── Exception │ │ │ └── WorkSpacesException.php │ │ └── WorkSpacesClient.php │ │ ├── WorkSpacesWeb │ │ ├── Exception │ │ │ └── WorkSpacesWebException.php │ │ └── WorkSpacesWebClient.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-pca │ │ │ └── 2017-08-22 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.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 │ │ ├── alexaforbusiness │ │ │ └── 2017-11-09 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── 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 │ │ ├── appconfigdata │ │ │ └── 2021-11-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── 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 │ │ ├── arc-zonal-shift │ │ │ └── 2022-10-30 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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-plans │ │ │ └── 2018-01-06 │ │ │ │ ├── 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 │ │ ├── backup-gateway │ │ │ └── 2021-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── backup │ │ │ └── 2018-11-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── backupstorage │ │ │ └── 2018-04-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── batch │ │ │ └── 2016-08-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.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 │ │ ├── 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 │ │ ├── chime │ │ │ └── 2018-05-01 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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-data │ │ │ └── 2021-08-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── cloudtrail │ │ │ └── 2013-11-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── codestar │ │ │ └── 2017-04-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.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-contact-lens │ │ │ └── 2020-08-21 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── connect │ │ │ └── 2017-08-08 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── controltower │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── dax │ │ │ └── 2017-04-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── 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-elastic │ │ │ └── 2022-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── 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 │ │ ├── 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-instance-connect │ │ │ └── 2018-04-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 │ │ ├── ecr-public │ │ │ └── 2020-10-30 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── elastic-inference │ │ │ └── 2017-07-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── 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 │ │ ├── finspace-data │ │ │ └── 2020-07-13 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── finspace │ │ │ └── 2021-03-12 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── gamesparks │ │ │ └── 2021-08-17 │ │ │ │ ├── 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 │ │ ├── honeycode │ │ │ └── 2020-03-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 │ │ ├── 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 │ │ ├── iot-jobs-data │ │ │ └── 2017-09-29 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iot-roborunner │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── iot │ │ │ └── 2015-05-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── iot1click-devices │ │ │ └── 2018-05-14 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── iot1click-projects │ │ │ └── 2018-05-14 │ │ │ │ ├── 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-data │ │ │ └── 2018-10-23 │ │ │ │ ├── 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 │ │ ├── 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-realtime │ │ │ └── 2020-07-14 │ │ │ │ ├── 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 │ │ ├── ivschat │ │ │ └── 2020-07-14 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── kendra-ranking │ │ │ └── 2022-10-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── kendra │ │ │ └── 2019-02-03 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── lex-models │ │ │ └── 2017-04-19 │ │ │ │ ├── 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 │ │ ├── license-manager │ │ │ └── 2018-08-01 │ │ │ │ ├── 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 │ │ ├── macie │ │ │ └── 2017-12-19 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── macie2 │ │ │ └── 2020-01-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── managedblockchain │ │ │ └── 2018-09-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── manifest.json.php │ │ ├── marketplace-catalog │ │ │ └── 2018-09-17 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ │ │ └── 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-vod │ │ │ └── 2018-11-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── mediapackage │ │ │ └── 2017-10-12 │ │ │ │ ├── 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 │ │ ├── mediastore │ │ │ └── 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 │ │ ├── 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 │ │ ├── mobile │ │ │ └── 2017-07-01 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── network-firewall │ │ │ └── 2020-11-12 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── networkmanager │ │ │ └── 2019-07-05 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── nimble │ │ │ └── 2020-08-01 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── oam │ │ │ └── 2022-06-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── omics │ │ │ └── 2022-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── personalize │ │ │ └── 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-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 │ │ ├── pinpoint │ │ │ └── 2016-12-01 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── pipes │ │ │ └── 2015-10-07 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── privatenetworks │ │ │ └── 2021-12-03 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── defaults-1.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── proton │ │ │ └── 2020-07-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.json.php │ │ ├── qldb-session │ │ │ └── 2019-07-11 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── qldb │ │ │ └── 2019-01-02 │ │ │ │ ├── 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-data │ │ │ └── 2018-08-01 │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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-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 │ │ ├── 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 │ │ ├── route53domains │ │ │ └── 2014-05-15 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.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.v2 │ │ │ └── 2020-08-07 │ │ │ │ ├── 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.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 │ │ ├── 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 │ │ ├── sagemaker │ │ │ └── 2017-07-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── waiters-2.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 │ │ ├── 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-appregistry │ │ │ └── 2020-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 │ │ ├── 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-voice │ │ │ └── 2018-09-05 │ │ │ │ ├── api-2.json.php │ │ │ │ └── endpoint-rule-set-1.json.php │ │ ├── sms │ │ │ └── 2016-10-24 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.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 │ │ ├── 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-contacts │ │ │ └── 2021-05-03 │ │ │ │ ├── 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-sap │ │ │ └── 2018-05-10 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.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 │ │ ├── sso-admin │ │ │ └── 2020-07-20 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── sso-oidc │ │ │ └── 2019-06-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 │ │ ├── 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 │ │ ├── support-app │ │ │ └── 2021-08-20 │ │ │ │ ├── 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 │ │ ├── swf │ │ │ └── 2012-01-25 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── synthetics │ │ │ └── 2017-10-11 │ │ │ │ ├── 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-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 │ │ ├── voice-id │ │ │ └── 2021-09-27 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ └── paginators-1.json.php │ │ ├── waf-regional │ │ │ └── 2016-11-28 │ │ │ │ ├── api-2.json.php │ │ │ │ ├── endpoint-rule-set-1.json.php │ │ │ │ ├── paginators-1.json.php │ │ │ │ └── smoke.json.php │ │ ├── waf │ │ │ └── 2015-08-24 │ │ │ │ ├── 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 │ │ ├── worklink │ │ │ └── 2018-09-25 │ │ │ │ ├── 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-web │ │ │ └── 2020-07-08 │ │ │ │ ├── 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 │ │ └── 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 ├── bin │ ├── carbon │ ├── jp.php │ ├── patch-type-declarations │ ├── php-parse │ ├── phpunit │ ├── pint │ ├── psysh │ ├── sail │ ├── var-dump-server │ └── yaml-lint ├── brick │ └── math │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── BigDecimal.php │ │ ├── BigInteger.php │ │ ├── BigNumber.php │ │ ├── BigRational.php │ │ ├── Exception │ │ ├── DivisionByZeroException.php │ │ ├── IntegerOverflowException.php │ │ ├── MathException.php │ │ ├── NegativeNumberException.php │ │ ├── NumberFormatException.php │ │ └── RoundingNecessaryException.php │ │ ├── Internal │ │ ├── Calculator.php │ │ └── Calculator │ │ │ ├── BcMathCalculator.php │ │ │ ├── GmpCalculator.php │ │ │ └── NativeCalculator.php │ │ └── RoundingMode.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 │ ├── installed.json │ ├── installed.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 │ ├── deprecations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Deprecations │ │ │ │ ├── Deprecation.php │ │ │ │ └── PHPUnit │ │ │ │ └── VerifyDeprecations.php │ │ └── phpcs.xml │ ├── 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 │ ├── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ └── sidebar.rst │ │ ├── psalm.xml │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractLexer.php │ │ └── Token.php ├── dragonmantank │ └── cron-expression │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── 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 │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── MessageIDParser.php │ │ ├── Parser.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 │ │ ├── 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 ├── ezyang │ └── htmlpurifier │ │ ├── CREDITS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ └── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.Forms.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ └── messages │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Comment.php │ │ ├── Element.php │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ ├── nntp.php │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php ├── fakerphp │ └── faker │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm.baseline.xml │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── clipboard.min.js │ │ │ ├── prism.js │ │ │ ├── whoops.base.js │ │ │ └── zepto.min.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 ├── firebase │ └── php-jwt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── CachedKeySet.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ ├── Key.php │ │ └── SignatureInvalidException.php ├── fruitcake │ └── php-cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CorsService.php │ │ └── Exceptions │ │ └── InvalidOptionException.php ├── google │ └── protobuf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── GPBMetadata │ │ └── Google │ │ │ └── Protobuf │ │ │ ├── Any.php │ │ │ ├── Api.php │ │ │ ├── Duration.php │ │ │ ├── FieldMask.php │ │ │ ├── GPBEmpty.php │ │ │ ├── Internal │ │ │ └── Descriptor.php │ │ │ ├── SourceContext.php │ │ │ ├── Struct.php │ │ │ ├── Timestamp.php │ │ │ ├── Type.php │ │ │ └── Wrappers.php │ │ ├── Google │ │ └── Protobuf │ │ │ ├── Any.php │ │ │ ├── Api.php │ │ │ ├── BoolValue.php │ │ │ ├── BytesValue.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorPool.php │ │ │ ├── DoubleValue.php │ │ │ ├── Duration.php │ │ │ ├── Enum.php │ │ │ ├── EnumDescriptor.php │ │ │ ├── EnumValue.php │ │ │ ├── EnumValueDescriptor.php │ │ │ ├── Field.php │ │ │ ├── Field │ │ │ ├── Cardinality.php │ │ │ └── Kind.php │ │ │ ├── FieldDescriptor.php │ │ │ ├── FieldMask.php │ │ │ ├── Field_Cardinality.php │ │ │ ├── Field_Kind.php │ │ │ ├── FloatValue.php │ │ │ ├── GPBEmpty.php │ │ │ ├── Int32Value.php │ │ │ ├── Int64Value.php │ │ │ ├── Internal │ │ │ ├── AnyBase.php │ │ │ ├── CodedInputStream.php │ │ │ ├── CodedOutputStream.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorPool.php │ │ │ ├── DescriptorProto.php │ │ │ ├── DescriptorProto │ │ │ │ ├── ExtensionRange.php │ │ │ │ └── ReservedRange.php │ │ │ ├── DescriptorProto_ExtensionRange.php │ │ │ ├── DescriptorProto_ReservedRange.php │ │ │ ├── EnumBuilderContext.php │ │ │ ├── EnumDescriptor.php │ │ │ ├── EnumDescriptorProto.php │ │ │ ├── EnumDescriptorProto │ │ │ │ └── EnumReservedRange.php │ │ │ ├── EnumDescriptorProto_EnumReservedRange.php │ │ │ ├── EnumOptions.php │ │ │ ├── EnumValueDescriptorProto.php │ │ │ ├── EnumValueOptions.php │ │ │ ├── ExtensionRangeOptions.php │ │ │ ├── FieldDescriptor.php │ │ │ ├── FieldDescriptorProto.php │ │ │ ├── FieldDescriptorProto │ │ │ │ ├── Label.php │ │ │ │ └── Type.php │ │ │ ├── FieldDescriptorProto_Label.php │ │ │ ├── FieldDescriptorProto_Type.php │ │ │ ├── FieldOptions.php │ │ │ ├── FieldOptions │ │ │ │ ├── CType.php │ │ │ │ └── JSType.php │ │ │ ├── FieldOptions_CType.php │ │ │ ├── FieldOptions_JSType.php │ │ │ ├── FileDescriptor.php │ │ │ ├── FileDescriptorProto.php │ │ │ ├── FileDescriptorSet.php │ │ │ ├── FileOptions.php │ │ │ ├── FileOptions │ │ │ │ └── OptimizeMode.php │ │ │ ├── FileOptions_OptimizeMode.php │ │ │ ├── GPBDecodeException.php │ │ │ ├── GPBJsonWire.php │ │ │ ├── GPBLabel.php │ │ │ ├── GPBType.php │ │ │ ├── GPBUtil.php │ │ │ ├── GPBWire.php │ │ │ ├── GPBWireType.php │ │ │ ├── GeneratedCodeInfo.php │ │ │ ├── GeneratedCodeInfo │ │ │ │ └── Annotation.php │ │ │ ├── GeneratedCodeInfo_Annotation.php │ │ │ ├── GetPublicDescriptorTrait.php │ │ │ ├── HasPublicDescriptorTrait.php │ │ │ ├── MapEntry.php │ │ │ ├── MapField.php │ │ │ ├── MapFieldIter.php │ │ │ ├── Message.php │ │ │ ├── MessageBuilderContext.php │ │ │ ├── MessageOptions.php │ │ │ ├── MethodDescriptorProto.php │ │ │ ├── MethodOptions.php │ │ │ ├── MethodOptions │ │ │ │ └── IdempotencyLevel.php │ │ │ ├── MethodOptions_IdempotencyLevel.php │ │ │ ├── OneofDescriptor.php │ │ │ ├── OneofDescriptorProto.php │ │ │ ├── OneofField.php │ │ │ ├── OneofOptions.php │ │ │ ├── RawInputStream.php │ │ │ ├── RepeatedField.php │ │ │ ├── RepeatedFieldIter.php │ │ │ ├── ServiceDescriptorProto.php │ │ │ ├── ServiceOptions.php │ │ │ ├── SourceCodeInfo.php │ │ │ ├── SourceCodeInfo │ │ │ │ └── Location.php │ │ │ ├── SourceCodeInfo_Location.php │ │ │ ├── TimestampBase.php │ │ │ ├── UninterpretedOption.php │ │ │ ├── UninterpretedOption │ │ │ │ └── NamePart.php │ │ │ └── UninterpretedOption_NamePart.php │ │ │ ├── ListValue.php │ │ │ ├── Method.php │ │ │ ├── Mixin.php │ │ │ ├── NullValue.php │ │ │ ├── OneofDescriptor.php │ │ │ ├── Option.php │ │ │ ├── SourceContext.php │ │ │ ├── StringValue.php │ │ │ ├── Struct.php │ │ │ ├── Syntax.php │ │ │ ├── Timestamp.php │ │ │ ├── Type.php │ │ │ ├── UInt32Value.php │ │ │ ├── UInt64Value.php │ │ │ └── Value.php │ │ └── phpdoc.dist.xml ├── graham-campbell │ └── 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 │ │ │ ├── functions.php │ │ │ └── functions_include.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 ├── hamcrest │ └── hamcrest-php │ │ ├── .coveralls.yml │ │ ├── .gush.yml │ │ ├── .travis.yml │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── generator │ │ ├── FactoryCall.php │ │ ├── FactoryClass.php │ │ ├── FactoryFile.php │ │ ├── FactoryGenerator.php │ │ ├── FactoryMethod.php │ │ ├── FactoryParameter.php │ │ ├── GlobalFunctionFile.php │ │ ├── StaticMethodFile.php │ │ ├── parts │ │ │ ├── file_header.txt │ │ │ ├── functions_footer.txt │ │ │ ├── functions_header.txt │ │ │ ├── functions_imports.txt │ │ │ ├── matchers_footer.txt │ │ │ ├── matchers_header.txt │ │ │ └── matchers_imports.txt │ │ └── run.php │ │ ├── hamcrest │ │ ├── Hamcrest.php │ │ └── Hamcrest │ │ │ ├── Arrays │ │ │ ├── IsArray.php │ │ │ ├── IsArrayContaining.php │ │ │ ├── IsArrayContainingInAnyOrder.php │ │ │ ├── IsArrayContainingInOrder.php │ │ │ ├── IsArrayContainingKey.php │ │ │ ├── IsArrayContainingKeyValuePair.php │ │ │ ├── IsArrayWithSize.php │ │ │ ├── MatchingOnce.php │ │ │ └── SeriesMatchingOnce.php │ │ │ ├── AssertionError.php │ │ │ ├── BaseDescription.php │ │ │ ├── BaseMatcher.php │ │ │ ├── Collection │ │ │ ├── IsEmptyTraversable.php │ │ │ └── IsTraversableWithSize.php │ │ │ ├── Core │ │ │ ├── AllOf.php │ │ │ ├── AnyOf.php │ │ │ ├── CombinableMatcher.php │ │ │ ├── DescribedAs.php │ │ │ ├── Every.php │ │ │ ├── HasToString.php │ │ │ ├── Is.php │ │ │ ├── IsAnything.php │ │ │ ├── IsCollectionContaining.php │ │ │ ├── IsEqual.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsNot.php │ │ │ ├── IsNull.php │ │ │ ├── IsSame.php │ │ │ ├── IsTypeOf.php │ │ │ ├── Set.php │ │ │ └── ShortcutCombination.php │ │ │ ├── Description.php │ │ │ ├── DiagnosingMatcher.php │ │ │ ├── FeatureMatcher.php │ │ │ ├── Internal │ │ │ └── SelfDescribingValue.php │ │ │ ├── Matcher.php │ │ │ ├── MatcherAssert.php │ │ │ ├── Matchers.php │ │ │ ├── NullDescription.php │ │ │ ├── Number │ │ │ ├── IsCloseTo.php │ │ │ └── OrderingComparison.php │ │ │ ├── SelfDescribing.php │ │ │ ├── StringDescription.php │ │ │ ├── Text │ │ │ ├── IsEmptyString.php │ │ │ ├── IsEqualIgnoringCase.php │ │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ │ ├── MatchesPattern.php │ │ │ ├── StringContains.php │ │ │ ├── StringContainsIgnoringCase.php │ │ │ ├── StringContainsInOrder.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringStartsWith.php │ │ │ └── SubstringMatcher.php │ │ │ ├── Type │ │ │ ├── IsArray.php │ │ │ ├── IsBoolean.php │ │ │ ├── IsCallable.php │ │ │ ├── IsDouble.php │ │ │ ├── IsInteger.php │ │ │ ├── IsNumeric.php │ │ │ ├── IsObject.php │ │ │ ├── IsResource.php │ │ │ ├── IsScalar.php │ │ │ └── IsString.php │ │ │ ├── TypeSafeDiagnosingMatcher.php │ │ │ ├── TypeSafeMatcher.php │ │ │ ├── Util.php │ │ │ └── Xml │ │ │ └── HasXPath.php │ │ └── tests │ │ ├── Hamcrest │ │ ├── AbstractMatcherTest.php │ │ ├── Array │ │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ │ ├── IsArrayContainingInOrderTest.php │ │ │ ├── IsArrayContainingKeyTest.php │ │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ │ ├── IsArrayContainingTest.php │ │ │ ├── IsArrayTest.php │ │ │ └── IsArrayWithSizeTest.php │ │ ├── BaseMatcherTest.php │ │ ├── Collection │ │ │ ├── IsEmptyTraversableTest.php │ │ │ └── IsTraversableWithSizeTest.php │ │ ├── Core │ │ │ ├── AllOfTest.php │ │ │ ├── AnyOfTest.php │ │ │ ├── CombinableMatcherTest.php │ │ │ ├── DescribedAsTest.php │ │ │ ├── EveryTest.php │ │ │ ├── HasToStringTest.php │ │ │ ├── IsAnythingTest.php │ │ │ ├── IsCollectionContainingTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsInstanceOfTest.php │ │ │ ├── IsNotTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsSameTest.php │ │ │ ├── IsTest.php │ │ │ ├── IsTypeOfTest.php │ │ │ ├── SampleBaseClass.php │ │ │ ├── SampleSubClass.php │ │ │ └── SetTest.php │ │ ├── FeatureMatcherTest.php │ │ ├── InvokedMatcherTest.php │ │ ├── MatcherAssertTest.php │ │ ├── Number │ │ │ ├── IsCloseToTest.php │ │ │ └── OrderingComparisonTest.php │ │ ├── StringDescriptionTest.php │ │ ├── Text │ │ │ ├── IsEmptyStringTest.php │ │ │ ├── IsEqualIgnoringCaseTest.php │ │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ │ ├── MatchesPatternTest.php │ │ │ ├── StringContainsIgnoringCaseTest.php │ │ │ ├── StringContainsInOrderTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ └── StringStartsWithTest.php │ │ ├── Type │ │ │ ├── IsArrayTest.php │ │ │ ├── IsBooleanTest.php │ │ │ ├── IsCallableTest.php │ │ │ ├── IsDoubleTest.php │ │ │ ├── IsIntegerTest.php │ │ │ ├── IsNumericTest.php │ │ │ ├── IsObjectTest.php │ │ │ ├── IsResourceTest.php │ │ │ ├── IsScalarTest.php │ │ │ └── IsStringTest.php │ │ ├── UtilTest.php │ │ └── Xml │ │ │ └── HasXPathTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml.dist ├── inertiajs │ └── inertia-laravel │ │ ├── LICENSE │ │ ├── _ide_helpers.php │ │ ├── composer.json │ │ ├── config │ │ └── inertia.php │ │ ├── helpers.php │ │ ├── readme.md │ │ ├── src │ │ ├── Commands │ │ │ ├── CreateMiddleware.php │ │ │ ├── StartSsr.php │ │ │ └── StopSsr.php │ │ ├── Controller.php │ │ ├── Directive.php │ │ ├── Inertia.php │ │ ├── LazyProp.php │ │ ├── Middleware.php │ │ ├── Response.php │ │ ├── ResponseFactory.php │ │ ├── ServiceProvider.php │ │ ├── Ssr │ │ │ ├── BundleDetector.php │ │ │ ├── Gateway.php │ │ │ ├── HttpGateway.php │ │ │ ├── Response.php │ │ │ └── SsrException.php │ │ └── Testing │ │ │ ├── Assert.php │ │ │ ├── AssertableInertia.php │ │ │ ├── Concerns │ │ │ ├── Debugging.php │ │ │ ├── Has.php │ │ │ ├── Interaction.php │ │ │ ├── Matching.php │ │ │ └── PageObject.php │ │ │ └── TestResponseMacros.php │ │ └── stubs │ │ └── middleware.stub ├── intervention │ └── image │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── provides.json │ │ └── src │ │ ├── Intervention │ │ └── Image │ │ │ ├── AbstractColor.php │ │ │ ├── AbstractDecoder.php │ │ │ ├── AbstractDriver.php │ │ │ ├── AbstractEncoder.php │ │ │ ├── AbstractFont.php │ │ │ ├── AbstractShape.php │ │ │ ├── Commands │ │ │ ├── AbstractCommand.php │ │ │ ├── Argument.php │ │ │ ├── ChecksumCommand.php │ │ │ ├── CircleCommand.php │ │ │ ├── EllipseCommand.php │ │ │ ├── ExifCommand.php │ │ │ ├── IptcCommand.php │ │ │ ├── LineCommand.php │ │ │ ├── OrientateCommand.php │ │ │ ├── PolygonCommand.php │ │ │ ├── PsrResponseCommand.php │ │ │ ├── RectangleCommand.php │ │ │ ├── ResponseCommand.php │ │ │ ├── StreamCommand.php │ │ │ └── TextCommand.php │ │ │ ├── Constraint.php │ │ │ ├── Exception │ │ │ ├── ImageException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingDependencyException.php │ │ │ ├── NotFoundException.php │ │ │ ├── NotReadableException.php │ │ │ ├── NotSupportedException.php │ │ │ ├── NotWritableException.php │ │ │ └── RuntimeException.php │ │ │ ├── Facades │ │ │ └── Image.php │ │ │ ├── File.php │ │ │ ├── Filters │ │ │ ├── DemoFilter.php │ │ │ └── FilterInterface.php │ │ │ ├── Gd │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Image.php │ │ │ ├── ImageManager.php │ │ │ ├── ImageManagerStatic.php │ │ │ ├── ImageServiceProvider.php │ │ │ ├── ImageServiceProviderLaravel4.php │ │ │ ├── ImageServiceProviderLaravelRecent.php │ │ │ ├── ImageServiceProviderLeague.php │ │ │ ├── ImageServiceProviderLumen.php │ │ │ ├── Imagick │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── ExifCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Point.php │ │ │ ├── Response.php │ │ │ └── Size.php │ │ └── config │ │ └── config.php ├── laravel │ ├── breeze │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── BreezeServiceProvider.php │ │ │ └── Console │ │ │ │ ├── InstallCommand.php │ │ │ │ ├── InstallsApiStack.php │ │ │ │ ├── InstallsBladeStack.php │ │ │ │ └── InstallsInertiaStacks.php │ │ └── stubs │ │ │ ├── api │ │ │ ├── app │ │ │ │ ├── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ │ └── Auth │ │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ ├── Middleware │ │ │ │ │ │ └── EnsureEmailIsVerified.php │ │ │ │ │ └── Requests │ │ │ │ │ │ └── Auth │ │ │ │ │ │ └── LoginRequest.php │ │ │ │ └── Providers │ │ │ │ │ └── AuthServiceProvider.php │ │ │ ├── config │ │ │ │ ├── cors.php │ │ │ │ └── sanctum.php │ │ │ ├── pest-tests │ │ │ │ ├── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ └── ExampleTest.php │ │ │ │ ├── Pest.php │ │ │ │ └── Unit │ │ │ │ │ └── ExampleTest.php │ │ │ ├── routes │ │ │ │ ├── api.php │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ └── tests │ │ │ │ └── Feature │ │ │ │ └── Auth │ │ │ │ ├── AuthenticationTest.php │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ ├── PasswordResetTest.php │ │ │ │ └── RegistrationTest.php │ │ │ ├── default │ │ │ ├── app │ │ │ │ ├── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ │ ├── ConfirmablePasswordController.php │ │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ │ ├── EmailVerificationPromptController.php │ │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ │ ├── PasswordController.php │ │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ │ └── ProfileController.php │ │ │ │ │ └── Requests │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── LoginRequest.php │ │ │ │ │ │ └── ProfileUpdateRequest.php │ │ │ │ └── View │ │ │ │ │ └── Components │ │ │ │ │ ├── AppLayout.php │ │ │ │ │ └── GuestLayout.php │ │ │ ├── pest-tests │ │ │ │ ├── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ ├── ExampleTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ │ ├── Pest.php │ │ │ │ └── Unit │ │ │ │ │ └── ExampleTest.php │ │ │ ├── postcss.config.js │ │ │ ├── resources │ │ │ │ ├── css │ │ │ │ │ └── app.css │ │ │ │ ├── js │ │ │ │ │ └── app.js │ │ │ │ └── views │ │ │ │ │ ├── auth │ │ │ │ │ ├── confirm-password.blade.php │ │ │ │ │ ├── forgot-password.blade.php │ │ │ │ │ ├── login.blade.php │ │ │ │ │ ├── register.blade.php │ │ │ │ │ ├── reset-password.blade.php │ │ │ │ │ └── verify-email.blade.php │ │ │ │ │ ├── components │ │ │ │ │ ├── application-logo.blade.php │ │ │ │ │ ├── auth-session-status.blade.php │ │ │ │ │ ├── danger-button.blade.php │ │ │ │ │ ├── dropdown-link.blade.php │ │ │ │ │ ├── dropdown.blade.php │ │ │ │ │ ├── input-error.blade.php │ │ │ │ │ ├── input-label.blade.php │ │ │ │ │ ├── modal.blade.php │ │ │ │ │ ├── nav-link.blade.php │ │ │ │ │ ├── primary-button.blade.php │ │ │ │ │ ├── responsive-nav-link.blade.php │ │ │ │ │ ├── secondary-button.blade.php │ │ │ │ │ └── text-input.blade.php │ │ │ │ │ ├── dashboard.blade.php │ │ │ │ │ ├── layouts │ │ │ │ │ ├── app.blade.php │ │ │ │ │ ├── guest.blade.php │ │ │ │ │ └── navigation.blade.php │ │ │ │ │ └── profile │ │ │ │ │ ├── edit.blade.php │ │ │ │ │ └── partials │ │ │ │ │ ├── delete-user-form.blade.php │ │ │ │ │ ├── update-password-form.blade.php │ │ │ │ │ └── update-profile-information-form.blade.php │ │ │ ├── routes │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ ├── tailwind.config.js │ │ │ ├── tests │ │ │ │ └── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ ├── EmailVerificationTest.php │ │ │ │ │ ├── PasswordConfirmationTest.php │ │ │ │ │ ├── PasswordResetTest.php │ │ │ │ │ ├── PasswordUpdateTest.php │ │ │ │ │ └── RegistrationTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ └── vite.config.js │ │ │ ├── inertia-common │ │ │ ├── app │ │ │ │ └── Http │ │ │ │ │ ├── Controllers │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── AuthenticatedSessionController.php │ │ │ │ │ │ ├── ConfirmablePasswordController.php │ │ │ │ │ │ ├── EmailVerificationNotificationController.php │ │ │ │ │ │ ├── EmailVerificationPromptController.php │ │ │ │ │ │ ├── NewPasswordController.php │ │ │ │ │ │ ├── PasswordController.php │ │ │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ │ │ ├── RegisteredUserController.php │ │ │ │ │ │ └── VerifyEmailController.php │ │ │ │ │ └── ProfileController.php │ │ │ │ │ └── Middleware │ │ │ │ │ └── HandleInertiaRequests.php │ │ │ ├── jsconfig.json │ │ │ ├── pest-tests │ │ │ │ └── Feature │ │ │ │ │ ├── Auth │ │ │ │ │ └── PasswordUpdateTest.php │ │ │ │ │ └── ProfileTest.php │ │ │ ├── routes │ │ │ │ ├── auth.php │ │ │ │ └── web.php │ │ │ ├── tailwind.config.js │ │ │ └── tests │ │ │ │ └── Feature │ │ │ │ ├── Auth │ │ │ │ └── PasswordUpdateTest.php │ │ │ │ └── ProfileTest.php │ │ │ ├── inertia-react │ │ │ ├── resources │ │ │ │ ├── js │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── ApplicationLogo.jsx │ │ │ │ │ │ ├── Checkbox.jsx │ │ │ │ │ │ ├── DangerButton.jsx │ │ │ │ │ │ ├── Dropdown.jsx │ │ │ │ │ │ ├── InputError.jsx │ │ │ │ │ │ ├── InputLabel.jsx │ │ │ │ │ │ ├── Modal.jsx │ │ │ │ │ │ ├── NavLink.jsx │ │ │ │ │ │ ├── PrimaryButton.jsx │ │ │ │ │ │ ├── ResponsiveNavLink.jsx │ │ │ │ │ │ ├── SecondaryButton.jsx │ │ │ │ │ │ └── TextInput.jsx │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── AuthenticatedLayout.jsx │ │ │ │ │ │ └── GuestLayout.jsx │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── ConfirmPassword.jsx │ │ │ │ │ │ │ ├── ForgotPassword.jsx │ │ │ │ │ │ │ ├── Login.jsx │ │ │ │ │ │ │ ├── Register.jsx │ │ │ │ │ │ │ ├── ResetPassword.jsx │ │ │ │ │ │ │ └── VerifyEmail.jsx │ │ │ │ │ │ ├── Dashboard.jsx │ │ │ │ │ │ ├── Profile │ │ │ │ │ │ │ ├── Edit.jsx │ │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ │ ├── DeleteUserForm.jsx │ │ │ │ │ │ │ │ ├── UpdatePasswordForm.jsx │ │ │ │ │ │ │ │ └── UpdateProfileInformationForm.jsx │ │ │ │ │ │ └── Welcome.jsx │ │ │ │ │ ├── app.jsx │ │ │ │ │ └── ssr.jsx │ │ │ │ └── views │ │ │ │ │ └── app.blade.php │ │ │ └── vite.config.js │ │ │ └── inertia-vue │ │ │ ├── resources │ │ │ ├── js │ │ │ │ ├── Components │ │ │ │ │ ├── ApplicationLogo.vue │ │ │ │ │ ├── Checkbox.vue │ │ │ │ │ ├── DangerButton.vue │ │ │ │ │ ├── Dropdown.vue │ │ │ │ │ ├── DropdownLink.vue │ │ │ │ │ ├── InputError.vue │ │ │ │ │ ├── InputLabel.vue │ │ │ │ │ ├── Modal.vue │ │ │ │ │ ├── NavLink.vue │ │ │ │ │ ├── PrimaryButton.vue │ │ │ │ │ ├── ResponsiveNavLink.vue │ │ │ │ │ ├── SecondaryButton.vue │ │ │ │ │ └── TextInput.vue │ │ │ │ ├── Layouts │ │ │ │ │ ├── AuthenticatedLayout.vue │ │ │ │ │ └── GuestLayout.vue │ │ │ │ ├── Pages │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── ConfirmPassword.vue │ │ │ │ │ │ ├── ForgotPassword.vue │ │ │ │ │ │ ├── Login.vue │ │ │ │ │ │ ├── Register.vue │ │ │ │ │ │ ├── ResetPassword.vue │ │ │ │ │ │ └── VerifyEmail.vue │ │ │ │ │ ├── Dashboard.vue │ │ │ │ │ ├── Profile │ │ │ │ │ │ ├── Edit.vue │ │ │ │ │ │ └── Partials │ │ │ │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ │ │ │ └── UpdateProfileInformationForm.vue │ │ │ │ │ └── Welcome.vue │ │ │ │ ├── app.js │ │ │ │ └── ssr.js │ │ │ └── views │ │ │ │ └── app.blade.php │ │ │ └── vite.config.js │ ├── framework │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.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 │ │ │ │ ├── Registered.php │ │ │ │ ├── Validated.php │ │ │ │ └── Verified.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── LICENSE.md │ │ │ ├── Listeners │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ ├── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ ├── Authorize.php │ │ │ │ ├── EnsureEmailIsVerified.php │ │ │ │ └── RequirePassword.php │ │ │ ├── MustVerifyEmail.php │ │ │ ├── Notifications │ │ │ │ ├── ResetPassword.php │ │ │ │ └── VerifyEmail.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── Recaller.php │ │ │ ├── RequestGuard.php │ │ │ ├── SessionGuard.php │ │ │ ├── TokenGuard.php │ │ │ └── composer.json │ │ │ ├── Broadcasting │ │ │ ├── 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 │ │ │ ├── DatabaseBatchRepository.php │ │ │ ├── Dispatcher.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 │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseLock.php │ │ │ ├── DatabaseStore.php │ │ │ ├── DynamoDbLock.php │ │ │ ├── DynamoDbStore.php │ │ │ ├── Events │ │ │ │ ├── CacheEvent.php │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.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 │ │ │ ├── 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 │ │ │ └── helpers.php │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── QuestionHelper.php │ │ │ ├── Scheduling │ │ │ │ ├── CacheAware.php │ │ │ │ ├── CacheEventMutex.php │ │ │ │ ├── CacheSchedulingMutex.php │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── CommandBuilder.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventMutex.php │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ ├── Schedule.php │ │ │ │ ├── ScheduleClearCacheCommand.php │ │ │ │ ├── ScheduleFinishCommand.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 │ │ │ │ │ ├── Task.php │ │ │ │ │ ├── TwoColumnDetail.php │ │ │ │ │ └── Warn.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── components │ │ │ │ ├── alert.php │ │ │ │ ├── bullet-list.php │ │ │ │ ├── line.php │ │ │ │ └── two-column-detail.php │ │ │ ├── Container │ │ │ ├── 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 │ │ │ ├── Config │ │ │ │ └── Repository.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ ├── Isolatable.php │ │ │ │ ├── Kernel.php │ │ │ │ └── PromptsForMissingInput.php │ │ │ ├── Container │ │ │ │ ├── BindingResolutionException.php │ │ │ │ ├── CircularDependencyException.php │ │ │ │ ├── Container.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 │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ ├── Encrypter.php │ │ │ │ └── StringEncrypter.php │ │ │ ├── Events │ │ │ │ └── Dispatcher.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── TableCommand.php │ │ │ │ └── WipeCommand.php │ │ │ ├── DBAL │ │ │ │ └── TimestampType.php │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DatabaseTransactionRecord.php │ │ │ ├── DatabaseTransactionsManager.php │ │ │ ├── DeadlockException.php │ │ │ ├── DetectsConcurrencyErrors.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── BroadcastableModelEventOccurred.php │ │ │ │ ├── BroadcastsEvents.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Casts │ │ │ │ │ ├── ArrayObject.php │ │ │ │ │ ├── AsArrayObject.php │ │ │ │ │ ├── AsCollection.php │ │ │ │ │ ├── AsEncryptedArrayObject.php │ │ │ │ │ ├── AsEncryptedCollection.php │ │ │ │ │ ├── AsEnumArrayObject.php │ │ │ │ │ ├── AsEnumCollection.php │ │ │ │ │ ├── AsStringable.php │ │ │ │ │ └── Attribute.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ ├── HasUlids.php │ │ │ │ │ ├── HasUuids.php │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ ├── Factories │ │ │ │ │ ├── BelongsToManyRelationship.php │ │ │ │ │ ├── BelongsToRelationship.php │ │ │ │ │ ├── CrossJoinSequence.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── HasFactory.php │ │ │ │ │ ├── Relationship.php │ │ │ │ │ └── Sequence.php │ │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ │ ├── InvalidCastException.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── MassPrunable.php │ │ │ │ ├── MissingAttributeException.php │ │ │ │ ├── Model.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 │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.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 │ │ │ │ ├── MigrationsStarted.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 │ │ │ ├── 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 │ │ │ ├── PDO │ │ │ │ ├── Concerns │ │ │ │ │ └── ConnectsToDatabase.php │ │ │ │ ├── Connection.php │ │ │ │ ├── MySqlDriver.php │ │ │ │ ├── PostgresDriver.php │ │ │ │ ├── SQLiteDriver.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ └── SqlServerDriver.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── IndexHint.php │ │ │ │ ├── JoinClause.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── README.md │ │ │ ├── RecordsNotFoundException.php │ │ │ ├── SQLiteConnection.php │ │ │ ├── SQLiteDatabaseDoesNotExistException.php │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── ColumnDefinition.php │ │ │ │ ├── ForeignIdColumnDefinition.php │ │ │ │ ├── ForeignKeyDefinition.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── IndexDefinition.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ ├── MySqlSchemaState.php │ │ │ │ ├── PostgresBuilder.php │ │ │ │ ├── PostgresSchemaState.php │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ ├── SchemaState.php │ │ │ │ ├── SqlServerBuilder.php │ │ │ │ └── SqliteSchemaState.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.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 │ │ │ ├── LockableFile.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ ├── ComposerScripts.php │ │ │ ├── Concerns │ │ │ │ └── ResolvesDumpSource.php │ │ │ ├── Console │ │ │ │ ├── AboutCommand.php │ │ │ │ ├── CastMakeCommand.php │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── CliDumper.php │ │ │ │ ├── ClosureCommand.php │ │ │ │ ├── ComponentMakeCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DocsCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EnvironmentDecryptCommand.php │ │ │ │ ├── EnvironmentEncryptCommand.php │ │ │ │ ├── EventCacheCommand.php │ │ │ │ ├── EventClearCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventListCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.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 │ │ │ │ ├── ShowModelCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── StubPublishCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── cast.inbound.stub │ │ │ │ │ ├── cast.stub │ │ │ │ │ ├── channel.stub │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── job.queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-duck.stub │ │ │ │ │ ├── listener-queued-duck.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.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.invokable.implicit.stub │ │ │ │ │ ├── rule.invokable.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── scope.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ ├── test.unit.stub │ │ │ │ │ └── view-component.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Events │ │ │ │ ├── DiscoverEvents.php │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── LocaleUpdated.php │ │ │ │ ├── MaintenanceModeDisabled.php │ │ │ │ ├── MaintenanceModeEnabled.php │ │ │ │ ├── PublishingStubs.php │ │ │ │ └── VendorTagPublished.php │ │ │ ├── Exceptions │ │ │ │ ├── Handler.php │ │ │ │ ├── RegisterErrorViewPaths.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 │ │ │ │ ├── Exceptions │ │ │ │ │ └── MaintenanceModeException.php │ │ │ │ ├── FormRequest.php │ │ │ │ ├── HtmlDumper.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── MaintenanceModeBypassCookie.php │ │ │ │ └── Middleware │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Inspiring.php │ │ │ ├── MaintenanceModeManager.php │ │ │ ├── Mix.php │ │ │ ├── PackageManifest.php │ │ │ ├── Precognition.php │ │ │ ├── ProviderRepository.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ └── FoundationServiceProvider.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 │ │ │ │ │ ├── InteractsWithTime.php │ │ │ │ │ ├── InteractsWithViews.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── DatabaseTruncation.php │ │ │ │ ├── LazilyRefreshDatabase.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── Traits │ │ │ │ │ └── CanConfigureMigrationCommands.php │ │ │ │ ├── WithFaker.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ ├── WithoutMiddleware.php │ │ │ │ └── Wormhole.php │ │ │ ├── Validation │ │ │ │ └── ValidatesRequests.php │ │ │ ├── Vite.php │ │ │ ├── helpers.php │ │ │ ├── resources │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── Events │ │ │ │ └── MessageLogged.php │ │ │ ├── LICENSE.md │ │ │ ├── LogManager.php │ │ │ ├── LogServiceProvider.php │ │ │ ├── Logger.php │ │ │ ├── ParsesLogConfiguration.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ ├── Transport │ │ │ │ ├── ArrayTransport.php │ │ │ │ ├── LogTransport.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 │ │ │ ├── Queue │ │ │ ├── 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 │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ ├── JobQueued.php │ │ │ │ ├── JobReleasedAfterException.php │ │ │ │ ├── JobRetryRequested.php │ │ │ │ ├── Looping.php │ │ │ │ ├── QueueBusy.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── DatabaseUuidFailedJobProvider.php │ │ │ │ ├── DynamoDbFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ ├── NullFailedJobProvider.php │ │ │ │ └── PrunableFailedJobProvider.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── InvalidPayloadException.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── DatabaseJobRecord.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── RouteMatched.php │ │ │ │ └── Routing.php │ │ │ ├── Exceptions │ │ │ │ ├── BackedEnumCaseNotFoundException.php │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ ├── StreamedResponseException.php │ │ │ │ └── UrlGenerationException.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 │ │ │ ├── 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 │ │ │ ├── Env.php │ │ │ ├── Exceptions │ │ │ │ └── MathException.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Broadcast.php │ │ │ │ ├── Bus.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── DB.php │ │ │ │ ├── Date.php │ │ │ │ ├── Event.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Gate.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Http.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Notification.php │ │ │ │ ├── ParallelTesting.php │ │ │ │ ├── Password.php │ │ │ │ ├── Queue.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Route.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 │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── Reflector.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Stringable.php │ │ │ ├── Testing │ │ │ │ └── Fakes │ │ │ │ │ ├── BatchFake.php │ │ │ │ │ ├── BatchRepositoryFake.php │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingBatchFake.php │ │ │ │ │ ├── PendingChainFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ ├── Timebox.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ ├── ForwardsCalls.php │ │ │ │ ├── Localizable.php │ │ │ │ ├── ReflectsClosures.php │ │ │ │ └── Tappable.php │ │ │ ├── ValidatedInput.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Testing │ │ │ ├── Assert.php │ │ │ ├── AssertableJsonString.php │ │ │ ├── Concerns │ │ │ │ ├── AssertsStatusCodes.php │ │ │ │ └── TestDatabases.php │ │ │ ├── Constraints │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── CountInDatabase.php │ │ │ │ ├── HasInDatabase.php │ │ │ │ ├── NotSoftDeletedInDatabase.php │ │ │ │ ├── SeeInOrder.php │ │ │ │ └── SoftDeletedInDatabase.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 │ │ │ ├── TestView.php │ │ │ └── composer.json │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── LICENSE.md │ │ │ ├── MessageSelector.php │ │ │ ├── PotentiallyTranslatedString.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── Translator.php │ │ │ └── composer.json │ │ │ ├── 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 │ │ │ │ ├── DatabaseRule.php │ │ │ │ ├── Dimensions.php │ │ │ │ ├── Enum.php │ │ │ │ ├── ExcludeIf.php │ │ │ │ ├── Exists.php │ │ │ │ ├── File.php │ │ │ │ ├── ImageFile.php │ │ │ │ ├── In.php │ │ │ │ ├── NotIn.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 │ │ │ │ ├── CompilesStacks.php │ │ │ │ ├── CompilesStyles.php │ │ │ │ └── CompilesTranslations.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 │ ├── pint │ │ ├── LICENSE.md │ │ ├── builds │ │ │ └── pint │ │ └── composer.json │ ├── sail │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── sail │ │ ├── composer.json │ │ ├── database │ │ │ ├── mysql │ │ │ │ └── create-testing-database.sh │ │ │ └── pgsql │ │ │ │ └── create-testing-database.sql │ │ ├── runtimes │ │ │ ├── 7.4 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ ├── 8.0 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ ├── 8.1 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ │ └── 8.2 │ │ │ │ ├── Dockerfile │ │ │ │ ├── php.ini │ │ │ │ ├── start-container │ │ │ │ └── supervisord.conf │ │ ├── src │ │ │ ├── Console │ │ │ │ ├── AddCommand.php │ │ │ │ ├── Concerns │ │ │ │ │ └── InteractsWithDockerComposeServices.php │ │ │ │ ├── InstallCommand.php │ │ │ │ └── PublishCommand.php │ │ │ └── SailServiceProvider.php │ │ └── stubs │ │ │ ├── devcontainer.stub │ │ │ ├── docker-compose.stub │ │ │ ├── mailpit.stub │ │ │ ├── mariadb.stub │ │ │ ├── meilisearch.stub │ │ │ ├── memcached.stub │ │ │ ├── minio.stub │ │ │ ├── mysql.stub │ │ │ ├── pgsql.stub │ │ │ ├── redis.stub │ │ │ ├── selenium.stub │ │ │ └── soketi.stub │ ├── sanctum │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ └── sanctum.php │ │ ├── database │ │ │ └── migrations │ │ │ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ └── src │ │ │ ├── Console │ │ │ └── Commands │ │ │ │ └── PruneExpired.php │ │ │ ├── Contracts │ │ │ ├── HasAbilities.php │ │ │ └── HasApiTokens.php │ │ │ ├── Events │ │ │ └── TokenAuthenticated.php │ │ │ ├── Exceptions │ │ │ ├── MissingAbilityException.php │ │ │ └── MissingScopeException.php │ │ │ ├── Guard.php │ │ │ ├── HasApiTokens.php │ │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ └── CsrfCookieController.php │ │ │ └── Middleware │ │ │ │ ├── CheckAbilities.php │ │ │ │ ├── CheckForAnyAbility.php │ │ │ │ ├── CheckForAnyScope.php │ │ │ │ ├── CheckScopes.php │ │ │ │ └── EnsureFrontendRequestsAreStateful.php │ │ │ ├── NewAccessToken.php │ │ │ ├── PersonalAccessToken.php │ │ │ ├── Sanctum.php │ │ │ ├── SanctumServiceProvider.php │ │ │ └── TransientToken.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 ├── league │ ├── commonmark │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CommonMarkConverter.php │ │ │ ├── ConverterInterface.php │ │ │ ├── Delimiter │ │ │ ├── Delimiter.php │ │ │ ├── DelimiterInterface.php │ │ │ ├── DelimiterParser.php │ │ │ ├── DelimiterStack.php │ │ │ └── Processor │ │ │ │ ├── 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 │ │ │ └── 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.php │ │ │ ├── Query │ │ │ │ ├── AndExpr.php │ │ │ │ ├── ExpressionInterface.php │ │ │ │ └── OrExpr.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 │ │ │ ├── Reference │ │ │ ├── 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 │ │ │ └── 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-aws-s3-v3 │ │ ├── AwsS3V3Adapter.php │ │ ├── PortableVisibilityConverter.php │ │ ├── README.md │ │ ├── VisibilityConverter.php │ │ └── composer.json │ ├── flysystem │ │ ├── .dockerignore │ │ ├── INFO.md │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── readme.md │ │ └── src │ │ │ ├── CalculateChecksumFromStream.php │ │ │ ├── ChecksumAlgoIsNotSupported.php │ │ │ ├── ChecksumProvider.php │ │ │ ├── Config.php │ │ │ ├── CorruptedPathDetected.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 │ │ │ ├── Local │ │ │ ├── FallbackMimeTypeDetector.php │ │ │ └── LocalFilesystemAdapter.php │ │ │ ├── MountManager.php │ │ │ ├── PathNormalizer.php │ │ │ ├── PathPrefixer.php │ │ │ ├── PathTraversalDetected.php │ │ │ ├── PortableVisibilityGuard.php │ │ │ ├── ProxyArrayAccessToProperties.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 │ └── mime-type-detection │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ ├── ExtensionMimeTypeDetector.php │ │ ├── ExtensionToMimeTypeMap.php │ │ ├── FinfoMimeTypeDetector.php │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ ├── MimeTypeDetector.php │ │ └── OverridingExtensionToMimeTypeMap.php ├── mews │ └── purifier │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── config │ │ └── purifier.php │ │ └── src │ │ ├── Casts │ │ ├── CleanHtml.php │ │ ├── CleanHtmlInput.php │ │ ├── CleanHtmlOutput.php │ │ └── WithConfig.php │ │ ├── Facades │ │ └── Purifier.php │ │ ├── Purifier.php │ │ ├── PurifierServiceProvider.php │ │ └── helpers.php ├── mockery │ └── mockery │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── README.md │ │ ├── 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 │ │ └── library │ │ ├── Mockery.php │ │ ├── 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 │ │ │ ├── Exact.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCountException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── NoMatchingExpectationException.php │ │ │ └── RuntimeException.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 │ │ │ │ │ ├── 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 │ │ │ ├── MatcherAbstract.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 │ │ └── helpers.php ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ └── AsMonologProcessor.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 │ │ └── 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 │ │ ├── SwiftMailerHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.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 │ │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonPeriodImmutable.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.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 │ │ ├── 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 │ │ ├── PHPStan │ │ ├── AbstractMacro.php │ │ ├── Macro.php │ │ ├── MacroExtension.php │ │ └── MacroScanner.php │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── DeprecatedProperties.php │ │ ├── Difference.php │ │ ├── IntervalRounding.php │ │ ├── IntervalStep.php │ │ ├── Localization.php │ │ ├── Macro.php │ │ ├── MagicParameter.php │ │ ├── Mixin.php │ │ ├── Modifiers.php │ │ ├── Mutability.php │ │ ├── ObjectInitialisation.php │ │ ├── Options.php │ │ ├── Rounding.php │ │ ├── Serialization.php │ │ ├── Test.php │ │ ├── Timestamp.php │ │ ├── ToStringFormat.php │ │ ├── Units.php │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ └── TranslatorStrongTypeInterface.php ├── nette │ ├── schema │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── 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 │ │ ├── Json.php │ │ ├── ObjectHelpers.php │ │ ├── Paginator.php │ │ ├── Random.php │ │ ├── Reflection.php │ │ ├── Strings.php │ │ ├── Type.php │ │ ├── Validators.php │ │ └── exceptions.php │ │ ├── compatibility.php │ │ └── exceptions.php ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── phpyLang.php │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── 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 │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AttributeEmulator.php │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── FlexibleDocStringEmulator.php │ │ │ ├── FnTokenEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.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 │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.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 │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int_.php │ │ │ │ ├── Object_.php │ │ │ │ ├── String_.php │ │ │ │ └── Unset_.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 │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── NullableType.php │ │ ├── Param.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── DNumber.php │ │ │ ├── Encapsed.php │ │ │ ├── EncapsedStringPart.php │ │ │ ├── LNumber.php │ │ │ ├── MagicConst.php │ │ │ ├── MagicConst │ │ │ │ ├── Class_.php │ │ │ │ ├── Dir.php │ │ │ │ ├── File.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Line.php │ │ │ │ ├── Method.php │ │ │ │ ├── Namespace_.php │ │ │ │ └── Trait_.php │ │ │ └── String_.php │ │ ├── Stmt.php │ │ ├── Stmt │ │ │ ├── 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 │ │ │ ├── Throw_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Multiple.php │ │ ├── Php5.php │ │ ├── Php7.php │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ └── PrettyPrinterAbstract.php ├── nunomaduro │ ├── collision │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Adapters │ │ │ ├── Laravel │ │ │ │ ├── CollisionServiceProvider.php │ │ │ │ ├── Commands │ │ │ │ │ └── TestCommand.php │ │ │ │ ├── ExceptionHandler.php │ │ │ │ ├── Exceptions │ │ │ │ │ └── RequirementsException.php │ │ │ │ ├── IgnitionSolutionsRepository.php │ │ │ │ └── Inspector.php │ │ │ └── Phpunit │ │ │ │ ├── ConfigureIO.php │ │ │ │ ├── Printer.php │ │ │ │ ├── State.php │ │ │ │ ├── Style.php │ │ │ │ ├── TestResult.php │ │ │ │ └── Timer.php │ │ │ ├── ArgumentFormatter.php │ │ │ ├── ConsoleColor.php │ │ │ ├── Contracts │ │ │ ├── Adapters │ │ │ │ └── Phpunit │ │ │ │ │ ├── HasPrintableTestCaseName.php │ │ │ │ │ └── Listener.php │ │ │ ├── ArgumentFormatter.php │ │ │ ├── Handler.php │ │ │ ├── Highlighter.php │ │ │ ├── Provider.php │ │ │ ├── RenderlessEditor.php │ │ │ ├── RenderlessTrace.php │ │ │ ├── SolutionsRepository.php │ │ │ └── Writer.php │ │ │ ├── Coverage.php │ │ │ ├── Exceptions │ │ │ ├── InvalidStyleException.php │ │ │ └── ShouldNotHappen.php │ │ │ ├── Handler.php │ │ │ ├── Highlighter.php │ │ │ ├── Provider.php │ │ │ ├── SolutionsRepositories │ │ │ └── NullSolutionsRepository.php │ │ │ └── Writer.php │ └── termwind │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── docker │ │ └── Dockerfile │ │ ├── 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 ├── overtrue │ └── laravel-follow │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── follow.php │ │ ├── migrations │ │ └── 2022_05_02_000000_create_followables_table.php │ │ └── src │ │ ├── Events │ │ ├── Event.php │ │ ├── Followed.php │ │ └── Unfollowed.php │ │ ├── FollowServiceProvider.php │ │ ├── Followable.php │ │ └── Traits │ │ ├── Followable.php │ │ └── Follower.php ├── paragonie │ ├── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ │ └── random.php │ │ ├── other │ │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml │ └── sodium_compat │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autoload-php7.php │ │ ├── autoload.php │ │ ├── composer-php52.json │ │ ├── composer.json │ │ ├── lib │ │ ├── constants.php │ │ ├── namespaced.php │ │ ├── php72compat.php │ │ ├── php72compat_const.php │ │ ├── ristretto255.php │ │ ├── sodium_compat.php │ │ └── stream-xchacha20.php │ │ ├── namespaced │ │ ├── Compat.php │ │ ├── Core │ │ │ ├── BLAKE2b.php │ │ │ ├── ChaCha20.php │ │ │ ├── ChaCha20 │ │ │ │ ├── Ctx.php │ │ │ │ └── IetfCtx.php │ │ │ ├── Curve25519.php │ │ │ ├── Curve25519 │ │ │ │ ├── Fe.php │ │ │ │ ├── Ge │ │ │ │ │ ├── Cached.php │ │ │ │ │ ├── P1p1.php │ │ │ │ │ ├── P2.php │ │ │ │ │ ├── P3.php │ │ │ │ │ └── Precomp.php │ │ │ │ └── H.php │ │ │ ├── Ed25519.php │ │ │ ├── HChaCha20.php │ │ │ ├── HSalsa20.php │ │ │ ├── Poly1305.php │ │ │ ├── Poly1305 │ │ │ │ └── State.php │ │ │ ├── Salsa20.php │ │ │ ├── SipHash.php │ │ │ ├── Util.php │ │ │ ├── X25519.php │ │ │ ├── XChaCha20.php │ │ │ └── Xsalsa20.php │ │ ├── Crypto.php │ │ └── File.php │ │ └── src │ │ ├── Compat.php │ │ ├── Core │ │ ├── BLAKE2b.php │ │ ├── Base64 │ │ │ ├── Original.php │ │ │ └── UrlSafe.php │ │ ├── ChaCha20.php │ │ ├── ChaCha20 │ │ │ ├── Ctx.php │ │ │ └── IetfCtx.php │ │ ├── Curve25519.php │ │ ├── Curve25519 │ │ │ ├── Fe.php │ │ │ ├── Ge │ │ │ │ ├── Cached.php │ │ │ │ ├── P1p1.php │ │ │ │ ├── P2.php │ │ │ │ ├── P3.php │ │ │ │ └── Precomp.php │ │ │ ├── H.php │ │ │ └── README.md │ │ ├── Ed25519.php │ │ ├── HChaCha20.php │ │ ├── HSalsa20.php │ │ ├── Poly1305.php │ │ ├── Poly1305 │ │ │ └── State.php │ │ ├── Ristretto255.php │ │ ├── Salsa20.php │ │ ├── SecretStream │ │ │ └── State.php │ │ ├── SipHash.php │ │ ├── Util.php │ │ ├── X25519.php │ │ ├── XChaCha20.php │ │ └── XSalsa20.php │ │ ├── Core32 │ │ ├── BLAKE2b.php │ │ ├── ChaCha20.php │ │ ├── ChaCha20 │ │ │ ├── Ctx.php │ │ │ └── IetfCtx.php │ │ ├── Curve25519.php │ │ ├── Curve25519 │ │ │ ├── Fe.php │ │ │ ├── Ge │ │ │ │ ├── Cached.php │ │ │ │ ├── P1p1.php │ │ │ │ ├── P2.php │ │ │ │ ├── P3.php │ │ │ │ └── Precomp.php │ │ │ ├── H.php │ │ │ └── README.md │ │ ├── Ed25519.php │ │ ├── HChaCha20.php │ │ ├── HSalsa20.php │ │ ├── Int32.php │ │ ├── Int64.php │ │ ├── Poly1305.php │ │ ├── Poly1305 │ │ │ └── State.php │ │ ├── Salsa20.php │ │ ├── SecretStream │ │ │ └── State.php │ │ ├── SipHash.php │ │ ├── Util.php │ │ ├── X25519.php │ │ ├── XChaCha20.php │ │ └── XSalsa20.php │ │ ├── Crypto.php │ │ ├── Crypto32.php │ │ ├── File.php │ │ ├── PHP52 │ │ └── SplFixedArray.php │ │ └── SodiumException.php ├── phar-io │ ├── manifest │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── 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 │ │ │ ├── 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 │ └── 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 │ └── discovery │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── ClassDiscovery.php │ │ ├── Composer │ │ └── Plugin.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── ClassInstantiationFailedException.php │ │ ├── DiscoveryFailedException.php │ │ ├── NoCandidateFoundException.php │ │ ├── NotFoundException.php │ │ ├── PuliUnavailableException.php │ │ └── StrategyUnavailableException.php │ │ ├── HttpAsyncClientDiscovery.php │ │ ├── HttpClientDiscovery.php │ │ ├── MessageFactoryDiscovery.php │ │ ├── NotFoundException.php │ │ ├── Psr17Factory.php │ │ ├── Psr17FactoryDiscovery.php │ │ ├── Psr18ClientDiscovery.php │ │ ├── Strategy │ │ ├── CommonClassesStrategy.php │ │ ├── CommonPsr17ClassesStrategy.php │ │ ├── DiscoveryStrategy.php │ │ ├── MockClientStrategy.php │ │ └── PuliBetaStrategy.php │ │ ├── StreamFactoryDiscovery.php │ │ └── UriFactoryDiscovery.php ├── phpoption │ └── phpoption │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── PhpOption │ │ ├── LazyOption.php │ │ ├── None.php │ │ ├── Option.php │ │ └── Some.php ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── PhpdbgDriver.php │ │ │ ├── Selector.php │ │ │ ├── Xdebug2Driver.php │ │ │ └── Xdebug3Driver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── PhpdbgNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── WrongXdebugVersionException.php │ │ │ ├── Xdebug2NotEnabledException.php │ │ │ ├── Xdebug3NotEnabledException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ ├── RawCodeCoverageData.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.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 │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.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 │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-8.5.md │ │ ├── ChangeLog-9.6.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 8.5.xsd │ │ └── 9.2.xsd │ │ └── src │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.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 │ │ │ │ ├── ExceptionMessage.php │ │ │ │ └── ExceptionMessageRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasAttribute.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 │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── ErrorTestCase.php │ │ ├── Exception │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotExistException.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── OutputError.php │ │ │ ├── PHPTAssertionFailedError.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── SyntheticSkippedError.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ └── Warning.php │ │ ├── ExceptionWrapper.php │ │ ├── ExecutionOrderDependency.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── InvalidParameterGroupException.php │ │ ├── MockObject │ │ │ ├── Api │ │ │ │ ├── Api.php │ │ │ │ └── Method.php │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ ├── UnknownClassException.php │ │ │ │ ├── UnknownTraitException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── mocked_method.tpl │ │ │ │ ├── mocked_method_never_or_void.tpl │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── proxied_method_never_or_void.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── wsdl_method.tpl │ │ │ ├── Invocation.php │ │ │ ├── InvocationHandler.php │ │ │ ├── Matcher.php │ │ │ ├── MethodNameConstraint.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockClass.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockObject.php │ │ │ ├── MockTrait.php │ │ │ ├── MockType.php │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ │ └── Verifiable.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestListenerDefaultImplementation.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuiteIterator.php │ │ └── WarningTestCase.php │ │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── DefaultTestResultCache.php │ │ ├── Exception.php │ │ ├── Extension │ │ │ ├── ExtensionHandler.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ └── NameFilterIterator.php │ │ ├── Hook │ │ │ ├── AfterIncompleteTestHook.php │ │ │ ├── AfterLastTestHook.php │ │ │ ├── AfterRiskyTestHook.php │ │ │ ├── AfterSkippedTestHook.php │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ ├── AfterTestErrorHook.php │ │ │ ├── AfterTestFailureHook.php │ │ │ ├── AfterTestHook.php │ │ │ ├── AfterTestWarningHook.php │ │ │ ├── BeforeFirstTestHook.php │ │ │ ├── BeforeTestHook.php │ │ │ ├── Hook.php │ │ │ ├── TestHook.php │ │ │ └── TestListenerAdapter.php │ │ ├── NullTestResultCache.php │ │ ├── PhptTestCase.php │ │ ├── ResultCacheExtension.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestResultCache.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── CliArguments │ │ │ ├── Builder.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ └── Mapper.php │ │ ├── Command.php │ │ ├── DefaultResultPrinter.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── ResultPrinter.php │ │ ├── TestRunner.php │ │ ├── TestSuiteMapper.php │ │ └── XmlConfiguration │ │ │ ├── CodeCoverage │ │ │ ├── CodeCoverage.php │ │ │ ├── Filter │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ └── DirectoryCollectionIterator.php │ │ │ ├── FilterMapper.php │ │ │ └── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html.php │ │ │ │ ├── Php.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ ├── Filesystem │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ ├── DirectoryCollectionIterator.php │ │ │ ├── File.php │ │ │ ├── FileCollection.php │ │ │ └── FileCollectionIterator.php │ │ │ ├── Generator.php │ │ │ ├── Group │ │ │ ├── Group.php │ │ │ ├── GroupCollection.php │ │ │ ├── GroupCollectionIterator.php │ │ │ └── Groups.php │ │ │ ├── Loader.php │ │ │ ├── Logging │ │ │ ├── Junit.php │ │ │ ├── Logging.php │ │ │ ├── TeamCity.php │ │ │ ├── TestDox │ │ │ │ ├── Html.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ └── Text.php │ │ │ ├── Migration │ │ │ ├── MigrationBuilder.php │ │ │ ├── MigrationBuilderException.php │ │ │ ├── MigrationException.php │ │ │ ├── Migrations │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ ├── LogToReportMigration.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ ├── MoveWhitelistDirectoriesToCoverage.php │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ └── UpdateSchemaLocationTo93.php │ │ │ └── Migrator.php │ │ │ ├── PHP │ │ │ ├── Constant.php │ │ │ ├── ConstantCollection.php │ │ │ ├── ConstantCollectionIterator.php │ │ │ ├── IniSetting.php │ │ │ ├── IniSettingCollection.php │ │ │ ├── IniSettingCollectionIterator.php │ │ │ ├── Php.php │ │ │ ├── PhpHandler.php │ │ │ ├── Variable.php │ │ │ ├── VariableCollection.php │ │ │ └── VariableCollectionIterator.php │ │ │ ├── PHPUnit │ │ │ ├── Extension.php │ │ │ ├── ExtensionCollection.php │ │ │ ├── ExtensionCollectionIterator.php │ │ │ └── PHPUnit.php │ │ │ └── TestSuite │ │ │ ├── TestDirectory.php │ │ │ ├── TestDirectoryCollection.php │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ ├── TestFile.php │ │ │ ├── TestFileCollection.php │ │ │ ├── TestFileCollectionIterator.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteCollection.php │ │ │ └── TestSuiteCollectionIterator.php │ │ └── Util │ │ ├── Annotation │ │ ├── DocBlock.php │ │ └── Registry.php │ │ ├── Blacklist.php │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── ErrorHandler.php │ │ ├── Exception.php │ │ ├── ExcludeList.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── InvalidDataSetException.php │ │ ├── Json.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── TeamCity.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Printer.php │ │ ├── Reflection.php │ │ ├── RegularExpression.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinter.php │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TestDoxPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── VersionComparisonOperator.php │ │ ├── XdebugFilterScriptGenerator.php │ │ ├── Xml.php │ │ ├── Xml │ │ ├── Exception.php │ │ ├── FailedSchemaDetectionResult.php │ │ ├── Loader.php │ │ ├── SchemaDetectionResult.php │ │ ├── SchemaDetector.php │ │ ├── SchemaFinder.php │ │ ├── SnapshotNodeList.php │ │ ├── SuccessfulSchemaDetectionResult.php │ │ ├── ValidationResult.php │ │ └── Validator.php │ │ └── XmlTestListRenderer.php ├── psr │ ├── container │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── event-dispatcher │ │ ├── .editorconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── ListenerProviderInterface.php │ │ │ └── StoppableEventInterface.php │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .pullapprove.yml │ │ ├── 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 │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── http-server-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── RequestHandlerInterface.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.php │ │ ├── CodeCleaner │ │ ├── AbstractClassPass.php │ │ ├── AssignThisVariablePass.php │ │ ├── CallTimePassByReferencePass.php │ │ ├── CalledClassPass.php │ │ ├── CodeCleanerPass.php │ │ ├── EmptyArrayDimFetchPass.php │ │ ├── ExitPass.php │ │ ├── FinalClassPass.php │ │ ├── FunctionContextPass.php │ │ ├── FunctionReturnInWriteContextPass.php │ │ ├── ImplicitReturnPass.php │ │ ├── InstanceOfPass.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 │ │ ├── Command │ │ ├── BufferCommand.php │ │ ├── ClearCommand.php │ │ ├── Command.php │ │ ├── DocCommand.php │ │ ├── DumpCommand.php │ │ ├── EditCommand.php │ │ ├── ExitCommand.php │ │ ├── HelpCommand.php │ │ ├── HistoryCommand.php │ │ ├── ListCommand.php │ │ ├── ListCommand │ │ │ ├── ClassConstantEnumerator.php │ │ │ ├── ClassEnumerator.php │ │ │ ├── ConstantEnumerator.php │ │ │ ├── Enumerator.php │ │ │ ├── FunctionEnumerator.php │ │ │ ├── GlobalVariableEnumerator.php │ │ │ ├── MethodEnumerator.php │ │ │ ├── PropertyEnumerator.php │ │ │ └── VariableEnumerator.php │ │ ├── ParseCommand.php │ │ ├── PsyVersionCommand.php │ │ ├── ReflectingCommand.php │ │ ├── ShowCommand.php │ │ ├── SudoCommand.php │ │ ├── ThrowUpCommand.php │ │ ├── TimeitCommand.php │ │ ├── TimeitCommand │ │ │ └── TimeitVisitor.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 │ │ ├── TypeErrorException.php │ │ └── UnexpectedTargetException.php │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop │ │ ├── AbstractListener.php │ │ ├── Listener.php │ │ ├── ProcessForker.php │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter │ │ ├── CodeFormatter.php │ │ ├── DocblockFormatter.php │ │ ├── Formatter.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 │ │ ├── HoaConsole.php │ │ ├── Libedit.php │ │ ├── Readline.php │ │ ├── Transient.php │ │ └── Userland.php │ │ ├── Reflection │ │ ├── ReflectionClassConstant.php │ │ ├── ReflectionConstant.php │ │ ├── ReflectionConstant_.php │ │ ├── ReflectionLanguageConstruct.php │ │ ├── ReflectionLanguageConstructParameter.php │ │ └── ReflectionNamespace.php │ │ ├── Shell.php │ │ ├── Sudo.php │ │ ├── Sudo │ │ └── SudoVisitor.php │ │ ├── SuperglobalsEnv.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.php │ │ ├── Downloader │ │ │ ├── CurlDownloader.php │ │ │ ├── Factory.php │ │ │ └── FileDownloader.php │ │ ├── GitHubChecker.php │ │ ├── Installer.php │ │ ├── IntervalChecker.php │ │ ├── NoopChecker.php │ │ └── SelfUpdate.php │ │ └── functions.php ├── pusher │ └── pusher-php-server │ │ ├── CHANGELOG.md │ │ ├── composer.json │ │ └── src │ │ ├── ApiErrorException.php │ │ ├── Pusher.php │ │ ├── PusherCrypto.php │ │ ├── PusherException.php │ │ ├── PusherInstance.php │ │ ├── PusherInterface.php │ │ └── Webhook.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── ramsey │ ├── collection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── conventional-commits.json │ │ └── src │ │ │ ├── AbstractArray.php │ │ │ ├── AbstractCollection.php │ │ │ ├── AbstractSet.php │ │ │ ├── ArrayInterface.php │ │ │ ├── Collection.php │ │ │ ├── CollectionInterface.php │ │ │ ├── DoubleEndedQueue.php │ │ │ ├── DoubleEndedQueueInterface.php │ │ │ ├── Exception │ │ │ ├── CollectionMismatchException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidSortOrderException.php │ │ │ ├── NoSuchElementException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── UnsupportedOperationException.php │ │ │ └── ValueExtractionException.php │ │ │ ├── GenericArray.php │ │ │ ├── Map │ │ │ ├── AbstractMap.php │ │ │ ├── AbstractTypedMap.php │ │ │ ├── AssociativeArrayMap.php │ │ │ ├── MapInterface.php │ │ │ ├── NamedParameterMap.php │ │ │ ├── TypedMap.php │ │ │ └── TypedMapInterface.php │ │ │ ├── Queue.php │ │ │ ├── QueueInterface.php │ │ │ ├── Set.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 ├── realrashid │ └── sweet-alert │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── readme.md │ │ ├── resources │ │ ├── js │ │ │ └── sweetalert.all.js │ │ └── views │ │ │ └── alert.blade.php │ │ └── src │ │ ├── Console │ │ └── PublishCommand.php │ │ ├── Facades │ │ └── Alert.php │ │ ├── Storage │ │ ├── AlertSessionStore.php │ │ └── SessionStore.php │ │ ├── SweetAlertServiceProvider.php │ │ ├── ToSweetAlert.php │ │ ├── Toaster.php │ │ ├── config │ │ └── sweetalert.php │ │ └── functions.php ├── rybakit │ └── msgpack │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BufferUnpacker.php │ │ ├── CanBePacked.php │ │ ├── CanPack.php │ │ ├── Exception │ │ ├── InsufficientDataException.php │ │ ├── InvalidOptionException.php │ │ ├── PackingFailedException.php │ │ └── UnpackingFailedException.php │ │ ├── Extension.php │ │ ├── Extension │ │ └── TimestampExtension.php │ │ ├── MessagePack.php │ │ ├── PackOptions.php │ │ ├── Packer.php │ │ ├── Type │ │ ├── Bin.php │ │ ├── Ext.php │ │ ├── Map.php │ │ └── Timestamp.php │ │ ├── TypeTransformer │ │ ├── StreamTransformer.php │ │ └── TraversableTransformer.php │ │ └── UnpackOptions.php ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.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 │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.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 │ │ ├── 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 │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── object-reflector │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── resource-operations │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.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 │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── spatie │ ├── backtrace │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Backtrace.php │ │ │ ├── CodeSnippet.php │ │ │ ├── File.php │ │ │ └── Frame.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 │ │ │ ├── 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 │ │ │ ├── Time │ │ │ ├── SystemTime.php │ │ │ └── Time.php │ │ │ ├── Truncation │ │ │ ├── AbstractTruncationStrategy.php │ │ │ ├── ReportTrimmer.php │ │ │ ├── TrimContextItemsStrategy.php │ │ │ ├── TrimStringsStrategy.php │ │ │ └── TruncationStrategy.php │ │ │ ├── View.php │ │ │ └── helpers.php │ ├── ignition │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ │ ├── compiled │ │ │ │ ├── ignition.css │ │ │ │ └── ignition.js │ │ │ └── views │ │ │ │ └── errorPage.php │ │ └── src │ │ │ ├── Config │ │ │ ├── FileConfigManager.php │ │ │ └── IgnitionConfig.php │ │ │ ├── Contracts │ │ │ ├── BaseSolution.php │ │ │ ├── ConfigManager.php │ │ │ ├── HasSolutionsForThrowable.php │ │ │ ├── ProvidesSolution.php │ │ │ ├── RunnableSolution.php │ │ │ ├── Solution.php │ │ │ └── SolutionProviderRepository.php │ │ │ ├── ErrorPage │ │ │ ├── ErrorPageViewModel.php │ │ │ └── Renderer.php │ │ │ ├── Ignition.php │ │ │ └── Solutions │ │ │ ├── SolutionProviders │ │ │ ├── BadMethodCallSolutionProvider.php │ │ │ ├── MergeConflictSolutionProvider.php │ │ │ ├── SolutionProviderRepository.php │ │ │ └── UndefinedPropertySolutionProvider.php │ │ │ ├── SolutionTransformer.php │ │ │ ├── SuggestCorrectVariableNameSolution.php │ │ │ └── SuggestImportSolution.php │ └── laravel-ignition │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ ├── flare.php │ │ └── ignition.php │ │ └── src │ │ ├── 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 │ │ ├── AddDumps.php │ │ ├── AddEnvironmentInformation.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 │ │ └── IgnitionWhoopsHandler.php │ │ ├── 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 │ │ │ ├── RouteNotDefinedSolutionProvider.php │ │ │ ├── RunningLaravelDuskInProductionProvider.php │ │ │ ├── SolutionProviderRepository.php │ │ │ ├── TableNotFoundSolutionProvider.php │ │ │ ├── UndefinedLivewireMethodSolutionProvider.php │ │ │ ├── UndefinedLivewirePropertySolutionProvider.php │ │ │ ├── UndefinedViewVariableSolutionProvider.php │ │ │ ├── UnknownValidationSolutionProvider.php │ │ │ └── ViewNotFoundSolutionProvider.php │ │ ├── SolutionTransformers │ │ │ └── LaravelSolutionTransformer.php │ │ ├── SuggestCorrectVariableNameSolution.php │ │ ├── SuggestImportSolution.php │ │ ├── SuggestLivewireMethodNameSolution.php │ │ ├── SuggestLivewirePropertyNameSolution.php │ │ ├── SuggestUsingCorrectDbNameSolution.php │ │ └── UseDefaultValetDbCredentialsSolution.php │ │ ├── Support │ │ ├── Composer │ │ │ ├── Composer.php │ │ │ ├── ComposerClassMap.php │ │ │ └── FakeComposer.php │ │ ├── FlareLogHandler.php │ │ ├── LaravelDocumentationLinkFinder.php │ │ ├── LaravelVersion.php │ │ ├── LivewireComponentParser.php │ │ ├── RunnableSolutionsGuard.php │ │ ├── SentReports.php │ │ └── StringComparator.php │ │ ├── Views │ │ ├── BladeSourceMapCompiler.php │ │ └── ViewExceptionMapper.php │ │ ├── helpers.php │ │ └── ignition-routes.php ├── stripe │ └── stripe-php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── OPENAPI_VERSION │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── data │ │ └── ca-certificates.crt │ │ ├── init.php │ │ └── lib │ │ ├── Account.php │ │ ├── AccountLink.php │ │ ├── ApiOperations │ │ ├── All.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── NestedResource.php │ │ ├── Request.php │ │ ├── Retrieve.php │ │ ├── Search.php │ │ ├── SingletonRetrieve.php │ │ └── Update.php │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── ApiResponse.php │ │ ├── ApplePayDomain.php │ │ ├── ApplicationFee.php │ │ ├── ApplicationFeeRefund.php │ │ ├── Apps │ │ └── Secret.php │ │ ├── Balance.php │ │ ├── BalanceTransaction.php │ │ ├── BankAccount.php │ │ ├── BaseStripeClient.php │ │ ├── BaseStripeClientInterface.php │ │ ├── BillingPortal │ │ ├── Configuration.php │ │ └── Session.php │ │ ├── Capability.php │ │ ├── Card.php │ │ ├── CashBalance.php │ │ ├── Charge.php │ │ ├── Checkout │ │ └── Session.php │ │ ├── Collection.php │ │ ├── CountrySpec.php │ │ ├── Coupon.php │ │ ├── CreditNote.php │ │ ├── CreditNoteLineItem.php │ │ ├── Customer.php │ │ ├── CustomerBalanceTransaction.php │ │ ├── CustomerCashBalanceTransaction.php │ │ ├── Discount.php │ │ ├── Dispute.php │ │ ├── EphemeralKey.php │ │ ├── ErrorObject.php │ │ ├── Event.php │ │ ├── Exception │ │ ├── ApiConnectionException.php │ │ ├── ApiErrorException.php │ │ ├── AuthenticationException.php │ │ ├── BadMethodCallException.php │ │ ├── CardException.php │ │ ├── ExceptionInterface.php │ │ ├── IdempotencyException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidRequestException.php │ │ ├── OAuth │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidClientException.php │ │ │ ├── InvalidGrantException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── InvalidScopeException.php │ │ │ ├── OAuthErrorException.php │ │ │ ├── UnknownOAuthErrorException.php │ │ │ ├── UnsupportedGrantTypeException.php │ │ │ └── UnsupportedResponseTypeException.php │ │ ├── PermissionException.php │ │ ├── RateLimitException.php │ │ ├── SignatureVerificationException.php │ │ ├── UnexpectedValueException.php │ │ └── UnknownApiErrorException.php │ │ ├── ExchangeRate.php │ │ ├── File.php │ │ ├── FileLink.php │ │ ├── FinancialConnections │ │ ├── Account.php │ │ ├── AccountOwner.php │ │ ├── AccountOwnership.php │ │ └── Session.php │ │ ├── FundingInstructions.php │ │ ├── HttpClient │ │ ├── ClientInterface.php │ │ ├── CurlClient.php │ │ └── StreamingClientInterface.php │ │ ├── Identity │ │ ├── VerificationReport.php │ │ └── VerificationSession.php │ │ ├── Invoice.php │ │ ├── InvoiceItem.php │ │ ├── InvoiceLineItem.php │ │ ├── Issuing │ │ ├── Authorization.php │ │ ├── Card.php │ │ ├── CardDetails.php │ │ ├── Cardholder.php │ │ ├── Dispute.php │ │ └── Transaction.php │ │ ├── LineItem.php │ │ ├── LoginLink.php │ │ ├── Mandate.php │ │ ├── OAuth.php │ │ ├── OAuthErrorObject.php │ │ ├── PaymentIntent.php │ │ ├── PaymentLink.php │ │ ├── PaymentMethod.php │ │ ├── Payout.php │ │ ├── Person.php │ │ ├── Plan.php │ │ ├── Price.php │ │ ├── Product.php │ │ ├── PromotionCode.php │ │ ├── Quote.php │ │ ├── Radar │ │ ├── EarlyFraudWarning.php │ │ ├── ValueList.php │ │ └── ValueListItem.php │ │ ├── RecipientTransfer.php │ │ ├── Refund.php │ │ ├── Reporting │ │ ├── ReportRun.php │ │ └── ReportType.php │ │ ├── RequestTelemetry.php │ │ ├── Review.php │ │ ├── SearchResult.php │ │ ├── Service │ │ ├── AbstractService.php │ │ ├── AbstractServiceFactory.php │ │ ├── AccountLinkService.php │ │ ├── AccountService.php │ │ ├── ApplePayDomainService.php │ │ ├── ApplicationFeeService.php │ │ ├── Apps │ │ │ ├── AppsServiceFactory.php │ │ │ └── SecretService.php │ │ ├── BalanceService.php │ │ ├── BalanceTransactionService.php │ │ ├── BillingPortal │ │ │ ├── BillingPortalServiceFactory.php │ │ │ ├── ConfigurationService.php │ │ │ └── SessionService.php │ │ ├── ChargeService.php │ │ ├── Checkout │ │ │ ├── CheckoutServiceFactory.php │ │ │ └── SessionService.php │ │ ├── CoreServiceFactory.php │ │ ├── CountrySpecService.php │ │ ├── CouponService.php │ │ ├── CreditNoteService.php │ │ ├── CustomerService.php │ │ ├── DisputeService.php │ │ ├── EphemeralKeyService.php │ │ ├── EventService.php │ │ ├── ExchangeRateService.php │ │ ├── FileLinkService.php │ │ ├── FileService.php │ │ ├── FinancialConnections │ │ │ ├── AccountService.php │ │ │ ├── FinancialConnectionsServiceFactory.php │ │ │ └── SessionService.php │ │ ├── Identity │ │ │ ├── IdentityServiceFactory.php │ │ │ ├── VerificationReportService.php │ │ │ └── VerificationSessionService.php │ │ ├── InvoiceItemService.php │ │ ├── InvoiceService.php │ │ ├── Issuing │ │ │ ├── AuthorizationService.php │ │ │ ├── CardService.php │ │ │ ├── CardholderService.php │ │ │ ├── DisputeService.php │ │ │ ├── IssuingServiceFactory.php │ │ │ └── TransactionService.php │ │ ├── MandateService.php │ │ ├── OAuthService.php │ │ ├── PaymentIntentService.php │ │ ├── PaymentLinkService.php │ │ ├── PaymentMethodService.php │ │ ├── PayoutService.php │ │ ├── PlanService.php │ │ ├── PriceService.php │ │ ├── ProductService.php │ │ ├── PromotionCodeService.php │ │ ├── QuoteService.php │ │ ├── Radar │ │ │ ├── EarlyFraudWarningService.php │ │ │ ├── RadarServiceFactory.php │ │ │ ├── ValueListItemService.php │ │ │ └── ValueListService.php │ │ ├── RefundService.php │ │ ├── Reporting │ │ │ ├── ReportRunService.php │ │ │ ├── ReportTypeService.php │ │ │ └── ReportingServiceFactory.php │ │ ├── ReviewService.php │ │ ├── SetupAttemptService.php │ │ ├── SetupIntentService.php │ │ ├── ShippingRateService.php │ │ ├── Sigma │ │ │ ├── ScheduledQueryRunService.php │ │ │ └── SigmaServiceFactory.php │ │ ├── SourceService.php │ │ ├── SubscriptionItemService.php │ │ ├── SubscriptionScheduleService.php │ │ ├── SubscriptionService.php │ │ ├── Tax │ │ │ ├── CalculationService.php │ │ │ ├── TaxServiceFactory.php │ │ │ └── TransactionService.php │ │ ├── TaxCodeService.php │ │ ├── TaxRateService.php │ │ ├── Terminal │ │ │ ├── ConfigurationService.php │ │ │ ├── ConnectionTokenService.php │ │ │ ├── LocationService.php │ │ │ ├── ReaderService.php │ │ │ └── TerminalServiceFactory.php │ │ ├── TestHelpers │ │ │ ├── CustomerService.php │ │ │ ├── Issuing │ │ │ │ ├── CardService.php │ │ │ │ └── IssuingServiceFactory.php │ │ │ ├── RefundService.php │ │ │ ├── Terminal │ │ │ │ ├── ReaderService.php │ │ │ │ └── TerminalServiceFactory.php │ │ │ ├── TestClockService.php │ │ │ ├── TestHelpersServiceFactory.php │ │ │ └── Treasury │ │ │ │ ├── InboundTransferService.php │ │ │ │ ├── OutboundPaymentService.php │ │ │ │ ├── OutboundTransferService.php │ │ │ │ ├── ReceivedCreditService.php │ │ │ │ ├── ReceivedDebitService.php │ │ │ │ └── TreasuryServiceFactory.php │ │ ├── TokenService.php │ │ ├── TopupService.php │ │ ├── TransferService.php │ │ ├── Treasury │ │ │ ├── CreditReversalService.php │ │ │ ├── DebitReversalService.php │ │ │ ├── FinancialAccountService.php │ │ │ ├── InboundTransferService.php │ │ │ ├── OutboundPaymentService.php │ │ │ ├── OutboundTransferService.php │ │ │ ├── ReceivedCreditService.php │ │ │ ├── ReceivedDebitService.php │ │ │ ├── TransactionEntryService.php │ │ │ ├── TransactionService.php │ │ │ └── TreasuryServiceFactory.php │ │ └── WebhookEndpointService.php │ │ ├── SetupAttempt.php │ │ ├── SetupIntent.php │ │ ├── ShippingRate.php │ │ ├── Sigma │ │ └── ScheduledQueryRun.php │ │ ├── SingletonApiResource.php │ │ ├── Source.php │ │ ├── SourceTransaction.php │ │ ├── Stripe.php │ │ ├── StripeClient.php │ │ ├── StripeClientInterface.php │ │ ├── StripeObject.php │ │ ├── StripeStreamingClientInterface.php │ │ ├── Subscription.php │ │ ├── SubscriptionItem.php │ │ ├── SubscriptionSchedule.php │ │ ├── Tax │ │ ├── Calculation.php │ │ ├── CalculationLineItem.php │ │ ├── Transaction.php │ │ └── TransactionLineItem.php │ │ ├── TaxCode.php │ │ ├── TaxId.php │ │ ├── TaxRate.php │ │ ├── Terminal │ │ ├── Configuration.php │ │ ├── ConnectionToken.php │ │ ├── Location.php │ │ └── Reader.php │ │ ├── TestHelpers │ │ └── TestClock.php │ │ ├── Token.php │ │ ├── Topup.php │ │ ├── Transfer.php │ │ ├── TransferReversal.php │ │ ├── Treasury │ │ ├── CreditReversal.php │ │ ├── DebitReversal.php │ │ ├── FinancialAccount.php │ │ ├── FinancialAccountFeatures.php │ │ ├── InboundTransfer.php │ │ ├── OutboundPayment.php │ │ ├── OutboundTransfer.php │ │ ├── ReceivedCredit.php │ │ ├── ReceivedDebit.php │ │ ├── Transaction.php │ │ └── TransactionEntry.php │ │ ├── UsageRecord.php │ │ ├── UsageRecordSummary.php │ │ ├── Util │ │ ├── ApiVersion.php │ │ ├── CaseInsensitiveArray.php │ │ ├── DefaultLogger.php │ │ ├── LoggerInterface.php │ │ ├── ObjectTypes.php │ │ ├── RandomGenerator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ │ ├── Webhook.php │ │ ├── WebhookEndpoint.php │ │ └── WebhookSignature.php ├── symfony │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ └── CompletionOutputInterface.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.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 │ │ ├── Output │ │ │ ├── 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 │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ └── completion.bash │ │ ├── SignalRegistry │ │ │ └── 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 │ │ │ ├── NegationNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── PseudoNode.php │ │ │ ├── SelectorNode.php │ │ │ └── Specificity.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ ├── icon-book.svg │ │ │ │ │ ├── icon-copy.svg │ │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ │ ├── icon-minus-square.svg │ │ │ │ │ ├── icon-plus-square-o.svg │ │ │ │ │ ├── icon-plus-square.svg │ │ │ │ │ ├── icon-support.svg │ │ │ │ │ ├── symfony-ghost.svg.php │ │ │ │ │ └── symfony-logo.svg │ │ │ │ └── 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-contracts │ │ ├── CHANGELOG.md │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── 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 │ ├── 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 │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── BadRequestException.php │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── JsonException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ ├── SessionNotFoundException.php │ │ │ └── SuspiciousOperationException.php │ │ ├── ExpressionRequestMatcher.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 │ │ │ └── RequestRateLimiterInterface.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ └── AttributeBagInterface.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.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 │ │ ├── StreamedResponse.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── RequestAttributeValueSame.php │ │ │ │ ├── ResponseCookieValueSame.php │ │ │ │ ├── ResponseFormatSame.php │ │ │ │ ├── ResponseHasCookie.php │ │ │ │ ├── ResponseHasHeader.php │ │ │ │ ├── ResponseHeaderSame.php │ │ │ │ ├── ResponseIsRedirected.php │ │ │ │ ├── ResponseIsSuccessful.php │ │ │ │ ├── ResponseIsUnprocessable.php │ │ │ │ └── ResponseStatusCodeSame.php │ │ ├── UrlHelper.php │ │ └── composer.json │ ├── http-kernel │ │ ├── Attribute │ │ │ └── AsController.php │ │ ├── Bundle │ │ │ ├── Bundle.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.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── ErrorController.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ └── TraceableControllerResolver.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 │ │ │ ├── FileLinkFormatter.php │ │ │ └── TraceableEventDispatcher.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 │ │ ├── Event │ │ │ ├── ControllerArgumentsEvent.php │ │ │ ├── ControllerEvent.php │ │ │ ├── ExceptionEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── KernelEvent.php │ │ │ ├── RequestEvent.php │ │ │ ├── ResponseEvent.php │ │ │ ├── TerminateEvent.php │ │ │ └── ViewEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleAwareListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── ControllerDoesNotReturnResponseException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── InvalidMetadataException.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.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 │ │ │ ├── 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 │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── README.md │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ ├── UriSigner.php │ │ └── composer.json │ ├── mailer │ │ ├── CHANGELOG.md │ │ ├── DataCollector │ │ │ └── MessageDataCollector.php │ │ ├── DelayedEnvelope.php │ │ ├── Envelope.php │ │ ├── Event │ │ │ ├── MessageEvent.php │ │ │ └── MessageEvents.php │ │ ├── EventListener │ │ │ ├── EnvelopeListener.php │ │ │ ├── MessageListener.php │ │ │ └── MessageLoggerListener.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpTransportException.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TransportException.php │ │ │ ├── TransportExceptionInterface.php │ │ │ └── UnsupportedSchemeException.php │ │ ├── Header │ │ │ ├── MetadataHeader.php │ │ │ └── TagHeader.php │ │ ├── LICENSE │ │ ├── Mailer.php │ │ ├── MailerInterface.php │ │ ├── Messenger │ │ │ ├── MessageHandler.php │ │ │ └── SendEmailMessage.php │ │ ├── README.md │ │ ├── SentMessage.php │ │ ├── Test │ │ │ ├── Constraint │ │ │ │ ├── EmailCount.php │ │ │ │ └── EmailIsQueued.php │ │ │ └── TransportFactoryTestCase.php │ │ ├── Transport.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 │ │ └── 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 │ │ ├── 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 │ │ ├── LICENSE │ │ ├── Message.php │ │ ├── MessageConverter.php │ │ ├── MimeTypeGuesserInterface.php │ │ ├── MimeTypes.php │ │ ├── MimeTypesInterface.php │ │ ├── Part │ │ │ ├── AbstractMultipartPart.php │ │ │ ├── AbstractPart.php │ │ │ ├── DataPart.php │ │ │ ├── MessagePart.php │ │ │ ├── Multipart │ │ │ │ ├── AlternativePart.php │ │ │ │ ├── DigestPart.php │ │ │ │ ├── FormDataPart.php │ │ │ │ ├── MixedPart.php │ │ │ │ └── RelatedPart.php │ │ │ ├── SMimePart.php │ │ │ └── TextPart.php │ │ ├── README.md │ │ ├── RawMessage.php │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── update_mime_types.php │ │ ├── Test │ │ │ └── Constraint │ │ │ │ ├── EmailAddressContains.php │ │ │ │ ├── EmailAttachmentCount.php │ │ │ │ ├── EmailHasHeader.php │ │ │ │ ├── EmailHeaderSame.php │ │ │ │ ├── EmailHtmlBodyContains.php │ │ │ │ └── EmailTextBodyContains.php │ │ └── 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 │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.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-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.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 │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── routing │ │ ├── Alias.php │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── CHANGELOG.md │ │ ├── CompiledRoute.php │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidParameterException.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 │ │ │ ├── AnnotationClassLoader.php │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ ├── AnnotationFileLoader.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.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 │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── data │ │ │ │ ├── wcswidth_table_wide.php │ │ │ │ └── wcswidth_table_zero.php │ │ │ └── functions.php │ │ ├── Slugger │ │ │ ├── AsciiSlugger.php │ │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json │ ├── translation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── translation │ │ ├── CHANGELOG.md │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── Command │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── 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 │ │ │ ├── PhpExtractor.php │ │ │ └── PhpStringTokenParser.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 │ │ ├── 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-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── Test │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ ├── TranslatableMessage.php │ │ ├── Translator.php │ │ ├── TranslatorBag.php │ │ ├── TranslatorBagInterface.php │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ ├── uid │ │ ├── AbstractUid.php │ │ ├── BinaryUtil.php │ │ ├── CHANGELOG.md │ │ ├── Command │ │ │ ├── GenerateUlidCommand.php │ │ │ ├── GenerateUuidCommand.php │ │ │ ├── InspectUlidCommand.php │ │ │ └── InspectUuidCommand.php │ │ ├── Factory │ │ │ ├── NameBasedUuidFactory.php │ │ │ ├── RandomBasedUuidFactory.php │ │ │ ├── TimeBasedUuidFactory.php │ │ │ ├── UlidFactory.php │ │ │ └── UuidFactory.php │ │ ├── LICENSE │ │ ├── NilUlid.php │ │ ├── NilUuid.php │ │ ├── README.md │ │ ├── Ulid.php │ │ ├── Uuid.php │ │ ├── UuidV1.php │ │ ├── UuidV3.php │ │ ├── UuidV4.php │ │ ├── UuidV5.php │ │ ├── UuidV6.php │ │ └── composer.json │ ├── var-dumper │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── DsCaster.php │ │ │ ├── DsPairStub.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FiberCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.php │ │ │ ├── ImagineCaster.php │ │ │ ├── ImgStub.php │ │ │ ├── IntlCaster.php │ │ │ ├── LinkStub.php │ │ │ ├── MemcachedCaster.php │ │ │ ├── MysqliCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ProxyManagerCaster.php │ │ │ ├── RdKafkaCaster.php │ │ │ ├── RedisCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── SymfonyCaster.php │ │ │ ├── TraceStub.php │ │ │ ├── UuidCaster.php │ │ │ ├── XmlReaderCaster.php │ │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.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 │ └── 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 │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php ├── tightenco │ └── ziggy │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── babel.config.js │ │ ├── composer.json │ │ ├── dist │ │ ├── index.es.js │ │ ├── index.js │ │ ├── index.m.js │ │ ├── vue.es.js │ │ ├── vue.js │ │ └── vue.m.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── BladeRouteGenerator.php │ │ ├── CommandRouteGenerator.php │ │ ├── Output │ │ ├── File.php │ │ ├── MergeScript.php │ │ └── Script.php │ │ ├── Ziggy.php │ │ ├── ZiggyServiceProvider.php │ │ └── js │ │ ├── Route.js │ │ ├── Router.js │ │ ├── index.js │ │ └── vue.js ├── 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 ├── twirp │ └── twirp │ │ ├── .dockerignore │ │ ├── .envrc │ │ ├── ADOPTERS.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LICENSE_THIRD_PARTY │ │ ├── README.md │ │ ├── TWIRP_VERSION │ │ ├── composer.json │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── goreleaser.yaml │ │ ├── install.sh │ │ ├── lib │ │ └── src │ │ │ ├── BaseServerHooks.php │ │ │ ├── ChainServerHooks.php │ │ │ ├── Context.php │ │ │ ├── Error.php │ │ │ ├── ErrorCode.php │ │ │ ├── Router.php │ │ │ ├── Server.php │ │ │ └── ServerHooks.php │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ ├── protoc-gen-twirp_php │ │ ├── internal │ │ │ ├── gen │ │ │ │ ├── generator.go │ │ │ │ └── template.go │ │ │ ├── php │ │ │ │ └── func.go │ │ │ └── proto │ │ │ │ ├── comment.go │ │ │ │ └── name.go │ │ ├── main.go │ │ └── templates │ │ │ ├── global │ │ │ ├── TwirpError.php.tmpl │ │ │ └── global.go │ │ │ └── service │ │ │ ├── AbstractClient.php.tmpl │ │ │ ├── Client.php.tmpl │ │ │ ├── JsonClient.php.tmpl │ │ │ ├── Server.php.tmpl │ │ │ ├── _Service_.php.tmpl │ │ │ └── service.go │ │ └── psalm.xml ├── 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 │ │ ├── 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 ├── vite.config.js └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /DOCUMENTATION/assets/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/admin.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/click-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/click-upload.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/config.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/db-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/db-created.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/docroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/docroot.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/docs.css -------------------------------------------------------------------------------- /DOCUMENTATION/assets/enter-db-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/enter-db-name.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/extract.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/file-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/file-manager.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/install-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/install-1.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/install-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/install-2.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/install-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/install-3.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/livekit-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/livekit-key.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/mail.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/nginx-rtmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/nginx-rtmp.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/nginx.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/pusher-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/pusher-admin.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/pusher-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/pusher-app.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/pusher-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/pusher-keys.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/select-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/select-zip.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/stream-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/stream-keys.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/streaming.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/stripe-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/stripe-admin.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/subaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/subaccount.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/tok-packs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/tok-packs.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/tok-val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/tok-val.png -------------------------------------------------------------------------------- /DOCUMENTATION/assets/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/assets/translate.png -------------------------------------------------------------------------------- /DOCUMENTATION/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/DOCUMENTATION/index.html -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/ChatMessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Events/ChatMessageEvent.php -------------------------------------------------------------------------------- /app/Events/LiveStreamBan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Events/LiveStreamBan.php -------------------------------------------------------------------------------- /app/Events/LiveStreamRefresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Events/LiveStreamRefresh.php -------------------------------------------------------------------------------- /app/Events/LiveStreamStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Events/LiveStreamStarted.php -------------------------------------------------------------------------------- /app/Events/LiveStreamStopped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Events/LiveStreamStopped.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Controllers/Admin.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/BanMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/BanMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Listeners/FollowListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Listeners/FollowListener.php -------------------------------------------------------------------------------- /app/Listeners/UserEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Listeners/UserEventListener.php -------------------------------------------------------------------------------- /app/Models/Banned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Banned.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Chat.php -------------------------------------------------------------------------------- /app/Models/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Options.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/RoomBans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/RoomBans.php -------------------------------------------------------------------------------- /app/Models/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Subscription.php -------------------------------------------------------------------------------- /app/Models/Tier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Tier.php -------------------------------------------------------------------------------- /app/Models/Tips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Tips.php -------------------------------------------------------------------------------- /app/Models/TokenPack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/TokenPack.php -------------------------------------------------------------------------------- /app/Models/TokenSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/TokenSale.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/UserMeta.php -------------------------------------------------------------------------------- /app/Models/Video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Video.php -------------------------------------------------------------------------------- /app/Models/VideoCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/VideoCategories.php -------------------------------------------------------------------------------- /app/Models/VideoSales.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/VideoSales.php -------------------------------------------------------------------------------- /app/Models/Withdrawal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Models/Withdrawal.php -------------------------------------------------------------------------------- /app/Notifications/ContactFormEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Notifications/ContactFormEmail.php -------------------------------------------------------------------------------- /app/Notifications/NewFollower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Notifications/NewFollower.php -------------------------------------------------------------------------------- /app/Notifications/NewSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Notifications/NewSubscriber.php -------------------------------------------------------------------------------- /app/Notifications/NewVideoSale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Notifications/NewVideoSale.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/UniqueUsername.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Rules/UniqueUsername.php -------------------------------------------------------------------------------- /app/Rules/UniqueUsernameOnSignup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/Rules/UniqueUsernameOnSignup.php -------------------------------------------------------------------------------- /app/View/Components/Translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/app/View/Components/Translations.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/bootstrap/cache/packages.php -------------------------------------------------------------------------------- /bootstrap/cache/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/bootstrap/cache/services.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/flare.php -------------------------------------------------------------------------------- /config/follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/follow.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/ignition.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/config/view.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/twitcher.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/database/twitcher.sql -------------------------------------------------------------------------------- /helpers/opt.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/helpers/opt.helper.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/package.json -------------------------------------------------------------------------------- /packages/crivion/reladmini/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/packages/crivion/reladmini/LICENSE.md -------------------------------------------------------------------------------- /packages/crivion/reladmini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teymur-Babayev/Laravel-twitcher/HEAD/packages/crivion/reladmini/README.md -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/league/flysystem/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/orchestra/testbench-core/laravel/database/database.sqlite.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/orchestra/testbench-core/src/Foundation/Console/stubs/database.sqlite.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/orchestra/testbench-core/src/Foundation/Console/stubs/testbench.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/zbateson/mail-mime-parser/version.txt: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /packages/crivion/reladmini/vendor/zbateson/mb-wrapper/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |