├── .DS_Store
├── part 47
├── .DS_Store
├── README.md
├── app
│ ├── Console
│ │ └── Kernel.php
│ ├── Exceptions
│ │ └── Handler.php
│ ├── Http
│ │ ├── Controllers
│ │ │ └── Controller.php
│ │ ├── Kernel.php
│ │ └── Middleware
│ │ │ ├── Authenticate.php
│ │ │ ├── CheckForMaintenanceMode.php
│ │ │ ├── EncryptCookies.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustHosts.php
│ │ │ ├── TrustProxies.php
│ │ │ └── VerifyCsrfToken.php
│ ├── Providers
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── BroadcastServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ └── RouteServiceProvider.php
│ └── User.php
├── artisan
├── bootstrap
│ ├── app.php
│ └── cache
│ │ └── .gitignore
├── composer.json
├── composer.lock
├── 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
│ ├── .gitignore
│ ├── 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
│ └── seeds
│ │ └── DatabaseSeeder.php
├── package-lock.json
├── package.json
├── phpunit.xml
├── public
│ ├── .DS_Store
│ ├── .htaccess
│ ├── css
│ │ ├── all.css
│ │ ├── app.css
│ │ ├── bootstrap.min.css
│ │ ├── carousel.css
│ │ ├── common.css
│ │ ├── main.css
│ │ └── responsive.css
│ ├── favicon.ico
│ ├── index.php
│ ├── js
│ │ └── app.js
│ ├── mix-manifest.json
│ └── robots.txt
├── resources
│ ├── js
│ │ ├── app.js
│ │ └── bootstrap.js
│ ├── lang
│ │ └── en
│ │ │ ├── auth.php
│ │ │ ├── pagination.php
│ │ │ ├── passwords.php
│ │ │ └── validation.php
│ ├── sass
│ │ └── app.scss
│ └── views
│ │ ├── home.blade.php
│ │ ├── layout
│ │ └── app.blade.php
│ │ └── partials
│ │ ├── about.blade.php
│ │ ├── footer.blade.php
│ │ ├── header.blade.php
│ │ └── nav.blade.php
├── routes
│ ├── api.php
│ ├── channels.php
│ ├── console.php
│ └── web.php
├── server.php
├── storage
│ ├── app
│ │ ├── .gitignore
│ │ └── public
│ │ │ └── .gitignore
│ ├── framework
│ │ ├── .gitignore
│ │ ├── cache
│ │ │ ├── .gitignore
│ │ │ └── data
│ │ │ │ └── .gitignore
│ │ ├── sessions
│ │ │ └── .gitignore
│ │ ├── testing
│ │ │ └── .gitignore
│ │ └── views
│ │ │ └── .gitignore
│ └── logs
│ │ └── .gitignore
├── tests
│ ├── CreatesApplication.php
│ ├── Feature
│ │ └── ExampleTest.php
│ ├── TestCase.php
│ └── Unit
│ │ └── ExampleTest.php
├── vendor
│ ├── asm89
│ │ └── stack-cors
│ │ │ ├── .github
│ │ │ └── workflows
│ │ │ │ └── run-tests.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── src
│ │ │ ├── Cors.php
│ │ │ └── CorsService.php
│ │ │ └── tests
│ │ │ ├── CorsTest.php
│ │ │ └── MockApp.php
│ ├── autoload.php
│ ├── bin
│ │ ├── carbon
│ │ ├── commonmark
│ │ ├── php-parse
│ │ ├── phpunit
│ │ ├── psysh
│ │ └── var-dump-server
│ ├── brick
│ │ └── math
│ │ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ │ ├── LICENSE
│ │ │ ├── SECURITY.md
│ │ │ ├── composer.json
│ │ │ ├── psalm-baseline.xml
│ │ │ ├── psalm.xml
│ │ │ └── src
│ │ │ ├── BigDecimal.php
│ │ │ ├── BigInteger.php
│ │ │ ├── BigNumber.php
│ │ │ ├── BigRational.php
│ │ │ ├── Exception
│ │ │ ├── DivisionByZeroException.php
│ │ │ ├── IntegerOverflowException.php
│ │ │ ├── MathException.php
│ │ │ ├── NegativeNumberException.php
│ │ │ ├── NumberFormatException.php
│ │ │ └── RoundingNecessaryException.php
│ │ │ ├── Internal
│ │ │ ├── Calculator.php
│ │ │ └── Calculator
│ │ │ │ ├── BcMathCalculator.php
│ │ │ │ ├── GmpCalculator.php
│ │ │ │ └── NativeCalculator.php
│ │ │ └── RoundingMode.php
│ ├── composer
│ │ ├── ClassLoader.php
│ │ ├── LICENSE
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ ├── autoload_static.php
│ │ └── installed.json
│ ├── dnoegel
│ │ └── php-xdg-base-dir
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Xdg.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
│ │ │ └── phpstan.neon.dist
│ │ ├── instantiator
│ │ │ ├── .doctrine-project.json
│ │ │ ├── .github
│ │ │ │ └── FUNDING.yml
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── docs
│ │ │ │ └── en
│ │ │ │ │ ├── index.rst
│ │ │ │ │ └── sidebar.rst
│ │ │ ├── phpbench.json
│ │ │ ├── phpcs.xml.dist
│ │ │ ├── phpstan.neon.dist
│ │ │ └── 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
│ ├── dragonmantank
│ │ └── cron-expression
│ │ │ ├── .editorconfig
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── src
│ │ │ └── Cron
│ │ │ │ ├── AbstractField.php
│ │ │ │ ├── CronExpression.php
│ │ │ │ ├── DayOfMonthField.php
│ │ │ │ ├── DayOfWeekField.php
│ │ │ │ ├── FieldFactory.php
│ │ │ │ ├── FieldInterface.php
│ │ │ │ ├── HoursField.php
│ │ │ │ ├── MinutesField.php
│ │ │ │ └── MonthField.php
│ │ │ └── tests
│ │ │ └── Cron
│ │ │ ├── AbstractFieldTest.php
│ │ │ ├── CronExpressionTest.php
│ │ │ ├── DayOfMonthFieldTest.php
│ │ │ ├── DayOfWeekFieldTest.php
│ │ │ ├── FieldFactoryTest.php
│ │ │ ├── HoursFieldTest.php
│ │ │ ├── MinutesFieldTest.php
│ │ │ └── MonthFieldTest.php
│ ├── egulias
│ │ └── email-validator
│ │ │ ├── LICENSE
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── EmailLexer.php
│ │ │ ├── EmailParser.php
│ │ │ ├── EmailValidator.php
│ │ │ ├── Exception
│ │ │ ├── AtextAfterCFWS.php
│ │ │ ├── CRLFAtTheEnd.php
│ │ │ ├── CRLFX2.php
│ │ │ ├── CRNoLF.php
│ │ │ ├── CharNotAllowed.php
│ │ │ ├── CommaInDomain.php
│ │ │ ├── ConsecutiveAt.php
│ │ │ ├── ConsecutiveDot.php
│ │ │ ├── DomainHyphened.php
│ │ │ ├── DotAtEnd.php
│ │ │ ├── DotAtStart.php
│ │ │ ├── ExpectingAT.php
│ │ │ ├── ExpectingATEXT.php
│ │ │ ├── ExpectingCTEXT.php
│ │ │ ├── ExpectingDTEXT.php
│ │ │ ├── ExpectingDomainLiteralClose.php
│ │ │ ├── ExpectingQPair.php
│ │ │ ├── InvalidEmail.php
│ │ │ ├── NoDNSRecord.php
│ │ │ ├── NoDomainPart.php
│ │ │ ├── NoLocalPart.php
│ │ │ ├── UnclosedComment.php
│ │ │ ├── UnclosedQuotedString.php
│ │ │ └── UnopenedComment.php
│ │ │ ├── Parser
│ │ │ ├── DomainPart.php
│ │ │ ├── LocalPart.php
│ │ │ └── Parser.php
│ │ │ ├── Validation
│ │ │ ├── DNSCheckValidation.php
│ │ │ ├── EmailValidation.php
│ │ │ ├── Error
│ │ │ │ ├── RFCWarnings.php
│ │ │ │ └── SpoofEmail.php
│ │ │ ├── Exception
│ │ │ │ └── EmptyValidationList.php
│ │ │ ├── MultipleErrors.php
│ │ │ ├── MultipleValidationWithAnd.php
│ │ │ ├── NoRFCWarningsValidation.php
│ │ │ ├── RFCValidation.php
│ │ │ └── SpoofCheckValidation.php
│ │ │ └── Warning
│ │ │ ├── AddressLiteral.php
│ │ │ ├── CFWSNearAt.php
│ │ │ ├── CFWSWithFWS.php
│ │ │ ├── Comment.php
│ │ │ ├── DeprecatedComment.php
│ │ │ ├── DomainLiteral.php
│ │ │ ├── DomainTooLong.php
│ │ │ ├── EmailTooLong.php
│ │ │ ├── IPV6BadChar.php
│ │ │ ├── IPV6ColonEnd.php
│ │ │ ├── IPV6ColonStart.php
│ │ │ ├── IPV6Deprecated.php
│ │ │ ├── IPV6DoubleColon.php
│ │ │ ├── IPV6GroupCount.php
│ │ │ ├── IPV6MaxGroups.php
│ │ │ ├── LabelTooLong.php
│ │ │ ├── LocalTooLong.php
│ │ │ ├── NoDNSMXRecord.php
│ │ │ ├── ObsoleteDTEXT.php
│ │ │ ├── QuotedPart.php
│ │ │ ├── QuotedString.php
│ │ │ ├── TLD.php
│ │ │ └── Warning.php
│ ├── facade
│ │ ├── flare-client-php
│ │ │ ├── .github
│ │ │ │ ├── FUNDING.yml
│ │ │ │ └── workflows
│ │ │ │ │ └── run-tests.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── Api.php
│ │ │ │ ├── Concerns
│ │ │ │ ├── HasContext.php
│ │ │ │ └── UsesTime.php
│ │ │ │ ├── Context
│ │ │ │ ├── ConsoleContext.php
│ │ │ │ ├── ContextContextDetector.php
│ │ │ │ ├── ContextDetectorInterface.php
│ │ │ │ ├── ContextInterface.php
│ │ │ │ └── RequestContext.php
│ │ │ │ ├── Contracts
│ │ │ │ └── ProvidesFlareContext.php
│ │ │ │ ├── Enums
│ │ │ │ ├── GroupingTypes.php
│ │ │ │ └── MessageLevels.php
│ │ │ │ ├── Flare.php
│ │ │ │ ├── Frame.php
│ │ │ │ ├── Glows
│ │ │ │ ├── Glow.php
│ │ │ │ └── Recorder.php
│ │ │ │ ├── Http
│ │ │ │ ├── Client.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ ├── BadResponse.php
│ │ │ │ │ ├── BadResponseCode.php
│ │ │ │ │ ├── InvalidData.php
│ │ │ │ │ ├── MissingParameter.php
│ │ │ │ │ └── NotFound.php
│ │ │ │ └── Response.php
│ │ │ │ ├── Middleware
│ │ │ │ ├── AddGlows.php
│ │ │ │ └── AnonymizeIp.php
│ │ │ │ ├── Report.php
│ │ │ │ ├── Solutions
│ │ │ │ └── ReportSolution.php
│ │ │ │ ├── Stacktrace
│ │ │ │ ├── Codesnippet.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Frame.php
│ │ │ │ └── Stacktrace.php
│ │ │ │ ├── Time
│ │ │ │ ├── SystemTime.php
│ │ │ │ └── Time.php
│ │ │ │ ├── Truncation
│ │ │ │ ├── AbstractTruncationStrategy.php
│ │ │ │ ├── ReportTrimmer.php
│ │ │ │ ├── TrimContextItemsStrategy.php
│ │ │ │ ├── TrimStringsStrategy.php
│ │ │ │ └── TruncationStrategy.php
│ │ │ │ ├── View.php
│ │ │ │ └── helpers.php
│ │ ├── ignition-contracts
│ │ │ ├── .styleci.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── Tests
│ │ │ │ └── SolutionTest.php
│ │ │ ├── composer.json
│ │ │ ├── docs
│ │ │ │ └── screenshot.png
│ │ │ └── src
│ │ │ │ ├── BaseSolution.php
│ │ │ │ ├── HasSolutionsForThrowable.php
│ │ │ │ ├── ProvidesSolution.php
│ │ │ │ ├── RunnableSolution.php
│ │ │ │ ├── Solution.php
│ │ │ │ └── SolutionProviderRepository.php
│ │ └── ignition
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── config
│ │ │ ├── flare.php
│ │ │ └── ignition.php
│ │ │ ├── package.json
│ │ │ ├── resources
│ │ │ ├── .gitignore
│ │ │ ├── compiled
│ │ │ │ ├── ignition.js
│ │ │ │ └── index.html
│ │ │ └── views
│ │ │ │ └── errorPage.php
│ │ │ └── src
│ │ │ ├── Actions
│ │ │ └── ShareReportAction.php
│ │ │ ├── Commands
│ │ │ ├── SolutionMakeCommand.php
│ │ │ ├── TestCommand.php
│ │ │ └── stubs
│ │ │ │ ├── runnable-solution.stub
│ │ │ │ └── solution.stub
│ │ │ ├── Context
│ │ │ ├── LaravelConsoleContext.php
│ │ │ ├── LaravelContextDetector.php
│ │ │ └── LaravelRequestContext.php
│ │ │ ├── DumpRecorder
│ │ │ ├── Dump.php
│ │ │ ├── DumpHandler.php
│ │ │ ├── DumpRecorder.php
│ │ │ ├── HtmlDumper.php
│ │ │ └── MultiDumpHandler.php
│ │ │ ├── ErrorPage
│ │ │ ├── ErrorPageHandler.php
│ │ │ ├── ErrorPageViewModel.php
│ │ │ ├── IgnitionWhoopsHandler.php
│ │ │ └── Renderer.php
│ │ │ ├── Exceptions
│ │ │ ├── InvalidConfig.php
│ │ │ ├── UnableToShareErrorException.php
│ │ │ ├── ViewException.php
│ │ │ └── ViewExceptionWithSolution.php
│ │ │ ├── Facades
│ │ │ └── Flare.php
│ │ │ ├── Http
│ │ │ ├── Controllers
│ │ │ │ ├── ExecuteSolutionController.php
│ │ │ │ ├── HealthCheckController.php
│ │ │ │ ├── ScriptController.php
│ │ │ │ ├── ShareReportController.php
│ │ │ │ └── StyleController.php
│ │ │ ├── Middleware
│ │ │ │ ├── IgnitionConfigValueEnabled.php
│ │ │ │ └── IgnitionEnabled.php
│ │ │ └── Requests
│ │ │ │ ├── ExecuteSolutionRequest.php
│ │ │ │ └── ShareReportRequest.php
│ │ │ ├── Ignition.php
│ │ │ ├── IgnitionConfig.php
│ │ │ ├── IgnitionServiceProvider.php
│ │ │ ├── LogRecorder
│ │ │ ├── LogMessage.php
│ │ │ └── LogRecorder.php
│ │ │ ├── Logger
│ │ │ └── FlareHandler.php
│ │ │ ├── Middleware
│ │ │ ├── AddDumps.php
│ │ │ ├── AddEnvironmentInformation.php
│ │ │ ├── AddGitInformation.php
│ │ │ ├── AddLogs.php
│ │ │ ├── AddQueries.php
│ │ │ ├── AddSolutions.php
│ │ │ ├── CustomizeGrouping.php
│ │ │ └── SetNotifierName.php
│ │ │ ├── QueryRecorder
│ │ │ ├── Query.php
│ │ │ └── QueryRecorder.php
│ │ │ ├── SolutionProviders
│ │ │ ├── BadMethodCallSolutionProvider.php
│ │ │ ├── DefaultDbNameSolutionProvider.php
│ │ │ ├── IncorrectValetDbCredentialsSolutionProvider.php
│ │ │ ├── InvalidRouteActionSolutionProvider.php
│ │ │ ├── MergeConflictSolutionProvider.php
│ │ │ ├── MissingAppKeySolutionProvider.php
│ │ │ ├── MissingColumnSolutionProvider.php
│ │ │ ├── MissingImportSolutionProvider.php
│ │ │ ├── MissingPackageSolutionProvider.php
│ │ │ ├── RouteNotDefinedSolutionProvider.php
│ │ │ ├── RunningLaravelDuskInProductionProvider.php
│ │ │ ├── SolutionProviderRepository.php
│ │ │ ├── TableNotFoundSolutionProvider.php
│ │ │ ├── UndefinedVariableSolutionProvider.php
│ │ │ ├── UnknownValidationSolutionProvider.php
│ │ │ └── ViewNotFoundSolutionProvider.php
│ │ │ ├── Solutions
│ │ │ ├── GenerateAppKeySolution.php
│ │ │ ├── MakeViewVariableOptionalSolution.php
│ │ │ ├── MissingPackageSolution.php
│ │ │ ├── RunMigrationsSolution.php
│ │ │ ├── SolutionTransformer.php
│ │ │ ├── SuggestCorrectVariableNameSolution.php
│ │ │ ├── SuggestImportSolution.php
│ │ │ ├── SuggestUsingCorrectDbNameSolution.php
│ │ │ └── UseDefaultValetDbCredentialsSolution.php
│ │ │ ├── Support
│ │ │ ├── ComposerClassMap.php
│ │ │ ├── FakeComposer.php
│ │ │ ├── Packagist
│ │ │ │ ├── Package.php
│ │ │ │ └── Packagist.php
│ │ │ └── StringComparator.php
│ │ │ ├── Tabs
│ │ │ └── Tab.php
│ │ │ ├── Views
│ │ │ ├── Compilers
│ │ │ │ └── BladeSourceMapCompiler.php
│ │ │ ├── Concerns
│ │ │ │ └── CollectsViewExceptions.php
│ │ │ └── Engines
│ │ │ │ ├── CompilerEngine.php
│ │ │ │ └── PhpEngine.php
│ │ │ └── helpers.php
│ ├── fideloper
│ │ └── proxy
│ │ │ ├── LICENSE.md
│ │ │ ├── composer.json
│ │ │ ├── config
│ │ │ └── trustedproxy.php
│ │ │ └── src
│ │ │ ├── TrustProxies.php
│ │ │ └── TrustedProxyServiceProvider.php
│ ├── filp
│ │ └── whoops
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.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
│ │ │ ├── Resources
│ │ │ ├── css
│ │ │ │ └── whoops.base.css
│ │ │ ├── js
│ │ │ │ ├── clipboard.min.js
│ │ │ │ ├── prettify.min.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
│ ├── fruitcake
│ │ └── laravel-cors
│ │ │ ├── .github
│ │ │ ├── FUNDING.yml
│ │ │ ├── ISSUE_TEMPLATE
│ │ │ │ └── cors-not-working.md
│ │ │ └── workflows
│ │ │ │ └── run-tests.yml
│ │ │ ├── LICENSE
│ │ │ ├── changelog.md
│ │ │ ├── composer.json
│ │ │ ├── config
│ │ │ └── cors.php
│ │ │ ├── readme.md
│ │ │ └── src
│ │ │ ├── CorsServiceProvider.php
│ │ │ └── HandleCors.php
│ ├── fzaninotto
│ │ └── faker
│ │ │ ├── .github
│ │ │ └── ISSUE_TEMPLATE
│ │ │ │ └── bug_report.md
│ │ │ ├── .travis
│ │ │ └── xdebug.sh
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── composer.json
│ │ │ ├── readme.md
│ │ │ └── src
│ │ │ ├── Faker
│ │ │ ├── Calculator
│ │ │ │ ├── Ean.php
│ │ │ │ ├── Iban.php
│ │ │ │ ├── Inn.php
│ │ │ │ ├── Luhn.php
│ │ │ │ └── TCNo.php
│ │ │ ├── DefaultGenerator.php
│ │ │ ├── Documentor.php
│ │ │ ├── Factory.php
│ │ │ ├── Generator.php
│ │ │ ├── Guesser
│ │ │ │ └── Name.php
│ │ │ ├── ORM
│ │ │ │ ├── CakePHP
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Doctrine
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.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
│ │ │ │ ├── Miscellaneous.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── UserAgent.php
│ │ │ │ ├── Uuid.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
│ │ │ │ │ ├── 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
│ │ │ │ │ └── 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
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fr_CA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fr_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fr_FR
│ │ │ │ │ ├── Address.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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── pt_BR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.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
│ │ │ │ │ ├── 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
│ ├── guzzlehttp
│ │ ├── guzzle
│ │ │ ├── .php_cs
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Dockerfile
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── UPGRADING.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── Client.php
│ │ │ │ ├── ClientInterface.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
│ │ │ │ ├── SeekException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ └── TransferException.php
│ │ │ │ ├── Handler
│ │ │ │ ├── CurlFactory.php
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ ├── EasyHandle.php
│ │ │ │ ├── MockHandler.php
│ │ │ │ ├── Proxy.php
│ │ │ │ └── StreamHandler.php
│ │ │ │ ├── HandlerStack.php
│ │ │ │ ├── MessageFormatter.php
│ │ │ │ ├── Middleware.php
│ │ │ │ ├── Pool.php
│ │ │ │ ├── PrepareBodyMiddleware.php
│ │ │ │ ├── RedirectMiddleware.php
│ │ │ │ ├── RequestOptions.php
│ │ │ │ ├── RetryMiddleware.php
│ │ │ │ ├── TransferStats.php
│ │ │ │ ├── UriTemplate.php
│ │ │ │ ├── Utils.php
│ │ │ │ ├── functions.php
│ │ │ │ └── functions_include.php
│ │ ├── promises
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── CancellationException.php
│ │ │ │ ├── Coroutine.php
│ │ │ │ ├── EachPromise.php
│ │ │ │ ├── FulfilledPromise.php
│ │ │ │ ├── Promise.php
│ │ │ │ ├── PromiseInterface.php
│ │ │ │ ├── PromisorInterface.php
│ │ │ │ ├── RejectedPromise.php
│ │ │ │ ├── RejectionException.php
│ │ │ │ ├── TaskQueue.php
│ │ │ │ ├── TaskQueueInterface.php
│ │ │ │ ├── functions.php
│ │ │ │ └── functions_include.php
│ │ └── psr7
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── AppendStream.php
│ │ │ ├── BufferStream.php
│ │ │ ├── CachingStream.php
│ │ │ ├── DroppingStream.php
│ │ │ ├── FnStream.php
│ │ │ ├── InflateStream.php
│ │ │ ├── LazyOpenStream.php
│ │ │ ├── LimitStream.php
│ │ │ ├── MessageTrait.php
│ │ │ ├── MultipartStream.php
│ │ │ ├── NoSeekStream.php
│ │ │ ├── PumpStream.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── Rfc7230.php
│ │ │ ├── ServerRequest.php
│ │ │ ├── Stream.php
│ │ │ ├── StreamDecoratorTrait.php
│ │ │ ├── StreamWrapper.php
│ │ │ ├── UploadedFile.php
│ │ │ ├── Uri.php
│ │ │ ├── UriNormalizer.php
│ │ │ ├── UriResolver.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ ├── hamcrest
│ │ └── hamcrest-php
│ │ │ ├── .coveralls.yml
│ │ │ ├── .gitignore
│ │ │ ├── .gush.yml
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGES.txt
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.md
│ │ │ ├── TODO.txt
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── 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
│ │ │ ├── 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
│ ├── laravel
│ │ ├── framework
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ └── Illuminate
│ │ │ │ ├── Auth
│ │ │ │ ├── Access
│ │ │ │ │ ├── AuthorizationException.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
│ │ │ │ │ ├── Broadcaster.php
│ │ │ │ │ ├── LogBroadcaster.php
│ │ │ │ │ ├── NullBroadcaster.php
│ │ │ │ │ ├── PusherBroadcaster.php
│ │ │ │ │ ├── RedisBroadcaster.php
│ │ │ │ │ └── UsePusherChannelConventions.php
│ │ │ │ ├── Channel.php
│ │ │ │ ├── EncryptedPrivateChannel.php
│ │ │ │ ├── InteractsWithSockets.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── PendingBroadcast.php
│ │ │ │ ├── PresenceChannel.php
│ │ │ │ ├── PrivateChannel.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Bus
│ │ │ │ ├── BusServiceProvider.php
│ │ │ │ ├── Dispatcher.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Queueable.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Cache
│ │ │ │ ├── ApcStore.php
│ │ │ │ ├── ApcWrapper.php
│ │ │ │ ├── ArrayLock.php
│ │ │ │ ├── ArrayStore.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
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Lock.php
│ │ │ │ ├── LuaScripts.php
│ │ │ │ ├── MemcachedConnector.php
│ │ │ │ ├── MemcachedLock.php
│ │ │ │ ├── MemcachedStore.php
│ │ │ │ ├── NullStore.php
│ │ │ │ ├── RateLimiter.php
│ │ │ │ ├── RedisLock.php
│ │ │ │ ├── RedisStore.php
│ │ │ │ ├── RedisTaggedCache.php
│ │ │ │ ├── Repository.php
│ │ │ │ ├── RetrievesMultipleKeys.php
│ │ │ │ ├── TagSet.php
│ │ │ │ ├── TaggableStore.php
│ │ │ │ ├── TaggedCache.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Config
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Repository.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Console
│ │ │ │ ├── Application.php
│ │ │ │ ├── Command.php
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── CallsCommands.php
│ │ │ │ │ ├── HasParameters.php
│ │ │ │ │ └── InteractsWithIO.php
│ │ │ │ ├── ConfirmableTrait.php
│ │ │ │ ├── Events
│ │ │ │ │ ├── ArtisanStarting.php
│ │ │ │ │ ├── CommandFinished.php
│ │ │ │ │ ├── CommandStarting.php
│ │ │ │ │ ├── ScheduledTaskFailed.php
│ │ │ │ │ ├── ScheduledTaskFinished.php
│ │ │ │ │ ├── ScheduledTaskSkipped.php
│ │ │ │ │ └── ScheduledTaskStarting.php
│ │ │ │ ├── GeneratorCommand.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── OutputStyle.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── Scheduling
│ │ │ │ │ ├── CacheAware.php
│ │ │ │ │ ├── CacheEventMutex.php
│ │ │ │ │ ├── CacheSchedulingMutex.php
│ │ │ │ │ ├── CallbackEvent.php
│ │ │ │ │ ├── CommandBuilder.php
│ │ │ │ │ ├── Event.php
│ │ │ │ │ ├── EventMutex.php
│ │ │ │ │ ├── ManagesFrequencies.php
│ │ │ │ │ ├── Schedule.php
│ │ │ │ │ ├── ScheduleFinishCommand.php
│ │ │ │ │ ├── ScheduleRunCommand.php
│ │ │ │ │ └── SchedulingMutex.php
│ │ │ │ └── composer.json
│ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ └── Kernel.php
│ │ │ │ ├── Container
│ │ │ │ │ ├── BindingResolutionException.php
│ │ │ │ │ ├── Container.php
│ │ │ │ │ └── ContextualBindingBuilder.php
│ │ │ │ ├── Cookie
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ └── QueueingFactory.php
│ │ │ │ ├── Database
│ │ │ │ │ ├── Eloquent
│ │ │ │ │ │ ├── Castable.php
│ │ │ │ │ │ ├── CastsAttributes.php
│ │ │ │ │ │ └── CastsInboundAttributes.php
│ │ │ │ │ ├── Events
│ │ │ │ │ │ └── MigrationEvent.php
│ │ │ │ │ └── ModelIdentifier.php
│ │ │ │ ├── Debug
│ │ │ │ │ └── ExceptionHandler.php
│ │ │ │ ├── Encryption
│ │ │ │ │ ├── DecryptException.php
│ │ │ │ │ ├── EncryptException.php
│ │ │ │ │ └── Encrypter.php
│ │ │ │ ├── Events
│ │ │ │ │ └── Dispatcher.php
│ │ │ │ ├── Filesystem
│ │ │ │ │ ├── Cloud.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── FileExistsException.php
│ │ │ │ │ ├── FileNotFoundException.php
│ │ │ │ │ └── Filesystem.php
│ │ │ │ ├── Foundation
│ │ │ │ │ ├── Application.php
│ │ │ │ │ ├── CachesConfiguration.php
│ │ │ │ │ └── CachesRoutes.php
│ │ │ │ ├── Hashing
│ │ │ │ │ └── Hasher.php
│ │ │ │ ├── Http
│ │ │ │ │ └── Kernel.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Mail
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── MailQueue.php
│ │ │ │ │ ├── Mailable.php
│ │ │ │ │ └── Mailer.php
│ │ │ │ ├── Notifications
│ │ │ │ │ ├── Dispatcher.php
│ │ │ │ │ └── Factory.php
│ │ │ │ ├── Pagination
│ │ │ │ │ ├── LengthAwarePaginator.php
│ │ │ │ │ └── Paginator.php
│ │ │ │ ├── Pipeline
│ │ │ │ │ ├── Hub.php
│ │ │ │ │ └── Pipeline.php
│ │ │ │ ├── Queue
│ │ │ │ │ ├── EntityNotFoundException.php
│ │ │ │ │ ├── EntityResolver.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── Job.php
│ │ │ │ │ ├── Monitor.php
│ │ │ │ │ ├── Queue.php
│ │ │ │ │ ├── QueueableCollection.php
│ │ │ │ │ ├── QueueableEntity.php
│ │ │ │ │ └── ShouldQueue.php
│ │ │ │ ├── Redis
│ │ │ │ │ ├── Connection.php
│ │ │ │ │ ├── Connector.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ └── LimiterTimeoutException.php
│ │ │ │ ├── Routing
│ │ │ │ │ ├── BindingRegistrar.php
│ │ │ │ │ ├── Registrar.php
│ │ │ │ │ ├── ResponseFactory.php
│ │ │ │ │ ├── UrlGenerator.php
│ │ │ │ │ └── UrlRoutable.php
│ │ │ │ ├── Session
│ │ │ │ │ └── Session.php
│ │ │ │ ├── Support
│ │ │ │ │ ├── Arrayable.php
│ │ │ │ │ ├── DeferrableProvider.php
│ │ │ │ │ ├── DeferringDisplayableValue.php
│ │ │ │ │ ├── Htmlable.php
│ │ │ │ │ ├── Jsonable.php
│ │ │ │ │ ├── MessageBag.php
│ │ │ │ │ ├── MessageProvider.php
│ │ │ │ │ ├── Renderable.php
│ │ │ │ │ └── Responsable.php
│ │ │ │ ├── Translation
│ │ │ │ │ ├── HasLocalePreference.php
│ │ │ │ │ ├── Loader.php
│ │ │ │ │ └── Translator.php
│ │ │ │ ├── Validation
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── ImplicitRule.php
│ │ │ │ │ ├── Rule.php
│ │ │ │ │ ├── ValidatesWhenResolved.php
│ │ │ │ │ └── Validator.php
│ │ │ │ ├── View
│ │ │ │ │ ├── Engine.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ └── View.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Cookie
│ │ │ │ ├── CookieJar.php
│ │ │ │ ├── CookieServiceProvider.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Middleware
│ │ │ │ │ ├── AddQueuedCookiesToResponse.php
│ │ │ │ │ └── EncryptCookies.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Database
│ │ │ │ ├── Capsule
│ │ │ │ │ └── Manager.php
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── BuildsQueries.php
│ │ │ │ │ └── ManagesTransactions.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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── Seeds
│ │ │ │ │ │ ├── SeedCommand.php
│ │ │ │ │ │ ├── SeederMakeCommand.php
│ │ │ │ │ │ └── stubs
│ │ │ │ │ │ │ └── seeder.stub
│ │ │ │ │ └── WipeCommand.php
│ │ │ │ ├── DatabaseManager.php
│ │ │ │ ├── DatabaseServiceProvider.php
│ │ │ │ ├── DetectsConcurrencyErrors.php
│ │ │ │ ├── DetectsLostConnections.php
│ │ │ │ ├── Eloquent
│ │ │ │ │ ├── Builder.php
│ │ │ │ │ ├── Collection.php
│ │ │ │ │ ├── Concerns
│ │ │ │ │ │ ├── GuardsAttributes.php
│ │ │ │ │ │ ├── HasAttributes.php
│ │ │ │ │ │ ├── HasEvents.php
│ │ │ │ │ │ ├── HasGlobalScopes.php
│ │ │ │ │ │ ├── HasRelationships.php
│ │ │ │ │ │ ├── HasTimestamps.php
│ │ │ │ │ │ ├── HidesAttributes.php
│ │ │ │ │ │ └── QueriesRelationships.php
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── FactoryBuilder.php
│ │ │ │ │ ├── HigherOrderBuilderProxy.php
│ │ │ │ │ ├── JsonEncodingException.php
│ │ │ │ │ ├── MassAssignmentException.php
│ │ │ │ │ ├── Model.php
│ │ │ │ │ ├── ModelNotFoundException.php
│ │ │ │ │ ├── QueueEntityResolver.php
│ │ │ │ │ ├── RelationNotFoundException.php
│ │ │ │ │ ├── Relations
│ │ │ │ │ │ ├── BelongsTo.php
│ │ │ │ │ │ ├── BelongsToMany.php
│ │ │ │ │ │ ├── Concerns
│ │ │ │ │ │ │ ├── AsPivot.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
│ │ │ │ │ ├── MigrationEnded.php
│ │ │ │ │ ├── MigrationEvent.php
│ │ │ │ │ ├── MigrationStarted.php
│ │ │ │ │ ├── MigrationsEnded.php
│ │ │ │ │ ├── MigrationsStarted.php
│ │ │ │ │ ├── NoPendingMigrations.php
│ │ │ │ │ ├── QueryExecuted.php
│ │ │ │ │ ├── StatementPrepared.php
│ │ │ │ │ ├── TransactionBeginning.php
│ │ │ │ │ ├── TransactionCommitted.php
│ │ │ │ │ └── TransactionRolledBack.php
│ │ │ │ ├── Grammar.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── MigrationServiceProvider.php
│ │ │ │ ├── Migrations
│ │ │ │ │ ├── DatabaseMigrationRepository.php
│ │ │ │ │ ├── Migration.php
│ │ │ │ │ ├── MigrationCreator.php
│ │ │ │ │ ├── MigrationRepositoryInterface.php
│ │ │ │ │ ├── Migrator.php
│ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── migration.create.stub
│ │ │ │ │ │ ├── migration.stub
│ │ │ │ │ │ └── migration.update.stub
│ │ │ │ ├── MySqlConnection.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
│ │ │ │ ├── SQLiteConnection.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
│ │ │ │ │ ├── MySqlBuilder.php
│ │ │ │ │ ├── PostgresBuilder.php
│ │ │ │ │ ├── SQLiteBuilder.php
│ │ │ │ │ └── SqlServerBuilder.php
│ │ │ │ ├── Seeder.php
│ │ │ │ ├── SqlServerConnection.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Encryption
│ │ │ │ ├── Encrypter.php
│ │ │ │ ├── EncryptionServiceProvider.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ └── composer.json
│ │ │ │ ├── Events
│ │ │ │ ├── CallQueuedListener.php
│ │ │ │ ├── Dispatcher.php
│ │ │ │ ├── EventServiceProvider.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── NullDispatcher.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Filesystem
│ │ │ │ ├── Cache.php
│ │ │ │ ├── Filesystem.php
│ │ │ │ ├── FilesystemAdapter.php
│ │ │ │ ├── FilesystemManager.php
│ │ │ │ ├── FilesystemServiceProvider.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ └── composer.json
│ │ │ │ ├── Foundation
│ │ │ │ ├── AliasLoader.php
│ │ │ │ ├── Application.php
│ │ │ │ ├── Auth
│ │ │ │ │ ├── Access
│ │ │ │ │ │ ├── Authorizable.php
│ │ │ │ │ │ └── AuthorizesRequests.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
│ │ │ │ │ └── PendingDispatch.php
│ │ │ │ ├── ComposerScripts.php
│ │ │ │ ├── Console
│ │ │ │ │ ├── CastMakeCommand.php
│ │ │ │ │ ├── ChannelMakeCommand.php
│ │ │ │ │ ├── ClearCompiledCommand.php
│ │ │ │ │ ├── ClosureCommand.php
│ │ │ │ │ ├── ComponentMakeCommand.php
│ │ │ │ │ ├── ConfigCacheCommand.php
│ │ │ │ │ ├── ConfigClearCommand.php
│ │ │ │ │ ├── ConsoleMakeCommand.php
│ │ │ │ │ ├── DownCommand.php
│ │ │ │ │ ├── EnvironmentCommand.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
│ │ │ │ │ ├── ServeCommand.php
│ │ │ │ │ ├── StorageLinkCommand.php
│ │ │ │ │ ├── StubPublishCommand.php
│ │ │ │ │ ├── TestMakeCommand.php
│ │ │ │ │ ├── UpCommand.php
│ │ │ │ │ ├── VendorPublishCommand.php
│ │ │ │ │ ├── ViewCacheCommand.php
│ │ │ │ │ ├── ViewClearCommand.php
│ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── markdown-mail.stub
│ │ │ │ │ │ ├── markdown-notification.stub
│ │ │ │ │ │ ├── markdown.stub
│ │ │ │ │ │ ├── model.pivot.stub
│ │ │ │ │ │ ├── model.stub
│ │ │ │ │ │ ├── notification.stub
│ │ │ │ │ │ ├── observer.plain.stub
│ │ │ │ │ │ ├── observer.stub
│ │ │ │ │ │ ├── policy.plain.stub
│ │ │ │ │ │ ├── policy.stub
│ │ │ │ │ │ ├── provider.stub
│ │ │ │ │ │ ├── request.stub
│ │ │ │ │ │ ├── resource-collection.stub
│ │ │ │ │ │ ├── resource.stub
│ │ │ │ │ │ ├── routes.stub
│ │ │ │ │ │ ├── rule.stub
│ │ │ │ │ │ ├── test.stub
│ │ │ │ │ │ ├── test.unit.stub
│ │ │ │ │ │ └── view-component.stub
│ │ │ │ ├── EnvironmentDetector.php
│ │ │ │ ├── Events
│ │ │ │ │ ├── DiscoverEvents.php
│ │ │ │ │ ├── Dispatchable.php
│ │ │ │ │ └── LocaleUpdated.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ ├── Handler.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
│ │ │ │ │ │ ├── illustrated-layout.blade.php
│ │ │ │ │ │ ├── layout.blade.php
│ │ │ │ │ │ └── minimal.blade.php
│ │ │ │ ├── Http
│ │ │ │ │ ├── Events
│ │ │ │ │ │ └── RequestHandled.php
│ │ │ │ │ ├── Exceptions
│ │ │ │ │ │ └── MaintenanceModeException.php
│ │ │ │ │ ├── FormRequest.php
│ │ │ │ │ ├── Kernel.php
│ │ │ │ │ └── Middleware
│ │ │ │ │ │ ├── CheckForMaintenanceMode.php
│ │ │ │ │ │ ├── ConvertEmptyStringsToNull.php
│ │ │ │ │ │ ├── TransformsRequest.php
│ │ │ │ │ │ ├── TrimStrings.php
│ │ │ │ │ │ ├── ValidatePostSize.php
│ │ │ │ │ │ └── VerifyCsrfToken.php
│ │ │ │ ├── Inspiring.php
│ │ │ │ ├── Mix.php
│ │ │ │ ├── PackageManifest.php
│ │ │ │ ├── ProviderRepository.php
│ │ │ │ ├── Providers
│ │ │ │ │ ├── ArtisanServiceProvider.php
│ │ │ │ │ ├── ComposerServiceProvider.php
│ │ │ │ │ ├── ConsoleSupportServiceProvider.php
│ │ │ │ │ ├── FormRequestServiceProvider.php
│ │ │ │ │ └── FoundationServiceProvider.php
│ │ │ │ ├── Support
│ │ │ │ │ └── Providers
│ │ │ │ │ │ ├── AuthServiceProvider.php
│ │ │ │ │ │ ├── EventServiceProvider.php
│ │ │ │ │ │ └── RouteServiceProvider.php
│ │ │ │ ├── Testing
│ │ │ │ │ ├── Concerns
│ │ │ │ │ │ ├── InteractsWithAuthentication.php
│ │ │ │ │ │ ├── InteractsWithConsole.php
│ │ │ │ │ │ ├── InteractsWithContainer.php
│ │ │ │ │ │ ├── InteractsWithDatabase.php
│ │ │ │ │ │ ├── InteractsWithExceptionHandling.php
│ │ │ │ │ │ ├── InteractsWithRedis.php
│ │ │ │ │ │ ├── InteractsWithSession.php
│ │ │ │ │ │ ├── MakesHttpRequests.php
│ │ │ │ │ │ └── MocksApplicationServices.php
│ │ │ │ │ ├── DatabaseMigrations.php
│ │ │ │ │ ├── DatabaseTransactions.php
│ │ │ │ │ ├── RefreshDatabase.php
│ │ │ │ │ ├── RefreshDatabaseState.php
│ │ │ │ │ ├── TestCase.php
│ │ │ │ │ ├── WithFaker.php
│ │ │ │ │ ├── WithoutEvents.php
│ │ │ │ │ └── WithoutMiddleware.php
│ │ │ │ ├── Validation
│ │ │ │ │ └── ValidatesRequests.php
│ │ │ │ ├── helpers.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
│ │ │ │ │ ├── Factory.php
│ │ │ │ │ ├── PendingRequest.php
│ │ │ │ │ ├── Request.php
│ │ │ │ │ ├── RequestException.php
│ │ │ │ │ ├── Response.php
│ │ │ │ │ └── ResponseSequence.php
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── InteractsWithContentTypes.php
│ │ │ │ │ ├── InteractsWithFlashData.php
│ │ │ │ │ └── InteractsWithInput.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ ├── HttpResponseException.php
│ │ │ │ │ ├── PostTooLargeException.php
│ │ │ │ │ └── ThrottleRequestsException.php
│ │ │ │ ├── File.php
│ │ │ │ ├── FileHelpers.php
│ │ │ │ ├── JsonResponse.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── Middleware
│ │ │ │ │ ├── CheckResponseForModifications.php
│ │ │ │ │ ├── FrameGuard.php
│ │ │ │ │ ├── SetCacheHeaders.php
│ │ │ │ │ └── TrustHosts.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
│ │ │ │ ├── Mail
│ │ │ │ ├── Events
│ │ │ │ │ ├── MessageSending.php
│ │ │ │ │ └── MessageSent.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── MailManager.php
│ │ │ │ ├── MailServiceProvider.php
│ │ │ │ ├── Mailable.php
│ │ │ │ ├── Mailer.php
│ │ │ │ ├── Markdown.php
│ │ │ │ ├── Message.php
│ │ │ │ ├── PendingMail.php
│ │ │ │ ├── SendQueuedMailable.php
│ │ │ │ ├── Transport
│ │ │ │ │ ├── ArrayTransport.php
│ │ │ │ │ ├── LogTransport.php
│ │ │ │ │ ├── MailgunTransport.php
│ │ │ │ │ ├── SesTransport.php
│ │ │ │ │ └── Transport.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
│ │ │ │ ├── AbstractPaginator.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── LengthAwarePaginator.php
│ │ │ │ ├── PaginationServiceProvider.php
│ │ │ │ ├── Paginator.php
│ │ │ │ ├── UrlWindow.php
│ │ │ │ ├── composer.json
│ │ │ │ └── resources
│ │ │ │ │ └── views
│ │ │ │ │ ├── bootstrap-4.blade.php
│ │ │ │ │ ├── default.blade.php
│ │ │ │ │ ├── semantic-ui.blade.php
│ │ │ │ │ ├── simple-bootstrap-4.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
│ │ │ │ │ ├── FailedTableCommand.php
│ │ │ │ │ ├── FlushFailedCommand.php
│ │ │ │ │ ├── ForgetFailedCommand.php
│ │ │ │ │ ├── ListFailedCommand.php
│ │ │ │ │ ├── ListenCommand.php
│ │ │ │ │ ├── RestartCommand.php
│ │ │ │ │ ├── RetryCommand.php
│ │ │ │ │ ├── TableCommand.php
│ │ │ │ │ ├── WorkCommand.php
│ │ │ │ │ └── stubs
│ │ │ │ │ │ ├── failed_jobs.stub
│ │ │ │ │ │ └── jobs.stub
│ │ │ │ ├── DatabaseQueue.php
│ │ │ │ ├── Events
│ │ │ │ │ ├── JobExceptionOccurred.php
│ │ │ │ │ ├── JobFailed.php
│ │ │ │ │ ├── JobProcessed.php
│ │ │ │ │ ├── JobProcessing.php
│ │ │ │ │ ├── Looping.php
│ │ │ │ │ └── WorkerStopping.php
│ │ │ │ ├── Failed
│ │ │ │ │ ├── DatabaseFailedJobProvider.php
│ │ │ │ │ ├── DynamoDbFailedJobProvider.php
│ │ │ │ │ ├── FailedJobProviderInterface.php
│ │ │ │ │ └── NullFailedJobProvider.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
│ │ │ │ ├── NullQueue.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── QueueManager.php
│ │ │ │ ├── QueueServiceProvider.php
│ │ │ │ ├── README.md
│ │ │ │ ├── RedisQueue.php
│ │ │ │ ├── SerializableClosure.php
│ │ │ │ ├── SerializesAndRestoresModelIdentifiers.php
│ │ │ │ ├── SerializesModels.php
│ │ │ │ ├── SqsQueue.php
│ │ │ │ ├── SyncQueue.php
│ │ │ │ ├── Worker.php
│ │ │ │ ├── WorkerOptions.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Redis
│ │ │ │ ├── Connections
│ │ │ │ │ ├── Connection.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
│ │ │ │ ├── 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.stub
│ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ ├── controller.stub
│ │ │ │ │ │ └── middleware.stub
│ │ │ │ ├── Contracts
│ │ │ │ │ └── ControllerDispatcher.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── ControllerDispatcher.php
│ │ │ │ ├── ControllerMiddlewareOptions.php
│ │ │ │ ├── Events
│ │ │ │ │ └── RouteMatched.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ ├── InvalidSignatureException.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
│ │ │ │ ├── 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
│ │ │ │ ├── TokenMismatchException.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Support
│ │ │ │ ├── AggregateServiceProvider.php
│ │ │ │ ├── Arr.php
│ │ │ │ ├── Carbon.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── Composer.php
│ │ │ │ ├── ConfigurationUrlParser.php
│ │ │ │ ├── DateFactory.php
│ │ │ │ ├── Enumerable.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
│ │ │ │ │ ├── Password.php
│ │ │ │ │ ├── Queue.php
│ │ │ │ │ ├── Redirect.php
│ │ │ │ │ ├── Redis.php
│ │ │ │ │ ├── Request.php
│ │ │ │ │ ├── Response.php
│ │ │ │ │ ├── Route.php
│ │ │ │ │ ├── Schema.php
│ │ │ │ │ ├── Session.php
│ │ │ │ │ ├── Storage.php
│ │ │ │ │ ├── URL.php
│ │ │ │ │ ├── Validator.php
│ │ │ │ │ └── View.php
│ │ │ │ ├── Fluent.php
│ │ │ │ ├── HigherOrderCollectionProxy.php
│ │ │ │ ├── HigherOrderTapProxy.php
│ │ │ │ ├── HigherOrderWhenProxy.php
│ │ │ │ ├── HtmlString.php
│ │ │ │ ├── InteractsWithTime.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── LazyCollection.php
│ │ │ │ ├── Manager.php
│ │ │ │ ├── MessageBag.php
│ │ │ │ ├── NamespacedItemResolver.php
│ │ │ │ ├── Optional.php
│ │ │ │ ├── Pluralizer.php
│ │ │ │ ├── ProcessUtils.php
│ │ │ │ ├── Reflector.php
│ │ │ │ ├── ServiceProvider.php
│ │ │ │ ├── Str.php
│ │ │ │ ├── Stringable.php
│ │ │ │ ├── Testing
│ │ │ │ │ └── Fakes
│ │ │ │ │ │ ├── BusFake.php
│ │ │ │ │ │ ├── EventFake.php
│ │ │ │ │ │ ├── MailFake.php
│ │ │ │ │ │ ├── NotificationFake.php
│ │ │ │ │ │ ├── PendingMailFake.php
│ │ │ │ │ │ └── QueueFake.php
│ │ │ │ ├── Traits
│ │ │ │ │ ├── CapsuleManagerTrait.php
│ │ │ │ │ ├── EnumeratesValues.php
│ │ │ │ │ ├── ForwardsCalls.php
│ │ │ │ │ ├── Localizable.php
│ │ │ │ │ ├── Macroable.php
│ │ │ │ │ ├── ReflectsClosures.php
│ │ │ │ │ └── Tappable.php
│ │ │ │ ├── ViewErrorBag.php
│ │ │ │ ├── composer.json
│ │ │ │ └── helpers.php
│ │ │ │ ├── Testing
│ │ │ │ ├── Assert.php
│ │ │ │ ├── Constraints
│ │ │ │ │ ├── ArraySubset.php
│ │ │ │ │ ├── CountInDatabase.php
│ │ │ │ │ ├── HasInDatabase.php
│ │ │ │ │ ├── SeeInOrder.php
│ │ │ │ │ └── SoftDeletedInDatabase.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── PendingCommand.php
│ │ │ │ ├── TestResponse.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Translation
│ │ │ │ ├── ArrayLoader.php
│ │ │ │ ├── FileLoader.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── MessageSelector.php
│ │ │ │ ├── TranslationServiceProvider.php
│ │ │ │ ├── Translator.php
│ │ │ │ └── composer.json
│ │ │ │ ├── Validation
│ │ │ │ ├── ClosureValidationRule.php
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── FilterEmailValidation.php
│ │ │ │ │ ├── FormatsMessages.php
│ │ │ │ │ ├── ReplacesAttributes.php
│ │ │ │ │ └── ValidatesAttributes.php
│ │ │ │ ├── DatabasePresenceVerifier.php
│ │ │ │ ├── DatabasePresenceVerifierInterface.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── PresenceVerifierInterface.php
│ │ │ │ ├── Rule.php
│ │ │ │ ├── Rules
│ │ │ │ │ ├── DatabaseRule.php
│ │ │ │ │ ├── Dimensions.php
│ │ │ │ │ ├── Exists.php
│ │ │ │ │ ├── In.php
│ │ │ │ │ ├── NotIn.php
│ │ │ │ │ ├── RequiredIf.php
│ │ │ │ │ └── Unique.php
│ │ │ │ ├── UnauthorizedException.php
│ │ │ │ ├── ValidatesWhenResolvedTrait.php
│ │ │ │ ├── ValidationData.php
│ │ │ │ ├── ValidationException.php
│ │ │ │ ├── ValidationRuleParser.php
│ │ │ │ ├── ValidationServiceProvider.php
│ │ │ │ ├── Validator.php
│ │ │ │ └── composer.json
│ │ │ │ └── View
│ │ │ │ ├── AnonymousComponent.php
│ │ │ │ ├── Compilers
│ │ │ │ ├── BladeCompiler.php
│ │ │ │ ├── Compiler.php
│ │ │ │ ├── CompilerInterface.php
│ │ │ │ ├── ComponentTagCompiler.php
│ │ │ │ └── Concerns
│ │ │ │ │ ├── CompilesAuthorizations.php
│ │ │ │ │ ├── CompilesComments.php
│ │ │ │ │ ├── CompilesComponents.php
│ │ │ │ │ ├── CompilesConditionals.php
│ │ │ │ │ ├── CompilesEchos.php
│ │ │ │ │ ├── CompilesErrors.php
│ │ │ │ │ ├── CompilesHelpers.php
│ │ │ │ │ ├── CompilesIncludes.php
│ │ │ │ │ ├── CompilesInjections.php
│ │ │ │ │ ├── CompilesJson.php
│ │ │ │ │ ├── CompilesLayouts.php
│ │ │ │ │ ├── CompilesLoops.php
│ │ │ │ │ ├── CompilesRawPhp.php
│ │ │ │ │ ├── CompilesStacks.php
│ │ │ │ │ └── CompilesTranslations.php
│ │ │ │ ├── Component.php
│ │ │ │ ├── ComponentAttributeBag.php
│ │ │ │ ├── Concerns
│ │ │ │ ├── ManagesComponents.php
│ │ │ │ ├── ManagesEvents.php
│ │ │ │ ├── ManagesLayouts.php
│ │ │ │ ├── ManagesLoops.php
│ │ │ │ ├── ManagesStacks.php
│ │ │ │ └── ManagesTranslations.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
│ │ │ │ ├── ViewFinderInterface.php
│ │ │ │ ├── ViewName.php
│ │ │ │ ├── ViewServiceProvider.php
│ │ │ │ └── composer.json
│ │ └── tinker
│ │ │ ├── CHANGELOG.md
│ │ │ ├── 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-0.x.md
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bin
│ │ │ │ └── commonmark
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── Block
│ │ │ │ ├── Element
│ │ │ │ │ ├── AbstractBlock.php
│ │ │ │ │ ├── AbstractStringContainerBlock.php
│ │ │ │ │ ├── BlockQuote.php
│ │ │ │ │ ├── Document.php
│ │ │ │ │ ├── FencedCode.php
│ │ │ │ │ ├── Heading.php
│ │ │ │ │ ├── HtmlBlock.php
│ │ │ │ │ ├── IndentedCode.php
│ │ │ │ │ ├── InlineContainerInterface.php
│ │ │ │ │ ├── ListBlock.php
│ │ │ │ │ ├── ListData.php
│ │ │ │ │ ├── ListItem.php
│ │ │ │ │ ├── Paragraph.php
│ │ │ │ │ ├── StringContainerInterface.php
│ │ │ │ │ └── ThematicBreak.php
│ │ │ │ ├── Parser
│ │ │ │ │ ├── ATXHeadingParser.php
│ │ │ │ │ ├── BlockParserInterface.php
│ │ │ │ │ ├── BlockQuoteParser.php
│ │ │ │ │ ├── FencedCodeParser.php
│ │ │ │ │ ├── HtmlBlockParser.php
│ │ │ │ │ ├── IndentedCodeParser.php
│ │ │ │ │ ├── LazyParagraphParser.php
│ │ │ │ │ ├── ListParser.php
│ │ │ │ │ ├── SetExtHeadingParser.php
│ │ │ │ │ └── ThematicBreakParser.php
│ │ │ │ └── Renderer
│ │ │ │ │ ├── BlockQuoteRenderer.php
│ │ │ │ │ ├── BlockRendererInterface.php
│ │ │ │ │ ├── DocumentRenderer.php
│ │ │ │ │ ├── FencedCodeRenderer.php
│ │ │ │ │ ├── HeadingRenderer.php
│ │ │ │ │ ├── HtmlBlockRenderer.php
│ │ │ │ │ ├── IndentedCodeRenderer.php
│ │ │ │ │ ├── ListBlockRenderer.php
│ │ │ │ │ ├── ListItemRenderer.php
│ │ │ │ │ ├── ParagraphRenderer.php
│ │ │ │ │ └── ThematicBreakRenderer.php
│ │ │ │ ├── CommonMarkConverter.php
│ │ │ │ ├── ConfigurableEnvironmentInterface.php
│ │ │ │ ├── Context.php
│ │ │ │ ├── ContextInterface.php
│ │ │ │ ├── Converter.php
│ │ │ │ ├── ConverterInterface.php
│ │ │ │ ├── Cursor.php
│ │ │ │ ├── Delimiter
│ │ │ │ ├── Delimiter.php
│ │ │ │ ├── DelimiterInterface.php
│ │ │ │ ├── DelimiterStack.php
│ │ │ │ └── Processor
│ │ │ │ │ ├── DelimiterProcessorCollection.php
│ │ │ │ │ ├── DelimiterProcessorCollectionInterface.php
│ │ │ │ │ ├── DelimiterProcessorInterface.php
│ │ │ │ │ ├── EmphasisDelimiterProcessor.php
│ │ │ │ │ └── StaggeredDelimiterProcessor.php
│ │ │ │ ├── DocParser.php
│ │ │ │ ├── DocParserInterface.php
│ │ │ │ ├── ElementRendererInterface.php
│ │ │ │ ├── Environment.php
│ │ │ │ ├── EnvironmentAwareInterface.php
│ │ │ │ ├── EnvironmentInterface.php
│ │ │ │ ├── Event
│ │ │ │ ├── AbstractEvent.php
│ │ │ │ ├── DocumentParsedEvent.php
│ │ │ │ └── DocumentPreParsedEvent.php
│ │ │ │ ├── Exception
│ │ │ │ ├── InvalidOptionException.php
│ │ │ │ └── UnexpectedEncodingException.php
│ │ │ │ ├── Extension
│ │ │ │ ├── Attributes
│ │ │ │ │ ├── AttributesExtension.php
│ │ │ │ │ ├── Event
│ │ │ │ │ │ └── AttributesListener.php
│ │ │ │ │ ├── Node
│ │ │ │ │ │ ├── Attributes.php
│ │ │ │ │ │ └── AttributesInline.php
│ │ │ │ │ ├── Parser
│ │ │ │ │ │ ├── AttributesBlockParser.php
│ │ │ │ │ │ └── AttributesInlineParser.php
│ │ │ │ │ └── Util
│ │ │ │ │ │ └── AttributesHelper.php
│ │ │ │ ├── Autolink
│ │ │ │ │ ├── AutolinkExtension.php
│ │ │ │ │ ├── EmailAutolinkProcessor.php
│ │ │ │ │ ├── InlineMentionParser.php
│ │ │ │ │ └── UrlAutolinkProcessor.php
│ │ │ │ ├── CommonMarkCoreExtension.php
│ │ │ │ ├── DisallowedRawHtml
│ │ │ │ │ ├── DisallowedRawHtmlBlockRenderer.php
│ │ │ │ │ ├── DisallowedRawHtmlExtension.php
│ │ │ │ │ └── DisallowedRawHtmlInlineRenderer.php
│ │ │ │ ├── ExtensionInterface.php
│ │ │ │ ├── ExternalLink
│ │ │ │ │ ├── ExternalLinkExtension.php
│ │ │ │ │ └── ExternalLinkProcessor.php
│ │ │ │ ├── Footnote
│ │ │ │ │ ├── Event
│ │ │ │ │ │ ├── AnonymousFootnotesListener.php
│ │ │ │ │ │ ├── GatherFootnotesListener.php
│ │ │ │ │ │ └── NumberFootnotesListener.php
│ │ │ │ │ ├── FootnoteExtension.php
│ │ │ │ │ ├── Node
│ │ │ │ │ │ ├── Footnote.php
│ │ │ │ │ │ ├── FootnoteBackref.php
│ │ │ │ │ │ ├── FootnoteContainer.php
│ │ │ │ │ │ └── FootnoteRef.php
│ │ │ │ │ ├── Parser
│ │ │ │ │ │ ├── AnonymousFootnoteRefParser.php
│ │ │ │ │ │ ├── FootnoteParser.php
│ │ │ │ │ │ └── FootnoteRefParser.php
│ │ │ │ │ └── Renderer
│ │ │ │ │ │ ├── FootnoteBackrefRenderer.php
│ │ │ │ │ │ ├── FootnoteContainerRenderer.php
│ │ │ │ │ │ ├── FootnoteRefRenderer.php
│ │ │ │ │ │ └── FootnoteRenderer.php
│ │ │ │ ├── GithubFlavoredMarkdownExtension.php
│ │ │ │ ├── HeadingPermalink
│ │ │ │ │ ├── HeadingPermalink.php
│ │ │ │ │ ├── HeadingPermalinkExtension.php
│ │ │ │ │ ├── HeadingPermalinkProcessor.php
│ │ │ │ │ ├── HeadingPermalinkRenderer.php
│ │ │ │ │ └── Slug
│ │ │ │ │ │ ├── DefaultSlugGenerator.php
│ │ │ │ │ │ └── SlugGeneratorInterface.php
│ │ │ │ ├── InlinesOnly
│ │ │ │ │ ├── ChildRenderer.php
│ │ │ │ │ └── InlinesOnlyExtension.php
│ │ │ │ ├── Mention
│ │ │ │ │ ├── Generator
│ │ │ │ │ │ ├── CallbackGenerator.php
│ │ │ │ │ │ ├── MentionGeneratorInterface.php
│ │ │ │ │ │ └── StringTemplateLinkGenerator.php
│ │ │ │ │ ├── Mention.php
│ │ │ │ │ ├── MentionExtension.php
│ │ │ │ │ └── MentionParser.php
│ │ │ │ ├── SmartPunct
│ │ │ │ │ ├── PunctuationParser.php
│ │ │ │ │ ├── Quote.php
│ │ │ │ │ ├── QuoteParser.php
│ │ │ │ │ ├── QuoteProcessor.php
│ │ │ │ │ ├── QuoteRenderer.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
│ │ │ │ ├── TableOfContents
│ │ │ │ │ ├── Node
│ │ │ │ │ │ ├── TableOfContents.php
│ │ │ │ │ │ └── TableOfContentsPlaceholder.php
│ │ │ │ │ ├── Normalizer
│ │ │ │ │ │ ├── AsIsNormalizerStrategy.php
│ │ │ │ │ │ ├── FlatNormalizerStrategy.php
│ │ │ │ │ │ ├── NormalizerStrategyInterface.php
│ │ │ │ │ │ └── RelativeNormalizerStrategy.php
│ │ │ │ │ ├── TableOfContents.php
│ │ │ │ │ ├── TableOfContentsBuilder.php
│ │ │ │ │ ├── TableOfContentsExtension.php
│ │ │ │ │ ├── TableOfContentsGenerator.php
│ │ │ │ │ ├── TableOfContentsGeneratorInterface.php
│ │ │ │ │ ├── TableOfContentsPlaceholderParser.php
│ │ │ │ │ └── TableOfContentsPlaceholderRenderer.php
│ │ │ │ └── TaskList
│ │ │ │ │ ├── TaskListExtension.php
│ │ │ │ │ ├── TaskListItemMarker.php
│ │ │ │ │ ├── TaskListItemMarkerParser.php
│ │ │ │ │ └── TaskListItemMarkerRenderer.php
│ │ │ │ ├── GithubFlavoredMarkdownConverter.php
│ │ │ │ ├── HtmlElement.php
│ │ │ │ ├── HtmlRenderer.php
│ │ │ │ ├── Inline
│ │ │ │ ├── AdjacentTextMerger.php
│ │ │ │ ├── Element
│ │ │ │ │ ├── AbstractInline.php
│ │ │ │ │ ├── AbstractStringContainer.php
│ │ │ │ │ ├── AbstractWebResource.php
│ │ │ │ │ ├── Code.php
│ │ │ │ │ ├── Emphasis.php
│ │ │ │ │ ├── HtmlInline.php
│ │ │ │ │ ├── Image.php
│ │ │ │ │ ├── Link.php
│ │ │ │ │ ├── Newline.php
│ │ │ │ │ ├── Strong.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── Parser
│ │ │ │ │ ├── AutolinkParser.php
│ │ │ │ │ ├── BacktickParser.php
│ │ │ │ │ ├── BangParser.php
│ │ │ │ │ ├── CloseBracketParser.php
│ │ │ │ │ ├── EntityParser.php
│ │ │ │ │ ├── EscapableParser.php
│ │ │ │ │ ├── HtmlInlineParser.php
│ │ │ │ │ ├── InlineParserInterface.php
│ │ │ │ │ ├── NewlineParser.php
│ │ │ │ │ └── OpenBracketParser.php
│ │ │ │ └── Renderer
│ │ │ │ │ ├── CodeRenderer.php
│ │ │ │ │ ├── EmphasisRenderer.php
│ │ │ │ │ ├── HtmlInlineRenderer.php
│ │ │ │ │ ├── ImageRenderer.php
│ │ │ │ │ ├── InlineRendererInterface.php
│ │ │ │ │ ├── LinkRenderer.php
│ │ │ │ │ ├── NewlineRenderer.php
│ │ │ │ │ ├── StrongRenderer.php
│ │ │ │ │ └── TextRenderer.php
│ │ │ │ ├── InlineParserContext.php
│ │ │ │ ├── InlineParserEngine.php
│ │ │ │ ├── Input
│ │ │ │ ├── MarkdownInput.php
│ │ │ │ └── MarkdownInputInterface.php
│ │ │ │ ├── MarkdownConverterInterface.php
│ │ │ │ ├── Node
│ │ │ │ ├── Node.php
│ │ │ │ ├── NodeWalker.php
│ │ │ │ └── NodeWalkerEvent.php
│ │ │ │ ├── Normalizer
│ │ │ │ ├── SlugNormalizer.php
│ │ │ │ ├── TextNormalizer.php
│ │ │ │ └── TextNormalizerInterface.php
│ │ │ │ ├── Reference
│ │ │ │ ├── Reference.php
│ │ │ │ ├── ReferenceInterface.php
│ │ │ │ ├── ReferenceMap.php
│ │ │ │ ├── ReferenceMapInterface.php
│ │ │ │ └── ReferenceParser.php
│ │ │ │ ├── UnmatchedBlockCloser.php
│ │ │ │ └── Util
│ │ │ │ ├── ArrayCollection.php
│ │ │ │ ├── Configuration.php
│ │ │ │ ├── ConfigurationAwareInterface.php
│ │ │ │ ├── ConfigurationInterface.php
│ │ │ │ ├── Html5Entities.php
│ │ │ │ ├── Html5EntityDecoder.php
│ │ │ │ ├── LinkParserHelper.php
│ │ │ │ ├── PrioritizedList.php
│ │ │ │ ├── RegexHelper.php
│ │ │ │ ├── UrlEncoder.php
│ │ │ │ └── Xml.php
│ │ └── flysystem
│ │ │ ├── LICENSE
│ │ │ ├── SECURITY.md
│ │ │ ├── composer.json
│ │ │ ├── deprecations.md
│ │ │ └── src
│ │ │ ├── Adapter
│ │ │ ├── AbstractAdapter.php
│ │ │ ├── AbstractFtpAdapter.php
│ │ │ ├── CanOverwriteFiles.php
│ │ │ ├── Ftp.php
│ │ │ ├── Ftpd.php
│ │ │ ├── Local.php
│ │ │ ├── NullAdapter.php
│ │ │ ├── Polyfill
│ │ │ │ ├── NotSupportingVisibilityTrait.php
│ │ │ │ ├── StreamedCopyTrait.php
│ │ │ │ ├── StreamedReadingTrait.php
│ │ │ │ ├── StreamedTrait.php
│ │ │ │ └── StreamedWritingTrait.php
│ │ │ └── SynologyFtp.php
│ │ │ ├── AdapterInterface.php
│ │ │ ├── Config.php
│ │ │ ├── ConfigAwareTrait.php
│ │ │ ├── ConnectionErrorException.php
│ │ │ ├── ConnectionRuntimeException.php
│ │ │ ├── Directory.php
│ │ │ ├── Exception.php
│ │ │ ├── File.php
│ │ │ ├── FileExistsException.php
│ │ │ ├── FileNotFoundException.php
│ │ │ ├── Filesystem.php
│ │ │ ├── FilesystemException.php
│ │ │ ├── FilesystemInterface.php
│ │ │ ├── FilesystemNotFoundException.php
│ │ │ ├── Handler.php
│ │ │ ├── InvalidRootException.php
│ │ │ ├── MountManager.php
│ │ │ ├── NotSupportedException.php
│ │ │ ├── Plugin
│ │ │ ├── AbstractPlugin.php
│ │ │ ├── EmptyDir.php
│ │ │ ├── ForcedCopy.php
│ │ │ ├── ForcedRename.php
│ │ │ ├── GetWithMetadata.php
│ │ │ ├── ListFiles.php
│ │ │ ├── ListPaths.php
│ │ │ ├── ListWith.php
│ │ │ ├── PluggableTrait.php
│ │ │ └── PluginNotFoundException.php
│ │ │ ├── PluginInterface.php
│ │ │ ├── ReadInterface.php
│ │ │ ├── RootViolationException.php
│ │ │ ├── SafeStorage.php
│ │ │ ├── UnreadableFileException.php
│ │ │ ├── Util.php
│ │ │ └── Util
│ │ │ ├── ContentListingFormatter.php
│ │ │ ├── MimeType.php
│ │ │ └── StreamHasher.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
│ │ │ │ ├── PHPUnitConstraint.php
│ │ │ │ ├── Pattern.php
│ │ │ │ ├── Subset.php
│ │ │ │ └── Type.php
│ │ │ ├── MethodCall.php
│ │ │ ├── Mock.php
│ │ │ ├── MockInterface.php
│ │ │ ├── ReceivedMethodCalls.php
│ │ │ ├── Undefined.php
│ │ │ ├── VerificationDirector.php
│ │ │ └── VerificationExpectation.php
│ │ │ └── helpers.php
│ ├── monolog
│ │ └── monolog
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── UPGRADE.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Monolog
│ │ │ ├── DateTimeImmutable.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Formatter
│ │ │ ├── ChromePHPFormatter.php
│ │ │ ├── ElasticaFormatter.php
│ │ │ ├── ElasticsearchFormatter.php
│ │ │ ├── FlowdockFormatter.php
│ │ │ ├── FluentdFormatter.php
│ │ │ ├── FormatterInterface.php
│ │ │ ├── GelfMessageFormatter.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
│ │ │ ├── RollbarHandler.php
│ │ │ ├── RotatingFileHandler.php
│ │ │ ├── SamplingHandler.php
│ │ │ ├── SendGridHandler.php
│ │ │ ├── Slack
│ │ │ │ └── SlackRecord.php
│ │ │ ├── SlackHandler.php
│ │ │ ├── SlackWebhookHandler.php
│ │ │ ├── SocketHandler.php
│ │ │ ├── SqsHandler.php
│ │ │ ├── StreamHandler.php
│ │ │ ├── SwiftMailerHandler.php
│ │ │ ├── SyslogHandler.php
│ │ │ ├── SyslogUdp
│ │ │ │ └── UdpSocket.php
│ │ │ ├── SyslogUdpHandler.php
│ │ │ ├── TelegramBotHandler.php
│ │ │ ├── TestHandler.php
│ │ │ ├── WebRequestRecognizerTrait.php
│ │ │ ├── WhatFailureGroupHandler.php
│ │ │ └── ZendMonitorHandler.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
│ │ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ │ ├── 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
│ │ │ ├── contributing.md
│ │ │ ├── extension.neon
│ │ │ ├── phpmd.xml
│ │ │ ├── readme.md
│ │ │ └── src
│ │ │ └── Carbon
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── Macro.php
│ │ │ ├── MacroExtension.php
│ │ │ └── MacroScanner.php
│ │ │ ├── Traits
│ │ │ ├── Boundaries.php
│ │ │ ├── Cast.php
│ │ │ ├── Comparison.php
│ │ │ ├── Converter.php
│ │ │ ├── Creator.php
│ │ │ ├── Date.php
│ │ │ ├── Difference.php
│ │ │ ├── IntervalRounding.php
│ │ │ ├── IntervalStep.php
│ │ │ ├── Localization.php
│ │ │ ├── Macro.php
│ │ │ ├── Mixin.php
│ │ │ ├── Modifiers.php
│ │ │ ├── Mutability.php
│ │ │ ├── ObjectInitialisation.php
│ │ │ ├── Options.php
│ │ │ ├── Rounding.php
│ │ │ ├── Serialization.php
│ │ │ ├── Test.php
│ │ │ ├── Timestamp.php
│ │ │ ├── Units.php
│ │ │ └── Week.php
│ │ │ └── Translator.php
│ ├── nikic
│ │ └── php-parser
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bin
│ │ │ └── php-parse
│ │ │ ├── composer.json
│ │ │ ├── grammar
│ │ │ ├── README.md
│ │ │ ├── parser.template
│ │ │ ├── php5.y
│ │ │ ├── php7.y
│ │ │ ├── rebuildParsers.php
│ │ │ ├── tokens.template
│ │ │ └── tokens.y
│ │ │ └── lib
│ │ │ └── PhpParser
│ │ │ ├── Builder.php
│ │ │ ├── Builder
│ │ │ ├── Class_.php
│ │ │ ├── Declaration.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
│ │ │ │ ├── CoaleseEqualTokenEmulator.php
│ │ │ │ ├── FnTokenEmulator.php
│ │ │ │ ├── NumericLiteralSeparatorEmulator.php
│ │ │ │ └── TokenEmulatorInterface.php
│ │ │ ├── NameContext.php
│ │ │ ├── Node.php
│ │ │ ├── Node
│ │ │ ├── Arg.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
│ │ │ │ ├── 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
│ │ │ │ ├── MethodCall.php
│ │ │ │ ├── New_.php
│ │ │ │ ├── PostDec.php
│ │ │ │ ├── PostInc.php
│ │ │ │ ├── PreDec.php
│ │ │ │ ├── PreInc.php
│ │ │ │ ├── Print_.php
│ │ │ │ ├── PropertyFetch.php
│ │ │ │ ├── ShellExec.php
│ │ │ │ ├── StaticCall.php
│ │ │ │ ├── StaticPropertyFetch.php
│ │ │ │ ├── Ternary.php
│ │ │ │ ├── UnaryMinus.php
│ │ │ │ ├── UnaryPlus.php
│ │ │ │ ├── Variable.php
│ │ │ │ ├── YieldFrom.php
│ │ │ │ └── Yield_.php
│ │ │ ├── FunctionLike.php
│ │ │ ├── Identifier.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
│ │ │ │ ├── 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
│ │ │ ├── NodeAbstract.php
│ │ │ ├── NodeDumper.php
│ │ │ ├── NodeFinder.php
│ │ │ ├── NodeTraverser.php
│ │ │ ├── NodeTraverserInterface.php
│ │ │ ├── NodeVisitor.php
│ │ │ ├── NodeVisitor
│ │ │ ├── CloningVisitor.php
│ │ │ ├── FindingVisitor.php
│ │ │ ├── FirstFindingVisitor.php
│ │ │ └── NameResolver.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
│ │ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ │ ├── .php_cs
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── phpstan.neon.dist
│ │ │ ├── phpunit.xml.dist
│ │ │ └── src
│ │ │ ├── Adapters
│ │ │ ├── Laravel
│ │ │ │ ├── CollisionServiceProvider.php
│ │ │ │ ├── Commands
│ │ │ │ │ └── TestCommand.php
│ │ │ │ ├── ExceptionHandler.php
│ │ │ │ ├── IgnitionSolutionsRepository.php
│ │ │ │ └── Inspector.php
│ │ │ └── Phpunit
│ │ │ │ ├── ConfigureIO.php
│ │ │ │ ├── Printer.php
│ │ │ │ ├── PrinterContents.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
│ │ │ ├── SolutionsRepository.php
│ │ │ └── Writer.php
│ │ │ ├── Exceptions
│ │ │ └── ShouldNotHappen.php
│ │ │ ├── Handler.php
│ │ │ ├── Highlighter.php
│ │ │ ├── Provider.php
│ │ │ ├── SolutionsRepositories
│ │ │ └── NullSolutionsRepository.php
│ │ │ └── Writer.php
│ ├── opis
│ │ └── closure
│ │ │ ├── .github
│ │ │ └── workflows
│ │ │ │ └── tests.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── NOTICE
│ │ │ ├── README.md
│ │ │ ├── autoload.php
│ │ │ ├── composer.json
│ │ │ ├── functions.php
│ │ │ └── src
│ │ │ ├── Analyzer.php
│ │ │ ├── ClosureContext.php
│ │ │ ├── ClosureScope.php
│ │ │ ├── ClosureStream.php
│ │ │ ├── ISecurityProvider.php
│ │ │ ├── ReflectionClosure.php
│ │ │ ├── SecurityException.php
│ │ │ ├── SecurityProvider.php
│ │ │ ├── SelfReference.php
│ │ │ └── SerializableClosure.php
│ ├── phar-io
│ │ ├── manifest
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── examples
│ │ │ │ └── example-01.php
│ │ │ ├── phive.xml
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── ManifestDocumentMapper.php
│ │ │ │ ├── ManifestLoader.php
│ │ │ │ ├── ManifestSerializer.php
│ │ │ │ ├── exceptions
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── InvalidApplicationNameException.php
│ │ │ │ │ ├── InvalidEmailException.php
│ │ │ │ │ ├── InvalidUrlException.php
│ │ │ │ │ ├── ManifestDocumentException.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
│ │ │ │ │ ├── ManifestDocumentLoadingException.php
│ │ │ │ │ ├── ManifestElement.php
│ │ │ │ │ ├── PhpElement.php
│ │ │ │ │ └── RequiresElement.php
│ │ │ └── tests
│ │ │ │ ├── ManifestDocumentMapperTest.php
│ │ │ │ ├── ManifestLoaderTest.php
│ │ │ │ ├── ManifestSerializerTest.php
│ │ │ │ ├── _fixture
│ │ │ │ ├── custom.xml
│ │ │ │ ├── extension-invalidcompatible.xml
│ │ │ │ ├── extension.xml
│ │ │ │ ├── invalidversion.xml
│ │ │ │ ├── invalidversionconstraint.xml
│ │ │ │ ├── library.xml
│ │ │ │ ├── manifest.xml
│ │ │ │ ├── phpunit-5.6.5.xml
│ │ │ │ └── test.phar
│ │ │ │ ├── exceptions
│ │ │ │ └── ManifestDocumentLoadingExceptionTest.php
│ │ │ │ ├── values
│ │ │ │ ├── ApplicationNameTest.php
│ │ │ │ ├── ApplicationTest.php
│ │ │ │ ├── AuthorCollectionTest.php
│ │ │ │ ├── AuthorTest.php
│ │ │ │ ├── BundledComponentCollectionTest.php
│ │ │ │ ├── BundledComponentTest.php
│ │ │ │ ├── CopyrightInformationTest.php
│ │ │ │ ├── EmailTest.php
│ │ │ │ ├── ExtensionTest.php
│ │ │ │ ├── LibraryTest.php
│ │ │ │ ├── LicenseTest.php
│ │ │ │ ├── ManifestTest.php
│ │ │ │ ├── PhpExtensionRequirementTest.php
│ │ │ │ ├── PhpVersionRequirementTest.php
│ │ │ │ ├── RequirementCollectionTest.php
│ │ │ │ └── UrlTest.php
│ │ │ │ └── xml
│ │ │ │ ├── AuthorElementCollectionTest.php
│ │ │ │ ├── AuthorElementTest.php
│ │ │ │ ├── BundlesElementTest.php
│ │ │ │ ├── ComponentElementCollectionTest.php
│ │ │ │ ├── ComponentElementTest.php
│ │ │ │ ├── ContainsElementTest.php
│ │ │ │ ├── CopyrightElementTest.php
│ │ │ │ ├── ExtElementCollectionTest.php
│ │ │ │ ├── ExtElementTest.php
│ │ │ │ ├── ExtensionElementTest.php
│ │ │ │ ├── LicenseElementTest.php
│ │ │ │ ├── ManifestDocumentTest.php
│ │ │ │ ├── PhpElementTest.php
│ │ │ │ └── RequiresElementTest.php
│ │ └── version
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phive.xml
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ ├── 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
│ │ │ │ └── UnsupportedVersionConstraintException.php
│ │ │ └── tests
│ │ │ ├── Integration
│ │ │ └── VersionConstraintParserTest.php
│ │ │ └── Unit
│ │ │ ├── AbstractVersionConstraintTest.php
│ │ │ ├── AndVersionConstraintGroupTest.php
│ │ │ ├── AnyVersionConstraintTest.php
│ │ │ ├── ExactVersionConstraintTest.php
│ │ │ ├── GreaterThanOrEqualToVersionConstraintTest.php
│ │ │ ├── OrVersionConstraintGroupTest.php
│ │ │ ├── PreReleaseSuffixTest.php
│ │ │ ├── SpecificMajorAndMinorVersionConstraintTest.php
│ │ │ ├── SpecificMajorVersionConstraintTest.php
│ │ │ └── VersionTest.php
│ ├── phpdocumentor
│ │ ├── reflection-common
│ │ │ ├── .github
│ │ │ │ ├── dependabot.yml
│ │ │ │ └── workflows
│ │ │ │ │ └── push.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── Element.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Fqsen.php
│ │ │ │ ├── Location.php
│ │ │ │ ├── Project.php
│ │ │ │ └── ProjectFactory.php
│ │ ├── reflection-docblock
│ │ │ ├── .dependabot
│ │ │ │ └── config.yml
│ │ │ ├── .github
│ │ │ │ └── workflows
│ │ │ │ │ └── push.yml
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── composer-require-config.json
│ │ │ ├── composer.json
│ │ │ ├── phive.xml
│ │ │ ├── phpcs.xml.dist
│ │ │ ├── phpstan.neon
│ │ │ ├── psalm.xml
│ │ │ └── src
│ │ │ │ ├── DocBlock.php
│ │ │ │ ├── DocBlock
│ │ │ │ ├── Description.php
│ │ │ │ ├── DescriptionFactory.php
│ │ │ │ ├── ExampleFinder.php
│ │ │ │ ├── Serializer.php
│ │ │ │ ├── StandardTagFactory.php
│ │ │ │ ├── Tag.php
│ │ │ │ ├── TagFactory.php
│ │ │ │ └── Tags
│ │ │ │ │ ├── Author.php
│ │ │ │ │ ├── BaseTag.php
│ │ │ │ │ ├── Covers.php
│ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ ├── Example.php
│ │ │ │ │ ├── Factory
│ │ │ │ │ └── StaticMethod.php
│ │ │ │ │ ├── Formatter.php
│ │ │ │ │ ├── Formatter
│ │ │ │ │ ├── AlignFormatter.php
│ │ │ │ │ └── PassthroughFormatter.php
│ │ │ │ │ ├── Generic.php
│ │ │ │ │ ├── InvalidTag.php
│ │ │ │ │ ├── Link.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── Param.php
│ │ │ │ │ ├── Property.php
│ │ │ │ │ ├── PropertyRead.php
│ │ │ │ │ ├── PropertyWrite.php
│ │ │ │ │ ├── Reference
│ │ │ │ │ ├── Fqsen.php
│ │ │ │ │ ├── Reference.php
│ │ │ │ │ └── Url.php
│ │ │ │ │ ├── Return_.php
│ │ │ │ │ ├── See.php
│ │ │ │ │ ├── Since.php
│ │ │ │ │ ├── Source.php
│ │ │ │ │ ├── TagWithType.php
│ │ │ │ │ ├── Throws.php
│ │ │ │ │ ├── Uses.php
│ │ │ │ │ ├── Var_.php
│ │ │ │ │ └── Version.php
│ │ │ │ ├── DocBlockFactory.php
│ │ │ │ └── DocBlockFactoryInterface.php
│ │ └── type-resolver
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── phpbench.json
│ │ │ └── src
│ │ │ ├── FqsenResolver.php
│ │ │ ├── Type.php
│ │ │ ├── TypeResolver.php
│ │ │ └── Types
│ │ │ ├── AbstractList.php
│ │ │ ├── AggregatedType.php
│ │ │ ├── Array_.php
│ │ │ ├── Boolean.php
│ │ │ ├── Callable_.php
│ │ │ ├── ClassString.php
│ │ │ ├── Collection.php
│ │ │ ├── Compound.php
│ │ │ ├── Context.php
│ │ │ ├── ContextFactory.php
│ │ │ ├── Expression.php
│ │ │ ├── False_.php
│ │ │ ├── Float_.php
│ │ │ ├── Integer.php
│ │ │ ├── Intersection.php
│ │ │ ├── Iterable_.php
│ │ │ ├── Mixed_.php
│ │ │ ├── Null_.php
│ │ │ ├── Nullable.php
│ │ │ ├── Object_.php
│ │ │ ├── Parent_.php
│ │ │ ├── Resource_.php
│ │ │ ├── Scalar.php
│ │ │ ├── Self_.php
│ │ │ ├── Static_.php
│ │ │ ├── String_.php
│ │ │ ├── This.php
│ │ │ ├── True_.php
│ │ │ └── Void_.php
│ ├── phpoption
│ │ └── phpoption
│ │ │ ├── LICENSE
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── PhpOption
│ │ │ ├── LazyOption.php
│ │ │ ├── None.php
│ │ │ ├── Option.php
│ │ │ └── Some.php
│ ├── phpspec
│ │ └── prophecy
│ │ │ ├── CHANGES.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Prophecy
│ │ │ ├── Argument.php
│ │ │ ├── Argument
│ │ │ ├── ArgumentsWildcard.php
│ │ │ └── Token
│ │ │ │ ├── AnyValueToken.php
│ │ │ │ ├── AnyValuesToken.php
│ │ │ │ ├── ApproximateValueToken.php
│ │ │ │ ├── ArrayCountToken.php
│ │ │ │ ├── ArrayEntryToken.php
│ │ │ │ ├── ArrayEveryEntryToken.php
│ │ │ │ ├── CallbackToken.php
│ │ │ │ ├── ExactValueToken.php
│ │ │ │ ├── IdenticalValueToken.php
│ │ │ │ ├── LogicalAndToken.php
│ │ │ │ ├── LogicalNotToken.php
│ │ │ │ ├── ObjectStateToken.php
│ │ │ │ ├── StringContainsToken.php
│ │ │ │ ├── TokenInterface.php
│ │ │ │ └── TypeToken.php
│ │ │ ├── Call
│ │ │ ├── Call.php
│ │ │ └── CallCenter.php
│ │ │ ├── Comparator
│ │ │ ├── ClosureComparator.php
│ │ │ ├── Factory.php
│ │ │ └── ProphecyComparator.php
│ │ │ ├── Doubler
│ │ │ ├── CachedDoubler.php
│ │ │ ├── ClassPatch
│ │ │ │ ├── ClassPatchInterface.php
│ │ │ │ ├── DisableConstructorPatch.php
│ │ │ │ ├── HhvmExceptionPatch.php
│ │ │ │ ├── KeywordPatch.php
│ │ │ │ ├── MagicCallPatch.php
│ │ │ │ ├── ProphecySubjectPatch.php
│ │ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ │ ├── SplFileInfoPatch.php
│ │ │ │ ├── ThrowablePatch.php
│ │ │ │ └── TraversablePatch.php
│ │ │ ├── DoubleInterface.php
│ │ │ ├── Doubler.php
│ │ │ ├── Generator
│ │ │ │ ├── ClassCodeGenerator.php
│ │ │ │ ├── ClassCreator.php
│ │ │ │ ├── ClassMirror.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── ArgumentNode.php
│ │ │ │ │ ├── ClassNode.php
│ │ │ │ │ └── MethodNode.php
│ │ │ │ ├── ReflectionInterface.php
│ │ │ │ └── TypeHintReference.php
│ │ │ ├── LazyDouble.php
│ │ │ └── NameGenerator.php
│ │ │ ├── Exception
│ │ │ ├── Call
│ │ │ │ └── UnexpectedCallException.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassCreatorException.php
│ │ │ │ ├── ClassMirrorException.php
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DoubleException.php
│ │ │ │ ├── DoublerException.php
│ │ │ │ ├── InterfaceNotFoundException.php
│ │ │ │ ├── MethodNotExtendableException.php
│ │ │ │ ├── MethodNotFoundException.php
│ │ │ │ └── ReturnByReferenceException.php
│ │ │ ├── Exception.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── Prediction
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── FailedPredictionException.php
│ │ │ │ ├── NoCallsException.php
│ │ │ │ ├── PredictionException.php
│ │ │ │ ├── UnexpectedCallsCountException.php
│ │ │ │ └── UnexpectedCallsException.php
│ │ │ └── Prophecy
│ │ │ │ ├── MethodProphecyException.php
│ │ │ │ ├── ObjectProphecyException.php
│ │ │ │ └── ProphecyException.php
│ │ │ ├── PhpDocumentor
│ │ │ ├── ClassAndInterfaceTagRetriever.php
│ │ │ ├── ClassTagRetriever.php
│ │ │ ├── LegacyClassTagRetriever.php
│ │ │ └── MethodTagRetrieverInterface.php
│ │ │ ├── Prediction
│ │ │ ├── CallPrediction.php
│ │ │ ├── CallTimesPrediction.php
│ │ │ ├── CallbackPrediction.php
│ │ │ ├── NoCallsPrediction.php
│ │ │ └── PredictionInterface.php
│ │ │ ├── Promise
│ │ │ ├── CallbackPromise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── ReturnArgumentPromise.php
│ │ │ ├── ReturnPromise.php
│ │ │ └── ThrowPromise.php
│ │ │ ├── Prophecy
│ │ │ ├── MethodProphecy.php
│ │ │ ├── ObjectProphecy.php
│ │ │ ├── ProphecyInterface.php
│ │ │ ├── ProphecySubjectInterface.php
│ │ │ ├── Revealer.php
│ │ │ └── RevealerInterface.php
│ │ │ ├── Prophet.php
│ │ │ └── Util
│ │ │ ├── ExportUtil.php
│ │ │ └── StringUtil.php
│ ├── phpunit
│ │ ├── php-code-coverage
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── FUNDING.yml
│ │ │ │ └── ISSUE_TEMPLATE.md
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phive.xml
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── CodeCoverage.php
│ │ │ │ ├── Driver
│ │ │ │ │ ├── Driver.php
│ │ │ │ │ ├── PCOV.php
│ │ │ │ │ ├── PHPDBG.php
│ │ │ │ │ └── Xdebug.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── CoveredCodeNotExecutedException.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ │ ├── MissingCoversAnnotationException.php
│ │ │ │ │ ├── RuntimeException.php
│ │ │ │ │ └── UnintentionallyCoveredCodeException.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── AbstractNode.php
│ │ │ │ │ ├── Builder.php
│ │ │ │ │ ├── Directory.php
│ │ │ │ │ ├── File.php
│ │ │ │ │ └── Iterator.php
│ │ │ │ ├── Report
│ │ │ │ │ ├── Clover.php
│ │ │ │ │ ├── Crap4j.php
│ │ │ │ │ ├── Html
│ │ │ │ │ │ ├── Facade.php
│ │ │ │ │ │ ├── Renderer.php
│ │ │ │ │ │ └── Renderer
│ │ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Template
│ │ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ │ ├── custom.css
│ │ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ │ ├── octicons.css
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ │ ├── file_item.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
│ │ │ │ │ │ │ └── method_item.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
│ │ │ │ ├── Util.php
│ │ │ │ └── Version.php
│ │ │ └── tests
│ │ │ │ ├── TestCase.php
│ │ │ │ ├── _files
│ │ │ │ ├── BankAccount-clover.xml
│ │ │ │ ├── BankAccount-crap4j.xml
│ │ │ │ ├── BankAccount-text.txt
│ │ │ │ ├── BankAccount.php
│ │ │ │ ├── BankAccountTest.php
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ │ ├── CoveredClass.php
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── Crash.php
│ │ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ │ ├── NamespaceCoveredClass.php
│ │ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ │ ├── Report
│ │ │ │ │ ├── HTML
│ │ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ │ │ ├── BankAccount.php.html
│ │ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ │ └── index.html
│ │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html
│ │ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ └── source_with_ignore.php.html
│ │ │ │ │ └── XML
│ │ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ │ ├── BankAccount.php.xml
│ │ │ │ │ │ └── index.xml
│ │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ │ ├── index.xml
│ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml
│ │ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ │ ├── index.xml
│ │ │ │ │ │ └── source_with_ignore.php.xml
│ │ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ │ ├── class-with-anonymous-function-crap4j.xml
│ │ │ │ ├── class-with-anonymous-function-text.txt
│ │ │ │ ├── ignored-lines-clover.xml
│ │ │ │ ├── ignored-lines-crap4j.xml
│ │ │ │ ├── ignored-lines-text.txt
│ │ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ │ ├── source_with_ignore.php
│ │ │ │ ├── source_with_namespace.php
│ │ │ │ ├── source_with_oneline_annotations.php
│ │ │ │ ├── source_with_use_statements.php
│ │ │ │ ├── source_without_ignore.php
│ │ │ │ └── source_without_namespace.php
│ │ │ │ ├── bootstrap.php
│ │ │ │ └── tests
│ │ │ │ ├── BuilderTest.php
│ │ │ │ ├── CloverTest.php
│ │ │ │ ├── CodeCoverageTest.php
│ │ │ │ ├── Crap4jTest.php
│ │ │ │ ├── Exception
│ │ │ │ └── UnintentionallyCoveredCodeExceptionTest.php
│ │ │ │ ├── FilterTest.php
│ │ │ │ ├── HTMLTest.php
│ │ │ │ ├── TextTest.php
│ │ │ │ ├── UtilTest.php
│ │ │ │ └── XmlTest.php
│ │ ├── php-file-iterator
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Facade.php
│ │ │ │ ├── Factory.php
│ │ │ │ └── Iterator.php
│ │ │ └── tests
│ │ │ │ └── FactoryTest.php
│ │ ├── php-text-template
│ │ │ ├── .gitattributes
│ │ │ ├── .gitignore
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ └── Template.php
│ │ ├── php-timer
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ │ ├── FUNDING.yml
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Exception.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── Timer.php
│ │ │ └── tests
│ │ │ │ └── TimerTest.php
│ │ ├── php-token-stream
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ │ └── FUNDING.yml
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Token.php
│ │ │ │ └── Token
│ │ │ │ │ ├── Stream.php
│ │ │ │ │ ├── Stream
│ │ │ │ │ └── CachingFactory.php
│ │ │ │ │ └── Util.php
│ │ │ └── tests
│ │ │ │ ├── Token
│ │ │ │ ├── ClassTest.php
│ │ │ │ ├── ClosureTest.php
│ │ │ │ ├── FunctionTest.php
│ │ │ │ ├── IncludeTest.php
│ │ │ │ ├── InterfaceTest.php
│ │ │ │ └── NamespaceTest.php
│ │ │ │ ├── _fixture
│ │ │ │ ├── classExtendsNamespacedClass.php
│ │ │ │ ├── classInNamespace.php
│ │ │ │ ├── classInScopedNamespace.php
│ │ │ │ ├── classUsesNamespacedFunction.php
│ │ │ │ ├── class_with_method_named_empty.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php
│ │ │ │ ├── closure.php
│ │ │ │ ├── issue19.php
│ │ │ │ ├── issue30.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ │ ├── php-code-coverage-issue-424.php
│ │ │ │ ├── source.php
│ │ │ │ ├── source2.php
│ │ │ │ ├── source3.php
│ │ │ │ ├── source4.php
│ │ │ │ └── source5.php
│ │ │ │ └── bootstrap.php
│ │ └── phpunit
│ │ │ ├── .gitattributes
│ │ │ ├── .gitignore
│ │ │ ├── .phive
│ │ │ └── phars.xml
│ │ │ ├── .phpstorm.meta.php
│ │ │ ├── ChangeLog-8.5.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── phpunit
│ │ │ ├── phpunit.xsd
│ │ │ └── src
│ │ │ ├── Exception.php
│ │ │ ├── Framework
│ │ │ ├── Assert.php
│ │ │ ├── Assert
│ │ │ │ └── Functions.php
│ │ │ ├── Constraint
│ │ │ │ ├── ArrayHasKey.php
│ │ │ │ ├── ArraySubset.php
│ │ │ │ ├── Attribute.php
│ │ │ │ ├── Callback.php
│ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ ├── Composite.php
│ │ │ │ ├── Constraint.php
│ │ │ │ ├── Count.php
│ │ │ │ ├── DirectoryExists.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExceptionCode.php
│ │ │ │ ├── ExceptionMessage.php
│ │ │ │ ├── ExceptionMessageRegularExpression.php
│ │ │ │ ├── FileExists.php
│ │ │ │ ├── GreaterThan.php
│ │ │ │ ├── IsAnything.php
│ │ │ │ ├── IsEmpty.php
│ │ │ │ ├── IsEqual.php
│ │ │ │ ├── IsFalse.php
│ │ │ │ ├── IsFinite.php
│ │ │ │ ├── IsIdentical.php
│ │ │ │ ├── IsInfinite.php
│ │ │ │ ├── IsInstanceOf.php
│ │ │ │ ├── IsJson.php
│ │ │ │ ├── IsNan.php
│ │ │ │ ├── IsNull.php
│ │ │ │ ├── IsReadable.php
│ │ │ │ ├── IsTrue.php
│ │ │ │ ├── IsType.php
│ │ │ │ ├── IsWritable.php
│ │ │ │ ├── JsonMatches.php
│ │ │ │ ├── JsonMatchesErrorMessageProvider.php
│ │ │ │ ├── LessThan.php
│ │ │ │ ├── LogicalAnd.php
│ │ │ │ ├── LogicalNot.php
│ │ │ │ ├── LogicalOr.php
│ │ │ │ ├── LogicalXor.php
│ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ ├── RegularExpression.php
│ │ │ │ ├── SameSize.php
│ │ │ │ ├── StringContains.php
│ │ │ │ ├── StringEndsWith.php
│ │ │ │ ├── StringMatchesFormatDescription.php
│ │ │ │ ├── StringStartsWith.php
│ │ │ │ ├── TraversableContains.php
│ │ │ │ ├── TraversableContainsEqual.php
│ │ │ │ ├── TraversableContainsIdentical.php
│ │ │ │ └── TraversableContainsOnly.php
│ │ │ ├── DataProviderTestSuite.php
│ │ │ ├── Error
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Error.php
│ │ │ │ ├── Notice.php
│ │ │ │ └── Warning.php
│ │ │ ├── Exception
│ │ │ │ ├── AssertionFailedError.php
│ │ │ │ ├── CodeCoverageException.php
│ │ │ │ ├── CoveredCodeNotExecutedException.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
│ │ │ ├── IncompleteTest.php
│ │ │ ├── IncompleteTestCase.php
│ │ │ ├── InvalidParameterGroupException.php
│ │ │ ├── MockObject
│ │ │ │ ├── Api
│ │ │ │ │ ├── Api.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── MockedCloneMethod.php
│ │ │ │ │ └── UnmockedCloneMethod.php
│ │ │ │ ├── Builder
│ │ │ │ │ ├── Identity.php
│ │ │ │ │ ├── InvocationMocker.php
│ │ │ │ │ ├── InvocationStubber.php
│ │ │ │ │ ├── Match.php
│ │ │ │ │ ├── MethodNameMatch.php
│ │ │ │ │ ├── ParametersMatch.php
│ │ │ │ │ └── Stub.php
│ │ │ │ ├── ConfigurableMethod.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── BadMethodCallException.php
│ │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── IncompatibleReturnValueException.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ │ ├── Generator.php
│ │ │ │ ├── Generator
│ │ │ │ │ ├── deprecation.tpl
│ │ │ │ │ ├── mocked_class.tpl
│ │ │ │ │ ├── mocked_method.tpl
│ │ │ │ │ ├── mocked_method_void.tpl
│ │ │ │ │ ├── mocked_static_method.tpl
│ │ │ │ │ ├── proxied_method.tpl
│ │ │ │ │ ├── proxied_method_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
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── Command.php
│ │ │ ├── Exception.php
│ │ │ ├── Help.php
│ │ │ ├── ResultPrinter.php
│ │ │ └── TestRunner.php
│ │ │ └── Util
│ │ │ ├── Annotation
│ │ │ ├── DocBlock.php
│ │ │ └── Registry.php
│ │ │ ├── Blacklist.php
│ │ │ ├── Color.php
│ │ │ ├── Configuration.php
│ │ │ ├── ConfigurationGenerator.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Exception.php
│ │ │ ├── FileLoader.php
│ │ │ ├── Filesystem.php
│ │ │ ├── Filter.php
│ │ │ ├── Getopt.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
│ │ │ ├── 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
│ │ │ └── XmlTestListRenderer.php
│ ├── psr
│ │ ├── container
│ │ │ ├── .gitignore
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── ContainerExceptionInterface.php
│ │ │ │ ├── ContainerInterface.php
│ │ │ │ └── NotFoundExceptionInterface.php
│ │ ├── event-dispatcher
│ │ │ ├── .editorconfig
│ │ │ ├── .gitignore
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ │ ├── EventDispatcherInterface.php
│ │ │ │ ├── ListenerProviderInterface.php
│ │ │ │ └── StoppableEventInterface.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
│ │ │ ├── Psr
│ │ │ │ └── Log
│ │ │ │ │ ├── AbstractLogger.php
│ │ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ │ ├── LogLevel.php
│ │ │ │ │ ├── LoggerAwareInterface.php
│ │ │ │ │ ├── LoggerAwareTrait.php
│ │ │ │ │ ├── LoggerInterface.php
│ │ │ │ │ ├── LoggerTrait.php
│ │ │ │ │ ├── NullLogger.php
│ │ │ │ │ └── Test
│ │ │ │ │ ├── DummyTest.php
│ │ │ │ │ ├── LoggerInterfaceTest.php
│ │ │ │ │ └── TestLogger.php
│ │ │ ├── README.md
│ │ │ └── composer.json
│ │ └── simple-cache
│ │ │ ├── .editorconfig
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── CacheException.php
│ │ │ ├── CacheInterface.php
│ │ │ └── InvalidArgumentException.php
│ ├── psy
│ │ └── psysh
│ │ │ ├── .phan
│ │ │ └── config.php
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── ValidConstantPass.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
│ │ │ ├── ConsoleColorFactory.php
│ │ │ ├── Context.php
│ │ │ ├── ContextAware.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
│ │ │ ├── ParserFactory.php
│ │ │ ├── Readline
│ │ │ ├── GNUReadline.php
│ │ │ ├── HoaConsole.php
│ │ │ ├── Libedit.php
│ │ │ ├── Readline.php
│ │ │ └── Transient.php
│ │ │ ├── Reflection
│ │ │ ├── ReflectionClassConstant.php
│ │ │ ├── ReflectionConstant.php
│ │ │ ├── ReflectionConstant_.php
│ │ │ ├── ReflectionLanguageConstruct.php
│ │ │ ├── ReflectionLanguageConstructParameter.php
│ │ │ └── ReflectionNamespace.php
│ │ │ ├── Shell.php
│ │ │ ├── Sudo.php
│ │ │ ├── Sudo
│ │ │ └── SudoVisitor.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
│ │ │ ├── GitHubChecker.php
│ │ │ ├── IntervalChecker.php
│ │ │ └── NoopChecker.php
│ │ │ └── functions.php
│ ├── ralouphie
│ │ └── getallheaders
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── getallheaders.php
│ ├── ramsey
│ │ ├── collection
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── phpstan-tests.neon
│ │ │ └── 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
│ │ │ ├── CHANGELOG.md
│ │ │ ├── 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
│ │ │ └── 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
│ │ │ ├── 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
│ │ │ ├── Guid
│ │ │ ├── Fields.php
│ │ │ ├── Guid.php
│ │ │ └── GuidBuilder.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
│ │ │ ├── NilTrait.php
│ │ │ ├── NilUuid.php
│ │ │ ├── UuidBuilder.php
│ │ │ ├── UuidInterface.php
│ │ │ ├── UuidV1.php
│ │ │ ├── UuidV2.php
│ │ │ ├── UuidV3.php
│ │ │ ├── UuidV4.php
│ │ │ ├── UuidV5.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
│ ├── scrivo
│ │ └── highlight.php
│ │ │ ├── .editorconfig
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── .travis
│ │ │ └── hasGitChanges.sh
│ │ │ ├── AUTHORS.txt
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── Highlight
│ │ │ ├── Autoloader.php
│ │ │ ├── HighlightResult.php
│ │ │ ├── Highlighter.php
│ │ │ ├── JsonRef.php
│ │ │ ├── Language.php
│ │ │ ├── Mode.php
│ │ │ ├── ModeDeprecations.php
│ │ │ ├── RegEx.php
│ │ │ ├── RegExMatch.php
│ │ │ ├── RegExUtils.php
│ │ │ ├── Terminators.php
│ │ │ └── languages
│ │ │ │ ├── 1c.json
│ │ │ │ ├── abnf.json
│ │ │ │ ├── accesslog.json
│ │ │ │ ├── actionscript.json
│ │ │ │ ├── ada.json
│ │ │ │ ├── angelscript.json
│ │ │ │ ├── apache.json
│ │ │ │ ├── applescript.json
│ │ │ │ ├── arcade.json
│ │ │ │ ├── arduino.json
│ │ │ │ ├── armasm.json
│ │ │ │ ├── asciidoc.json
│ │ │ │ ├── aspectj.json
│ │ │ │ ├── autohotkey.json
│ │ │ │ ├── autoit.json
│ │ │ │ ├── avrasm.json
│ │ │ │ ├── awk.json
│ │ │ │ ├── axapta.json
│ │ │ │ ├── bash.json
│ │ │ │ ├── basic.json
│ │ │ │ ├── bnf.json
│ │ │ │ ├── brainfuck.json
│ │ │ │ ├── cal.json
│ │ │ │ ├── capnproto.json
│ │ │ │ ├── ceylon.json
│ │ │ │ ├── clean.json
│ │ │ │ ├── clojure-repl.json
│ │ │ │ ├── clojure.json
│ │ │ │ ├── cmake.json
│ │ │ │ ├── coffeescript.json
│ │ │ │ ├── coq.json
│ │ │ │ ├── cos.json
│ │ │ │ ├── cpp.json
│ │ │ │ ├── crmsh.json
│ │ │ │ ├── crystal.json
│ │ │ │ ├── cs.json
│ │ │ │ ├── csp.json
│ │ │ │ ├── css.json
│ │ │ │ ├── d.json
│ │ │ │ ├── dart.json
│ │ │ │ ├── delphi.json
│ │ │ │ ├── diff.json
│ │ │ │ ├── django.json
│ │ │ │ ├── dns.json
│ │ │ │ ├── dockerfile.json
│ │ │ │ ├── dos.json
│ │ │ │ ├── dsconfig.json
│ │ │ │ ├── dts.json
│ │ │ │ ├── dust.json
│ │ │ │ ├── ebnf.json
│ │ │ │ ├── elixir.json
│ │ │ │ ├── elm.json
│ │ │ │ ├── erb.json
│ │ │ │ ├── erlang-repl.json
│ │ │ │ ├── erlang.json
│ │ │ │ ├── excel.json
│ │ │ │ ├── fix.json
│ │ │ │ ├── flix.json
│ │ │ │ ├── fortran.json
│ │ │ │ ├── fsharp.json
│ │ │ │ ├── gams.json
│ │ │ │ ├── gauss.json
│ │ │ │ ├── gcode.json
│ │ │ │ ├── gherkin.json
│ │ │ │ ├── glsl.json
│ │ │ │ ├── gml.json
│ │ │ │ ├── go.json
│ │ │ │ ├── golo.json
│ │ │ │ ├── gradle.json
│ │ │ │ ├── groovy.json
│ │ │ │ ├── haml.json
│ │ │ │ ├── handlebars.json
│ │ │ │ ├── haskell.json
│ │ │ │ ├── haxe.json
│ │ │ │ ├── hsp.json
│ │ │ │ ├── htmlbars.json
│ │ │ │ ├── http.json
│ │ │ │ ├── hy.json
│ │ │ │ ├── inform7.json
│ │ │ │ ├── ini.json
│ │ │ │ ├── irpf90.json
│ │ │ │ ├── isbl.json
│ │ │ │ ├── java.json
│ │ │ │ ├── javascript.json
│ │ │ │ ├── jboss-cli.json
│ │ │ │ ├── json.json
│ │ │ │ ├── julia-repl.json
│ │ │ │ ├── julia.json
│ │ │ │ ├── kotlin.json
│ │ │ │ ├── lasso.json
│ │ │ │ ├── ldif.json
│ │ │ │ ├── leaf.json
│ │ │ │ ├── less.json
│ │ │ │ ├── lisp.json
│ │ │ │ ├── livecodeserver.json
│ │ │ │ ├── livescript.json
│ │ │ │ ├── llvm.json
│ │ │ │ ├── lsl.json
│ │ │ │ ├── lua.json
│ │ │ │ ├── makefile.json
│ │ │ │ ├── markdown.json
│ │ │ │ ├── mathematica.json
│ │ │ │ ├── matlab.json
│ │ │ │ ├── maxima.json
│ │ │ │ ├── mel.json
│ │ │ │ ├── mercury.json
│ │ │ │ ├── mipsasm.json
│ │ │ │ ├── mizar.json
│ │ │ │ ├── mojolicious.json
│ │ │ │ ├── monkey.json
│ │ │ │ ├── moonscript.json
│ │ │ │ ├── n1ql.json
│ │ │ │ ├── nginx.json
│ │ │ │ ├── nimrod.json
│ │ │ │ ├── nix.json
│ │ │ │ ├── nsis.json
│ │ │ │ ├── objectivec.json
│ │ │ │ ├── ocaml.json
│ │ │ │ ├── openscad.json
│ │ │ │ ├── oxygene.json
│ │ │ │ ├── parser3.json
│ │ │ │ ├── perl.json
│ │ │ │ ├── pf.json
│ │ │ │ ├── pgsql.json
│ │ │ │ ├── php.json
│ │ │ │ ├── plaintext.json
│ │ │ │ ├── pony.json
│ │ │ │ ├── powershell.json
│ │ │ │ ├── processing.json
│ │ │ │ ├── profile.json
│ │ │ │ ├── prolog.json
│ │ │ │ ├── properties.json
│ │ │ │ ├── protobuf.json
│ │ │ │ ├── puppet.json
│ │ │ │ ├── purebasic.json
│ │ │ │ ├── python.json
│ │ │ │ ├── q.json
│ │ │ │ ├── qml.json
│ │ │ │ ├── r.json
│ │ │ │ ├── reasonml.json
│ │ │ │ ├── rib.json
│ │ │ │ ├── roboconf.json
│ │ │ │ ├── routeros.json
│ │ │ │ ├── rsl.json
│ │ │ │ ├── ruby.json
│ │ │ │ ├── ruleslanguage.json
│ │ │ │ ├── rust.json
│ │ │ │ ├── sas.json
│ │ │ │ ├── scala.json
│ │ │ │ ├── scheme.json
│ │ │ │ ├── scilab.json
│ │ │ │ ├── scss.json
│ │ │ │ ├── shell.json
│ │ │ │ ├── smali.json
│ │ │ │ ├── smalltalk.json
│ │ │ │ ├── sml.json
│ │ │ │ ├── sqf.json
│ │ │ │ ├── sql.json
│ │ │ │ ├── stan.json
│ │ │ │ ├── stata.json
│ │ │ │ ├── step21.json
│ │ │ │ ├── stylus.json
│ │ │ │ ├── subunit.json
│ │ │ │ ├── swift.json
│ │ │ │ ├── taggerscript.json
│ │ │ │ ├── tap.json
│ │ │ │ ├── tcl.json
│ │ │ │ ├── tex.json
│ │ │ │ ├── thrift.json
│ │ │ │ ├── tp.json
│ │ │ │ ├── twig.json
│ │ │ │ ├── typescript.json
│ │ │ │ ├── vala.json
│ │ │ │ ├── vbnet.json
│ │ │ │ ├── vbscript-html.json
│ │ │ │ ├── vbscript.json
│ │ │ │ ├── verilog.json
│ │ │ │ ├── vhdl.json
│ │ │ │ ├── vim.json
│ │ │ │ ├── x86asm.json
│ │ │ │ ├── xl.json
│ │ │ │ ├── xml.json
│ │ │ │ ├── xquery.json
│ │ │ │ ├── yaml.json
│ │ │ │ └── zephir.json
│ │ │ ├── HighlightUtilities
│ │ │ ├── _internals.php
│ │ │ ├── _themeColors.php
│ │ │ └── functions.php
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── demo
│ │ │ ├── .htaccess
│ │ │ ├── compare.php
│ │ │ ├── demo.php
│ │ │ ├── example.php
│ │ │ ├── highlight.pack.js
│ │ │ └── line-numbers.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── styles
│ │ │ ├── a11y-dark.css
│ │ │ ├── a11y-light.css
│ │ │ ├── agate.css
│ │ │ ├── an-old-hope.css
│ │ │ ├── androidstudio.css
│ │ │ ├── arduino-light.css
│ │ │ ├── arta.css
│ │ │ ├── ascetic.css
│ │ │ ├── atelier-cave-dark.css
│ │ │ ├── atelier-cave-light.css
│ │ │ ├── atelier-dune-dark.css
│ │ │ ├── atelier-dune-light.css
│ │ │ ├── atelier-estuary-dark.css
│ │ │ ├── atelier-estuary-light.css
│ │ │ ├── atelier-forest-dark.css
│ │ │ ├── atelier-forest-light.css
│ │ │ ├── atelier-heath-dark.css
│ │ │ ├── atelier-heath-light.css
│ │ │ ├── atelier-lakeside-dark.css
│ │ │ ├── atelier-lakeside-light.css
│ │ │ ├── atelier-plateau-dark.css
│ │ │ ├── atelier-plateau-light.css
│ │ │ ├── atelier-savanna-dark.css
│ │ │ ├── atelier-savanna-light.css
│ │ │ ├── atelier-seaside-dark.css
│ │ │ ├── atelier-seaside-light.css
│ │ │ ├── atelier-sulphurpool-dark.css
│ │ │ ├── atelier-sulphurpool-light.css
│ │ │ ├── atom-one-dark-reasonable.css
│ │ │ ├── atom-one-dark.css
│ │ │ ├── atom-one-light.css
│ │ │ ├── brown-paper.css
│ │ │ ├── brown-papersq.png
│ │ │ ├── codepen-embed.css
│ │ │ ├── color-brewer.css
│ │ │ ├── darcula.css
│ │ │ ├── dark.css
│ │ │ ├── darkula.css
│ │ │ ├── default.css
│ │ │ ├── docco.css
│ │ │ ├── dracula.css
│ │ │ ├── far.css
│ │ │ ├── foundation.css
│ │ │ ├── github-gist.css
│ │ │ ├── github.css
│ │ │ ├── gml.css
│ │ │ ├── googlecode.css
│ │ │ ├── gradient-dark.css
│ │ │ ├── grayscale.css
│ │ │ ├── gruvbox-dark.css
│ │ │ ├── gruvbox-light.css
│ │ │ ├── hopscotch.css
│ │ │ ├── hybrid.css
│ │ │ ├── idea.css
│ │ │ ├── ir-black.css
│ │ │ ├── isbl-editor-dark.css
│ │ │ ├── isbl-editor-light.css
│ │ │ ├── kimbie.dark.css
│ │ │ ├── kimbie.light.css
│ │ │ ├── lightfair.css
│ │ │ ├── magula.css
│ │ │ ├── mono-blue.css
│ │ │ ├── monokai-sublime.css
│ │ │ ├── monokai.css
│ │ │ ├── night-owl.css
│ │ │ ├── nord.css
│ │ │ ├── obsidian.css
│ │ │ ├── ocean.css
│ │ │ ├── paraiso-dark.css
│ │ │ ├── paraiso-light.css
│ │ │ ├── pojoaque.css
│ │ │ ├── pojoaque.jpg
│ │ │ ├── purebasic.css
│ │ │ ├── qtcreator_dark.css
│ │ │ ├── qtcreator_light.css
│ │ │ ├── railscasts.css
│ │ │ ├── rainbow.css
│ │ │ ├── routeros.css
│ │ │ ├── school-book.css
│ │ │ ├── school-book.png
│ │ │ ├── shades-of-purple.css
│ │ │ ├── solarized-dark.css
│ │ │ ├── solarized-light.css
│ │ │ ├── sunburst.css
│ │ │ ├── tomorrow-night-blue.css
│ │ │ ├── tomorrow-night-bright.css
│ │ │ ├── tomorrow-night-eighties.css
│ │ │ ├── tomorrow-night.css
│ │ │ ├── tomorrow.css
│ │ │ ├── vs.css
│ │ │ ├── vs2015.css
│ │ │ ├── xcode.css
│ │ │ ├── xt256.css
│ │ │ └── zenburn.css
│ │ │ ├── test
│ │ │ ├── DetectionTest.php
│ │ │ ├── HighlightUtilitiesTest.php
│ │ │ ├── HighlighterTest.php
│ │ │ ├── MarkupTest.php
│ │ │ ├── SpecialTest.php
│ │ │ ├── bootstrap.php
│ │ │ ├── detect
│ │ │ │ ├── 1c
│ │ │ │ │ └── default.txt
│ │ │ │ ├── abnf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── accesslog
│ │ │ │ │ └── default.txt
│ │ │ │ ├── actionscript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ada
│ │ │ │ │ └── default.txt
│ │ │ │ ├── angelscript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── apache
│ │ │ │ │ └── default.txt
│ │ │ │ ├── applescript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── arcade
│ │ │ │ │ └── default.txt
│ │ │ │ ├── arduino
│ │ │ │ │ └── default.txt
│ │ │ │ ├── armasm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── asciidoc
│ │ │ │ │ └── default.txt
│ │ │ │ ├── aspectj
│ │ │ │ │ └── default.txt
│ │ │ │ ├── autohotkey
│ │ │ │ │ └── default.txt
│ │ │ │ ├── autoit
│ │ │ │ │ └── default.txt
│ │ │ │ ├── avrasm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── awk
│ │ │ │ │ └── default.txt
│ │ │ │ ├── axapta
│ │ │ │ │ └── default.txt
│ │ │ │ ├── bash
│ │ │ │ │ └── default.txt
│ │ │ │ ├── basic
│ │ │ │ │ └── default.txt
│ │ │ │ ├── bnf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── brainfuck
│ │ │ │ │ └── default.txt
│ │ │ │ ├── cal
│ │ │ │ │ └── default.txt
│ │ │ │ ├── capnproto
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ceylon
│ │ │ │ │ └── default.txt
│ │ │ │ ├── clean
│ │ │ │ │ └── default.txt
│ │ │ │ ├── clojure-repl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── clojure
│ │ │ │ │ └── default.txt
│ │ │ │ ├── cmake
│ │ │ │ │ └── default.txt
│ │ │ │ ├── coffeescript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── coq
│ │ │ │ │ └── default.txt
│ │ │ │ ├── cos
│ │ │ │ │ └── default.txt
│ │ │ │ ├── cpp
│ │ │ │ │ ├── comment.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── crmsh
│ │ │ │ │ └── default.txt
│ │ │ │ ├── crystal
│ │ │ │ │ └── default.txt
│ │ │ │ ├── cs
│ │ │ │ │ └── default.txt
│ │ │ │ ├── csp
│ │ │ │ │ └── default.txt
│ │ │ │ ├── css
│ │ │ │ │ └── default.txt
│ │ │ │ ├── d
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dart
│ │ │ │ │ └── default.txt
│ │ │ │ ├── delphi
│ │ │ │ │ └── default.txt
│ │ │ │ ├── diff
│ │ │ │ │ └── default.txt
│ │ │ │ ├── django
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dns
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dockerfile
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dos
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dsconfig
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dts
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dust
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ebnf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── elixir
│ │ │ │ │ └── default.txt
│ │ │ │ ├── elm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── erb
│ │ │ │ │ └── default.txt
│ │ │ │ ├── erlang-repl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── erlang
│ │ │ │ │ └── default.txt
│ │ │ │ ├── excel
│ │ │ │ │ └── default.txt
│ │ │ │ ├── fix
│ │ │ │ │ └── default.txt
│ │ │ │ ├── flix
│ │ │ │ │ └── default.txt
│ │ │ │ ├── fortran
│ │ │ │ │ └── default.txt
│ │ │ │ ├── fsharp
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gams
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gauss
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gcode
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gherkin
│ │ │ │ │ └── default.txt
│ │ │ │ ├── glsl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── go
│ │ │ │ │ ├── default.txt
│ │ │ │ │ └── swift-like.txt
│ │ │ │ ├── golo
│ │ │ │ │ └── default.txt
│ │ │ │ ├── gradle
│ │ │ │ │ └── default.txt
│ │ │ │ ├── groovy
│ │ │ │ │ └── default.txt
│ │ │ │ ├── haml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── handlebars
│ │ │ │ │ └── default.txt
│ │ │ │ ├── haskell
│ │ │ │ │ └── default.txt
│ │ │ │ ├── haxe
│ │ │ │ │ └── default.txt
│ │ │ │ ├── hsp
│ │ │ │ │ └── default.txt
│ │ │ │ ├── htmlbars
│ │ │ │ │ └── default.txt
│ │ │ │ ├── http
│ │ │ │ │ └── default.txt
│ │ │ │ ├── hy
│ │ │ │ │ └── default.txt
│ │ │ │ ├── inform7
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ini
│ │ │ │ │ └── default.txt
│ │ │ │ ├── irpf90
│ │ │ │ │ └── default.txt
│ │ │ │ ├── isbl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── java
│ │ │ │ │ └── default.txt
│ │ │ │ ├── javascript
│ │ │ │ │ ├── default.txt
│ │ │ │ │ ├── sample1.txt
│ │ │ │ │ └── short-plain.txt
│ │ │ │ ├── jboss-cli
│ │ │ │ │ └── default.txt
│ │ │ │ ├── json
│ │ │ │ │ └── default.txt
│ │ │ │ ├── julia-repl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── julia
│ │ │ │ │ └── default.txt
│ │ │ │ ├── kotlin
│ │ │ │ │ └── default.txt
│ │ │ │ ├── lasso
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ldif
│ │ │ │ │ └── default.txt
│ │ │ │ ├── leaf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── less
│ │ │ │ │ └── default.txt
│ │ │ │ ├── lisp
│ │ │ │ │ └── default.txt
│ │ │ │ ├── livecodeserver
│ │ │ │ │ └── default.txt
│ │ │ │ ├── livescript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── llvm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── lsl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── lua
│ │ │ │ │ └── default.txt
│ │ │ │ ├── makefile
│ │ │ │ │ └── default.txt
│ │ │ │ ├── markdown
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mathematica
│ │ │ │ │ └── default.txt
│ │ │ │ ├── matlab
│ │ │ │ │ └── default.txt
│ │ │ │ ├── maxima
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mel
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mercury
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mipsasm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mizar
│ │ │ │ │ └── default.txt
│ │ │ │ ├── mojolicious
│ │ │ │ │ └── default.txt
│ │ │ │ ├── monkey
│ │ │ │ │ └── default.txt
│ │ │ │ ├── moonscript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── n1ql
│ │ │ │ │ └── default.txt
│ │ │ │ ├── nginx
│ │ │ │ │ └── default.txt
│ │ │ │ ├── nimrod
│ │ │ │ │ └── default.txt
│ │ │ │ ├── nix
│ │ │ │ │ └── default.txt
│ │ │ │ ├── nsis
│ │ │ │ │ └── default.txt
│ │ │ │ ├── objectivec
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ocaml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── openscad
│ │ │ │ │ └── default.txt
│ │ │ │ ├── oxygene
│ │ │ │ │ └── default.txt
│ │ │ │ ├── parser3
│ │ │ │ │ └── default.txt
│ │ │ │ ├── perl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── pf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── pgsql
│ │ │ │ │ └── default.txt
│ │ │ │ ├── php
│ │ │ │ │ └── default.txt
│ │ │ │ ├── plaintext
│ │ │ │ │ └── default.txt
│ │ │ │ ├── pony
│ │ │ │ │ └── default.txt
│ │ │ │ ├── powershell
│ │ │ │ │ └── default.txt
│ │ │ │ ├── processing
│ │ │ │ │ └── default.txt
│ │ │ │ ├── profile
│ │ │ │ │ └── default.txt
│ │ │ │ ├── prolog
│ │ │ │ │ └── default.txt
│ │ │ │ ├── properties
│ │ │ │ │ └── default.txt
│ │ │ │ ├── protobuf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── puppet
│ │ │ │ │ └── default.txt
│ │ │ │ ├── purebasic
│ │ │ │ │ └── default.txt
│ │ │ │ ├── python
│ │ │ │ │ └── default.txt
│ │ │ │ ├── q
│ │ │ │ │ └── default.txt
│ │ │ │ ├── qml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── r
│ │ │ │ │ └── default.txt
│ │ │ │ ├── reasonml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── rib
│ │ │ │ │ └── default.txt
│ │ │ │ ├── roboconf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── routeros
│ │ │ │ │ └── default.txt
│ │ │ │ ├── rsl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ruby
│ │ │ │ │ ├── default.txt
│ │ │ │ │ └── double-colon.txt
│ │ │ │ ├── ruleslanguage
│ │ │ │ │ └── default.txt
│ │ │ │ ├── rust
│ │ │ │ │ └── default.txt
│ │ │ │ ├── sas
│ │ │ │ │ └── default.txt
│ │ │ │ ├── scala
│ │ │ │ │ └── default.txt
│ │ │ │ ├── scheme
│ │ │ │ │ └── default.txt
│ │ │ │ ├── scilab
│ │ │ │ │ └── default.txt
│ │ │ │ ├── scss
│ │ │ │ │ └── default.txt
│ │ │ │ ├── shell
│ │ │ │ │ └── default.txt
│ │ │ │ ├── smali
│ │ │ │ │ └── default.txt
│ │ │ │ ├── smalltalk
│ │ │ │ │ └── default.txt
│ │ │ │ ├── sml
│ │ │ │ │ └── default.txt
│ │ │ │ ├── sqf
│ │ │ │ │ └── default.txt
│ │ │ │ ├── sql
│ │ │ │ │ └── default.txt
│ │ │ │ ├── stan
│ │ │ │ │ └── default.txt
│ │ │ │ ├── stata
│ │ │ │ │ └── default.txt
│ │ │ │ ├── step21
│ │ │ │ │ └── default.txt
│ │ │ │ ├── stylus
│ │ │ │ │ └── default.txt
│ │ │ │ ├── subunit
│ │ │ │ │ └── default.txt
│ │ │ │ ├── swift
│ │ │ │ │ └── default.txt
│ │ │ │ ├── taggerscript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── tap
│ │ │ │ │ └── default.txt
│ │ │ │ ├── tcl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── tex
│ │ │ │ │ └── default.txt
│ │ │ │ ├── thrift
│ │ │ │ │ └── default.txt
│ │ │ │ ├── tp
│ │ │ │ │ └── default.txt
│ │ │ │ ├── twig
│ │ │ │ │ └── default.txt
│ │ │ │ ├── typescript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vala
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vbnet
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vbscript-html
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vbscript
│ │ │ │ │ └── default.txt
│ │ │ │ ├── verilog
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vhdl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── vim
│ │ │ │ │ └── default.txt
│ │ │ │ ├── x86asm
│ │ │ │ │ └── default.txt
│ │ │ │ ├── xl
│ │ │ │ │ └── default.txt
│ │ │ │ ├── xml
│ │ │ │ │ ├── default.txt
│ │ │ │ │ ├── groovy-julia.txt
│ │ │ │ │ └── js.txt
│ │ │ │ ├── xquery
│ │ │ │ │ └── default.txt
│ │ │ │ ├── yaml
│ │ │ │ │ └── default.txt
│ │ │ │ └── zephir
│ │ │ │ │ └── default.txt
│ │ │ ├── markup
│ │ │ │ ├── abnf
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── accesslog
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── actionscript
│ │ │ │ │ ├── method-call.expect.txt
│ │ │ │ │ └── method-call.txt
│ │ │ │ ├── arcade
│ │ │ │ │ ├── profile.expect.txt
│ │ │ │ │ └── profile.txt
│ │ │ │ ├── arduino
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── aspectj
│ │ │ │ │ ├── intertype-constructor.expect.txt
│ │ │ │ │ ├── intertype-constructor.txt
│ │ │ │ │ ├── intertype-method.expect.txt
│ │ │ │ │ └── intertype-method.txt
│ │ │ │ ├── bash
│ │ │ │ │ ├── escaped-quote.expect.txt
│ │ │ │ │ ├── escaped-quote.txt
│ │ │ │ │ ├── no-numbers.expect.txt
│ │ │ │ │ └── no-numbers.txt
│ │ │ │ ├── ceylon
│ │ │ │ │ ├── nested-comments.expect.txt
│ │ │ │ │ └── nested-comments.txt
│ │ │ │ ├── clojure-repl
│ │ │ │ │ ├── prompt.expect.txt
│ │ │ │ │ └── prompt.txt
│ │ │ │ ├── clojure
│ │ │ │ │ ├── hint_col.expect.txt
│ │ │ │ │ ├── hint_col.txt
│ │ │ │ │ ├── symbols-numbers.expect.txt
│ │ │ │ │ └── symbols-numbers.txt
│ │ │ │ ├── coffeescript
│ │ │ │ │ ├── division.expect.txt
│ │ │ │ │ ├── division.txt
│ │ │ │ │ ├── freeze_bug.expect.txt
│ │ │ │ │ ├── freeze_bug.txt
│ │ │ │ │ ├── function.expect.txt
│ │ │ │ │ ├── function.txt
│ │ │ │ │ ├── regex.expect.txt
│ │ │ │ │ └── regex.txt
│ │ │ │ ├── cos
│ │ │ │ │ ├── basic.expect.txt
│ │ │ │ │ ├── basic.txt
│ │ │ │ │ ├── embedded.expect.txt
│ │ │ │ │ └── embedded.txt
│ │ │ │ ├── cpp
│ │ │ │ │ ├── expression-keywords.expect.txt
│ │ │ │ │ ├── expression-keywords.txt
│ │ │ │ │ ├── function-declarations.expect.txt
│ │ │ │ │ ├── function-declarations.txt
│ │ │ │ │ ├── function-params.expect.txt
│ │ │ │ │ ├── function-params.txt
│ │ │ │ │ ├── function-title.expect.txt
│ │ │ │ │ ├── function-title.txt
│ │ │ │ │ ├── number-literals.expect.txt
│ │ │ │ │ ├── number-literals.txt
│ │ │ │ │ ├── pointers-returns.expect.txt
│ │ │ │ │ ├── pointers-returns.txt
│ │ │ │ │ ├── preprocessor.expect.txt
│ │ │ │ │ ├── preprocessor.txt
│ │ │ │ │ ├── primitive-types.expect.txt
│ │ │ │ │ ├── primitive-types.txt
│ │ │ │ │ ├── string-literals.expect.txt
│ │ │ │ │ └── string-literals.txt
│ │ │ │ ├── crystal
│ │ │ │ │ ├── defs.expect.txt
│ │ │ │ │ ├── defs.txt
│ │ │ │ │ ├── literals.expect.txt
│ │ │ │ │ ├── literals.txt
│ │ │ │ │ ├── macro.expect.txt
│ │ │ │ │ ├── macro.txt
│ │ │ │ │ ├── operators.expect.txt
│ │ │ │ │ ├── operators.txt
│ │ │ │ │ ├── regexes.expect.txt
│ │ │ │ │ ├── regexes.txt
│ │ │ │ │ ├── toplevel-keywords.expect.txt
│ │ │ │ │ └── toplevel-keywords.txt
│ │ │ │ ├── cs
│ │ │ │ │ ├── dotted-namespace.expect.txt
│ │ │ │ │ ├── dotted-namespace.txt
│ │ │ │ │ ├── floats.expect.txt
│ │ │ │ │ ├── floats.txt
│ │ │ │ │ ├── functions.expect.txt
│ │ │ │ │ ├── functions.txt
│ │ │ │ │ ├── string-interpolation.expect.txt
│ │ │ │ │ ├── string-interpolation.txt
│ │ │ │ │ ├── titles.expect.txt
│ │ │ │ │ └── titles.txt
│ │ │ │ ├── css
│ │ │ │ │ ├── pseudo-selector.expect.txt
│ │ │ │ │ ├── pseudo-selector.txt
│ │ │ │ │ ├── sample.expect.txt
│ │ │ │ │ ├── sample.txt
│ │ │ │ │ ├── url.expect.txt
│ │ │ │ │ └── url.txt
│ │ │ │ ├── dart
│ │ │ │ │ ├── comment-markdown.expect.txt
│ │ │ │ │ ├── comment-markdown.txt
│ │ │ │ │ ├── string-interpolation.expect.txt
│ │ │ │ │ └── string-interpolation.txt
│ │ │ │ ├── delphi
│ │ │ │ │ ├── compiler-directive.expect.txt
│ │ │ │ │ └── compiler-directive.txt
│ │ │ │ ├── diff
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ └── comments.txt
│ │ │ │ ├── dockerfile
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── dos
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ └── comments.txt
│ │ │ │ ├── dsconfig
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ebnf
│ │ │ │ │ ├── quote-symbols.expect.txt
│ │ │ │ │ ├── quote-symbols.txt
│ │ │ │ │ ├── terminators.expect.txt
│ │ │ │ │ ├── terminators.txt
│ │ │ │ │ ├── underscore-production.expect.txt
│ │ │ │ │ └── underscore-production.txt
│ │ │ │ ├── elixir
│ │ │ │ │ ├── function-title.expect.txt
│ │ │ │ │ ├── function-title.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── sigils.expect.txt
│ │ │ │ │ ├── sigils.txt
│ │ │ │ │ ├── strings.expect.txt
│ │ │ │ │ ├── strings.txt
│ │ │ │ │ ├── uppercase-string-sigil.expect.txt
│ │ │ │ │ └── uppercase-string-sigil.txt
│ │ │ │ ├── excel
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ └── comments.txt
│ │ │ │ ├── fortran
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ └── numbers.txt
│ │ │ │ ├── fsharp
│ │ │ │ │ ├── bang-keywords.expect.txt
│ │ │ │ │ └── bang-keywords.txt
│ │ │ │ ├── gauss
│ │ │ │ │ ├── function_defs.expect.txt
│ │ │ │ │ ├── function_defs.txt
│ │ │ │ │ ├── function_refs.expect.txt
│ │ │ │ │ ├── function_refs.txt
│ │ │ │ │ ├── keywords.expect.txt
│ │ │ │ │ └── keywords.txt
│ │ │ │ ├── go
│ │ │ │ │ ├── functions.expect.txt
│ │ │ │ │ ├── functions.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── strings.expect.txt
│ │ │ │ │ └── strings.txt
│ │ │ │ ├── golo
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── handlebars
│ │ │ │ │ ├── block-expression-variants-as-path-segment.expect.txt
│ │ │ │ │ ├── block-expression-variants-as-path-segment.txt
│ │ │ │ │ ├── block-expression-variants-in-helper-name.expect.txt
│ │ │ │ │ ├── block-expression-variants-in-helper-name.txt
│ │ │ │ │ ├── block-expression-variants-in-param.expect.txt
│ │ │ │ │ ├── block-expression-variants-in-param.txt
│ │ │ │ │ ├── block-with-param.expect.txt
│ │ │ │ │ ├── block-with-param.txt
│ │ │ │ │ ├── block.expect.txt
│ │ │ │ │ ├── block.txt
│ │ │ │ │ ├── built-ins.expect.txt
│ │ │ │ │ ├── built-ins.txt
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ ├── comments.txt
│ │ │ │ │ ├── escaped-mustaches.expect.txt
│ │ │ │ │ ├── escaped-mustaches.txt
│ │ │ │ │ ├── expression-variants.expect.txt
│ │ │ │ │ ├── expression-variants.txt
│ │ │ │ │ ├── partial-call.expect.txt
│ │ │ │ │ ├── partial-call.txt
│ │ │ │ │ ├── raw-block.expect.txt
│ │ │ │ │ ├── raw-block.txt
│ │ │ │ │ ├── simple-expression.expect.txt
│ │ │ │ │ ├── simple-expression.txt
│ │ │ │ │ ├── sub-expressions.expect.txt
│ │ │ │ │ ├── sub-expressions.txt
│ │ │ │ │ ├── triple-mustache.expect.txt
│ │ │ │ │ └── triple-mustache.txt
│ │ │ │ ├── haskell
│ │ │ │ │ ├── infix.expect.txt
│ │ │ │ │ ├── infix.txt
│ │ │ │ │ ├── nested-comments.expect.txt
│ │ │ │ │ └── nested-comments.txt
│ │ │ │ ├── http
│ │ │ │ │ ├── default.expect.txt
│ │ │ │ │ └── default.txt
│ │ │ │ ├── ini
│ │ │ │ │ ├── array.expect.txt
│ │ │ │ │ ├── array.txt
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ ├── comments.txt
│ │ │ │ │ ├── tables.expect.txt
│ │ │ │ │ ├── tables.txt
│ │ │ │ │ ├── types.expect.txt
│ │ │ │ │ ├── types.txt
│ │ │ │ │ ├── variable.expect.txt
│ │ │ │ │ └── variable.txt
│ │ │ │ ├── java
│ │ │ │ │ ├── gh1031.expect.txt
│ │ │ │ │ ├── gh1031.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── titles.expect.txt
│ │ │ │ │ └── titles.txt
│ │ │ │ ├── javascript
│ │ │ │ │ ├── arrow-function.expect.txt
│ │ │ │ │ ├── arrow-function.txt
│ │ │ │ │ ├── class.expect.txt
│ │ │ │ │ ├── class.txt
│ │ │ │ │ ├── default-parameters.expect.txt
│ │ │ │ │ ├── default-parameters.txt
│ │ │ │ │ ├── inline-languages.expect.txt
│ │ │ │ │ ├── inline-languages.txt
│ │ │ │ │ ├── jsdoc.expect.txt
│ │ │ │ │ ├── jsdoc.txt
│ │ │ │ │ ├── jsx-fragment.expect.txt
│ │ │ │ │ ├── jsx-fragment.txt
│ │ │ │ │ ├── jsx.expect.txt
│ │ │ │ │ ├── jsx.txt
│ │ │ │ │ ├── keywords.expect.txt
│ │ │ │ │ ├── keywords.txt
│ │ │ │ │ ├── method-call.expect.txt
│ │ │ │ │ ├── method-call.txt
│ │ │ │ │ ├── modules.expect.txt
│ │ │ │ │ ├── modules.txt
│ │ │ │ │ ├── object-attr.expect.txt
│ │ │ │ │ ├── object-attr.txt
│ │ │ │ │ ├── shebang.expect.txt
│ │ │ │ │ ├── shebang.txt
│ │ │ │ │ ├── template-strings.expect.txt
│ │ │ │ │ └── template-strings.txt
│ │ │ │ ├── json
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ └── comments.txt
│ │ │ │ ├── kotlin
│ │ │ │ │ ├── class.expect.txt
│ │ │ │ │ ├── class.txt
│ │ │ │ │ ├── function.expect.txt
│ │ │ │ │ ├── function.txt
│ │ │ │ │ ├── nested_comment.expect.txt
│ │ │ │ │ ├── nested_comment.txt
│ │ │ │ │ ├── string.expect.txt
│ │ │ │ │ └── string.txt
│ │ │ │ ├── lasso
│ │ │ │ │ ├── delimiters.expect.txt
│ │ │ │ │ └── delimiters.txt
│ │ │ │ ├── ldif
│ │ │ │ │ ├── ldapmodify.expect.txt
│ │ │ │ │ ├── ldapmodify.txt
│ │ │ │ │ ├── schema.expect.txt
│ │ │ │ │ └── schema.txt
│ │ │ │ ├── less
│ │ │ │ │ ├── selectors.expect.txt
│ │ │ │ │ └── selectors.txt
│ │ │ │ ├── lisp
│ │ │ │ │ ├── mec.expect.txt
│ │ │ │ │ └── mec.txt
│ │ │ │ ├── markdown
│ │ │ │ │ ├── code.expect.txt
│ │ │ │ │ ├── code.txt
│ │ │ │ │ ├── list.expect.txt
│ │ │ │ │ └── list.txt
│ │ │ │ ├── matlab
│ │ │ │ │ ├── block_comment.expect.txt
│ │ │ │ │ ├── block_comment.txt
│ │ │ │ │ ├── transpose.expect.txt
│ │ │ │ │ └── transpose.txt
│ │ │ │ ├── maxima
│ │ │ │ │ ├── example.expect.txt
│ │ │ │ │ ├── example.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── symbols.expect.txt
│ │ │ │ │ └── symbols.txt
│ │ │ │ ├── objectivec
│ │ │ │ │ ├── preprocessor.expect.txt
│ │ │ │ │ ├── preprocessor.txt
│ │ │ │ │ ├── string-literals.expect.txt
│ │ │ │ │ └── string-literals.txt
│ │ │ │ ├── ocaml
│ │ │ │ │ ├── literals.expect.txt
│ │ │ │ │ ├── literals.txt
│ │ │ │ │ ├── types.expect.txt
│ │ │ │ │ └── types.txt
│ │ │ │ ├── pgsql
│ │ │ │ │ ├── clauses.expect.txt
│ │ │ │ │ ├── clauses.txt
│ │ │ │ │ ├── clauses2.expect.txt
│ │ │ │ │ ├── clauses2.txt
│ │ │ │ │ ├── constraints.expect.txt
│ │ │ │ │ ├── constraints.txt
│ │ │ │ │ ├── options.expect.txt
│ │ │ │ │ ├── options.txt
│ │ │ │ │ ├── plpgsql.expect.txt
│ │ │ │ │ ├── plpgsql.txt
│ │ │ │ │ ├── sql-commands.expect.txt
│ │ │ │ │ ├── sql-commands.txt
│ │ │ │ │ ├── window-functions.expect.txt
│ │ │ │ │ ├── window-functions.txt
│ │ │ │ │ ├── xml.expect.txt
│ │ │ │ │ └── xml.txt
│ │ │ │ ├── php
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ ├── comments.txt
│ │ │ │ │ ├── heredoc.expect.txt
│ │ │ │ │ └── heredoc.txt
│ │ │ │ ├── pony
│ │ │ │ │ ├── control-flow.expect.txt
│ │ │ │ │ ├── control-flow.txt
│ │ │ │ │ ├── creator.expect.txt
│ │ │ │ │ ├── creator.txt
│ │ │ │ │ ├── iterface-trait.expect.txt
│ │ │ │ │ ├── iterface-trait.txt
│ │ │ │ │ ├── lambda.expect.txt
│ │ │ │ │ ├── lambda.txt
│ │ │ │ │ ├── match.expect.txt
│ │ │ │ │ ├── match.txt
│ │ │ │ │ ├── method.expect.txt
│ │ │ │ │ ├── method.txt
│ │ │ │ │ ├── number-literals.expect.txt
│ │ │ │ │ ├── number-literals.txt
│ │ │ │ │ ├── objects.expect.txt
│ │ │ │ │ ├── objects.txt
│ │ │ │ │ ├── prime.expect.txt
│ │ │ │ │ ├── prime.txt
│ │ │ │ │ ├── triple-quote.expect.txt
│ │ │ │ │ └── triple-quote.txt
│ │ │ │ ├── powershell
│ │ │ │ │ ├── apos-herestring.expect.txt
│ │ │ │ │ ├── apos-herestring.txt
│ │ │ │ │ ├── classes.expect.txt
│ │ │ │ │ ├── classes.txt
│ │ │ │ │ ├── misc.expect.txt
│ │ │ │ │ ├── misc.txt
│ │ │ │ │ ├── quote-herestring.expect.txt
│ │ │ │ │ └── quote-herestring.txt
│ │ │ │ ├── properties
│ │ │ │ │ ├── syntax.expect.txt
│ │ │ │ │ └── syntax.txt
│ │ │ │ ├── protobuf
│ │ │ │ │ ├── message-message.expect.txt
│ │ │ │ │ └── message-message.txt
│ │ │ │ ├── python
│ │ │ │ │ ├── escaped-quotes.expect.txt
│ │ │ │ │ ├── escaped-quotes.txt
│ │ │ │ │ ├── f-strings.expect.txt
│ │ │ │ │ ├── f-strings.txt
│ │ │ │ │ ├── function-header-comments.expect.txt
│ │ │ │ │ ├── function-header-comments.txt
│ │ │ │ │ ├── function-header.expect.txt
│ │ │ │ │ ├── function-header.txt
│ │ │ │ │ ├── matrix-multiplication.expect.txt
│ │ │ │ │ └── matrix-multiplication.txt
│ │ │ │ ├── reasonml
│ │ │ │ │ ├── functions.expect.txt
│ │ │ │ │ ├── functions.txt
│ │ │ │ │ ├── literals.expect.txt
│ │ │ │ │ ├── literals.txt
│ │ │ │ │ ├── modules.expect.txt
│ │ │ │ │ ├── modules.txt
│ │ │ │ │ ├── pattern-matching.expect.txt
│ │ │ │ │ └── pattern-matching.txt
│ │ │ │ ├── ruby
│ │ │ │ │ ├── gemfile.expect.txt
│ │ │ │ │ ├── gemfile.txt
│ │ │ │ │ ├── heredoc.expect.txt
│ │ │ │ │ ├── heredoc.txt
│ │ │ │ │ ├── prompt.expect.txt
│ │ │ │ │ ├── prompt.txt
│ │ │ │ │ ├── regexes.expect.txt
│ │ │ │ │ └── regexes.txt
│ │ │ │ ├── rust
│ │ │ │ │ ├── comments.expect.txt
│ │ │ │ │ ├── comments.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── strings.expect.txt
│ │ │ │ │ ├── strings.txt
│ │ │ │ │ ├── traits.expect.txt
│ │ │ │ │ ├── traits.txt
│ │ │ │ │ ├── types.expect.txt
│ │ │ │ │ ├── types.txt
│ │ │ │ │ ├── variables.expect.txt
│ │ │ │ │ └── variables.txt
│ │ │ │ ├── scala
│ │ │ │ │ ├── case-classes.expect.txt
│ │ │ │ │ └── case-classes.txt
│ │ │ │ ├── scheme
│ │ │ │ │ ├── lambda.expect.txt
│ │ │ │ │ ├── lambda.txt
│ │ │ │ │ ├── quoted.expect.txt
│ │ │ │ │ └── quoted.txt
│ │ │ │ ├── shell
│ │ │ │ │ ├── plain-prompt.expect.txt
│ │ │ │ │ ├── plain-prompt.txt
│ │ │ │ │ ├── prompt-with-slash.expect.txt
│ │ │ │ │ └── prompt-with-slash.txt
│ │ │ │ ├── sql
│ │ │ │ │ ├── interval.expect.txt
│ │ │ │ │ ├── interval.txt
│ │ │ │ │ ├── join.expect.txt
│ │ │ │ │ ├── join.txt
│ │ │ │ │ ├── keywords.expect.txt
│ │ │ │ │ ├── keywords.txt
│ │ │ │ │ ├── lateral-view.expect.txt
│ │ │ │ │ ├── lateral-view.txt
│ │ │ │ │ ├── numeric-types.expect.txt
│ │ │ │ │ ├── numeric-types.txt
│ │ │ │ │ ├── set-operator.expect.txt
│ │ │ │ │ ├── set-operator.txt
│ │ │ │ │ ├── string-types.expect.txt
│ │ │ │ │ ├── string-types.txt
│ │ │ │ │ ├── tablesample.expect.txt
│ │ │ │ │ ├── tablesample.txt
│ │ │ │ │ ├── values-statement.expect.txt
│ │ │ │ │ ├── values-statement.txt
│ │ │ │ │ ├── window-function.expect.txt
│ │ │ │ │ └── window-function.txt
│ │ │ │ ├── stata
│ │ │ │ │ ├── built_ins.expect.txt
│ │ │ │ │ └── built_ins.txt
│ │ │ │ ├── subunit
│ │ │ │ │ ├── subunit-errorline.expect.txt
│ │ │ │ │ ├── subunit-errorline.txt
│ │ │ │ │ ├── subunit-failureline.expect.txt
│ │ │ │ │ ├── subunit-failureline.txt
│ │ │ │ │ ├── subunit-progressline.expect.txt
│ │ │ │ │ ├── subunit-progressline.txt
│ │ │ │ │ ├── subunit-skipline.expect.txt
│ │ │ │ │ ├── subunit-skipline.txt
│ │ │ │ │ ├── subunit-successline.expect.txt
│ │ │ │ │ ├── subunit-successline.txt
│ │ │ │ │ ├── subunit-tagline.expect.txt
│ │ │ │ │ ├── subunit-tagline.txt
│ │ │ │ │ ├── subunit-testline.expect.txt
│ │ │ │ │ ├── subunit-testline.txt
│ │ │ │ │ ├── subunit-timeline.expect.txt
│ │ │ │ │ ├── subunit-timeline.txt
│ │ │ │ │ ├── subunit-uxsuccessline.expect.txt
│ │ │ │ │ ├── subunit-uxsuccessline.txt
│ │ │ │ │ ├── subunit-xfailline.expect.txt
│ │ │ │ │ └── subunit-xfailline.txt
│ │ │ │ ├── swift
│ │ │ │ │ ├── functions.expect.txt
│ │ │ │ │ ├── functions.txt
│ │ │ │ │ ├── multiline-string.expect.txt
│ │ │ │ │ └── multiline-string.txt
│ │ │ │ ├── tap
│ │ │ │ │ ├── basic.expect.txt
│ │ │ │ │ ├── basic.txt
│ │ │ │ │ ├── without-numbers.expect.txt
│ │ │ │ │ ├── without-numbers.txt
│ │ │ │ │ ├── yaml-block.expect.txt
│ │ │ │ │ └── yaml-block.txt
│ │ │ │ ├── twig
│ │ │ │ │ ├── filter_with_underscore.expect.txt
│ │ │ │ │ ├── filter_with_underscore.txt
│ │ │ │ │ ├── template_tags.expect.txt
│ │ │ │ │ └── template_tags.txt
│ │ │ │ ├── typescript
│ │ │ │ │ ├── class.expect.txt
│ │ │ │ │ ├── class.txt
│ │ │ │ │ ├── declares.expect.txt
│ │ │ │ │ ├── declares.txt
│ │ │ │ │ ├── decorator-factories.expect.txt
│ │ │ │ │ ├── decorator-factories.txt
│ │ │ │ │ ├── functions.expect.txt
│ │ │ │ │ ├── functions.txt
│ │ │ │ │ ├── inline-languages.expect.txt
│ │ │ │ │ ├── inline-languages.txt
│ │ │ │ │ ├── jsx.expect.txt
│ │ │ │ │ ├── jsx.txt
│ │ │ │ │ ├── module-id.expect.txt
│ │ │ │ │ ├── module-id.txt
│ │ │ │ │ ├── nested-templates.expect.txt
│ │ │ │ │ └── nested-templates.txt
│ │ │ │ ├── verilog
│ │ │ │ │ ├── misc.expect.txt
│ │ │ │ │ ├── misc.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ └── numbers.txt
│ │ │ │ ├── vim
│ │ │ │ │ ├── strings-comments.expect.txt
│ │ │ │ │ └── strings-comments.txt
│ │ │ │ ├── x86asm
│ │ │ │ │ ├── labels-directives.expect.txt
│ │ │ │ │ └── labels-directives.txt
│ │ │ │ ├── xml
│ │ │ │ │ ├── document-type-variations.expect.txt
│ │ │ │ │ ├── document-type-variations.txt
│ │ │ │ │ ├── space-attributes.expect.txt
│ │ │ │ │ ├── space-attributes.txt
│ │ │ │ │ ├── unquoted-attributes.expect.txt
│ │ │ │ │ └── unquoted-attributes.txt
│ │ │ │ ├── xquery
│ │ │ │ │ ├── computed_inbuilt.expect.txt
│ │ │ │ │ ├── computed_inbuilt.txt
│ │ │ │ │ ├── direct_method.expect.txt
│ │ │ │ │ ├── direct_method.txt
│ │ │ │ │ ├── function_body.expect.txt
│ │ │ │ │ ├── function_body.txt
│ │ │ │ │ ├── prolog_declarations.expect.txt
│ │ │ │ │ └── prolog_declarations.txt
│ │ │ │ └── yaml
│ │ │ │ │ ├── block.expect.txt
│ │ │ │ │ ├── block.txt
│ │ │ │ │ ├── keys.expect.txt
│ │ │ │ │ ├── keys.txt
│ │ │ │ │ ├── numbers.expect.txt
│ │ │ │ │ ├── numbers.txt
│ │ │ │ │ ├── string.expect.txt
│ │ │ │ │ ├── string.txt
│ │ │ │ │ ├── tag.expect.txt
│ │ │ │ │ └── tag.txt
│ │ │ └── special
│ │ │ │ ├── languagealias.expect.txt
│ │ │ │ ├── languagealias.txt
│ │ │ │ ├── line-endings.crlf.expect.txt
│ │ │ │ ├── line-endings.crlf.txt
│ │ │ │ ├── sublanguages.expect.txt
│ │ │ │ ├── sublanguages.txt
│ │ │ │ ├── tabreplace.expect.txt
│ │ │ │ └── tabreplace.txt
│ │ │ └── tools
│ │ │ ├── .htaccess
│ │ │ ├── export.js
│ │ │ ├── get_language_definitions.php
│ │ │ ├── get_styles_colors.php
│ │ │ ├── launcher.js
│ │ │ ├── lodash.cloneDeep.js
│ │ │ └── process.sh
│ ├── sebastian
│ │ ├── code-unit-reverse-lookup
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ └── Wizard.php
│ │ │ └── tests
│ │ │ │ └── WizardTest.php
│ │ ├── comparator
│ │ │ ├── .github
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── 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
│ │ │ └── tests
│ │ │ │ ├── ArrayComparatorTest.php
│ │ │ │ ├── ComparisonFailureTest.php
│ │ │ │ ├── DOMNodeComparatorTest.php
│ │ │ │ ├── DateTimeComparatorTest.php
│ │ │ │ ├── DoubleComparatorTest.php
│ │ │ │ ├── ExceptionComparatorTest.php
│ │ │ │ ├── FactoryTest.php
│ │ │ │ ├── MockObjectComparatorTest.php
│ │ │ │ ├── NumericComparatorTest.php
│ │ │ │ ├── ObjectComparatorTest.php
│ │ │ │ ├── ResourceComparatorTest.php
│ │ │ │ ├── ScalarComparatorTest.php
│ │ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ │ ├── TypeComparatorTest.php
│ │ │ │ └── _fixture
│ │ │ │ ├── Author.php
│ │ │ │ ├── Book.php
│ │ │ │ ├── ClassWithToString.php
│ │ │ │ ├── SampleClass.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── TestClass.php
│ │ │ │ └── TestClassComparator.php
│ │ ├── diff
│ │ │ ├── .github
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── 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
│ │ │ └── tests
│ │ │ │ ├── ChunkTest.php
│ │ │ │ ├── DiffTest.php
│ │ │ │ ├── DifferTest.php
│ │ │ │ ├── Exception
│ │ │ │ ├── ConfigurationExceptionTest.php
│ │ │ │ └── InvalidArgumentExceptionTest.php
│ │ │ │ ├── LineTest.php
│ │ │ │ ├── LongestCommonSubsequenceTest.php
│ │ │ │ ├── MemoryEfficientImplementationTest.php
│ │ │ │ ├── Output
│ │ │ │ ├── AbstractChunkOutputBuilderTest.php
│ │ │ │ ├── DiffOnlyOutputBuilderTest.php
│ │ │ │ ├── Integration
│ │ │ │ │ ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php
│ │ │ │ │ └── UnifiedDiffOutputBuilderIntegrationTest.php
│ │ │ │ ├── StrictUnifiedDiffOutputBuilderDataProvider.php
│ │ │ │ ├── StrictUnifiedDiffOutputBuilderTest.php
│ │ │ │ ├── UnifiedDiffOutputBuilderDataProvider.php
│ │ │ │ └── UnifiedDiffOutputBuilderTest.php
│ │ │ │ ├── ParserTest.php
│ │ │ │ ├── TimeEfficientImplementationTest.php
│ │ │ │ ├── Utils
│ │ │ │ ├── FileUtils.php
│ │ │ │ ├── UnifiedDiffAssertTrait.php
│ │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest.php
│ │ │ │ └── UnifiedDiffAssertTraitTest.php
│ │ │ │ └── fixtures
│ │ │ │ ├── .editorconfig
│ │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest
│ │ │ │ ├── 1_a.txt
│ │ │ │ ├── 1_b.txt
│ │ │ │ ├── 2_a.txt
│ │ │ │ └── 2_b.txt
│ │ │ │ ├── out
│ │ │ │ ├── .editorconfig
│ │ │ │ └── .gitignore
│ │ │ │ ├── patch.txt
│ │ │ │ ├── patch2.txt
│ │ │ │ └── serialized_diff.bin
│ │ ├── environment
│ │ │ ├── .github
│ │ │ │ └── FUNDING.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Console.php
│ │ │ │ ├── OperatingSystem.php
│ │ │ │ └── Runtime.php
│ │ │ └── tests
│ │ │ │ ├── ConsoleTest.php
│ │ │ │ ├── OperatingSystemTest.php
│ │ │ │ └── RuntimeTest.php
│ │ ├── exporter
│ │ │ ├── .github
│ │ │ │ └── FUNDING.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ └── Exporter.php
│ │ │ └── tests
│ │ │ │ └── ExporterTest.php
│ │ ├── global-state
│ │ │ ├── .github
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Blacklist.php
│ │ │ │ ├── CodeExporter.php
│ │ │ │ ├── Restorer.php
│ │ │ │ ├── Snapshot.php
│ │ │ │ └── exceptions
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ └── tests
│ │ │ │ ├── BlacklistTest.php
│ │ │ │ ├── CodeExporterTest.php
│ │ │ │ ├── RestorerTest.php
│ │ │ │ ├── SnapshotTest.php
│ │ │ │ └── _fixture
│ │ │ │ ├── BlacklistedChildClass.php
│ │ │ │ ├── BlacklistedClass.php
│ │ │ │ ├── BlacklistedImplementor.php
│ │ │ │ ├── BlacklistedInterface.php
│ │ │ │ ├── SnapshotClass.php
│ │ │ │ ├── SnapshotDomDocument.php
│ │ │ │ ├── SnapshotFunctions.php
│ │ │ │ └── SnapshotTrait.php
│ │ ├── object-enumerator
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Enumerator.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── InvalidArgumentException.php
│ │ │ └── tests
│ │ │ │ ├── EnumeratorTest.php
│ │ │ │ └── _fixture
│ │ │ │ └── ExceptionThrower.php
│ │ ├── object-reflector
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Exception.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ └── ObjectReflector.php
│ │ │ └── tests
│ │ │ │ ├── ObjectReflectorTest.php
│ │ │ │ └── _fixture
│ │ │ │ ├── ChildClass.php
│ │ │ │ ├── ClassWithIntegerAttributeName.php
│ │ │ │ └── ParentClass.php
│ │ ├── recursion-context
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ ├── Context.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── InvalidArgumentException.php
│ │ │ └── tests
│ │ │ │ └── ContextTest.php
│ │ ├── resource-operations
│ │ │ ├── .github
│ │ │ │ └── stale.yml
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── build
│ │ │ │ └── generate.php
│ │ │ ├── composer.json
│ │ │ ├── src
│ │ │ │ └── ResourceOperations.php
│ │ │ └── tests
│ │ │ │ └── ResourceOperationsTest.php
│ │ ├── type
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ │ └── FUNDING.yml
│ │ │ ├── .gitignore
│ │ │ ├── .idea
│ │ │ │ ├── inspectionProfiles
│ │ │ │ │ └── Project_Default.xml
│ │ │ │ ├── misc.xml
│ │ │ │ ├── modules.xml
│ │ │ │ ├── php-inspections-ea-ultimate.xml
│ │ │ │ ├── php.xml
│ │ │ │ ├── type.iml
│ │ │ │ └── vcs.xml
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── ChangeLog.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phive.xml
│ │ │ ├── phpunit.xml
│ │ │ ├── psalm.xml
│ │ │ ├── src
│ │ │ │ ├── CallableType.php
│ │ │ │ ├── GenericObjectType.php
│ │ │ │ ├── IterableType.php
│ │ │ │ ├── NullType.php
│ │ │ │ ├── ObjectType.php
│ │ │ │ ├── SimpleType.php
│ │ │ │ ├── Type.php
│ │ │ │ ├── TypeName.php
│ │ │ │ ├── UnknownType.php
│ │ │ │ ├── VoidType.php
│ │ │ │ └── exception
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ └── tests
│ │ │ │ ├── _fixture
│ │ │ │ ├── ChildClass.php
│ │ │ │ ├── ClassWithCallbackMethods.php
│ │ │ │ ├── ClassWithInvokeMethod.php
│ │ │ │ ├── Iterator.php
│ │ │ │ ├── ParentClass.php
│ │ │ │ └── callback_function.php
│ │ │ │ └── unit
│ │ │ │ ├── CallableTypeTest.php
│ │ │ │ ├── GenericObjectTypeTest.php
│ │ │ │ ├── IterableTypeTest.php
│ │ │ │ ├── NullTypeTest.php
│ │ │ │ ├── ObjectTypeTest.php
│ │ │ │ ├── SimpleTypeTest.php
│ │ │ │ ├── TypeNameTest.php
│ │ │ │ ├── TypeTest.php
│ │ │ │ ├── UnknownTypeTest.php
│ │ │ │ └── VoidTypeTest.php
│ │ └── version
│ │ │ ├── .gitattributes
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Version.php
│ ├── swiftmailer
│ │ └── swiftmailer
│ │ │ ├── .gitattributes
│ │ │ ├── .github
│ │ │ ├── ISSUE_TEMPLATE.md
│ │ │ └── PULL_REQUEST_TEMPLATE.md
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs.dist
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGES
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── doc
│ │ │ ├── headers.rst
│ │ │ ├── index.rst
│ │ │ ├── introduction.rst
│ │ │ ├── japanese.rst
│ │ │ ├── messages.rst
│ │ │ ├── plugins.rst
│ │ │ └── sending.rst
│ │ │ ├── lib
│ │ │ ├── classes
│ │ │ │ ├── Swift.php
│ │ │ │ └── Swift
│ │ │ │ │ ├── AddressEncoder.php
│ │ │ │ │ ├── AddressEncoder
│ │ │ │ │ ├── IdnAddressEncoder.php
│ │ │ │ │ └── Utf8AddressEncoder.php
│ │ │ │ │ ├── AddressEncoderException.php
│ │ │ │ │ ├── Attachment.php
│ │ │ │ │ ├── ByteStream
│ │ │ │ │ ├── AbstractFilterableInputStream.php
│ │ │ │ │ ├── ArrayByteStream.php
│ │ │ │ │ ├── FileByteStream.php
│ │ │ │ │ └── TemporaryFileByteStream.php
│ │ │ │ │ ├── CharacterReader.php
│ │ │ │ │ ├── CharacterReader
│ │ │ │ │ ├── GenericFixedWidthReader.php
│ │ │ │ │ ├── UsAsciiReader.php
│ │ │ │ │ └── Utf8Reader.php
│ │ │ │ │ ├── CharacterReaderFactory.php
│ │ │ │ │ ├── CharacterReaderFactory
│ │ │ │ │ └── SimpleCharacterReaderFactory.php
│ │ │ │ │ ├── CharacterStream.php
│ │ │ │ │ ├── CharacterStream
│ │ │ │ │ ├── ArrayCharacterStream.php
│ │ │ │ │ └── NgCharacterStream.php
│ │ │ │ │ ├── ConfigurableSpool.php
│ │ │ │ │ ├── DependencyContainer.php
│ │ │ │ │ ├── DependencyException.php
│ │ │ │ │ ├── EmbeddedFile.php
│ │ │ │ │ ├── Encoder.php
│ │ │ │ │ ├── Encoder
│ │ │ │ │ ├── Base64Encoder.php
│ │ │ │ │ ├── QpEncoder.php
│ │ │ │ │ └── Rfc2231Encoder.php
│ │ │ │ │ ├── Events
│ │ │ │ │ ├── CommandEvent.php
│ │ │ │ │ ├── CommandListener.php
│ │ │ │ │ ├── Event.php
│ │ │ │ │ ├── EventDispatcher.php
│ │ │ │ │ ├── EventListener.php
│ │ │ │ │ ├── EventObject.php
│ │ │ │ │ ├── ResponseEvent.php
│ │ │ │ │ ├── ResponseListener.php
│ │ │ │ │ ├── SendEvent.php
│ │ │ │ │ ├── SendListener.php
│ │ │ │ │ ├── SimpleEventDispatcher.php
│ │ │ │ │ ├── TransportChangeEvent.php
│ │ │ │ │ ├── TransportChangeListener.php
│ │ │ │ │ ├── TransportExceptionEvent.php
│ │ │ │ │ └── TransportExceptionListener.php
│ │ │ │ │ ├── FailoverTransport.php
│ │ │ │ │ ├── FileSpool.php
│ │ │ │ │ ├── FileStream.php
│ │ │ │ │ ├── Filterable.php
│ │ │ │ │ ├── IdGenerator.php
│ │ │ │ │ ├── Image.php
│ │ │ │ │ ├── InputByteStream.php
│ │ │ │ │ ├── IoException.php
│ │ │ │ │ ├── KeyCache.php
│ │ │ │ │ ├── KeyCache
│ │ │ │ │ ├── ArrayKeyCache.php
│ │ │ │ │ ├── DiskKeyCache.php
│ │ │ │ │ ├── KeyCacheInputStream.php
│ │ │ │ │ ├── NullKeyCache.php
│ │ │ │ │ └── SimpleKeyCacheInputStream.php
│ │ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ │ ├── Mailer.php
│ │ │ │ │ ├── Mailer
│ │ │ │ │ ├── ArrayRecipientIterator.php
│ │ │ │ │ └── RecipientIterator.php
│ │ │ │ │ ├── MemorySpool.php
│ │ │ │ │ ├── Message.php
│ │ │ │ │ ├── Mime
│ │ │ │ │ ├── Attachment.php
│ │ │ │ │ ├── CharsetObserver.php
│ │ │ │ │ ├── ContentEncoder.php
│ │ │ │ │ ├── ContentEncoder
│ │ │ │ │ │ ├── Base64ContentEncoder.php
│ │ │ │ │ │ ├── NativeQpContentEncoder.php
│ │ │ │ │ │ ├── NullContentEncoder.php
│ │ │ │ │ │ ├── PlainContentEncoder.php
│ │ │ │ │ │ ├── QpContentEncoder.php
│ │ │ │ │ │ ├── QpContentEncoderProxy.php
│ │ │ │ │ │ └── RawContentEncoder.php
│ │ │ │ │ ├── EmbeddedFile.php
│ │ │ │ │ ├── EncodingObserver.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ ├── HeaderEncoder.php
│ │ │ │ │ ├── HeaderEncoder
│ │ │ │ │ │ ├── Base64HeaderEncoder.php
│ │ │ │ │ │ └── QpHeaderEncoder.php
│ │ │ │ │ ├── Headers
│ │ │ │ │ │ ├── AbstractHeader.php
│ │ │ │ │ │ ├── DateHeader.php
│ │ │ │ │ │ ├── IdentificationHeader.php
│ │ │ │ │ │ ├── MailboxHeader.php
│ │ │ │ │ │ ├── OpenDKIMHeader.php
│ │ │ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ │ │ ├── PathHeader.php
│ │ │ │ │ │ └── UnstructuredHeader.php
│ │ │ │ │ ├── IdGenerator.php
│ │ │ │ │ ├── MimePart.php
│ │ │ │ │ ├── SimpleHeaderFactory.php
│ │ │ │ │ ├── SimpleHeaderSet.php
│ │ │ │ │ ├── SimpleMessage.php
│ │ │ │ │ └── SimpleMimeEntity.php
│ │ │ │ │ ├── MimePart.php
│ │ │ │ │ ├── NullTransport.php
│ │ │ │ │ ├── OutputByteStream.php
│ │ │ │ │ ├── Plugins
│ │ │ │ │ ├── AntiFloodPlugin.php
│ │ │ │ │ ├── BandwidthMonitorPlugin.php
│ │ │ │ │ ├── Decorator
│ │ │ │ │ │ └── Replacements.php
│ │ │ │ │ ├── DecoratorPlugin.php
│ │ │ │ │ ├── ImpersonatePlugin.php
│ │ │ │ │ ├── Logger.php
│ │ │ │ │ ├── LoggerPlugin.php
│ │ │ │ │ ├── Loggers
│ │ │ │ │ │ ├── ArrayLogger.php
│ │ │ │ │ │ └── EchoLogger.php
│ │ │ │ │ ├── MessageLogger.php
│ │ │ │ │ ├── Pop
│ │ │ │ │ │ ├── Pop3Connection.php
│ │ │ │ │ │ └── Pop3Exception.php
│ │ │ │ │ ├── PopBeforeSmtpPlugin.php
│ │ │ │ │ ├── RedirectingPlugin.php
│ │ │ │ │ ├── Reporter.php
│ │ │ │ │ ├── ReporterPlugin.php
│ │ │ │ │ ├── Reporters
│ │ │ │ │ │ ├── HitReporter.php
│ │ │ │ │ │ └── HtmlReporter.php
│ │ │ │ │ ├── Sleeper.php
│ │ │ │ │ ├── ThrottlerPlugin.php
│ │ │ │ │ └── Timer.php
│ │ │ │ │ ├── Preferences.php
│ │ │ │ │ ├── ReplacementFilterFactory.php
│ │ │ │ │ ├── RfcComplianceException.php
│ │ │ │ │ ├── SendmailTransport.php
│ │ │ │ │ ├── Signer.php
│ │ │ │ │ ├── Signers
│ │ │ │ │ ├── BodySigner.php
│ │ │ │ │ ├── DKIMSigner.php
│ │ │ │ │ ├── DomainKeySigner.php
│ │ │ │ │ ├── HeaderSigner.php
│ │ │ │ │ ├── OpenDKIMSigner.php
│ │ │ │ │ └── SMimeSigner.php
│ │ │ │ │ ├── SmtpTransport.php
│ │ │ │ │ ├── Spool.php
│ │ │ │ │ ├── SpoolTransport.php
│ │ │ │ │ ├── StreamFilter.php
│ │ │ │ │ ├── StreamFilters
│ │ │ │ │ ├── ByteArrayReplacementFilter.php
│ │ │ │ │ ├── StringReplacementFilter.php
│ │ │ │ │ └── StringReplacementFilterFactory.php
│ │ │ │ │ ├── SwiftException.php
│ │ │ │ │ ├── Transport.php
│ │ │ │ │ ├── Transport
│ │ │ │ │ ├── AbstractSmtpTransport.php
│ │ │ │ │ ├── Esmtp
│ │ │ │ │ │ ├── Auth
│ │ │ │ │ │ │ ├── CramMd5Authenticator.php
│ │ │ │ │ │ │ ├── LoginAuthenticator.php
│ │ │ │ │ │ │ ├── NTLMAuthenticator.php
│ │ │ │ │ │ │ ├── PlainAuthenticator.php
│ │ │ │ │ │ │ └── XOAuth2Authenticator.php
│ │ │ │ │ │ ├── AuthHandler.php
│ │ │ │ │ │ ├── Authenticator.php
│ │ │ │ │ │ ├── EightBitMimeHandler.php
│ │ │ │ │ │ └── SmtpUtf8Handler.php
│ │ │ │ │ ├── EsmtpHandler.php
│ │ │ │ │ ├── EsmtpTransport.php
│ │ │ │ │ ├── FailoverTransport.php
│ │ │ │ │ ├── IoBuffer.php
│ │ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ │ ├── NullTransport.php
│ │ │ │ │ ├── SendmailTransport.php
│ │ │ │ │ ├── SmtpAgent.php
│ │ │ │ │ ├── SpoolTransport.php
│ │ │ │ │ └── StreamBuffer.php
│ │ │ │ │ └── TransportException.php
│ │ │ ├── dependency_maps
│ │ │ │ ├── cache_deps.php
│ │ │ │ ├── message_deps.php
│ │ │ │ ├── mime_deps.php
│ │ │ │ └── transport_deps.php
│ │ │ ├── mime_types.php
│ │ │ ├── preferences.php
│ │ │ ├── swift_required.php
│ │ │ └── swiftmailer_generate_mimes_config.php
│ │ │ ├── phpunit.xml.dist
│ │ │ └── tests
│ │ │ ├── IdenticalBinaryConstraint.php
│ │ │ ├── StreamCollector.php
│ │ │ ├── SwiftMailerSmokeTestCase.php
│ │ │ ├── SwiftMailerTestCase.php
│ │ │ ├── _samples
│ │ │ ├── charsets
│ │ │ │ ├── iso-2022-jp
│ │ │ │ │ └── one.txt
│ │ │ │ ├── iso-8859-1
│ │ │ │ │ └── one.txt
│ │ │ │ └── utf-8
│ │ │ │ │ ├── one.txt
│ │ │ │ │ ├── three.txt
│ │ │ │ │ └── two.txt
│ │ │ ├── dkim
│ │ │ │ ├── dkim.test.priv
│ │ │ │ └── dkim.test.pub
│ │ │ ├── files
│ │ │ │ ├── data.txt
│ │ │ │ ├── swiftmailer.png
│ │ │ │ └── textfile.zip
│ │ │ └── smime
│ │ │ │ ├── CA.srl
│ │ │ │ ├── ca.crt
│ │ │ │ ├── ca.key
│ │ │ │ ├── create-cert.sh
│ │ │ │ ├── encrypt.crt
│ │ │ │ ├── encrypt.key
│ │ │ │ ├── encrypt2.crt
│ │ │ │ ├── encrypt2.key
│ │ │ │ ├── intermediate.crt
│ │ │ │ ├── intermediate.key
│ │ │ │ ├── sign.crt
│ │ │ │ ├── sign.key
│ │ │ │ ├── sign2.crt
│ │ │ │ └── sign2.key
│ │ │ ├── acceptance.conf.php.default
│ │ │ ├── acceptance
│ │ │ └── Swift
│ │ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ │ ├── ByteStream
│ │ │ │ └── FileByteStreamAcceptanceTest.php
│ │ │ │ ├── CharacterReaderFactory
│ │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php
│ │ │ │ ├── DependencyContainerAcceptanceTest.php
│ │ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ │ ├── Encoder
│ │ │ │ ├── Base64EncoderAcceptanceTest.php
│ │ │ │ ├── QpEncoderAcceptanceTest.php
│ │ │ │ └── Rfc2231EncoderAcceptanceTest.php
│ │ │ │ ├── KeyCache
│ │ │ │ ├── ArrayKeyCacheAcceptanceTest.php
│ │ │ │ └── DiskKeyCacheAcceptanceTest.php
│ │ │ │ ├── MessageAcceptanceTest.php
│ │ │ │ ├── Mime
│ │ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ │ ├── ContentEncoder
│ │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php
│ │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php
│ │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php
│ │ │ │ │ └── QpContentEncoderAcceptanceTest.php
│ │ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ │ ├── HeaderEncoder
│ │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php
│ │ │ │ ├── MimePartAcceptanceTest.php
│ │ │ │ └── SimpleMessageAcceptanceTest.php
│ │ │ │ ├── MimePartAcceptanceTest.php
│ │ │ │ └── Transport
│ │ │ │ └── StreamBuffer
│ │ │ │ ├── AbstractStreamBufferAcceptanceTest.php
│ │ │ │ ├── BasicSocketAcceptanceTest.php
│ │ │ │ ├── ProcessAcceptanceTest.php
│ │ │ │ ├── SocketTimeoutTest.php
│ │ │ │ ├── SslSocketAcceptanceTest.php
│ │ │ │ └── TlsSocketAcceptanceTest.php
│ │ │ ├── bootstrap.php
│ │ │ ├── bug
│ │ │ └── Swift
│ │ │ │ ├── Bug111Test.php
│ │ │ │ ├── Bug118Test.php
│ │ │ │ ├── Bug206Test.php
│ │ │ │ ├── Bug274Test.php
│ │ │ │ ├── Bug34Test.php
│ │ │ │ ├── Bug35Test.php
│ │ │ │ ├── Bug38Test.php
│ │ │ │ ├── Bug518Test.php
│ │ │ │ ├── Bug51Test.php
│ │ │ │ ├── Bug534Test.php
│ │ │ │ ├── Bug650Test.php
│ │ │ │ ├── Bug71Test.php
│ │ │ │ ├── Bug76Test.php
│ │ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php
│ │ │ ├── fixtures
│ │ │ └── MimeEntityFixture.php
│ │ │ ├── smoke.conf.php.default
│ │ │ ├── smoke
│ │ │ └── Swift
│ │ │ │ └── Smoke
│ │ │ │ ├── AttachmentSmokeTest.php
│ │ │ │ ├── BasicSmokeTest.php
│ │ │ │ ├── HtmlWithAttachmentSmokeTest.php
│ │ │ │ └── InternationalSmokeTest.php
│ │ │ └── unit
│ │ │ └── Swift
│ │ │ ├── ByteStream
│ │ │ └── ArrayByteStreamTest.php
│ │ │ ├── CharacterReader
│ │ │ ├── GenericFixedWidthReaderTest.php
│ │ │ ├── UsAsciiReaderTest.php
│ │ │ └── Utf8ReaderTest.php
│ │ │ ├── CharacterStream
│ │ │ └── ArrayCharacterStreamTest.php
│ │ │ ├── DependencyContainerTest.php
│ │ │ ├── Encoder
│ │ │ ├── Base64EncoderTest.php
│ │ │ ├── QpEncoderTest.php
│ │ │ └── Rfc2231EncoderTest.php
│ │ │ ├── Events
│ │ │ ├── CommandEventTest.php
│ │ │ ├── EventObjectTest.php
│ │ │ ├── ResponseEventTest.php
│ │ │ ├── SendEventTest.php
│ │ │ ├── SimpleEventDispatcherTest.php
│ │ │ ├── TransportChangeEventTest.php
│ │ │ └── TransportExceptionEventTest.php
│ │ │ ├── KeyCache
│ │ │ ├── ArrayKeyCacheTest.php
│ │ │ └── SimpleKeyCacheInputStreamTest.php
│ │ │ ├── Mailer
│ │ │ └── ArrayRecipientIteratorTest.php
│ │ │ ├── MailerTest.php
│ │ │ ├── MessageTest.php
│ │ │ ├── Mime
│ │ │ ├── AbstractMimeEntityTest.php
│ │ │ ├── AttachmentTest.php
│ │ │ ├── ContentEncoder
│ │ │ │ ├── Base64ContentEncoderTest.php
│ │ │ │ ├── PlainContentEncoderTest.php
│ │ │ │ └── QpContentEncoderTest.php
│ │ │ ├── EmbeddedFileTest.php
│ │ │ ├── HeaderEncoder
│ │ │ │ ├── Base64HeaderEncoderTest.php
│ │ │ │ └── QpHeaderEncoderTest.php
│ │ │ ├── Headers
│ │ │ │ ├── DateHeaderTest.php
│ │ │ │ ├── IdentificationHeaderTest.php
│ │ │ │ ├── MailboxHeaderTest.php
│ │ │ │ ├── ParameterizedHeaderTest.php
│ │ │ │ ├── PathHeaderTest.php
│ │ │ │ └── UnstructuredHeaderTest.php
│ │ │ ├── IdGeneratorTest.php
│ │ │ ├── MimePartTest.php
│ │ │ ├── SimpleHeaderFactoryTest.php
│ │ │ ├── SimpleHeaderSetTest.php
│ │ │ ├── SimpleMessageTest.php
│ │ │ └── SimpleMimeEntityTest.php
│ │ │ ├── Plugins
│ │ │ ├── AntiFloodPluginTest.php
│ │ │ ├── BandwidthMonitorPluginTest.php
│ │ │ ├── DecoratorPluginTest.php
│ │ │ ├── LoggerPluginTest.php
│ │ │ ├── Loggers
│ │ │ │ ├── ArrayLoggerTest.php
│ │ │ │ └── EchoLoggerTest.php
│ │ │ ├── PopBeforeSmtpPluginTest.php
│ │ │ ├── RedirectingPluginTest.php
│ │ │ ├── ReporterPluginTest.php
│ │ │ ├── Reporters
│ │ │ │ ├── HitReporterTest.php
│ │ │ │ └── HtmlReporterTest.php
│ │ │ └── ThrottlerPluginTest.php
│ │ │ ├── Signers
│ │ │ ├── DKIMSignerTest.php
│ │ │ ├── OpenDKIMSignerTest.php
│ │ │ └── SMimeSignerTest.php
│ │ │ ├── StreamFilters
│ │ │ ├── ByteArrayReplacementFilterTest.php
│ │ │ ├── StringReplacementFilterFactoryTest.php
│ │ │ └── StringReplacementFilterTest.php
│ │ │ └── Transport
│ │ │ ├── AbstractSmtpEventSupportTest.php
│ │ │ ├── AbstractSmtpTest.php
│ │ │ ├── Esmtp
│ │ │ ├── Auth
│ │ │ │ ├── CramMd5AuthenticatorTest.php
│ │ │ │ ├── LoginAuthenticatorTest.php
│ │ │ │ ├── NTLMAuthenticatorTest.php
│ │ │ │ └── PlainAuthenticatorTest.php
│ │ │ └── AuthHandlerTest.php
│ │ │ ├── EsmtpTransport
│ │ │ └── ExtensionSupportTest.php
│ │ │ ├── EsmtpTransportTest.php
│ │ │ ├── FailoverTransportTest.php
│ │ │ ├── LoadBalancedTransportTest.php
│ │ │ ├── SendmailTransportTest.php
│ │ │ └── StreamBufferTest.php
│ ├── symfony
│ │ ├── console
│ │ │ ├── Application.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Command
│ │ │ │ ├── Command.php
│ │ │ │ ├── HelpCommand.php
│ │ │ │ ├── ListCommand.php
│ │ │ │ └── LockableTrait.php
│ │ │ ├── CommandLoader
│ │ │ │ ├── CommandLoaderInterface.php
│ │ │ │ ├── ContainerCommandLoader.php
│ │ │ │ └── FactoryCommandLoader.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
│ │ │ │ └── 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
│ │ │ │ ├── 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
│ │ │ ├── Question
│ │ │ │ ├── ChoiceQuestion.php
│ │ │ │ ├── ConfirmationQuestion.php
│ │ │ │ └── Question.php
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── bin
│ │ │ │ │ └── hiddeninput.exe
│ │ │ ├── SingleCommandApplication.php
│ │ │ ├── Style
│ │ │ │ ├── OutputStyle.php
│ │ │ │ ├── StyleInterface.php
│ │ │ │ └── SymfonyStyle.php
│ │ │ ├── Terminal.php
│ │ │ ├── Tester
│ │ │ │ ├── ApplicationTester.php
│ │ │ │ ├── CommandTester.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
│ │ │ ├── .gitignore
│ │ │ ├── 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
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ ├── assets
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── error.css
│ │ │ │ │ │ ├── exception.css
│ │ │ │ │ │ └── exception_full.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── chevron-right.svg
│ │ │ │ │ │ ├── favicon.png.base64
│ │ │ │ │ │ ├── icon-book.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
│ │ │ │ └── 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
│ │ │ ├── .gitignore
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Event.php
│ │ │ ├── EventDispatcherInterface.php
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── composer.json
│ │ ├── event-dispatcher
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Debug
│ │ │ │ ├── TraceableEventDispatcher.php
│ │ │ │ └── WrappedListener.php
│ │ │ ├── DependencyInjection
│ │ │ │ ├── AddEventAliasesPass.php
│ │ │ │ └── RegisterListenersPass.php
│ │ │ ├── EventDispatcher.php
│ │ │ ├── EventDispatcherInterface.php
│ │ │ ├── EventSubscriberInterface.php
│ │ │ ├── GenericEvent.php
│ │ │ ├── ImmutableEventDispatcher.php
│ │ │ ├── LICENSE
│ │ │ ├── LegacyEventDispatcherProxy.php
│ │ │ ├── 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
│ │ │ │ ├── MultiplePcreFilterIterator.php
│ │ │ │ ├── PathFilterIterator.php
│ │ │ │ ├── RecursiveDirectoryIterator.php
│ │ │ │ ├── SizeRangeFilterIterator.php
│ │ │ │ └── SortableIterator.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
│ │ │ │ ├── RequestExceptionInterface.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
│ │ │ ├── RedirectResponse.php
│ │ │ ├── Request.php
│ │ │ ├── RequestMatcher.php
│ │ │ ├── RequestMatcherInterface.php
│ │ │ ├── RequestStack.php
│ │ │ ├── Response.php
│ │ │ ├── ResponseHeaderBag.php
│ │ │ ├── ServerBag.php
│ │ │ ├── Session
│ │ │ │ ├── Attribute
│ │ │ │ │ ├── AttributeBag.php
│ │ │ │ │ ├── AttributeBagInterface.php
│ │ │ │ │ └── NamespacedAttributeBag.php
│ │ │ │ ├── Flash
│ │ │ │ │ ├── AutoExpireFlashBag.php
│ │ │ │ │ ├── FlashBag.php
│ │ │ │ │ └── FlashBagInterface.php
│ │ │ │ ├── Session.php
│ │ │ │ ├── SessionBagInterface.php
│ │ │ │ ├── SessionBagProxy.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
│ │ │ │ │ ├── NativeSessionStorage.php
│ │ │ │ │ ├── PhpBridgeSessionStorage.php
│ │ │ │ │ ├── Proxy
│ │ │ │ │ ├── AbstractProxy.php
│ │ │ │ │ └── SessionHandlerProxy.php
│ │ │ │ │ └── SessionStorageInterface.php
│ │ │ ├── StreamedResponse.php
│ │ │ ├── Test
│ │ │ │ └── Constraint
│ │ │ │ │ ├── RequestAttributeValueSame.php
│ │ │ │ │ ├── ResponseCookieValueSame.php
│ │ │ │ │ ├── ResponseHasCookie.php
│ │ │ │ │ ├── ResponseHasHeader.php
│ │ │ │ │ ├── ResponseHeaderSame.php
│ │ │ │ │ ├── ResponseIsRedirected.php
│ │ │ │ │ ├── ResponseIsSuccessful.php
│ │ │ │ │ └── ResponseStatusCodeSame.php
│ │ │ ├── UrlHelper.php
│ │ │ └── composer.json
│ │ ├── http-kernel
│ │ │ ├── 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
│ │ │ │ ├── AbstractTestSessionListener.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
│ │ │ │ ├── TestSessionListener.php
│ │ │ │ └── ValidateRequestListener.php
│ │ │ ├── Exception
│ │ │ │ ├── AccessDeniedHttpException.php
│ │ │ │ ├── BadRequestHttpException.php
│ │ │ │ ├── ConflictHttpException.php
│ │ │ │ ├── ControllerDoesNotReturnResponseException.php
│ │ │ │ ├── GoneHttpException.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── HttpExceptionInterface.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
│ │ │ │ ├── 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
│ │ ├── mime
│ │ │ ├── Address.php
│ │ │ ├── BodyRendererInterface.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CharacterStream.php
│ │ │ ├── Crypto
│ │ │ │ ├── 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
│ │ │ └── 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
│ │ │ └── composer.json
│ │ ├── polyfill-intl-grapheme
│ │ │ ├── Grapheme.php
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bootstrap.php
│ │ │ └── composer.json
│ │ ├── polyfill-intl-idn
│ │ │ ├── Idn.php
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bootstrap.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
│ │ │ └── composer.json
│ │ ├── polyfill-mbstring
│ │ │ ├── LICENSE
│ │ │ ├── Mbstring.php
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── unidata
│ │ │ │ │ ├── lowerCase.php
│ │ │ │ │ ├── titleCaseRegexp.php
│ │ │ │ │ └── upperCase.php
│ │ │ ├── bootstrap.php
│ │ │ └── composer.json
│ │ ├── polyfill-php72
│ │ │ ├── LICENSE
│ │ │ ├── Php72.php
│ │ │ ├── README.md
│ │ │ ├── bootstrap.php
│ │ │ └── composer.json
│ │ ├── polyfill-php73
│ │ │ ├── LICENSE
│ │ │ ├── Php73.php
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── stubs
│ │ │ │ │ └── JsonException.php
│ │ │ ├── bootstrap.php
│ │ │ └── composer.json
│ │ ├── polyfill-php80
│ │ │ ├── LICENSE
│ │ │ ├── Php80.php
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── stubs
│ │ │ │ │ ├── Stringable.php
│ │ │ │ │ └── ValueError.php
│ │ │ ├── bootstrap.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
│ │ │ ├── Annotation
│ │ │ │ └── Route.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CompiledRoute.php
│ │ │ ├── DependencyInjection
│ │ │ │ └── RoutingResolverPass.php
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidParameterException.php
│ │ │ │ ├── MethodNotAllowedException.php
│ │ │ │ ├── MissingMandatoryParametersException.php
│ │ │ │ ├── NoConfigurationException.php
│ │ │ │ ├── ResourceNotFoundException.php
│ │ │ │ └── RouteNotFoundException.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
│ │ │ │ │ ├── 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
│ │ │ ├── RouteCollectionBuilder.php
│ │ │ ├── RouteCompiler.php
│ │ │ ├── RouteCompilerInterface.php
│ │ │ ├── Router.php
│ │ │ ├── RouterInterface.php
│ │ │ └── composer.json
│ │ ├── service-contracts
│ │ │ ├── .gitignore
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── ResetInterface.php
│ │ │ ├── ServiceLocatorTrait.php
│ │ │ ├── ServiceProviderInterface.php
│ │ │ ├── ServiceSubscriberInterface.php
│ │ │ ├── ServiceSubscriberTrait.php
│ │ │ ├── Test
│ │ │ │ └── ServiceLocatorTest.php
│ │ │ └── composer.json
│ │ ├── string
│ │ │ ├── .gitattributes
│ │ │ ├── AbstractString.php
│ │ │ ├── AbstractUnicodeString.php
│ │ │ ├── ByteString.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CodePointString.php
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── Inflector
│ │ │ │ ├── EnglishInflector.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
│ │ │ ├── .gitignore
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── LocaleAwareInterface.php
│ │ │ ├── README.md
│ │ │ ├── Test
│ │ │ │ └── TranslatorTest.php
│ │ │ ├── TranslatorInterface.php
│ │ │ ├── TranslatorTrait.php
│ │ │ └── composer.json
│ │ ├── translation
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Catalogue
│ │ │ │ ├── AbstractOperation.php
│ │ │ │ ├── MergeOperation.php
│ │ │ │ ├── OperationInterface.php
│ │ │ │ └── TargetOperation.php
│ │ │ ├── Command
│ │ │ │ └── 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
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── InvalidResourceException.php
│ │ │ │ ├── LogicException.php
│ │ │ │ ├── NotFoundResourceException.php
│ │ │ │ └── RuntimeException.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
│ │ │ ├── README.md
│ │ │ ├── Reader
│ │ │ │ ├── TranslationReader.php
│ │ │ │ └── TranslationReaderInterface.php
│ │ │ ├── Resources
│ │ │ │ ├── bin
│ │ │ │ │ └── translation-status.php
│ │ │ │ ├── data
│ │ │ │ │ └── parents.json
│ │ │ │ └── schemas
│ │ │ │ │ ├── xliff-core-1.2-strict.xsd
│ │ │ │ │ ├── xliff-core-2.0.xsd
│ │ │ │ │ └── xml.xsd
│ │ │ ├── Translator.php
│ │ │ ├── TranslatorBagInterface.php
│ │ │ ├── Util
│ │ │ │ ├── ArrayConverter.php
│ │ │ │ └── XliffUtils.php
│ │ │ ├── Writer
│ │ │ │ ├── TranslationWriter.php
│ │ │ │ └── TranslationWriterInterface.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
│ │ │ ├── FrameStub.php
│ │ │ ├── GmpCaster.php
│ │ │ ├── ImagineCaster.php
│ │ │ ├── ImgStub.php
│ │ │ ├── IntlCaster.php
│ │ │ ├── LinkStub.php
│ │ │ ├── MemcachedCaster.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
│ ├── theseer
│ │ └── tokenizer
│ │ │ ├── .gitignore
│ │ │ ├── .php_cs
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── phive.xml
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── NamespaceUri.php
│ │ │ ├── NamespaceUriException.php
│ │ │ ├── Token.php
│ │ │ ├── TokenCollection.php
│ │ │ ├── TokenCollectionException.php
│ │ │ ├── Tokenizer.php
│ │ │ └── XMLSerializer.php
│ │ │ └── tests
│ │ │ ├── NamespaceUriTest.php
│ │ │ ├── TokenCollectionTest.php
│ │ │ ├── TokenTest.php
│ │ │ ├── TokenizerTest.php
│ │ │ ├── XMLSerializerTest.php
│ │ │ └── _files
│ │ │ ├── customns.xml
│ │ │ ├── empty.xml
│ │ │ ├── test.php
│ │ │ ├── test.php.tokens
│ │ │ └── test.php.xml
│ ├── 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
│ │ │ ├── phpstan.src.neon.dist
│ │ │ └── src
│ │ │ ├── Dotenv.php
│ │ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidFileException.php
│ │ │ ├── InvalidPathException.php
│ │ │ └── ValidationException.php
│ │ │ ├── Loader
│ │ │ ├── Lines.php
│ │ │ ├── Loader.php
│ │ │ ├── LoaderInterface.php
│ │ │ ├── Parser.php
│ │ │ └── Value.php
│ │ │ ├── Regex
│ │ │ └── Regex.php
│ │ │ ├── Repository
│ │ │ ├── AbstractRepository.php
│ │ │ ├── Adapter
│ │ │ │ ├── ApacheAdapter.php
│ │ │ │ ├── ArrayAdapter.php
│ │ │ │ ├── AvailabilityInterface.php
│ │ │ │ ├── EnvConstAdapter.php
│ │ │ │ ├── PutenvAdapter.php
│ │ │ │ ├── ReaderInterface.php
│ │ │ │ ├── ServerConstAdapter.php
│ │ │ │ └── WriterInterface.php
│ │ │ ├── AdapterRepository.php
│ │ │ ├── RepositoryBuilder.php
│ │ │ └── RepositoryInterface.php
│ │ │ ├── Result
│ │ │ ├── Error.php
│ │ │ ├── Result.php
│ │ │ └── Success.php
│ │ │ ├── Store
│ │ │ ├── File
│ │ │ │ ├── Paths.php
│ │ │ │ └── Reader.php
│ │ │ ├── FileStore.php
│ │ │ ├── StoreBuilder.php
│ │ │ └── StoreInterface.php
│ │ │ └── Validator.php
│ ├── voku
│ │ └── portable-ascii
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.md
│ │ │ ├── build
│ │ │ ├── composer.json
│ │ │ ├── docs
│ │ │ │ └── base.md
│ │ │ ├── generate_docs.php
│ │ │ └── gernerate_max_key_length.php
│ │ │ ├── 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
│ │ ├── .editorconfig
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── psalm.xml
│ │ └── src
│ │ ├── Assert.php
│ │ └── Mixin.php
└── webpack.mix.js
└── part 50
├── .DS_Store
├── README.md
├── app
├── .DS_Store
├── Blog.php
├── Blogcategory.php
├── Blogtag.php
├── Category.php
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── BlogController.php
│ │ └── Controller.php
│ ├── Kernel.php
│ └── Middleware
│ │ ├── Authenticate.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Role.php
├── Tag.php
└── User.php
├── artisan
├── bootstrap
├── app.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── 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
├── .gitignore
├── 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
└── seeds
│ └── DatabaseSeeder.php
├── package-lock.json
├── package.json
├── phpunit.xml
├── public
├── .DS_Store
├── .htaccess
├── css
│ ├── all.css
│ ├── app.css
│ ├── bootstrap.min.css
│ ├── carousel.css
│ ├── common.css
│ ├── main.css
│ └── responsive.css
├── favicon.ico
├── img
│ ├── .DS_Store
│ └── banner.jpg
├── index.php
├── js
│ └── app.js
├── mix-manifest.json
└── robots.txt
├── resources
├── js
│ ├── app.js
│ └── bootstrap.js
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
├── sass
│ └── app.scss
└── views
│ ├── blogsingle.blade.php
│ ├── home.blade.php
│ ├── layout
│ └── app.blade.php
│ └── partials
│ ├── about.blade.php
│ ├── footer.blade.php
│ ├── header.blade.php
│ └── nav.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── debugbar
│ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ ├── .gitignore
│ │ └── data
│ │ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── CreatesApplication.php
├── Feature
│ └── ExampleTest.php
├── TestCase.php
└── Unit
│ └── ExampleTest.php
├── vendor
├── asm89
│ └── stack-cors
│ │ ├── .github
│ │ └── workflows
│ │ │ └── run-tests.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── src
│ │ ├── Cors.php
│ │ └── CorsService.php
│ │ └── tests
│ │ ├── CorsTest.php
│ │ └── MockApp.php
├── autoload.php
├── barryvdh
│ └── laravel-debugbar
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── changelog.md
│ │ ├── composer.json
│ │ ├── config
│ │ └── debugbar.php
│ │ ├── readme.md
│ │ └── src
│ │ ├── Console
│ │ └── ClearCommand.php
│ │ ├── Controllers
│ │ ├── AssetController.php
│ │ ├── BaseController.php
│ │ ├── CacheController.php
│ │ ├── OpenHandlerController.php
│ │ └── TelescopeController.php
│ │ ├── DataCollector
│ │ ├── CacheCollector.php
│ │ ├── EventCollector.php
│ │ ├── FilesCollector.php
│ │ ├── GateCollector.php
│ │ ├── LaravelCollector.php
│ │ ├── LogsCollector.php
│ │ ├── ModelsCollector.php
│ │ ├── MultiAuthCollector.php
│ │ ├── QueryCollector.php
│ │ ├── RequestCollector.php
│ │ ├── RouteCollector.php
│ │ ├── SessionCollector.php
│ │ └── ViewCollector.php
│ │ ├── DataFormatter
│ │ ├── QueryFormatter.php
│ │ └── SimpleFormatter.php
│ │ ├── Facade.php
│ │ ├── JavascriptRenderer.php
│ │ ├── LaravelDebugbar.php
│ │ ├── LumenServiceProvider.php
│ │ ├── Middleware
│ │ ├── DebugbarEnabled.php
│ │ └── InjectDebugbar.php
│ │ ├── Resources
│ │ ├── cache
│ │ │ └── widget.js
│ │ ├── laravel-debugbar.css
│ │ ├── sqlqueries
│ │ │ └── widget.js
│ │ └── vendor
│ │ │ └── font-awesome
│ │ │ ├── generator_config.txt
│ │ │ └── style.css
│ │ ├── ServiceProvider.php
│ │ ├── Storage
│ │ └── FilesystemStorage.php
│ │ ├── Support
│ │ └── Clockwork
│ │ │ ├── ClockworkCollector.php
│ │ │ └── Converter.php
│ │ ├── SymfonyHttpDriver.php
│ │ ├── Twig
│ │ ├── Extension
│ │ │ ├── Debug.php
│ │ │ ├── Dump.php
│ │ │ └── Stopwatch.php
│ │ ├── Node
│ │ │ └── StopwatchNode.php
│ │ └── TokenParser
│ │ │ └── StopwatchTokenParser.php
│ │ ├── helpers.php
│ │ └── migrations
│ │ └── 2014_12_01_120000_create_phpdebugbar_storage_table.php
├── bin
│ ├── carbon
│ ├── commonmark
│ ├── php-parse
│ ├── phpunit
│ ├── psysh
│ └── var-dump-server
├── brick
│ └── math
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ ├── LICENSE
│ │ ├── SECURITY.md
│ │ ├── composer.json
│ │ ├── psalm-baseline.xml
│ │ ├── psalm.xml
│ │ └── src
│ │ ├── BigDecimal.php
│ │ ├── BigInteger.php
│ │ ├── BigNumber.php
│ │ ├── BigRational.php
│ │ ├── Exception
│ │ ├── DivisionByZeroException.php
│ │ ├── IntegerOverflowException.php
│ │ ├── MathException.php
│ │ ├── NegativeNumberException.php
│ │ ├── NumberFormatException.php
│ │ └── RoundingNecessaryException.php
│ │ ├── Internal
│ │ ├── Calculator.php
│ │ └── Calculator
│ │ │ ├── BcMathCalculator.php
│ │ │ ├── GmpCalculator.php
│ │ │ └── NativeCalculator.php
│ │ └── RoundingMode.php
├── composer
│ ├── ClassLoader.php
│ ├── LICENSE
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ └── installed.json
├── dnoegel
│ └── php-xdg-base-dir
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Xdg.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
│ │ └── phpstan.neon.dist
│ ├── instantiator
│ │ ├── .doctrine-project.json
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── docs
│ │ │ └── en
│ │ │ │ ├── index.rst
│ │ │ │ └── sidebar.rst
│ │ ├── phpbench.json
│ │ ├── phpcs.xml.dist
│ │ ├── phpstan.neon.dist
│ │ └── 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
├── dragonmantank
│ └── cron-expression
│ │ ├── .editorconfig
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── src
│ │ └── Cron
│ │ │ ├── AbstractField.php
│ │ │ ├── CronExpression.php
│ │ │ ├── DayOfMonthField.php
│ │ │ ├── DayOfWeekField.php
│ │ │ ├── FieldFactory.php
│ │ │ ├── FieldInterface.php
│ │ │ ├── HoursField.php
│ │ │ ├── MinutesField.php
│ │ │ └── MonthField.php
│ │ └── tests
│ │ └── Cron
│ │ ├── AbstractFieldTest.php
│ │ ├── CronExpressionTest.php
│ │ ├── DayOfMonthFieldTest.php
│ │ ├── DayOfWeekFieldTest.php
│ │ ├── FieldFactoryTest.php
│ │ ├── HoursFieldTest.php
│ │ ├── MinutesFieldTest.php
│ │ └── MonthFieldTest.php
├── egulias
│ └── email-validator
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ └── src
│ │ ├── EmailLexer.php
│ │ ├── EmailParser.php
│ │ ├── EmailValidator.php
│ │ ├── Exception
│ │ ├── AtextAfterCFWS.php
│ │ ├── CRLFAtTheEnd.php
│ │ ├── CRLFX2.php
│ │ ├── CRNoLF.php
│ │ ├── CharNotAllowed.php
│ │ ├── CommaInDomain.php
│ │ ├── ConsecutiveAt.php
│ │ ├── ConsecutiveDot.php
│ │ ├── DomainHyphened.php
│ │ ├── DotAtEnd.php
│ │ ├── DotAtStart.php
│ │ ├── ExpectingAT.php
│ │ ├── ExpectingATEXT.php
│ │ ├── ExpectingCTEXT.php
│ │ ├── ExpectingDTEXT.php
│ │ ├── ExpectingDomainLiteralClose.php
│ │ ├── ExpectingQPair.php
│ │ ├── InvalidEmail.php
│ │ ├── NoDNSRecord.php
│ │ ├── NoDomainPart.php
│ │ ├── NoLocalPart.php
│ │ ├── UnclosedComment.php
│ │ ├── UnclosedQuotedString.php
│ │ └── UnopenedComment.php
│ │ ├── Parser
│ │ ├── DomainPart.php
│ │ ├── LocalPart.php
│ │ └── Parser.php
│ │ ├── Validation
│ │ ├── DNSCheckValidation.php
│ │ ├── EmailValidation.php
│ │ ├── Error
│ │ │ ├── RFCWarnings.php
│ │ │ └── SpoofEmail.php
│ │ ├── Exception
│ │ │ └── EmptyValidationList.php
│ │ ├── MultipleErrors.php
│ │ ├── MultipleValidationWithAnd.php
│ │ ├── NoRFCWarningsValidation.php
│ │ ├── RFCValidation.php
│ │ └── SpoofCheckValidation.php
│ │ └── Warning
│ │ ├── AddressLiteral.php
│ │ ├── CFWSNearAt.php
│ │ ├── CFWSWithFWS.php
│ │ ├── Comment.php
│ │ ├── DeprecatedComment.php
│ │ ├── DomainLiteral.php
│ │ ├── DomainTooLong.php
│ │ ├── EmailTooLong.php
│ │ ├── IPV6BadChar.php
│ │ ├── IPV6ColonEnd.php
│ │ ├── IPV6ColonStart.php
│ │ ├── IPV6Deprecated.php
│ │ ├── IPV6DoubleColon.php
│ │ ├── IPV6GroupCount.php
│ │ ├── IPV6MaxGroups.php
│ │ ├── LabelTooLong.php
│ │ ├── LocalTooLong.php
│ │ ├── NoDNSMXRecord.php
│ │ ├── ObsoleteDTEXT.php
│ │ ├── QuotedPart.php
│ │ ├── QuotedString.php
│ │ ├── TLD.php
│ │ └── Warning.php
├── facade
│ ├── flare-client-php
│ │ ├── .github
│ │ │ ├── FUNDING.yml
│ │ │ └── workflows
│ │ │ │ └── run-tests.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Api.php
│ │ │ ├── Concerns
│ │ │ ├── HasContext.php
│ │ │ └── UsesTime.php
│ │ │ ├── Context
│ │ │ ├── ConsoleContext.php
│ │ │ ├── ContextContextDetector.php
│ │ │ ├── ContextDetectorInterface.php
│ │ │ ├── ContextInterface.php
│ │ │ └── RequestContext.php
│ │ │ ├── Contracts
│ │ │ └── ProvidesFlareContext.php
│ │ │ ├── Enums
│ │ │ ├── GroupingTypes.php
│ │ │ └── MessageLevels.php
│ │ │ ├── Flare.php
│ │ │ ├── Frame.php
│ │ │ ├── Glows
│ │ │ ├── Glow.php
│ │ │ └── Recorder.php
│ │ │ ├── Http
│ │ │ ├── Client.php
│ │ │ ├── Exceptions
│ │ │ │ ├── BadResponse.php
│ │ │ │ ├── BadResponseCode.php
│ │ │ │ ├── InvalidData.php
│ │ │ │ ├── MissingParameter.php
│ │ │ │ └── NotFound.php
│ │ │ └── Response.php
│ │ │ ├── Middleware
│ │ │ ├── AddGlows.php
│ │ │ └── AnonymizeIp.php
│ │ │ ├── Report.php
│ │ │ ├── Solutions
│ │ │ └── ReportSolution.php
│ │ │ ├── Stacktrace
│ │ │ ├── Codesnippet.php
│ │ │ ├── File.php
│ │ │ ├── Frame.php
│ │ │ └── Stacktrace.php
│ │ │ ├── Time
│ │ │ ├── SystemTime.php
│ │ │ └── Time.php
│ │ │ ├── Truncation
│ │ │ ├── AbstractTruncationStrategy.php
│ │ │ ├── ReportTrimmer.php
│ │ │ ├── TrimContextItemsStrategy.php
│ │ │ ├── TrimStringsStrategy.php
│ │ │ └── TruncationStrategy.php
│ │ │ ├── View.php
│ │ │ └── helpers.php
│ ├── ignition-contracts
│ │ ├── .styleci.yml
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── Tests
│ │ │ └── SolutionTest.php
│ │ ├── composer.json
│ │ ├── docs
│ │ │ └── screenshot.png
│ │ └── src
│ │ │ ├── BaseSolution.php
│ │ │ ├── HasSolutionsForThrowable.php
│ │ │ ├── ProvidesSolution.php
│ │ │ ├── RunnableSolution.php
│ │ │ ├── Solution.php
│ │ │ └── SolutionProviderRepository.php
│ └── ignition
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── config
│ │ ├── flare.php
│ │ └── ignition.php
│ │ ├── package.json
│ │ ├── resources
│ │ ├── .gitignore
│ │ ├── compiled
│ │ │ ├── ignition.js
│ │ │ └── index.html
│ │ └── views
│ │ │ └── errorPage.php
│ │ └── src
│ │ ├── Actions
│ │ └── ShareReportAction.php
│ │ ├── Commands
│ │ ├── SolutionMakeCommand.php
│ │ ├── TestCommand.php
│ │ └── stubs
│ │ │ ├── runnable-solution.stub
│ │ │ └── solution.stub
│ │ ├── Context
│ │ ├── LaravelConsoleContext.php
│ │ ├── LaravelContextDetector.php
│ │ └── LaravelRequestContext.php
│ │ ├── DumpRecorder
│ │ ├── Dump.php
│ │ ├── DumpHandler.php
│ │ ├── DumpRecorder.php
│ │ ├── HtmlDumper.php
│ │ └── MultiDumpHandler.php
│ │ ├── ErrorPage
│ │ ├── ErrorPageHandler.php
│ │ ├── ErrorPageViewModel.php
│ │ ├── IgnitionWhoopsHandler.php
│ │ └── Renderer.php
│ │ ├── Exceptions
│ │ ├── InvalidConfig.php
│ │ ├── UnableToShareErrorException.php
│ │ ├── ViewException.php
│ │ └── ViewExceptionWithSolution.php
│ │ ├── Facades
│ │ └── Flare.php
│ │ ├── Http
│ │ ├── Controllers
│ │ │ ├── ExecuteSolutionController.php
│ │ │ ├── HealthCheckController.php
│ │ │ ├── ScriptController.php
│ │ │ ├── ShareReportController.php
│ │ │ └── StyleController.php
│ │ ├── Middleware
│ │ │ ├── IgnitionConfigValueEnabled.php
│ │ │ └── IgnitionEnabled.php
│ │ └── Requests
│ │ │ ├── ExecuteSolutionRequest.php
│ │ │ └── ShareReportRequest.php
│ │ ├── Ignition.php
│ │ ├── IgnitionConfig.php
│ │ ├── IgnitionServiceProvider.php
│ │ ├── LogRecorder
│ │ ├── LogMessage.php
│ │ └── LogRecorder.php
│ │ ├── Logger
│ │ └── FlareHandler.php
│ │ ├── Middleware
│ │ ├── AddDumps.php
│ │ ├── AddEnvironmentInformation.php
│ │ ├── AddGitInformation.php
│ │ ├── AddLogs.php
│ │ ├── AddQueries.php
│ │ ├── AddSolutions.php
│ │ ├── CustomizeGrouping.php
│ │ └── SetNotifierName.php
│ │ ├── QueryRecorder
│ │ ├── Query.php
│ │ └── QueryRecorder.php
│ │ ├── SolutionProviders
│ │ ├── BadMethodCallSolutionProvider.php
│ │ ├── DefaultDbNameSolutionProvider.php
│ │ ├── IncorrectValetDbCredentialsSolutionProvider.php
│ │ ├── InvalidRouteActionSolutionProvider.php
│ │ ├── MergeConflictSolutionProvider.php
│ │ ├── MissingAppKeySolutionProvider.php
│ │ ├── MissingColumnSolutionProvider.php
│ │ ├── MissingImportSolutionProvider.php
│ │ ├── MissingPackageSolutionProvider.php
│ │ ├── RouteNotDefinedSolutionProvider.php
│ │ ├── RunningLaravelDuskInProductionProvider.php
│ │ ├── SolutionProviderRepository.php
│ │ ├── TableNotFoundSolutionProvider.php
│ │ ├── UndefinedVariableSolutionProvider.php
│ │ ├── UnknownValidationSolutionProvider.php
│ │ └── ViewNotFoundSolutionProvider.php
│ │ ├── Solutions
│ │ ├── GenerateAppKeySolution.php
│ │ ├── MakeViewVariableOptionalSolution.php
│ │ ├── MissingPackageSolution.php
│ │ ├── RunMigrationsSolution.php
│ │ ├── SolutionTransformer.php
│ │ ├── SuggestCorrectVariableNameSolution.php
│ │ ├── SuggestImportSolution.php
│ │ ├── SuggestUsingCorrectDbNameSolution.php
│ │ └── UseDefaultValetDbCredentialsSolution.php
│ │ ├── Support
│ │ ├── ComposerClassMap.php
│ │ ├── FakeComposer.php
│ │ ├── Packagist
│ │ │ ├── Package.php
│ │ │ └── Packagist.php
│ │ └── StringComparator.php
│ │ ├── Tabs
│ │ └── Tab.php
│ │ ├── Views
│ │ ├── Compilers
│ │ │ └── BladeSourceMapCompiler.php
│ │ ├── Concerns
│ │ │ └── CollectsViewExceptions.php
│ │ └── Engines
│ │ │ ├── CompilerEngine.php
│ │ │ └── PhpEngine.php
│ │ └── helpers.php
├── fideloper
│ └── proxy
│ │ ├── LICENSE.md
│ │ ├── composer.json
│ │ ├── config
│ │ └── trustedproxy.php
│ │ └── src
│ │ ├── TrustProxies.php
│ │ └── TrustedProxyServiceProvider.php
├── filp
│ └── whoops
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.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
│ │ ├── Resources
│ │ ├── css
│ │ │ └── whoops.base.css
│ │ ├── js
│ │ │ ├── clipboard.min.js
│ │ │ ├── prettify.min.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
├── fruitcake
│ └── laravel-cors
│ │ ├── .github
│ │ ├── FUNDING.yml
│ │ ├── ISSUE_TEMPLATE
│ │ │ └── cors-not-working.md
│ │ └── workflows
│ │ │ └── run-tests.yml
│ │ ├── LICENSE
│ │ ├── changelog.md
│ │ ├── composer.json
│ │ ├── config
│ │ └── cors.php
│ │ ├── readme.md
│ │ └── src
│ │ ├── CorsServiceProvider.php
│ │ └── HandleCors.php
├── fzaninotto
│ └── faker
│ │ ├── .github
│ │ └── ISSUE_TEMPLATE
│ │ │ └── bug_report.md
│ │ ├── .travis
│ │ └── xdebug.sh
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ ├── readme.md
│ │ └── src
│ │ ├── Faker
│ │ ├── Calculator
│ │ │ ├── Ean.php
│ │ │ ├── Iban.php
│ │ │ ├── Inn.php
│ │ │ ├── Luhn.php
│ │ │ └── TCNo.php
│ │ ├── DefaultGenerator.php
│ │ ├── Documentor.php
│ │ ├── Factory.php
│ │ ├── Generator.php
│ │ ├── Guesser
│ │ │ └── Name.php
│ │ ├── ORM
│ │ │ ├── CakePHP
│ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ ├── EntityPopulator.php
│ │ │ │ └── Populator.php
│ │ │ ├── Doctrine
│ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ ├── EntityPopulator.php
│ │ │ │ └── Populator.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
│ │ │ ├── Miscellaneous.php
│ │ │ ├── Payment.php
│ │ │ ├── Person.php
│ │ │ ├── PhoneNumber.php
│ │ │ ├── Text.php
│ │ │ ├── UserAgent.php
│ │ │ ├── Uuid.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
│ │ │ │ ├── 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
│ │ │ │ └── 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
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ └── PhoneNumber.php
│ │ │ ├── fr_CA
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Person.php
│ │ │ │ └── Text.php
│ │ │ ├── fr_CH
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── fr_FR
│ │ │ │ ├── Address.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
│ │ │ │ ├── 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
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── pt_BR
│ │ │ │ ├── Address.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.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
│ │ │ │ ├── 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
├── guzzlehttp
│ ├── guzzle
│ │ ├── .php_cs
│ │ ├── CHANGELOG.md
│ │ ├── Dockerfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── UPGRADING.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Client.php
│ │ │ ├── ClientInterface.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
│ │ │ ├── SeekException.php
│ │ │ ├── ServerException.php
│ │ │ ├── TooManyRedirectsException.php
│ │ │ └── TransferException.php
│ │ │ ├── Handler
│ │ │ ├── CurlFactory.php
│ │ │ ├── CurlFactoryInterface.php
│ │ │ ├── CurlHandler.php
│ │ │ ├── CurlMultiHandler.php
│ │ │ ├── EasyHandle.php
│ │ │ ├── MockHandler.php
│ │ │ ├── Proxy.php
│ │ │ └── StreamHandler.php
│ │ │ ├── HandlerStack.php
│ │ │ ├── MessageFormatter.php
│ │ │ ├── Middleware.php
│ │ │ ├── Pool.php
│ │ │ ├── PrepareBodyMiddleware.php
│ │ │ ├── RedirectMiddleware.php
│ │ │ ├── RequestOptions.php
│ │ │ ├── RetryMiddleware.php
│ │ │ ├── TransferStats.php
│ │ │ ├── UriTemplate.php
│ │ │ ├── Utils.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ ├── promises
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── AggregateException.php
│ │ │ ├── CancellationException.php
│ │ │ ├── Coroutine.php
│ │ │ ├── EachPromise.php
│ │ │ ├── FulfilledPromise.php
│ │ │ ├── Promise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── PromisorInterface.php
│ │ │ ├── RejectedPromise.php
│ │ │ ├── RejectionException.php
│ │ │ ├── TaskQueue.php
│ │ │ ├── TaskQueueInterface.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ └── psr7
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ ├── AppendStream.php
│ │ ├── BufferStream.php
│ │ ├── CachingStream.php
│ │ ├── DroppingStream.php
│ │ ├── FnStream.php
│ │ ├── InflateStream.php
│ │ ├── LazyOpenStream.php
│ │ ├── LimitStream.php
│ │ ├── MessageTrait.php
│ │ ├── MultipartStream.php
│ │ ├── NoSeekStream.php
│ │ ├── PumpStream.php
│ │ ├── Request.php
│ │ ├── Response.php
│ │ ├── Rfc7230.php
│ │ ├── ServerRequest.php
│ │ ├── Stream.php
│ │ ├── StreamDecoratorTrait.php
│ │ ├── StreamWrapper.php
│ │ ├── UploadedFile.php
│ │ ├── Uri.php
│ │ ├── UriNormalizer.php
│ │ ├── UriResolver.php
│ │ ├── functions.php
│ │ └── functions_include.php
├── hamcrest
│ └── hamcrest-php
│ │ ├── .coveralls.yml
│ │ ├── .gitignore
│ │ ├── .gush.yml
│ │ ├── .travis.yml
│ │ ├── CHANGES.txt
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── TODO.txt
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── 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
│ │ ├── 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
├── laravel
│ ├── framework
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ └── Illuminate
│ │ │ ├── Auth
│ │ │ ├── Access
│ │ │ │ ├── AuthorizationException.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
│ │ │ │ ├── Broadcaster.php
│ │ │ │ ├── LogBroadcaster.php
│ │ │ │ ├── NullBroadcaster.php
│ │ │ │ ├── PusherBroadcaster.php
│ │ │ │ ├── RedisBroadcaster.php
│ │ │ │ └── UsePusherChannelConventions.php
│ │ │ ├── Channel.php
│ │ │ ├── EncryptedPrivateChannel.php
│ │ │ ├── InteractsWithSockets.php
│ │ │ ├── LICENSE.md
│ │ │ ├── PendingBroadcast.php
│ │ │ ├── PresenceChannel.php
│ │ │ ├── PrivateChannel.php
│ │ │ └── composer.json
│ │ │ ├── Bus
│ │ │ ├── BusServiceProvider.php
│ │ │ ├── Dispatcher.php
│ │ │ ├── LICENSE.md
│ │ │ ├── Queueable.php
│ │ │ └── composer.json
│ │ │ ├── Cache
│ │ │ ├── ApcStore.php
│ │ │ ├── ApcWrapper.php
│ │ │ ├── ArrayLock.php
│ │ │ ├── ArrayStore.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
│ │ │ ├── LICENSE.md
│ │ │ ├── Lock.php
│ │ │ ├── LuaScripts.php
│ │ │ ├── MemcachedConnector.php
│ │ │ ├── MemcachedLock.php
│ │ │ ├── MemcachedStore.php
│ │ │ ├── NullStore.php
│ │ │ ├── RateLimiter.php
│ │ │ ├── RedisLock.php
│ │ │ ├── RedisStore.php
│ │ │ ├── RedisTaggedCache.php
│ │ │ ├── Repository.php
│ │ │ ├── RetrievesMultipleKeys.php
│ │ │ ├── TagSet.php
│ │ │ ├── TaggableStore.php
│ │ │ ├── TaggedCache.php
│ │ │ └── composer.json
│ │ │ ├── Config
│ │ │ ├── LICENSE.md
│ │ │ ├── Repository.php
│ │ │ └── composer.json
│ │ │ ├── Console
│ │ │ ├── Application.php
│ │ │ ├── Command.php
│ │ │ ├── Concerns
│ │ │ │ ├── CallsCommands.php
│ │ │ │ ├── HasParameters.php
│ │ │ │ └── InteractsWithIO.php
│ │ │ ├── ConfirmableTrait.php
│ │ │ ├── Events
│ │ │ │ ├── ArtisanStarting.php
│ │ │ │ ├── CommandFinished.php
│ │ │ │ ├── CommandStarting.php
│ │ │ │ ├── ScheduledTaskFailed.php
│ │ │ │ ├── ScheduledTaskFinished.php
│ │ │ │ ├── ScheduledTaskSkipped.php
│ │ │ │ └── ScheduledTaskStarting.php
│ │ │ ├── GeneratorCommand.php
│ │ │ ├── LICENSE.md
│ │ │ ├── OutputStyle.php
│ │ │ ├── Parser.php
│ │ │ ├── Scheduling
│ │ │ │ ├── CacheAware.php
│ │ │ │ ├── CacheEventMutex.php
│ │ │ │ ├── CacheSchedulingMutex.php
│ │ │ │ ├── CallbackEvent.php
│ │ │ │ ├── CommandBuilder.php
│ │ │ │ ├── Event.php
│ │ │ │ ├── EventMutex.php
│ │ │ │ ├── ManagesFrequencies.php
│ │ │ │ ├── Schedule.php
│ │ │ │ ├── ScheduleFinishCommand.php
│ │ │ │ ├── ScheduleRunCommand.php
│ │ │ │ └── SchedulingMutex.php
│ │ │ └── composer.json
│ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ └── Kernel.php
│ │ │ ├── Container
│ │ │ │ ├── BindingResolutionException.php
│ │ │ │ ├── Container.php
│ │ │ │ └── ContextualBindingBuilder.php
│ │ │ ├── Cookie
│ │ │ │ ├── Factory.php
│ │ │ │ └── QueueingFactory.php
│ │ │ ├── Database
│ │ │ │ ├── Eloquent
│ │ │ │ │ ├── Castable.php
│ │ │ │ │ ├── CastsAttributes.php
│ │ │ │ │ └── CastsInboundAttributes.php
│ │ │ │ ├── Events
│ │ │ │ │ └── MigrationEvent.php
│ │ │ │ └── ModelIdentifier.php
│ │ │ ├── Debug
│ │ │ │ └── ExceptionHandler.php
│ │ │ ├── Encryption
│ │ │ │ ├── DecryptException.php
│ │ │ │ ├── EncryptException.php
│ │ │ │ └── Encrypter.php
│ │ │ ├── Events
│ │ │ │ └── Dispatcher.php
│ │ │ ├── Filesystem
│ │ │ │ ├── Cloud.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── FileExistsException.php
│ │ │ │ ├── FileNotFoundException.php
│ │ │ │ └── Filesystem.php
│ │ │ ├── Foundation
│ │ │ │ ├── Application.php
│ │ │ │ ├── CachesConfiguration.php
│ │ │ │ └── CachesRoutes.php
│ │ │ ├── Hashing
│ │ │ │ └── Hasher.php
│ │ │ ├── Http
│ │ │ │ └── Kernel.php
│ │ │ ├── LICENSE.md
│ │ │ ├── Mail
│ │ │ │ ├── Factory.php
│ │ │ │ ├── MailQueue.php
│ │ │ │ ├── Mailable.php
│ │ │ │ └── Mailer.php
│ │ │ ├── Notifications
│ │ │ │ ├── Dispatcher.php
│ │ │ │ └── Factory.php
│ │ │ ├── Pagination
│ │ │ │ ├── LengthAwarePaginator.php
│ │ │ │ └── Paginator.php
│ │ │ ├── Pipeline
│ │ │ │ ├── Hub.php
│ │ │ │ └── Pipeline.php
│ │ │ ├── Queue
│ │ │ │ ├── EntityNotFoundException.php
│ │ │ │ ├── EntityResolver.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Job.php
│ │ │ │ ├── Monitor.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── QueueableCollection.php
│ │ │ │ ├── QueueableEntity.php
│ │ │ │ └── ShouldQueue.php
│ │ │ ├── Redis
│ │ │ │ ├── Connection.php
│ │ │ │ ├── Connector.php
│ │ │ │ ├── Factory.php
│ │ │ │ └── LimiterTimeoutException.php
│ │ │ ├── Routing
│ │ │ │ ├── BindingRegistrar.php
│ │ │ │ ├── Registrar.php
│ │ │ │ ├── ResponseFactory.php
│ │ │ │ ├── UrlGenerator.php
│ │ │ │ └── UrlRoutable.php
│ │ │ ├── Session
│ │ │ │ └── Session.php
│ │ │ ├── Support
│ │ │ │ ├── Arrayable.php
│ │ │ │ ├── DeferrableProvider.php
│ │ │ │ ├── DeferringDisplayableValue.php
│ │ │ │ ├── Htmlable.php
│ │ │ │ ├── Jsonable.php
│ │ │ │ ├── MessageBag.php
│ │ │ │ ├── MessageProvider.php
│ │ │ │ ├── Renderable.php
│ │ │ │ └── Responsable.php
│ │ │ ├── Translation
│ │ │ │ ├── HasLocalePreference.php
│ │ │ │ ├── Loader.php
│ │ │ │ └── Translator.php
│ │ │ ├── Validation
│ │ │ │ ├── Factory.php
│ │ │ │ ├── ImplicitRule.php
│ │ │ │ ├── Rule.php
│ │ │ │ ├── ValidatesWhenResolved.php
│ │ │ │ └── Validator.php
│ │ │ ├── View
│ │ │ │ ├── Engine.php
│ │ │ │ ├── Factory.php
│ │ │ │ └── View.php
│ │ │ └── composer.json
│ │ │ ├── Cookie
│ │ │ ├── CookieJar.php
│ │ │ ├── CookieServiceProvider.php
│ │ │ ├── LICENSE.md
│ │ │ ├── Middleware
│ │ │ │ ├── AddQueuedCookiesToResponse.php
│ │ │ │ └── EncryptCookies.php
│ │ │ └── composer.json
│ │ │ ├── Database
│ │ │ ├── Capsule
│ │ │ │ └── Manager.php
│ │ │ ├── Concerns
│ │ │ │ ├── BuildsQueries.php
│ │ │ │ └── ManagesTransactions.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
│ │ │ │ ├── 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
│ │ │ │ ├── Seeds
│ │ │ │ │ ├── SeedCommand.php
│ │ │ │ │ ├── SeederMakeCommand.php
│ │ │ │ │ └── stubs
│ │ │ │ │ │ └── seeder.stub
│ │ │ │ └── WipeCommand.php
│ │ │ ├── DatabaseManager.php
│ │ │ ├── DatabaseServiceProvider.php
│ │ │ ├── DetectsConcurrencyErrors.php
│ │ │ ├── DetectsLostConnections.php
│ │ │ ├── Eloquent
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── GuardsAttributes.php
│ │ │ │ │ ├── HasAttributes.php
│ │ │ │ │ ├── HasEvents.php
│ │ │ │ │ ├── HasGlobalScopes.php
│ │ │ │ │ ├── HasRelationships.php
│ │ │ │ │ ├── HasTimestamps.php
│ │ │ │ │ ├── HidesAttributes.php
│ │ │ │ │ └── QueriesRelationships.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── FactoryBuilder.php
│ │ │ │ ├── HigherOrderBuilderProxy.php
│ │ │ │ ├── JsonEncodingException.php
│ │ │ │ ├── MassAssignmentException.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── ModelNotFoundException.php
│ │ │ │ ├── QueueEntityResolver.php
│ │ │ │ ├── RelationNotFoundException.php
│ │ │ │ ├── Relations
│ │ │ │ │ ├── BelongsTo.php
│ │ │ │ │ ├── BelongsToMany.php
│ │ │ │ │ ├── Concerns
│ │ │ │ │ │ ├── AsPivot.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
│ │ │ │ ├── MigrationEnded.php
│ │ │ │ ├── MigrationEvent.php
│ │ │ │ ├── MigrationStarted.php
│ │ │ │ ├── MigrationsEnded.php
│ │ │ │ ├── MigrationsStarted.php
│ │ │ │ ├── NoPendingMigrations.php
│ │ │ │ ├── QueryExecuted.php
│ │ │ │ ├── StatementPrepared.php
│ │ │ │ ├── TransactionBeginning.php
│ │ │ │ ├── TransactionCommitted.php
│ │ │ │ └── TransactionRolledBack.php
│ │ │ ├── Grammar.php
│ │ │ ├── LICENSE.md
│ │ │ ├── MigrationServiceProvider.php
│ │ │ ├── Migrations
│ │ │ │ ├── DatabaseMigrationRepository.php
│ │ │ │ ├── Migration.php
│ │ │ │ ├── MigrationCreator.php
│ │ │ │ ├── MigrationRepositoryInterface.php
│ │ │ │ ├── Migrator.php
│ │ │ │ └── stubs
│ │ │ │ │ ├── migration.create.stub
│ │ │ │ │ ├── migration.stub
│ │ │ │ │ └── migration.update.stub
│ │ │ ├── MySqlConnection.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
│ │ │ ├── SQLiteConnection.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
│ │ │ │ ├── MySqlBuilder.php
│ │ │ │ ├── PostgresBuilder.php
│ │ │ │ ├── SQLiteBuilder.php
│ │ │ │ └── SqlServerBuilder.php
│ │ │ ├── Seeder.php
│ │ │ ├── SqlServerConnection.php
│ │ │ └── composer.json
│ │ │ ├── Encryption
│ │ │ ├── Encrypter.php
│ │ │ ├── EncryptionServiceProvider.php
│ │ │ ├── LICENSE.md
│ │ │ └── composer.json
│ │ │ ├── Events
│ │ │ ├── CallQueuedListener.php
│ │ │ ├── Dispatcher.php
│ │ │ ├── EventServiceProvider.php
│ │ │ ├── LICENSE.md
│ │ │ ├── NullDispatcher.php
│ │ │ └── composer.json
│ │ │ ├── Filesystem
│ │ │ ├── Cache.php
│ │ │ ├── Filesystem.php
│ │ │ ├── FilesystemAdapter.php
│ │ │ ├── FilesystemManager.php
│ │ │ ├── FilesystemServiceProvider.php
│ │ │ ├── LICENSE.md
│ │ │ └── composer.json
│ │ │ ├── Foundation
│ │ │ ├── AliasLoader.php
│ │ │ ├── Application.php
│ │ │ ├── Auth
│ │ │ │ ├── Access
│ │ │ │ │ ├── Authorizable.php
│ │ │ │ │ └── AuthorizesRequests.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
│ │ │ │ └── PendingDispatch.php
│ │ │ ├── ComposerScripts.php
│ │ │ ├── Console
│ │ │ │ ├── CastMakeCommand.php
│ │ │ │ ├── ChannelMakeCommand.php
│ │ │ │ ├── ClearCompiledCommand.php
│ │ │ │ ├── ClosureCommand.php
│ │ │ │ ├── ComponentMakeCommand.php
│ │ │ │ ├── ConfigCacheCommand.php
│ │ │ │ ├── ConfigClearCommand.php
│ │ │ │ ├── ConsoleMakeCommand.php
│ │ │ │ ├── DownCommand.php
│ │ │ │ ├── EnvironmentCommand.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
│ │ │ │ ├── ServeCommand.php
│ │ │ │ ├── StorageLinkCommand.php
│ │ │ │ ├── StubPublishCommand.php
│ │ │ │ ├── TestMakeCommand.php
│ │ │ │ ├── UpCommand.php
│ │ │ │ ├── VendorPublishCommand.php
│ │ │ │ ├── ViewCacheCommand.php
│ │ │ │ ├── ViewClearCommand.php
│ │ │ │ └── stubs
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── markdown-mail.stub
│ │ │ │ │ ├── markdown-notification.stub
│ │ │ │ │ ├── markdown.stub
│ │ │ │ │ ├── model.pivot.stub
│ │ │ │ │ ├── model.stub
│ │ │ │ │ ├── notification.stub
│ │ │ │ │ ├── observer.plain.stub
│ │ │ │ │ ├── observer.stub
│ │ │ │ │ ├── policy.plain.stub
│ │ │ │ │ ├── policy.stub
│ │ │ │ │ ├── provider.stub
│ │ │ │ │ ├── request.stub
│ │ │ │ │ ├── resource-collection.stub
│ │ │ │ │ ├── resource.stub
│ │ │ │ │ ├── routes.stub
│ │ │ │ │ ├── rule.stub
│ │ │ │ │ ├── test.stub
│ │ │ │ │ ├── test.unit.stub
│ │ │ │ │ └── view-component.stub
│ │ │ ├── EnvironmentDetector.php
│ │ │ ├── Events
│ │ │ │ ├── DiscoverEvents.php
│ │ │ │ ├── Dispatchable.php
│ │ │ │ └── LocaleUpdated.php
│ │ │ ├── Exceptions
│ │ │ │ ├── Handler.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
│ │ │ │ │ ├── illustrated-layout.blade.php
│ │ │ │ │ ├── layout.blade.php
│ │ │ │ │ └── minimal.blade.php
│ │ │ ├── Http
│ │ │ │ ├── Events
│ │ │ │ │ └── RequestHandled.php
│ │ │ │ ├── Exceptions
│ │ │ │ │ └── MaintenanceModeException.php
│ │ │ │ ├── FormRequest.php
│ │ │ │ ├── Kernel.php
│ │ │ │ └── Middleware
│ │ │ │ │ ├── CheckForMaintenanceMode.php
│ │ │ │ │ ├── ConvertEmptyStringsToNull.php
│ │ │ │ │ ├── TransformsRequest.php
│ │ │ │ │ ├── TrimStrings.php
│ │ │ │ │ ├── ValidatePostSize.php
│ │ │ │ │ └── VerifyCsrfToken.php
│ │ │ ├── Inspiring.php
│ │ │ ├── Mix.php
│ │ │ ├── PackageManifest.php
│ │ │ ├── ProviderRepository.php
│ │ │ ├── Providers
│ │ │ │ ├── ArtisanServiceProvider.php
│ │ │ │ ├── ComposerServiceProvider.php
│ │ │ │ ├── ConsoleSupportServiceProvider.php
│ │ │ │ ├── FormRequestServiceProvider.php
│ │ │ │ └── FoundationServiceProvider.php
│ │ │ ├── Support
│ │ │ │ └── Providers
│ │ │ │ │ ├── AuthServiceProvider.php
│ │ │ │ │ ├── EventServiceProvider.php
│ │ │ │ │ └── RouteServiceProvider.php
│ │ │ ├── Testing
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── InteractsWithAuthentication.php
│ │ │ │ │ ├── InteractsWithConsole.php
│ │ │ │ │ ├── InteractsWithContainer.php
│ │ │ │ │ ├── InteractsWithDatabase.php
│ │ │ │ │ ├── InteractsWithExceptionHandling.php
│ │ │ │ │ ├── InteractsWithRedis.php
│ │ │ │ │ ├── InteractsWithSession.php
│ │ │ │ │ ├── MakesHttpRequests.php
│ │ │ │ │ └── MocksApplicationServices.php
│ │ │ │ ├── DatabaseMigrations.php
│ │ │ │ ├── DatabaseTransactions.php
│ │ │ │ ├── RefreshDatabase.php
│ │ │ │ ├── RefreshDatabaseState.php
│ │ │ │ ├── TestCase.php
│ │ │ │ ├── WithFaker.php
│ │ │ │ ├── WithoutEvents.php
│ │ │ │ └── WithoutMiddleware.php
│ │ │ ├── Validation
│ │ │ │ └── ValidatesRequests.php
│ │ │ ├── helpers.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
│ │ │ │ ├── Factory.php
│ │ │ │ ├── PendingRequest.php
│ │ │ │ ├── Request.php
│ │ │ │ ├── RequestException.php
│ │ │ │ ├── Response.php
│ │ │ │ └── ResponseSequence.php
│ │ │ ├── Concerns
│ │ │ │ ├── InteractsWithContentTypes.php
│ │ │ │ ├── InteractsWithFlashData.php
│ │ │ │ └── InteractsWithInput.php
│ │ │ ├── Exceptions
│ │ │ │ ├── HttpResponseException.php
│ │ │ │ ├── PostTooLargeException.php
│ │ │ │ └── ThrottleRequestsException.php
│ │ │ ├── File.php
│ │ │ ├── FileHelpers.php
│ │ │ ├── JsonResponse.php
│ │ │ ├── LICENSE.md
│ │ │ ├── Middleware
│ │ │ │ ├── CheckResponseForModifications.php
│ │ │ │ ├── FrameGuard.php
│ │ │ │ ├── SetCacheHeaders.php
│ │ │ │ └── TrustHosts.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
│ │ │ ├── Mail
│ │ │ ├── Events
│ │ │ │ ├── MessageSending.php
│ │ │ │ └── MessageSent.php
│ │ │ ├── LICENSE.md
│ │ │ ├── MailManager.php
│ │ │ ├── MailServiceProvider.php
│ │ │ ├── Mailable.php
│ │ │ ├── Mailer.php
│ │ │ ├── Markdown.php
│ │ │ ├── Message.php
│ │ │ ├── PendingMail.php
│ │ │ ├── SendQueuedMailable.php
│ │ │ ├── Transport
│ │ │ │ ├── ArrayTransport.php
│ │ │ │ ├── LogTransport.php
│ │ │ │ ├── MailgunTransport.php
│ │ │ │ ├── SesTransport.php
│ │ │ │ └── Transport.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
│ │ │ ├── AbstractPaginator.php
│ │ │ ├── LICENSE.md
│ │ │ ├── LengthAwarePaginator.php
│ │ │ ├── PaginationServiceProvider.php
│ │ │ ├── Paginator.php
│ │ │ ├── UrlWindow.php
│ │ │ ├── composer.json
│ │ │ └── resources
│ │ │ │ └── views
│ │ │ │ ├── bootstrap-4.blade.php
│ │ │ │ ├── default.blade.php
│ │ │ │ ├── semantic-ui.blade.php
│ │ │ │ ├── simple-bootstrap-4.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
│ │ │ │ ├── FailedTableCommand.php
│ │ │ │ ├── FlushFailedCommand.php
│ │ │ │ ├── ForgetFailedCommand.php
│ │ │ │ ├── ListFailedCommand.php
│ │ │ │ ├── ListenCommand.php
│ │ │ │ ├── RestartCommand.php
│ │ │ │ ├── RetryCommand.php
│ │ │ │ ├── TableCommand.php
│ │ │ │ ├── WorkCommand.php
│ │ │ │ └── stubs
│ │ │ │ │ ├── failed_jobs.stub
│ │ │ │ │ └── jobs.stub
│ │ │ ├── DatabaseQueue.php
│ │ │ ├── Events
│ │ │ │ ├── JobExceptionOccurred.php
│ │ │ │ ├── JobFailed.php
│ │ │ │ ├── JobProcessed.php
│ │ │ │ ├── JobProcessing.php
│ │ │ │ ├── Looping.php
│ │ │ │ └── WorkerStopping.php
│ │ │ ├── Failed
│ │ │ │ ├── DatabaseFailedJobProvider.php
│ │ │ │ ├── DynamoDbFailedJobProvider.php
│ │ │ │ ├── FailedJobProviderInterface.php
│ │ │ │ └── NullFailedJobProvider.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
│ │ │ ├── NullQueue.php
│ │ │ ├── Queue.php
│ │ │ ├── QueueManager.php
│ │ │ ├── QueueServiceProvider.php
│ │ │ ├── README.md
│ │ │ ├── RedisQueue.php
│ │ │ ├── SerializableClosure.php
│ │ │ ├── SerializesAndRestoresModelIdentifiers.php
│ │ │ ├── SerializesModels.php
│ │ │ ├── SqsQueue.php
│ │ │ ├── SyncQueue.php
│ │ │ ├── Worker.php
│ │ │ ├── WorkerOptions.php
│ │ │ └── composer.json
│ │ │ ├── Redis
│ │ │ ├── Connections
│ │ │ │ ├── Connection.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
│ │ │ ├── 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.stub
│ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ ├── controller.stub
│ │ │ │ │ └── middleware.stub
│ │ │ ├── Contracts
│ │ │ │ └── ControllerDispatcher.php
│ │ │ ├── Controller.php
│ │ │ ├── ControllerDispatcher.php
│ │ │ ├── ControllerMiddlewareOptions.php
│ │ │ ├── Events
│ │ │ │ └── RouteMatched.php
│ │ │ ├── Exceptions
│ │ │ │ ├── InvalidSignatureException.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
│ │ │ ├── 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
│ │ │ ├── TokenMismatchException.php
│ │ │ └── composer.json
│ │ │ ├── Support
│ │ │ ├── AggregateServiceProvider.php
│ │ │ ├── Arr.php
│ │ │ ├── Carbon.php
│ │ │ ├── Collection.php
│ │ │ ├── Composer.php
│ │ │ ├── ConfigurationUrlParser.php
│ │ │ ├── DateFactory.php
│ │ │ ├── Enumerable.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
│ │ │ │ ├── Password.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── Request.php
│ │ │ │ ├── Response.php
│ │ │ │ ├── Route.php
│ │ │ │ ├── Schema.php
│ │ │ │ ├── Session.php
│ │ │ │ ├── Storage.php
│ │ │ │ ├── URL.php
│ │ │ │ ├── Validator.php
│ │ │ │ └── View.php
│ │ │ ├── Fluent.php
│ │ │ ├── HigherOrderCollectionProxy.php
│ │ │ ├── HigherOrderTapProxy.php
│ │ │ ├── HigherOrderWhenProxy.php
│ │ │ ├── HtmlString.php
│ │ │ ├── InteractsWithTime.php
│ │ │ ├── LICENSE.md
│ │ │ ├── LazyCollection.php
│ │ │ ├── Manager.php
│ │ │ ├── MessageBag.php
│ │ │ ├── NamespacedItemResolver.php
│ │ │ ├── Optional.php
│ │ │ ├── Pluralizer.php
│ │ │ ├── ProcessUtils.php
│ │ │ ├── Reflector.php
│ │ │ ├── ServiceProvider.php
│ │ │ ├── Str.php
│ │ │ ├── Stringable.php
│ │ │ ├── Testing
│ │ │ │ └── Fakes
│ │ │ │ │ ├── BusFake.php
│ │ │ │ │ ├── EventFake.php
│ │ │ │ │ ├── MailFake.php
│ │ │ │ │ ├── NotificationFake.php
│ │ │ │ │ ├── PendingMailFake.php
│ │ │ │ │ └── QueueFake.php
│ │ │ ├── Traits
│ │ │ │ ├── CapsuleManagerTrait.php
│ │ │ │ ├── EnumeratesValues.php
│ │ │ │ ├── ForwardsCalls.php
│ │ │ │ ├── Localizable.php
│ │ │ │ ├── Macroable.php
│ │ │ │ ├── ReflectsClosures.php
│ │ │ │ └── Tappable.php
│ │ │ ├── ViewErrorBag.php
│ │ │ ├── composer.json
│ │ │ └── helpers.php
│ │ │ ├── Testing
│ │ │ ├── Assert.php
│ │ │ ├── Constraints
│ │ │ │ ├── ArraySubset.php
│ │ │ │ ├── CountInDatabase.php
│ │ │ │ ├── HasInDatabase.php
│ │ │ │ ├── SeeInOrder.php
│ │ │ │ └── SoftDeletedInDatabase.php
│ │ │ ├── LICENSE.md
│ │ │ ├── PendingCommand.php
│ │ │ ├── TestResponse.php
│ │ │ └── composer.json
│ │ │ ├── Translation
│ │ │ ├── ArrayLoader.php
│ │ │ ├── FileLoader.php
│ │ │ ├── LICENSE.md
│ │ │ ├── MessageSelector.php
│ │ │ ├── TranslationServiceProvider.php
│ │ │ ├── Translator.php
│ │ │ └── composer.json
│ │ │ ├── Validation
│ │ │ ├── ClosureValidationRule.php
│ │ │ ├── Concerns
│ │ │ │ ├── FilterEmailValidation.php
│ │ │ │ ├── FormatsMessages.php
│ │ │ │ ├── ReplacesAttributes.php
│ │ │ │ └── ValidatesAttributes.php
│ │ │ ├── DatabasePresenceVerifier.php
│ │ │ ├── DatabasePresenceVerifierInterface.php
│ │ │ ├── Factory.php
│ │ │ ├── LICENSE.md
│ │ │ ├── PresenceVerifierInterface.php
│ │ │ ├── Rule.php
│ │ │ ├── Rules
│ │ │ │ ├── DatabaseRule.php
│ │ │ │ ├── Dimensions.php
│ │ │ │ ├── Exists.php
│ │ │ │ ├── In.php
│ │ │ │ ├── NotIn.php
│ │ │ │ ├── RequiredIf.php
│ │ │ │ └── Unique.php
│ │ │ ├── UnauthorizedException.php
│ │ │ ├── ValidatesWhenResolvedTrait.php
│ │ │ ├── ValidationData.php
│ │ │ ├── ValidationException.php
│ │ │ ├── ValidationRuleParser.php
│ │ │ ├── ValidationServiceProvider.php
│ │ │ ├── Validator.php
│ │ │ └── composer.json
│ │ │ └── View
│ │ │ ├── AnonymousComponent.php
│ │ │ ├── Compilers
│ │ │ ├── BladeCompiler.php
│ │ │ ├── Compiler.php
│ │ │ ├── CompilerInterface.php
│ │ │ ├── ComponentTagCompiler.php
│ │ │ └── Concerns
│ │ │ │ ├── CompilesAuthorizations.php
│ │ │ │ ├── CompilesComments.php
│ │ │ │ ├── CompilesComponents.php
│ │ │ │ ├── CompilesConditionals.php
│ │ │ │ ├── CompilesEchos.php
│ │ │ │ ├── CompilesErrors.php
│ │ │ │ ├── CompilesHelpers.php
│ │ │ │ ├── CompilesIncludes.php
│ │ │ │ ├── CompilesInjections.php
│ │ │ │ ├── CompilesJson.php
│ │ │ │ ├── CompilesLayouts.php
│ │ │ │ ├── CompilesLoops.php
│ │ │ │ ├── CompilesRawPhp.php
│ │ │ │ ├── CompilesStacks.php
│ │ │ │ └── CompilesTranslations.php
│ │ │ ├── Component.php
│ │ │ ├── ComponentAttributeBag.php
│ │ │ ├── Concerns
│ │ │ ├── ManagesComponents.php
│ │ │ ├── ManagesEvents.php
│ │ │ ├── ManagesLayouts.php
│ │ │ ├── ManagesLoops.php
│ │ │ ├── ManagesStacks.php
│ │ │ └── ManagesTranslations.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
│ │ │ ├── ViewFinderInterface.php
│ │ │ ├── ViewName.php
│ │ │ ├── ViewServiceProvider.php
│ │ │ └── composer.json
│ └── tinker
│ │ ├── CHANGELOG.md
│ │ ├── 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-0.x.md
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ └── commonmark
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Block
│ │ │ ├── Element
│ │ │ │ ├── AbstractBlock.php
│ │ │ │ ├── AbstractStringContainerBlock.php
│ │ │ │ ├── BlockQuote.php
│ │ │ │ ├── Document.php
│ │ │ │ ├── FencedCode.php
│ │ │ │ ├── Heading.php
│ │ │ │ ├── HtmlBlock.php
│ │ │ │ ├── IndentedCode.php
│ │ │ │ ├── InlineContainerInterface.php
│ │ │ │ ├── ListBlock.php
│ │ │ │ ├── ListData.php
│ │ │ │ ├── ListItem.php
│ │ │ │ ├── Paragraph.php
│ │ │ │ ├── StringContainerInterface.php
│ │ │ │ └── ThematicBreak.php
│ │ │ ├── Parser
│ │ │ │ ├── ATXHeadingParser.php
│ │ │ │ ├── BlockParserInterface.php
│ │ │ │ ├── BlockQuoteParser.php
│ │ │ │ ├── FencedCodeParser.php
│ │ │ │ ├── HtmlBlockParser.php
│ │ │ │ ├── IndentedCodeParser.php
│ │ │ │ ├── LazyParagraphParser.php
│ │ │ │ ├── ListParser.php
│ │ │ │ ├── SetExtHeadingParser.php
│ │ │ │ └── ThematicBreakParser.php
│ │ │ └── Renderer
│ │ │ │ ├── BlockQuoteRenderer.php
│ │ │ │ ├── BlockRendererInterface.php
│ │ │ │ ├── DocumentRenderer.php
│ │ │ │ ├── FencedCodeRenderer.php
│ │ │ │ ├── HeadingRenderer.php
│ │ │ │ ├── HtmlBlockRenderer.php
│ │ │ │ ├── IndentedCodeRenderer.php
│ │ │ │ ├── ListBlockRenderer.php
│ │ │ │ ├── ListItemRenderer.php
│ │ │ │ ├── ParagraphRenderer.php
│ │ │ │ └── ThematicBreakRenderer.php
│ │ │ ├── CommonMarkConverter.php
│ │ │ ├── ConfigurableEnvironmentInterface.php
│ │ │ ├── Context.php
│ │ │ ├── ContextInterface.php
│ │ │ ├── Converter.php
│ │ │ ├── ConverterInterface.php
│ │ │ ├── Cursor.php
│ │ │ ├── Delimiter
│ │ │ ├── Delimiter.php
│ │ │ ├── DelimiterInterface.php
│ │ │ ├── DelimiterStack.php
│ │ │ └── Processor
│ │ │ │ ├── DelimiterProcessorCollection.php
│ │ │ │ ├── DelimiterProcessorCollectionInterface.php
│ │ │ │ ├── DelimiterProcessorInterface.php
│ │ │ │ ├── EmphasisDelimiterProcessor.php
│ │ │ │ └── StaggeredDelimiterProcessor.php
│ │ │ ├── DocParser.php
│ │ │ ├── DocParserInterface.php
│ │ │ ├── ElementRendererInterface.php
│ │ │ ├── Environment.php
│ │ │ ├── EnvironmentAwareInterface.php
│ │ │ ├── EnvironmentInterface.php
│ │ │ ├── Event
│ │ │ ├── AbstractEvent.php
│ │ │ ├── DocumentParsedEvent.php
│ │ │ └── DocumentPreParsedEvent.php
│ │ │ ├── Exception
│ │ │ ├── InvalidOptionException.php
│ │ │ └── UnexpectedEncodingException.php
│ │ │ ├── Extension
│ │ │ ├── Attributes
│ │ │ │ ├── AttributesExtension.php
│ │ │ │ ├── Event
│ │ │ │ │ └── AttributesListener.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── Attributes.php
│ │ │ │ │ └── AttributesInline.php
│ │ │ │ ├── Parser
│ │ │ │ │ ├── AttributesBlockParser.php
│ │ │ │ │ └── AttributesInlineParser.php
│ │ │ │ └── Util
│ │ │ │ │ └── AttributesHelper.php
│ │ │ ├── Autolink
│ │ │ │ ├── AutolinkExtension.php
│ │ │ │ ├── EmailAutolinkProcessor.php
│ │ │ │ ├── InlineMentionParser.php
│ │ │ │ └── UrlAutolinkProcessor.php
│ │ │ ├── CommonMarkCoreExtension.php
│ │ │ ├── DisallowedRawHtml
│ │ │ │ ├── DisallowedRawHtmlBlockRenderer.php
│ │ │ │ ├── DisallowedRawHtmlExtension.php
│ │ │ │ └── DisallowedRawHtmlInlineRenderer.php
│ │ │ ├── ExtensionInterface.php
│ │ │ ├── ExternalLink
│ │ │ │ ├── ExternalLinkExtension.php
│ │ │ │ └── ExternalLinkProcessor.php
│ │ │ ├── Footnote
│ │ │ │ ├── Event
│ │ │ │ │ ├── AnonymousFootnotesListener.php
│ │ │ │ │ ├── GatherFootnotesListener.php
│ │ │ │ │ └── NumberFootnotesListener.php
│ │ │ │ ├── FootnoteExtension.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── Footnote.php
│ │ │ │ │ ├── FootnoteBackref.php
│ │ │ │ │ ├── FootnoteContainer.php
│ │ │ │ │ └── FootnoteRef.php
│ │ │ │ ├── Parser
│ │ │ │ │ ├── AnonymousFootnoteRefParser.php
│ │ │ │ │ ├── FootnoteParser.php
│ │ │ │ │ └── FootnoteRefParser.php
│ │ │ │ └── Renderer
│ │ │ │ │ ├── FootnoteBackrefRenderer.php
│ │ │ │ │ ├── FootnoteContainerRenderer.php
│ │ │ │ │ ├── FootnoteRefRenderer.php
│ │ │ │ │ └── FootnoteRenderer.php
│ │ │ ├── GithubFlavoredMarkdownExtension.php
│ │ │ ├── HeadingPermalink
│ │ │ │ ├── HeadingPermalink.php
│ │ │ │ ├── HeadingPermalinkExtension.php
│ │ │ │ ├── HeadingPermalinkProcessor.php
│ │ │ │ ├── HeadingPermalinkRenderer.php
│ │ │ │ └── Slug
│ │ │ │ │ ├── DefaultSlugGenerator.php
│ │ │ │ │ └── SlugGeneratorInterface.php
│ │ │ ├── InlinesOnly
│ │ │ │ ├── ChildRenderer.php
│ │ │ │ └── InlinesOnlyExtension.php
│ │ │ ├── Mention
│ │ │ │ ├── Generator
│ │ │ │ │ ├── CallbackGenerator.php
│ │ │ │ │ ├── MentionGeneratorInterface.php
│ │ │ │ │ └── StringTemplateLinkGenerator.php
│ │ │ │ ├── Mention.php
│ │ │ │ ├── MentionExtension.php
│ │ │ │ └── MentionParser.php
│ │ │ ├── SmartPunct
│ │ │ │ ├── PunctuationParser.php
│ │ │ │ ├── Quote.php
│ │ │ │ ├── QuoteParser.php
│ │ │ │ ├── QuoteProcessor.php
│ │ │ │ ├── QuoteRenderer.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
│ │ │ ├── TableOfContents
│ │ │ │ ├── Node
│ │ │ │ │ ├── TableOfContents.php
│ │ │ │ │ └── TableOfContentsPlaceholder.php
│ │ │ │ ├── Normalizer
│ │ │ │ │ ├── AsIsNormalizerStrategy.php
│ │ │ │ │ ├── FlatNormalizerStrategy.php
│ │ │ │ │ ├── NormalizerStrategyInterface.php
│ │ │ │ │ └── RelativeNormalizerStrategy.php
│ │ │ │ ├── TableOfContents.php
│ │ │ │ ├── TableOfContentsBuilder.php
│ │ │ │ ├── TableOfContentsExtension.php
│ │ │ │ ├── TableOfContentsGenerator.php
│ │ │ │ ├── TableOfContentsGeneratorInterface.php
│ │ │ │ ├── TableOfContentsPlaceholderParser.php
│ │ │ │ └── TableOfContentsPlaceholderRenderer.php
│ │ │ └── TaskList
│ │ │ │ ├── TaskListExtension.php
│ │ │ │ ├── TaskListItemMarker.php
│ │ │ │ ├── TaskListItemMarkerParser.php
│ │ │ │ └── TaskListItemMarkerRenderer.php
│ │ │ ├── GithubFlavoredMarkdownConverter.php
│ │ │ ├── HtmlElement.php
│ │ │ ├── HtmlRenderer.php
│ │ │ ├── Inline
│ │ │ ├── AdjacentTextMerger.php
│ │ │ ├── Element
│ │ │ │ ├── AbstractInline.php
│ │ │ │ ├── AbstractStringContainer.php
│ │ │ │ ├── AbstractWebResource.php
│ │ │ │ ├── Code.php
│ │ │ │ ├── Emphasis.php
│ │ │ │ ├── HtmlInline.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Link.php
│ │ │ │ ├── Newline.php
│ │ │ │ ├── Strong.php
│ │ │ │ └── Text.php
│ │ │ ├── Parser
│ │ │ │ ├── AutolinkParser.php
│ │ │ │ ├── BacktickParser.php
│ │ │ │ ├── BangParser.php
│ │ │ │ ├── CloseBracketParser.php
│ │ │ │ ├── EntityParser.php
│ │ │ │ ├── EscapableParser.php
│ │ │ │ ├── HtmlInlineParser.php
│ │ │ │ ├── InlineParserInterface.php
│ │ │ │ ├── NewlineParser.php
│ │ │ │ └── OpenBracketParser.php
│ │ │ └── Renderer
│ │ │ │ ├── CodeRenderer.php
│ │ │ │ ├── EmphasisRenderer.php
│ │ │ │ ├── HtmlInlineRenderer.php
│ │ │ │ ├── ImageRenderer.php
│ │ │ │ ├── InlineRendererInterface.php
│ │ │ │ ├── LinkRenderer.php
│ │ │ │ ├── NewlineRenderer.php
│ │ │ │ ├── StrongRenderer.php
│ │ │ │ └── TextRenderer.php
│ │ │ ├── InlineParserContext.php
│ │ │ ├── InlineParserEngine.php
│ │ │ ├── Input
│ │ │ ├── MarkdownInput.php
│ │ │ └── MarkdownInputInterface.php
│ │ │ ├── MarkdownConverterInterface.php
│ │ │ ├── Node
│ │ │ ├── Node.php
│ │ │ ├── NodeWalker.php
│ │ │ └── NodeWalkerEvent.php
│ │ │ ├── Normalizer
│ │ │ ├── SlugNormalizer.php
│ │ │ ├── TextNormalizer.php
│ │ │ └── TextNormalizerInterface.php
│ │ │ ├── Reference
│ │ │ ├── Reference.php
│ │ │ ├── ReferenceInterface.php
│ │ │ ├── ReferenceMap.php
│ │ │ ├── ReferenceMapInterface.php
│ │ │ └── ReferenceParser.php
│ │ │ ├── UnmatchedBlockCloser.php
│ │ │ └── Util
│ │ │ ├── ArrayCollection.php
│ │ │ ├── Configuration.php
│ │ │ ├── ConfigurationAwareInterface.php
│ │ │ ├── ConfigurationInterface.php
│ │ │ ├── Html5Entities.php
│ │ │ ├── Html5EntityDecoder.php
│ │ │ ├── LinkParserHelper.php
│ │ │ ├── PrioritizedList.php
│ │ │ ├── RegexHelper.php
│ │ │ ├── UrlEncoder.php
│ │ │ └── Xml.php
│ └── flysystem
│ │ ├── LICENSE
│ │ ├── SECURITY.md
│ │ ├── composer.json
│ │ ├── deprecations.md
│ │ └── src
│ │ ├── Adapter
│ │ ├── AbstractAdapter.php
│ │ ├── AbstractFtpAdapter.php
│ │ ├── CanOverwriteFiles.php
│ │ ├── Ftp.php
│ │ ├── Ftpd.php
│ │ ├── Local.php
│ │ ├── NullAdapter.php
│ │ ├── Polyfill
│ │ │ ├── NotSupportingVisibilityTrait.php
│ │ │ ├── StreamedCopyTrait.php
│ │ │ ├── StreamedReadingTrait.php
│ │ │ ├── StreamedTrait.php
│ │ │ └── StreamedWritingTrait.php
│ │ └── SynologyFtp.php
│ │ ├── AdapterInterface.php
│ │ ├── Config.php
│ │ ├── ConfigAwareTrait.php
│ │ ├── ConnectionErrorException.php
│ │ ├── ConnectionRuntimeException.php
│ │ ├── Directory.php
│ │ ├── Exception.php
│ │ ├── File.php
│ │ ├── FileExistsException.php
│ │ ├── FileNotFoundException.php
│ │ ├── Filesystem.php
│ │ ├── FilesystemException.php
│ │ ├── FilesystemInterface.php
│ │ ├── FilesystemNotFoundException.php
│ │ ├── Handler.php
│ │ ├── InvalidRootException.php
│ │ ├── MountManager.php
│ │ ├── NotSupportedException.php
│ │ ├── Plugin
│ │ ├── AbstractPlugin.php
│ │ ├── EmptyDir.php
│ │ ├── ForcedCopy.php
│ │ ├── ForcedRename.php
│ │ ├── GetWithMetadata.php
│ │ ├── ListFiles.php
│ │ ├── ListPaths.php
│ │ ├── ListWith.php
│ │ ├── PluggableTrait.php
│ │ └── PluginNotFoundException.php
│ │ ├── PluginInterface.php
│ │ ├── ReadInterface.php
│ │ ├── RootViolationException.php
│ │ ├── SafeStorage.php
│ │ ├── UnreadableFileException.php
│ │ ├── Util.php
│ │ └── Util
│ │ ├── ContentListingFormatter.php
│ │ ├── MimeType.php
│ │ └── StreamHasher.php
├── maximebf
│ └── debugbar
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ └── src
│ │ └── DebugBar
│ │ ├── Bridge
│ │ ├── CacheCacheCollector.php
│ │ ├── DoctrineCollector.php
│ │ ├── MonologCollector.php
│ │ ├── Propel2Collector.php
│ │ ├── PropelCollector.php
│ │ ├── SlimCollector.php
│ │ ├── SwiftMailer
│ │ │ ├── SwiftLogCollector.php
│ │ │ └── SwiftMailCollector.php
│ │ ├── Twig
│ │ │ ├── TimeableTwigExtensionProfiler.php
│ │ │ ├── TraceableTwigEnvironment.php
│ │ │ ├── TraceableTwigTemplate.php
│ │ │ └── TwigCollector.php
│ │ └── TwigProfileCollector.php
│ │ ├── DataCollector
│ │ ├── AggregatedCollector.php
│ │ ├── AssetProvider.php
│ │ ├── ConfigCollector.php
│ │ ├── DataCollector.php
│ │ ├── DataCollectorInterface.php
│ │ ├── ExceptionsCollector.php
│ │ ├── LocalizationCollector.php
│ │ ├── MemoryCollector.php
│ │ ├── MessagesAggregateInterface.php
│ │ ├── MessagesCollector.php
│ │ ├── PDO
│ │ │ ├── PDOCollector.php
│ │ │ ├── TraceablePDO.php
│ │ │ ├── TraceablePDOStatement.php
│ │ │ └── TracedStatement.php
│ │ ├── PhpInfoCollector.php
│ │ ├── Renderable.php
│ │ ├── RequestDataCollector.php
│ │ └── TimeDataCollector.php
│ │ ├── DataFormatter
│ │ ├── DataFormatter.php
│ │ ├── DataFormatterInterface.php
│ │ ├── DebugBarVarDumper.php
│ │ └── VarDumper
│ │ │ ├── DebugBarHtmlDumper.php
│ │ │ └── SeekingData.php
│ │ ├── DebugBar.php
│ │ ├── DebugBarException.php
│ │ ├── HttpDriverInterface.php
│ │ ├── JavascriptRenderer.php
│ │ ├── OpenHandler.php
│ │ ├── PhpHttpDriver.php
│ │ ├── RequestIdGenerator.php
│ │ ├── RequestIdGeneratorInterface.php
│ │ ├── Resources
│ │ ├── debugbar.css
│ │ ├── debugbar.js
│ │ ├── openhandler.css
│ │ ├── openhandler.js
│ │ ├── vendor
│ │ │ ├── font-awesome
│ │ │ │ ├── css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ └── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── highlightjs
│ │ │ │ ├── highlight.pack.js
│ │ │ │ └── styles
│ │ │ │ │ └── github.css
│ │ │ └── jquery
│ │ │ │ └── dist
│ │ │ │ └── jquery.min.js
│ │ ├── widgets.css
│ │ ├── widgets.js
│ │ └── widgets
│ │ │ ├── mails
│ │ │ ├── widget.css
│ │ │ └── widget.js
│ │ │ ├── sqlqueries
│ │ │ ├── widget.css
│ │ │ └── widget.js
│ │ │ └── templates
│ │ │ ├── widget.css
│ │ │ └── widget.js
│ │ ├── StandardDebugBar.php
│ │ └── Storage
│ │ ├── FileStorage.php
│ │ ├── MemcachedStorage.php
│ │ ├── PdoStorage.php
│ │ ├── RedisStorage.php
│ │ ├── StorageInterface.php
│ │ └── pdo_storage_schema.sql
├── 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
│ │ │ ├── PHPUnitConstraint.php
│ │ │ ├── Pattern.php
│ │ │ ├── Subset.php
│ │ │ └── Type.php
│ │ ├── MethodCall.php
│ │ ├── Mock.php
│ │ ├── MockInterface.php
│ │ ├── ReceivedMethodCalls.php
│ │ ├── Undefined.php
│ │ ├── VerificationDirector.php
│ │ └── VerificationExpectation.php
│ │ └── helpers.php
├── monolog
│ └── monolog
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── UPGRADE.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Monolog
│ │ ├── DateTimeImmutable.php
│ │ ├── ErrorHandler.php
│ │ ├── Formatter
│ │ ├── ChromePHPFormatter.php
│ │ ├── ElasticaFormatter.php
│ │ ├── ElasticsearchFormatter.php
│ │ ├── FlowdockFormatter.php
│ │ ├── FluentdFormatter.php
│ │ ├── FormatterInterface.php
│ │ ├── GelfMessageFormatter.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
│ │ ├── RollbarHandler.php
│ │ ├── RotatingFileHandler.php
│ │ ├── SamplingHandler.php
│ │ ├── SendGridHandler.php
│ │ ├── Slack
│ │ │ └── SlackRecord.php
│ │ ├── SlackHandler.php
│ │ ├── SlackWebhookHandler.php
│ │ ├── SocketHandler.php
│ │ ├── SqsHandler.php
│ │ ├── StreamHandler.php
│ │ ├── SwiftMailerHandler.php
│ │ ├── SyslogHandler.php
│ │ ├── SyslogUdp
│ │ │ └── UdpSocket.php
│ │ ├── SyslogUdpHandler.php
│ │ ├── TelegramBotHandler.php
│ │ ├── TestHandler.php
│ │ ├── WebRequestRecognizerTrait.php
│ │ ├── WhatFailureGroupHandler.php
│ │ └── ZendMonitorHandler.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
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ ├── 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
│ │ ├── contributing.md
│ │ ├── extension.neon
│ │ ├── phpmd.xml
│ │ ├── readme.md
│ │ └── src
│ │ └── Carbon
│ │ ├── 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
│ │ ├── 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
│ │ ├── 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
│ │ ├── Macro.php
│ │ ├── MacroExtension.php
│ │ └── MacroScanner.php
│ │ ├── Traits
│ │ ├── Boundaries.php
│ │ ├── Cast.php
│ │ ├── Comparison.php
│ │ ├── Converter.php
│ │ ├── Creator.php
│ │ ├── Date.php
│ │ ├── Difference.php
│ │ ├── IntervalRounding.php
│ │ ├── IntervalStep.php
│ │ ├── Localization.php
│ │ ├── Macro.php
│ │ ├── Mixin.php
│ │ ├── Modifiers.php
│ │ ├── Mutability.php
│ │ ├── ObjectInitialisation.php
│ │ ├── Options.php
│ │ ├── Rounding.php
│ │ ├── Serialization.php
│ │ ├── Test.php
│ │ ├── Timestamp.php
│ │ ├── Units.php
│ │ └── Week.php
│ │ └── Translator.php
├── nikic
│ └── php-parser
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ └── php-parse
│ │ ├── composer.json
│ │ ├── grammar
│ │ ├── README.md
│ │ ├── parser.template
│ │ ├── php5.y
│ │ ├── php7.y
│ │ ├── rebuildParsers.php
│ │ ├── tokens.template
│ │ └── tokens.y
│ │ └── lib
│ │ └── PhpParser
│ │ ├── Builder.php
│ │ ├── Builder
│ │ ├── Class_.php
│ │ ├── Declaration.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
│ │ │ ├── CoaleseEqualTokenEmulator.php
│ │ │ ├── FnTokenEmulator.php
│ │ │ ├── NumericLiteralSeparatorEmulator.php
│ │ │ └── TokenEmulatorInterface.php
│ │ ├── NameContext.php
│ │ ├── Node.php
│ │ ├── Node
│ │ ├── Arg.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
│ │ │ ├── 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
│ │ │ ├── MethodCall.php
│ │ │ ├── New_.php
│ │ │ ├── PostDec.php
│ │ │ ├── PostInc.php
│ │ │ ├── PreDec.php
│ │ │ ├── PreInc.php
│ │ │ ├── Print_.php
│ │ │ ├── PropertyFetch.php
│ │ │ ├── ShellExec.php
│ │ │ ├── StaticCall.php
│ │ │ ├── StaticPropertyFetch.php
│ │ │ ├── Ternary.php
│ │ │ ├── UnaryMinus.php
│ │ │ ├── UnaryPlus.php
│ │ │ ├── Variable.php
│ │ │ ├── YieldFrom.php
│ │ │ └── Yield_.php
│ │ ├── FunctionLike.php
│ │ ├── Identifier.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
│ │ │ ├── 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
│ │ ├── NodeAbstract.php
│ │ ├── NodeDumper.php
│ │ ├── NodeFinder.php
│ │ ├── NodeTraverser.php
│ │ ├── NodeTraverserInterface.php
│ │ ├── NodeVisitor.php
│ │ ├── NodeVisitor
│ │ ├── CloningVisitor.php
│ │ ├── FindingVisitor.php
│ │ ├── FirstFindingVisitor.php
│ │ └── NameResolver.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
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ ├── .php_cs
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpstan.neon.dist
│ │ ├── phpunit.xml.dist
│ │ └── src
│ │ ├── Adapters
│ │ ├── Laravel
│ │ │ ├── CollisionServiceProvider.php
│ │ │ ├── Commands
│ │ │ │ └── TestCommand.php
│ │ │ ├── ExceptionHandler.php
│ │ │ ├── IgnitionSolutionsRepository.php
│ │ │ └── Inspector.php
│ │ └── Phpunit
│ │ │ ├── ConfigureIO.php
│ │ │ ├── Printer.php
│ │ │ ├── PrinterContents.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
│ │ ├── SolutionsRepository.php
│ │ └── Writer.php
│ │ ├── Exceptions
│ │ └── ShouldNotHappen.php
│ │ ├── Handler.php
│ │ ├── Highlighter.php
│ │ ├── Provider.php
│ │ ├── SolutionsRepositories
│ │ └── NullSolutionsRepository.php
│ │ └── Writer.php
├── opis
│ └── closure
│ │ ├── .github
│ │ └── workflows
│ │ │ └── tests.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ ├── README.md
│ │ ├── autoload.php
│ │ ├── composer.json
│ │ ├── functions.php
│ │ └── src
│ │ ├── Analyzer.php
│ │ ├── ClosureContext.php
│ │ ├── ClosureScope.php
│ │ ├── ClosureStream.php
│ │ ├── ISecurityProvider.php
│ │ ├── ReflectionClosure.php
│ │ ├── SecurityException.php
│ │ ├── SecurityProvider.php
│ │ ├── SelfReference.php
│ │ └── SerializableClosure.php
├── phar-io
│ ├── manifest
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── examples
│ │ │ └── example-01.php
│ │ ├── phive.xml
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── ManifestDocumentMapper.php
│ │ │ ├── ManifestLoader.php
│ │ │ ├── ManifestSerializer.php
│ │ │ ├── exceptions
│ │ │ │ ├── Exception.php
│ │ │ │ ├── InvalidApplicationNameException.php
│ │ │ │ ├── InvalidEmailException.php
│ │ │ │ ├── InvalidUrlException.php
│ │ │ │ ├── ManifestDocumentException.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
│ │ │ │ ├── ManifestDocumentLoadingException.php
│ │ │ │ ├── ManifestElement.php
│ │ │ │ ├── PhpElement.php
│ │ │ │ └── RequiresElement.php
│ │ └── tests
│ │ │ ├── ManifestDocumentMapperTest.php
│ │ │ ├── ManifestLoaderTest.php
│ │ │ ├── ManifestSerializerTest.php
│ │ │ ├── _fixture
│ │ │ ├── custom.xml
│ │ │ ├── extension-invalidcompatible.xml
│ │ │ ├── extension.xml
│ │ │ ├── invalidversion.xml
│ │ │ ├── invalidversionconstraint.xml
│ │ │ ├── library.xml
│ │ │ ├── manifest.xml
│ │ │ ├── phpunit-5.6.5.xml
│ │ │ └── test.phar
│ │ │ ├── exceptions
│ │ │ └── ManifestDocumentLoadingExceptionTest.php
│ │ │ ├── values
│ │ │ ├── ApplicationNameTest.php
│ │ │ ├── ApplicationTest.php
│ │ │ ├── AuthorCollectionTest.php
│ │ │ ├── AuthorTest.php
│ │ │ ├── BundledComponentCollectionTest.php
│ │ │ ├── BundledComponentTest.php
│ │ │ ├── CopyrightInformationTest.php
│ │ │ ├── EmailTest.php
│ │ │ ├── ExtensionTest.php
│ │ │ ├── LibraryTest.php
│ │ │ ├── LicenseTest.php
│ │ │ ├── ManifestTest.php
│ │ │ ├── PhpExtensionRequirementTest.php
│ │ │ ├── PhpVersionRequirementTest.php
│ │ │ ├── RequirementCollectionTest.php
│ │ │ └── UrlTest.php
│ │ │ └── xml
│ │ │ ├── AuthorElementCollectionTest.php
│ │ │ ├── AuthorElementTest.php
│ │ │ ├── BundlesElementTest.php
│ │ │ ├── ComponentElementCollectionTest.php
│ │ │ ├── ComponentElementTest.php
│ │ │ ├── ContainsElementTest.php
│ │ │ ├── CopyrightElementTest.php
│ │ │ ├── ExtElementCollectionTest.php
│ │ │ ├── ExtElementTest.php
│ │ │ ├── ExtensionElementTest.php
│ │ │ ├── LicenseElementTest.php
│ │ │ ├── ManifestDocumentTest.php
│ │ │ ├── PhpElementTest.php
│ │ │ └── RequiresElementTest.php
│ └── version
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phive.xml
│ │ ├── phpunit.xml
│ │ ├── src
│ │ ├── 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
│ │ │ └── UnsupportedVersionConstraintException.php
│ │ └── tests
│ │ ├── Integration
│ │ └── VersionConstraintParserTest.php
│ │ └── Unit
│ │ ├── AbstractVersionConstraintTest.php
│ │ ├── AndVersionConstraintGroupTest.php
│ │ ├── AnyVersionConstraintTest.php
│ │ ├── ExactVersionConstraintTest.php
│ │ ├── GreaterThanOrEqualToVersionConstraintTest.php
│ │ ├── OrVersionConstraintGroupTest.php
│ │ ├── PreReleaseSuffixTest.php
│ │ ├── SpecificMajorAndMinorVersionConstraintTest.php
│ │ ├── SpecificMajorVersionConstraintTest.php
│ │ └── VersionTest.php
├── phpdocumentor
│ ├── reflection-common
│ │ ├── .github
│ │ │ ├── dependabot.yml
│ │ │ └── workflows
│ │ │ │ └── push.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── Element.php
│ │ │ ├── File.php
│ │ │ ├── Fqsen.php
│ │ │ ├── Location.php
│ │ │ ├── Project.php
│ │ │ └── ProjectFactory.php
│ ├── reflection-docblock
│ │ ├── .dependabot
│ │ │ └── config.yml
│ │ ├── .github
│ │ │ └── workflows
│ │ │ │ └── push.yml
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── README.md
│ │ ├── composer-require-config.json
│ │ ├── composer.json
│ │ ├── phive.xml
│ │ ├── phpcs.xml.dist
│ │ ├── phpstan.neon
│ │ ├── psalm.xml
│ │ └── src
│ │ │ ├── DocBlock.php
│ │ │ ├── DocBlock
│ │ │ ├── Description.php
│ │ │ ├── DescriptionFactory.php
│ │ │ ├── ExampleFinder.php
│ │ │ ├── Serializer.php
│ │ │ ├── StandardTagFactory.php
│ │ │ ├── Tag.php
│ │ │ ├── TagFactory.php
│ │ │ └── Tags
│ │ │ │ ├── Author.php
│ │ │ │ ├── BaseTag.php
│ │ │ │ ├── Covers.php
│ │ │ │ ├── Deprecated.php
│ │ │ │ ├── Example.php
│ │ │ │ ├── Factory
│ │ │ │ └── StaticMethod.php
│ │ │ │ ├── Formatter.php
│ │ │ │ ├── Formatter
│ │ │ │ ├── AlignFormatter.php
│ │ │ │ └── PassthroughFormatter.php
│ │ │ │ ├── Generic.php
│ │ │ │ ├── InvalidTag.php
│ │ │ │ ├── Link.php
│ │ │ │ ├── Method.php
│ │ │ │ ├── Param.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── PropertyRead.php
│ │ │ │ ├── PropertyWrite.php
│ │ │ │ ├── Reference
│ │ │ │ ├── Fqsen.php
│ │ │ │ ├── Reference.php
│ │ │ │ └── Url.php
│ │ │ │ ├── Return_.php
│ │ │ │ ├── See.php
│ │ │ │ ├── Since.php
│ │ │ │ ├── Source.php
│ │ │ │ ├── TagWithType.php
│ │ │ │ ├── Throws.php
│ │ │ │ ├── Uses.php
│ │ │ │ ├── Var_.php
│ │ │ │ └── Version.php
│ │ │ ├── DocBlockFactory.php
│ │ │ └── DocBlockFactoryInterface.php
│ └── type-resolver
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── phpbench.json
│ │ └── src
│ │ ├── FqsenResolver.php
│ │ ├── Type.php
│ │ ├── TypeResolver.php
│ │ └── Types
│ │ ├── AbstractList.php
│ │ ├── AggregatedType.php
│ │ ├── Array_.php
│ │ ├── Boolean.php
│ │ ├── Callable_.php
│ │ ├── ClassString.php
│ │ ├── Collection.php
│ │ ├── Compound.php
│ │ ├── Context.php
│ │ ├── ContextFactory.php
│ │ ├── Expression.php
│ │ ├── False_.php
│ │ ├── Float_.php
│ │ ├── Integer.php
│ │ ├── Intersection.php
│ │ ├── Iterable_.php
│ │ ├── Mixed_.php
│ │ ├── Null_.php
│ │ ├── Nullable.php
│ │ ├── Object_.php
│ │ ├── Parent_.php
│ │ ├── Resource_.php
│ │ ├── Scalar.php
│ │ ├── Self_.php
│ │ ├── Static_.php
│ │ ├── String_.php
│ │ ├── This.php
│ │ ├── True_.php
│ │ └── Void_.php
├── phpoption
│ └── phpoption
│ │ ├── LICENSE
│ │ ├── composer.json
│ │ └── src
│ │ └── PhpOption
│ │ ├── LazyOption.php
│ │ ├── None.php
│ │ ├── Option.php
│ │ └── Some.php
├── phpspec
│ └── prophecy
│ │ ├── CHANGES.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Prophecy
│ │ ├── Argument.php
│ │ ├── Argument
│ │ ├── ArgumentsWildcard.php
│ │ └── Token
│ │ │ ├── AnyValueToken.php
│ │ │ ├── AnyValuesToken.php
│ │ │ ├── ApproximateValueToken.php
│ │ │ ├── ArrayCountToken.php
│ │ │ ├── ArrayEntryToken.php
│ │ │ ├── ArrayEveryEntryToken.php
│ │ │ ├── CallbackToken.php
│ │ │ ├── ExactValueToken.php
│ │ │ ├── IdenticalValueToken.php
│ │ │ ├── LogicalAndToken.php
│ │ │ ├── LogicalNotToken.php
│ │ │ ├── ObjectStateToken.php
│ │ │ ├── StringContainsToken.php
│ │ │ ├── TokenInterface.php
│ │ │ └── TypeToken.php
│ │ ├── Call
│ │ ├── Call.php
│ │ └── CallCenter.php
│ │ ├── Comparator
│ │ ├── ClosureComparator.php
│ │ ├── Factory.php
│ │ └── ProphecyComparator.php
│ │ ├── Doubler
│ │ ├── CachedDoubler.php
│ │ ├── ClassPatch
│ │ │ ├── ClassPatchInterface.php
│ │ │ ├── DisableConstructorPatch.php
│ │ │ ├── HhvmExceptionPatch.php
│ │ │ ├── KeywordPatch.php
│ │ │ ├── MagicCallPatch.php
│ │ │ ├── ProphecySubjectPatch.php
│ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ ├── SplFileInfoPatch.php
│ │ │ ├── ThrowablePatch.php
│ │ │ └── TraversablePatch.php
│ │ ├── DoubleInterface.php
│ │ ├── Doubler.php
│ │ ├── Generator
│ │ │ ├── ClassCodeGenerator.php
│ │ │ ├── ClassCreator.php
│ │ │ ├── ClassMirror.php
│ │ │ ├── Node
│ │ │ │ ├── ArgumentNode.php
│ │ │ │ ├── ClassNode.php
│ │ │ │ └── MethodNode.php
│ │ │ ├── ReflectionInterface.php
│ │ │ └── TypeHintReference.php
│ │ ├── LazyDouble.php
│ │ └── NameGenerator.php
│ │ ├── Exception
│ │ ├── Call
│ │ │ └── UnexpectedCallException.php
│ │ ├── Doubler
│ │ │ ├── ClassCreatorException.php
│ │ │ ├── ClassMirrorException.php
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── DoubleException.php
│ │ │ ├── DoublerException.php
│ │ │ ├── InterfaceNotFoundException.php
│ │ │ ├── MethodNotExtendableException.php
│ │ │ ├── MethodNotFoundException.php
│ │ │ └── ReturnByReferenceException.php
│ │ ├── Exception.php
│ │ ├── InvalidArgumentException.php
│ │ ├── Prediction
│ │ │ ├── AggregateException.php
│ │ │ ├── FailedPredictionException.php
│ │ │ ├── NoCallsException.php
│ │ │ ├── PredictionException.php
│ │ │ ├── UnexpectedCallsCountException.php
│ │ │ └── UnexpectedCallsException.php
│ │ └── Prophecy
│ │ │ ├── MethodProphecyException.php
│ │ │ ├── ObjectProphecyException.php
│ │ │ └── ProphecyException.php
│ │ ├── PhpDocumentor
│ │ ├── ClassAndInterfaceTagRetriever.php
│ │ ├── ClassTagRetriever.php
│ │ ├── LegacyClassTagRetriever.php
│ │ └── MethodTagRetrieverInterface.php
│ │ ├── Prediction
│ │ ├── CallPrediction.php
│ │ ├── CallTimesPrediction.php
│ │ ├── CallbackPrediction.php
│ │ ├── NoCallsPrediction.php
│ │ └── PredictionInterface.php
│ │ ├── Promise
│ │ ├── CallbackPromise.php
│ │ ├── PromiseInterface.php
│ │ ├── ReturnArgumentPromise.php
│ │ ├── ReturnPromise.php
│ │ └── ThrowPromise.php
│ │ ├── Prophecy
│ │ ├── MethodProphecy.php
│ │ ├── ObjectProphecy.php
│ │ ├── ProphecyInterface.php
│ │ ├── ProphecySubjectInterface.php
│ │ ├── Revealer.php
│ │ └── RevealerInterface.php
│ │ ├── Prophet.php
│ │ └── Util
│ │ ├── ExportUtil.php
│ │ └── StringUtil.php
├── phpunit
│ ├── php-code-coverage
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── FUNDING.yml
│ │ │ └── ISSUE_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phive.xml
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── CodeCoverage.php
│ │ │ ├── Driver
│ │ │ │ ├── Driver.php
│ │ │ │ ├── PCOV.php
│ │ │ │ ├── PHPDBG.php
│ │ │ │ └── Xdebug.php
│ │ │ ├── Exception
│ │ │ │ ├── CoveredCodeNotExecutedException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── MissingCoversAnnotationException.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── UnintentionallyCoveredCodeException.php
│ │ │ ├── Filter.php
│ │ │ ├── Node
│ │ │ │ ├── AbstractNode.php
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Directory.php
│ │ │ │ ├── File.php
│ │ │ │ └── Iterator.php
│ │ │ ├── Report
│ │ │ │ ├── Clover.php
│ │ │ │ ├── Crap4j.php
│ │ │ │ ├── Html
│ │ │ │ │ ├── Facade.php
│ │ │ │ │ ├── Renderer.php
│ │ │ │ │ └── Renderer
│ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Template
│ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ ├── custom.css
│ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ ├── octicons.css
│ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ ├── file_item.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
│ │ │ │ │ │ └── method_item.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
│ │ │ ├── Util.php
│ │ │ └── Version.php
│ │ └── tests
│ │ │ ├── TestCase.php
│ │ │ ├── _files
│ │ │ ├── BankAccount-clover.xml
│ │ │ ├── BankAccount-crap4j.xml
│ │ │ ├── BankAccount-text.txt
│ │ │ ├── BankAccount.php
│ │ │ ├── BankAccountTest.php
│ │ │ ├── CoverageClassExtendedTest.php
│ │ │ ├── CoverageClassTest.php
│ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ ├── CoverageFunctionTest.php
│ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ ├── CoverageMethodTest.php
│ │ │ ├── CoverageNoneTest.php
│ │ │ ├── CoverageNotPrivateTest.php
│ │ │ ├── CoverageNotProtectedTest.php
│ │ │ ├── CoverageNotPublicTest.php
│ │ │ ├── CoverageNothingTest.php
│ │ │ ├── CoveragePrivateTest.php
│ │ │ ├── CoverageProtectedTest.php
│ │ │ ├── CoveragePublicTest.php
│ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ ├── CoveredClass.php
│ │ │ ├── CoveredFunction.php
│ │ │ ├── Crash.php
│ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ ├── NamespaceCoveredClass.php
│ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ ├── Report
│ │ │ │ ├── HTML
│ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ │ ├── BankAccount.php.html
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html
│ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ │ ├── dashboard.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── source_with_ignore.php.html
│ │ │ │ └── XML
│ │ │ │ │ ├── CoverageForBankAccount
│ │ │ │ │ ├── BankAccount.php.xml
│ │ │ │ │ └── index.xml
│ │ │ │ │ ├── CoverageForClassWithAnonymousFunction
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml
│ │ │ │ │ └── CoverageForFileWithIgnoredLines
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── source_with_ignore.php.xml
│ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ ├── class-with-anonymous-function-crap4j.xml
│ │ │ ├── class-with-anonymous-function-text.txt
│ │ │ ├── ignored-lines-clover.xml
│ │ │ ├── ignored-lines-crap4j.xml
│ │ │ ├── ignored-lines-text.txt
│ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ ├── source_with_ignore.php
│ │ │ ├── source_with_namespace.php
│ │ │ ├── source_with_oneline_annotations.php
│ │ │ ├── source_with_use_statements.php
│ │ │ ├── source_without_ignore.php
│ │ │ └── source_without_namespace.php
│ │ │ ├── bootstrap.php
│ │ │ └── tests
│ │ │ ├── BuilderTest.php
│ │ │ ├── CloverTest.php
│ │ │ ├── CodeCoverageTest.php
│ │ │ ├── Crap4jTest.php
│ │ │ ├── Exception
│ │ │ └── UnintentionallyCoveredCodeExceptionTest.php
│ │ │ ├── FilterTest.php
│ │ │ ├── HTMLTest.php
│ │ │ ├── TextTest.php
│ │ │ ├── UtilTest.php
│ │ │ └── XmlTest.php
│ ├── php-file-iterator
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Facade.php
│ │ │ ├── Factory.php
│ │ │ └── Iterator.php
│ │ └── tests
│ │ │ └── FactoryTest.php
│ ├── php-text-template
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ └── Template.php
│ ├── php-timer
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ ├── FUNDING.yml
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── RuntimeException.php
│ │ │ └── Timer.php
│ │ └── tests
│ │ │ └── TimerTest.php
│ ├── php-token-stream
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Token.php
│ │ │ └── Token
│ │ │ │ ├── Stream.php
│ │ │ │ ├── Stream
│ │ │ │ └── CachingFactory.php
│ │ │ │ └── Util.php
│ │ └── tests
│ │ │ ├── Token
│ │ │ ├── ClassTest.php
│ │ │ ├── ClosureTest.php
│ │ │ ├── FunctionTest.php
│ │ │ ├── IncludeTest.php
│ │ │ ├── InterfaceTest.php
│ │ │ └── NamespaceTest.php
│ │ │ ├── _fixture
│ │ │ ├── classExtendsNamespacedClass.php
│ │ │ ├── classInNamespace.php
│ │ │ ├── classInScopedNamespace.php
│ │ │ ├── classUsesNamespacedFunction.php
│ │ │ ├── class_with_method_named_empty.php
│ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php
│ │ │ ├── closure.php
│ │ │ ├── issue19.php
│ │ │ ├── issue30.php
│ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ ├── php-code-coverage-issue-424.php
│ │ │ ├── source.php
│ │ │ ├── source2.php
│ │ │ ├── source3.php
│ │ │ ├── source4.php
│ │ │ └── source5.php
│ │ │ └── bootstrap.php
│ └── phpunit
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .phive
│ │ └── phars.xml
│ │ ├── .phpstorm.meta.php
│ │ ├── ChangeLog-8.5.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpunit
│ │ ├── phpunit.xsd
│ │ └── src
│ │ ├── Exception.php
│ │ ├── Framework
│ │ ├── Assert.php
│ │ ├── Assert
│ │ │ └── Functions.php
│ │ ├── Constraint
│ │ │ ├── ArrayHasKey.php
│ │ │ ├── ArraySubset.php
│ │ │ ├── Attribute.php
│ │ │ ├── Callback.php
│ │ │ ├── ClassHasAttribute.php
│ │ │ ├── ClassHasStaticAttribute.php
│ │ │ ├── Composite.php
│ │ │ ├── Constraint.php
│ │ │ ├── Count.php
│ │ │ ├── DirectoryExists.php
│ │ │ ├── Exception.php
│ │ │ ├── ExceptionCode.php
│ │ │ ├── ExceptionMessage.php
│ │ │ ├── ExceptionMessageRegularExpression.php
│ │ │ ├── FileExists.php
│ │ │ ├── GreaterThan.php
│ │ │ ├── IsAnything.php
│ │ │ ├── IsEmpty.php
│ │ │ ├── IsEqual.php
│ │ │ ├── IsFalse.php
│ │ │ ├── IsFinite.php
│ │ │ ├── IsIdentical.php
│ │ │ ├── IsInfinite.php
│ │ │ ├── IsInstanceOf.php
│ │ │ ├── IsJson.php
│ │ │ ├── IsNan.php
│ │ │ ├── IsNull.php
│ │ │ ├── IsReadable.php
│ │ │ ├── IsTrue.php
│ │ │ ├── IsType.php
│ │ │ ├── IsWritable.php
│ │ │ ├── JsonMatches.php
│ │ │ ├── JsonMatchesErrorMessageProvider.php
│ │ │ ├── LessThan.php
│ │ │ ├── LogicalAnd.php
│ │ │ ├── LogicalNot.php
│ │ │ ├── LogicalOr.php
│ │ │ ├── LogicalXor.php
│ │ │ ├── ObjectHasAttribute.php
│ │ │ ├── RegularExpression.php
│ │ │ ├── SameSize.php
│ │ │ ├── StringContains.php
│ │ │ ├── StringEndsWith.php
│ │ │ ├── StringMatchesFormatDescription.php
│ │ │ ├── StringStartsWith.php
│ │ │ ├── TraversableContains.php
│ │ │ ├── TraversableContainsEqual.php
│ │ │ ├── TraversableContainsIdentical.php
│ │ │ └── TraversableContainsOnly.php
│ │ ├── DataProviderTestSuite.php
│ │ ├── Error
│ │ │ ├── Deprecated.php
│ │ │ ├── Error.php
│ │ │ ├── Notice.php
│ │ │ └── Warning.php
│ │ ├── Exception
│ │ │ ├── AssertionFailedError.php
│ │ │ ├── CodeCoverageException.php
│ │ │ ├── CoveredCodeNotExecutedException.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
│ │ ├── IncompleteTest.php
│ │ ├── IncompleteTestCase.php
│ │ ├── InvalidParameterGroupException.php
│ │ ├── MockObject
│ │ │ ├── Api
│ │ │ │ ├── Api.php
│ │ │ │ ├── Method.php
│ │ │ │ ├── MockedCloneMethod.php
│ │ │ │ └── UnmockedCloneMethod.php
│ │ │ ├── Builder
│ │ │ │ ├── Identity.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── InvocationStubber.php
│ │ │ │ ├── Match.php
│ │ │ │ ├── MethodNameMatch.php
│ │ │ │ ├── ParametersMatch.php
│ │ │ │ └── Stub.php
│ │ │ ├── ConfigurableMethod.php
│ │ │ ├── Exception
│ │ │ │ ├── BadMethodCallException.php
│ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── IncompatibleReturnValueException.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── Generator.php
│ │ │ ├── Generator
│ │ │ │ ├── deprecation.tpl
│ │ │ │ ├── mocked_class.tpl
│ │ │ │ ├── mocked_method.tpl
│ │ │ │ ├── mocked_method_void.tpl
│ │ │ │ ├── mocked_static_method.tpl
│ │ │ │ ├── proxied_method.tpl
│ │ │ │ ├── proxied_method_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
│ │ ├── 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
│ │ ├── 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
│ │ ├── Command.php
│ │ ├── Exception.php
│ │ ├── Help.php
│ │ ├── ResultPrinter.php
│ │ └── TestRunner.php
│ │ └── Util
│ │ ├── Annotation
│ │ ├── DocBlock.php
│ │ └── Registry.php
│ │ ├── Blacklist.php
│ │ ├── Color.php
│ │ ├── Configuration.php
│ │ ├── ConfigurationGenerator.php
│ │ ├── ErrorHandler.php
│ │ ├── Exception.php
│ │ ├── FileLoader.php
│ │ ├── Filesystem.php
│ │ ├── Filter.php
│ │ ├── Getopt.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
│ │ ├── 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
│ │ └── XmlTestListRenderer.php
├── psr
│ ├── container
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── ContainerExceptionInterface.php
│ │ │ ├── ContainerInterface.php
│ │ │ └── NotFoundExceptionInterface.php
│ ├── event-dispatcher
│ │ ├── .editorconfig
│ │ ├── .gitignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ │ ├── EventDispatcherInterface.php
│ │ │ ├── ListenerProviderInterface.php
│ │ │ └── StoppableEventInterface.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
│ │ ├── Psr
│ │ │ └── Log
│ │ │ │ ├── AbstractLogger.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── LogLevel.php
│ │ │ │ ├── LoggerAwareInterface.php
│ │ │ │ ├── LoggerAwareTrait.php
│ │ │ │ ├── LoggerInterface.php
│ │ │ │ ├── LoggerTrait.php
│ │ │ │ ├── NullLogger.php
│ │ │ │ └── Test
│ │ │ │ ├── DummyTest.php
│ │ │ │ ├── LoggerInterfaceTest.php
│ │ │ │ └── TestLogger.php
│ │ ├── README.md
│ │ └── composer.json
│ └── simple-cache
│ │ ├── .editorconfig
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ ├── CacheException.php
│ │ ├── CacheInterface.php
│ │ └── InvalidArgumentException.php
├── psy
│ └── psysh
│ │ ├── .phan
│ │ └── config.php
│ │ ├── 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
│ │ ├── 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
│ │ ├── ValidConstantPass.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
│ │ ├── ConsoleColorFactory.php
│ │ ├── Context.php
│ │ ├── ContextAware.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
│ │ ├── ParserFactory.php
│ │ ├── Readline
│ │ ├── GNUReadline.php
│ │ ├── HoaConsole.php
│ │ ├── Libedit.php
│ │ ├── Readline.php
│ │ └── Transient.php
│ │ ├── Reflection
│ │ ├── ReflectionClassConstant.php
│ │ ├── ReflectionConstant.php
│ │ ├── ReflectionConstant_.php
│ │ ├── ReflectionLanguageConstruct.php
│ │ ├── ReflectionLanguageConstructParameter.php
│ │ └── ReflectionNamespace.php
│ │ ├── Shell.php
│ │ ├── Sudo.php
│ │ ├── Sudo
│ │ └── SudoVisitor.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
│ │ ├── GitHubChecker.php
│ │ ├── IntervalChecker.php
│ │ └── NoopChecker.php
│ │ └── functions.php
├── ralouphie
│ └── getallheaders
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── getallheaders.php
├── ramsey
│ ├── collection
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpstan-tests.neon
│ │ └── 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
│ │ ├── CHANGELOG.md
│ │ ├── 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
│ │ └── 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
│ │ ├── 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
│ │ ├── Guid
│ │ ├── Fields.php
│ │ ├── Guid.php
│ │ └── GuidBuilder.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
│ │ ├── NilTrait.php
│ │ ├── NilUuid.php
│ │ ├── UuidBuilder.php
│ │ ├── UuidInterface.php
│ │ ├── UuidV1.php
│ │ ├── UuidV2.php
│ │ ├── UuidV3.php
│ │ ├── UuidV4.php
│ │ ├── UuidV5.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
├── scrivo
│ └── highlight.php
│ │ ├── .editorconfig
│ │ ├── .gitattributes
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── .travis
│ │ └── hasGitChanges.sh
│ │ ├── AUTHORS.txt
│ │ ├── CONTRIBUTING.md
│ │ ├── Highlight
│ │ ├── Autoloader.php
│ │ ├── HighlightResult.php
│ │ ├── Highlighter.php
│ │ ├── JsonRef.php
│ │ ├── Language.php
│ │ ├── Mode.php
│ │ ├── ModeDeprecations.php
│ │ ├── RegEx.php
│ │ ├── RegExMatch.php
│ │ ├── RegExUtils.php
│ │ ├── Terminators.php
│ │ └── languages
│ │ │ ├── 1c.json
│ │ │ ├── abnf.json
│ │ │ ├── accesslog.json
│ │ │ ├── actionscript.json
│ │ │ ├── ada.json
│ │ │ ├── angelscript.json
│ │ │ ├── apache.json
│ │ │ ├── applescript.json
│ │ │ ├── arcade.json
│ │ │ ├── arduino.json
│ │ │ ├── armasm.json
│ │ │ ├── asciidoc.json
│ │ │ ├── aspectj.json
│ │ │ ├── autohotkey.json
│ │ │ ├── autoit.json
│ │ │ ├── avrasm.json
│ │ │ ├── awk.json
│ │ │ ├── axapta.json
│ │ │ ├── bash.json
│ │ │ ├── basic.json
│ │ │ ├── bnf.json
│ │ │ ├── brainfuck.json
│ │ │ ├── cal.json
│ │ │ ├── capnproto.json
│ │ │ ├── ceylon.json
│ │ │ ├── clean.json
│ │ │ ├── clojure-repl.json
│ │ │ ├── clojure.json
│ │ │ ├── cmake.json
│ │ │ ├── coffeescript.json
│ │ │ ├── coq.json
│ │ │ ├── cos.json
│ │ │ ├── cpp.json
│ │ │ ├── crmsh.json
│ │ │ ├── crystal.json
│ │ │ ├── cs.json
│ │ │ ├── csp.json
│ │ │ ├── css.json
│ │ │ ├── d.json
│ │ │ ├── dart.json
│ │ │ ├── delphi.json
│ │ │ ├── diff.json
│ │ │ ├── django.json
│ │ │ ├── dns.json
│ │ │ ├── dockerfile.json
│ │ │ ├── dos.json
│ │ │ ├── dsconfig.json
│ │ │ ├── dts.json
│ │ │ ├── dust.json
│ │ │ ├── ebnf.json
│ │ │ ├── elixir.json
│ │ │ ├── elm.json
│ │ │ ├── erb.json
│ │ │ ├── erlang-repl.json
│ │ │ ├── erlang.json
│ │ │ ├── excel.json
│ │ │ ├── fix.json
│ │ │ ├── flix.json
│ │ │ ├── fortran.json
│ │ │ ├── fsharp.json
│ │ │ ├── gams.json
│ │ │ ├── gauss.json
│ │ │ ├── gcode.json
│ │ │ ├── gherkin.json
│ │ │ ├── glsl.json
│ │ │ ├── gml.json
│ │ │ ├── go.json
│ │ │ ├── golo.json
│ │ │ ├── gradle.json
│ │ │ ├── groovy.json
│ │ │ ├── haml.json
│ │ │ ├── handlebars.json
│ │ │ ├── haskell.json
│ │ │ ├── haxe.json
│ │ │ ├── hsp.json
│ │ │ ├── htmlbars.json
│ │ │ ├── http.json
│ │ │ ├── hy.json
│ │ │ ├── inform7.json
│ │ │ ├── ini.json
│ │ │ ├── irpf90.json
│ │ │ ├── isbl.json
│ │ │ ├── java.json
│ │ │ ├── javascript.json
│ │ │ ├── jboss-cli.json
│ │ │ ├── json.json
│ │ │ ├── julia-repl.json
│ │ │ ├── julia.json
│ │ │ ├── kotlin.json
│ │ │ ├── lasso.json
│ │ │ ├── ldif.json
│ │ │ ├── leaf.json
│ │ │ ├── less.json
│ │ │ ├── lisp.json
│ │ │ ├── livecodeserver.json
│ │ │ ├── livescript.json
│ │ │ ├── llvm.json
│ │ │ ├── lsl.json
│ │ │ ├── lua.json
│ │ │ ├── makefile.json
│ │ │ ├── markdown.json
│ │ │ ├── mathematica.json
│ │ │ ├── matlab.json
│ │ │ ├── maxima.json
│ │ │ ├── mel.json
│ │ │ ├── mercury.json
│ │ │ ├── mipsasm.json
│ │ │ ├── mizar.json
│ │ │ ├── mojolicious.json
│ │ │ ├── monkey.json
│ │ │ ├── moonscript.json
│ │ │ ├── n1ql.json
│ │ │ ├── nginx.json
│ │ │ ├── nimrod.json
│ │ │ ├── nix.json
│ │ │ ├── nsis.json
│ │ │ ├── objectivec.json
│ │ │ ├── ocaml.json
│ │ │ ├── openscad.json
│ │ │ ├── oxygene.json
│ │ │ ├── parser3.json
│ │ │ ├── perl.json
│ │ │ ├── pf.json
│ │ │ ├── pgsql.json
│ │ │ ├── php.json
│ │ │ ├── plaintext.json
│ │ │ ├── pony.json
│ │ │ ├── powershell.json
│ │ │ ├── processing.json
│ │ │ ├── profile.json
│ │ │ ├── prolog.json
│ │ │ ├── properties.json
│ │ │ ├── protobuf.json
│ │ │ ├── puppet.json
│ │ │ ├── purebasic.json
│ │ │ ├── python.json
│ │ │ ├── q.json
│ │ │ ├── qml.json
│ │ │ ├── r.json
│ │ │ ├── reasonml.json
│ │ │ ├── rib.json
│ │ │ ├── roboconf.json
│ │ │ ├── routeros.json
│ │ │ ├── rsl.json
│ │ │ ├── ruby.json
│ │ │ ├── ruleslanguage.json
│ │ │ ├── rust.json
│ │ │ ├── sas.json
│ │ │ ├── scala.json
│ │ │ ├── scheme.json
│ │ │ ├── scilab.json
│ │ │ ├── scss.json
│ │ │ ├── shell.json
│ │ │ ├── smali.json
│ │ │ ├── smalltalk.json
│ │ │ ├── sml.json
│ │ │ ├── sqf.json
│ │ │ ├── sql.json
│ │ │ ├── stan.json
│ │ │ ├── stata.json
│ │ │ ├── step21.json
│ │ │ ├── stylus.json
│ │ │ ├── subunit.json
│ │ │ ├── swift.json
│ │ │ ├── taggerscript.json
│ │ │ ├── tap.json
│ │ │ ├── tcl.json
│ │ │ ├── tex.json
│ │ │ ├── thrift.json
│ │ │ ├── tp.json
│ │ │ ├── twig.json
│ │ │ ├── typescript.json
│ │ │ ├── vala.json
│ │ │ ├── vbnet.json
│ │ │ ├── vbscript-html.json
│ │ │ ├── vbscript.json
│ │ │ ├── verilog.json
│ │ │ ├── vhdl.json
│ │ │ ├── vim.json
│ │ │ ├── x86asm.json
│ │ │ ├── xl.json
│ │ │ ├── xml.json
│ │ │ ├── xquery.json
│ │ │ ├── yaml.json
│ │ │ └── zephir.json
│ │ ├── HighlightUtilities
│ │ ├── _internals.php
│ │ ├── _themeColors.php
│ │ └── functions.php
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── demo
│ │ ├── .htaccess
│ │ ├── compare.php
│ │ ├── demo.php
│ │ ├── example.php
│ │ ├── highlight.pack.js
│ │ └── line-numbers.php
│ │ ├── phpunit.xml.dist
│ │ ├── styles
│ │ ├── a11y-dark.css
│ │ ├── a11y-light.css
│ │ ├── agate.css
│ │ ├── an-old-hope.css
│ │ ├── androidstudio.css
│ │ ├── arduino-light.css
│ │ ├── arta.css
│ │ ├── ascetic.css
│ │ ├── atelier-cave-dark.css
│ │ ├── atelier-cave-light.css
│ │ ├── atelier-dune-dark.css
│ │ ├── atelier-dune-light.css
│ │ ├── atelier-estuary-dark.css
│ │ ├── atelier-estuary-light.css
│ │ ├── atelier-forest-dark.css
│ │ ├── atelier-forest-light.css
│ │ ├── atelier-heath-dark.css
│ │ ├── atelier-heath-light.css
│ │ ├── atelier-lakeside-dark.css
│ │ ├── atelier-lakeside-light.css
│ │ ├── atelier-plateau-dark.css
│ │ ├── atelier-plateau-light.css
│ │ ├── atelier-savanna-dark.css
│ │ ├── atelier-savanna-light.css
│ │ ├── atelier-seaside-dark.css
│ │ ├── atelier-seaside-light.css
│ │ ├── atelier-sulphurpool-dark.css
│ │ ├── atelier-sulphurpool-light.css
│ │ ├── atom-one-dark-reasonable.css
│ │ ├── atom-one-dark.css
│ │ ├── atom-one-light.css
│ │ ├── brown-paper.css
│ │ ├── brown-papersq.png
│ │ ├── codepen-embed.css
│ │ ├── color-brewer.css
│ │ ├── darcula.css
│ │ ├── dark.css
│ │ ├── darkula.css
│ │ ├── default.css
│ │ ├── docco.css
│ │ ├── dracula.css
│ │ ├── far.css
│ │ ├── foundation.css
│ │ ├── github-gist.css
│ │ ├── github.css
│ │ ├── gml.css
│ │ ├── googlecode.css
│ │ ├── gradient-dark.css
│ │ ├── grayscale.css
│ │ ├── gruvbox-dark.css
│ │ ├── gruvbox-light.css
│ │ ├── hopscotch.css
│ │ ├── hybrid.css
│ │ ├── idea.css
│ │ ├── ir-black.css
│ │ ├── isbl-editor-dark.css
│ │ ├── isbl-editor-light.css
│ │ ├── kimbie.dark.css
│ │ ├── kimbie.light.css
│ │ ├── lightfair.css
│ │ ├── magula.css
│ │ ├── mono-blue.css
│ │ ├── monokai-sublime.css
│ │ ├── monokai.css
│ │ ├── night-owl.css
│ │ ├── nord.css
│ │ ├── obsidian.css
│ │ ├── ocean.css
│ │ ├── paraiso-dark.css
│ │ ├── paraiso-light.css
│ │ ├── pojoaque.css
│ │ ├── pojoaque.jpg
│ │ ├── purebasic.css
│ │ ├── qtcreator_dark.css
│ │ ├── qtcreator_light.css
│ │ ├── railscasts.css
│ │ ├── rainbow.css
│ │ ├── routeros.css
│ │ ├── school-book.css
│ │ ├── school-book.png
│ │ ├── shades-of-purple.css
│ │ ├── solarized-dark.css
│ │ ├── solarized-light.css
│ │ ├── sunburst.css
│ │ ├── tomorrow-night-blue.css
│ │ ├── tomorrow-night-bright.css
│ │ ├── tomorrow-night-eighties.css
│ │ ├── tomorrow-night.css
│ │ ├── tomorrow.css
│ │ ├── vs.css
│ │ ├── vs2015.css
│ │ ├── xcode.css
│ │ ├── xt256.css
│ │ └── zenburn.css
│ │ ├── test
│ │ ├── DetectionTest.php
│ │ ├── HighlightUtilitiesTest.php
│ │ ├── HighlighterTest.php
│ │ ├── MarkupTest.php
│ │ ├── SpecialTest.php
│ │ ├── bootstrap.php
│ │ ├── detect
│ │ │ ├── 1c
│ │ │ │ └── default.txt
│ │ │ ├── abnf
│ │ │ │ └── default.txt
│ │ │ ├── accesslog
│ │ │ │ └── default.txt
│ │ │ ├── actionscript
│ │ │ │ └── default.txt
│ │ │ ├── ada
│ │ │ │ └── default.txt
│ │ │ ├── angelscript
│ │ │ │ └── default.txt
│ │ │ ├── apache
│ │ │ │ └── default.txt
│ │ │ ├── applescript
│ │ │ │ └── default.txt
│ │ │ ├── arcade
│ │ │ │ └── default.txt
│ │ │ ├── arduino
│ │ │ │ └── default.txt
│ │ │ ├── armasm
│ │ │ │ └── default.txt
│ │ │ ├── asciidoc
│ │ │ │ └── default.txt
│ │ │ ├── aspectj
│ │ │ │ └── default.txt
│ │ │ ├── autohotkey
│ │ │ │ └── default.txt
│ │ │ ├── autoit
│ │ │ │ └── default.txt
│ │ │ ├── avrasm
│ │ │ │ └── default.txt
│ │ │ ├── awk
│ │ │ │ └── default.txt
│ │ │ ├── axapta
│ │ │ │ └── default.txt
│ │ │ ├── bash
│ │ │ │ └── default.txt
│ │ │ ├── basic
│ │ │ │ └── default.txt
│ │ │ ├── bnf
│ │ │ │ └── default.txt
│ │ │ ├── brainfuck
│ │ │ │ └── default.txt
│ │ │ ├── cal
│ │ │ │ └── default.txt
│ │ │ ├── capnproto
│ │ │ │ └── default.txt
│ │ │ ├── ceylon
│ │ │ │ └── default.txt
│ │ │ ├── clean
│ │ │ │ └── default.txt
│ │ │ ├── clojure-repl
│ │ │ │ └── default.txt
│ │ │ ├── clojure
│ │ │ │ └── default.txt
│ │ │ ├── cmake
│ │ │ │ └── default.txt
│ │ │ ├── coffeescript
│ │ │ │ └── default.txt
│ │ │ ├── coq
│ │ │ │ └── default.txt
│ │ │ ├── cos
│ │ │ │ └── default.txt
│ │ │ ├── cpp
│ │ │ │ ├── comment.txt
│ │ │ │ └── default.txt
│ │ │ ├── crmsh
│ │ │ │ └── default.txt
│ │ │ ├── crystal
│ │ │ │ └── default.txt
│ │ │ ├── cs
│ │ │ │ └── default.txt
│ │ │ ├── csp
│ │ │ │ └── default.txt
│ │ │ ├── css
│ │ │ │ └── default.txt
│ │ │ ├── d
│ │ │ │ └── default.txt
│ │ │ ├── dart
│ │ │ │ └── default.txt
│ │ │ ├── delphi
│ │ │ │ └── default.txt
│ │ │ ├── diff
│ │ │ │ └── default.txt
│ │ │ ├── django
│ │ │ │ └── default.txt
│ │ │ ├── dns
│ │ │ │ └── default.txt
│ │ │ ├── dockerfile
│ │ │ │ └── default.txt
│ │ │ ├── dos
│ │ │ │ └── default.txt
│ │ │ ├── dsconfig
│ │ │ │ └── default.txt
│ │ │ ├── dts
│ │ │ │ └── default.txt
│ │ │ ├── dust
│ │ │ │ └── default.txt
│ │ │ ├── ebnf
│ │ │ │ └── default.txt
│ │ │ ├── elixir
│ │ │ │ └── default.txt
│ │ │ ├── elm
│ │ │ │ └── default.txt
│ │ │ ├── erb
│ │ │ │ └── default.txt
│ │ │ ├── erlang-repl
│ │ │ │ └── default.txt
│ │ │ ├── erlang
│ │ │ │ └── default.txt
│ │ │ ├── excel
│ │ │ │ └── default.txt
│ │ │ ├── fix
│ │ │ │ └── default.txt
│ │ │ ├── flix
│ │ │ │ └── default.txt
│ │ │ ├── fortran
│ │ │ │ └── default.txt
│ │ │ ├── fsharp
│ │ │ │ └── default.txt
│ │ │ ├── gams
│ │ │ │ └── default.txt
│ │ │ ├── gauss
│ │ │ │ └── default.txt
│ │ │ ├── gcode
│ │ │ │ └── default.txt
│ │ │ ├── gherkin
│ │ │ │ └── default.txt
│ │ │ ├── glsl
│ │ │ │ └── default.txt
│ │ │ ├── gml
│ │ │ │ └── default.txt
│ │ │ ├── go
│ │ │ │ ├── default.txt
│ │ │ │ └── swift-like.txt
│ │ │ ├── golo
│ │ │ │ └── default.txt
│ │ │ ├── gradle
│ │ │ │ └── default.txt
│ │ │ ├── groovy
│ │ │ │ └── default.txt
│ │ │ ├── haml
│ │ │ │ └── default.txt
│ │ │ ├── handlebars
│ │ │ │ └── default.txt
│ │ │ ├── haskell
│ │ │ │ └── default.txt
│ │ │ ├── haxe
│ │ │ │ └── default.txt
│ │ │ ├── hsp
│ │ │ │ └── default.txt
│ │ │ ├── htmlbars
│ │ │ │ └── default.txt
│ │ │ ├── http
│ │ │ │ └── default.txt
│ │ │ ├── hy
│ │ │ │ └── default.txt
│ │ │ ├── inform7
│ │ │ │ └── default.txt
│ │ │ ├── ini
│ │ │ │ └── default.txt
│ │ │ ├── irpf90
│ │ │ │ └── default.txt
│ │ │ ├── isbl
│ │ │ │ └── default.txt
│ │ │ ├── java
│ │ │ │ └── default.txt
│ │ │ ├── javascript
│ │ │ │ ├── default.txt
│ │ │ │ ├── sample1.txt
│ │ │ │ └── short-plain.txt
│ │ │ ├── jboss-cli
│ │ │ │ └── default.txt
│ │ │ ├── json
│ │ │ │ └── default.txt
│ │ │ ├── julia-repl
│ │ │ │ └── default.txt
│ │ │ ├── julia
│ │ │ │ └── default.txt
│ │ │ ├── kotlin
│ │ │ │ └── default.txt
│ │ │ ├── lasso
│ │ │ │ └── default.txt
│ │ │ ├── ldif
│ │ │ │ └── default.txt
│ │ │ ├── leaf
│ │ │ │ └── default.txt
│ │ │ ├── less
│ │ │ │ └── default.txt
│ │ │ ├── lisp
│ │ │ │ └── default.txt
│ │ │ ├── livecodeserver
│ │ │ │ └── default.txt
│ │ │ ├── livescript
│ │ │ │ └── default.txt
│ │ │ ├── llvm
│ │ │ │ └── default.txt
│ │ │ ├── lsl
│ │ │ │ └── default.txt
│ │ │ ├── lua
│ │ │ │ └── default.txt
│ │ │ ├── makefile
│ │ │ │ └── default.txt
│ │ │ ├── markdown
│ │ │ │ └── default.txt
│ │ │ ├── mathematica
│ │ │ │ └── default.txt
│ │ │ ├── matlab
│ │ │ │ └── default.txt
│ │ │ ├── maxima
│ │ │ │ └── default.txt
│ │ │ ├── mel
│ │ │ │ └── default.txt
│ │ │ ├── mercury
│ │ │ │ └── default.txt
│ │ │ ├── mipsasm
│ │ │ │ └── default.txt
│ │ │ ├── mizar
│ │ │ │ └── default.txt
│ │ │ ├── mojolicious
│ │ │ │ └── default.txt
│ │ │ ├── monkey
│ │ │ │ └── default.txt
│ │ │ ├── moonscript
│ │ │ │ └── default.txt
│ │ │ ├── n1ql
│ │ │ │ └── default.txt
│ │ │ ├── nginx
│ │ │ │ └── default.txt
│ │ │ ├── nimrod
│ │ │ │ └── default.txt
│ │ │ ├── nix
│ │ │ │ └── default.txt
│ │ │ ├── nsis
│ │ │ │ └── default.txt
│ │ │ ├── objectivec
│ │ │ │ └── default.txt
│ │ │ ├── ocaml
│ │ │ │ └── default.txt
│ │ │ ├── openscad
│ │ │ │ └── default.txt
│ │ │ ├── oxygene
│ │ │ │ └── default.txt
│ │ │ ├── parser3
│ │ │ │ └── default.txt
│ │ │ ├── perl
│ │ │ │ └── default.txt
│ │ │ ├── pf
│ │ │ │ └── default.txt
│ │ │ ├── pgsql
│ │ │ │ └── default.txt
│ │ │ ├── php
│ │ │ │ └── default.txt
│ │ │ ├── plaintext
│ │ │ │ └── default.txt
│ │ │ ├── pony
│ │ │ │ └── default.txt
│ │ │ ├── powershell
│ │ │ │ └── default.txt
│ │ │ ├── processing
│ │ │ │ └── default.txt
│ │ │ ├── profile
│ │ │ │ └── default.txt
│ │ │ ├── prolog
│ │ │ │ └── default.txt
│ │ │ ├── properties
│ │ │ │ └── default.txt
│ │ │ ├── protobuf
│ │ │ │ └── default.txt
│ │ │ ├── puppet
│ │ │ │ └── default.txt
│ │ │ ├── purebasic
│ │ │ │ └── default.txt
│ │ │ ├── python
│ │ │ │ └── default.txt
│ │ │ ├── q
│ │ │ │ └── default.txt
│ │ │ ├── qml
│ │ │ │ └── default.txt
│ │ │ ├── r
│ │ │ │ └── default.txt
│ │ │ ├── reasonml
│ │ │ │ └── default.txt
│ │ │ ├── rib
│ │ │ │ └── default.txt
│ │ │ ├── roboconf
│ │ │ │ └── default.txt
│ │ │ ├── routeros
│ │ │ │ └── default.txt
│ │ │ ├── rsl
│ │ │ │ └── default.txt
│ │ │ ├── ruby
│ │ │ │ ├── default.txt
│ │ │ │ └── double-colon.txt
│ │ │ ├── ruleslanguage
│ │ │ │ └── default.txt
│ │ │ ├── rust
│ │ │ │ └── default.txt
│ │ │ ├── sas
│ │ │ │ └── default.txt
│ │ │ ├── scala
│ │ │ │ └── default.txt
│ │ │ ├── scheme
│ │ │ │ └── default.txt
│ │ │ ├── scilab
│ │ │ │ └── default.txt
│ │ │ ├── scss
│ │ │ │ └── default.txt
│ │ │ ├── shell
│ │ │ │ └── default.txt
│ │ │ ├── smali
│ │ │ │ └── default.txt
│ │ │ ├── smalltalk
│ │ │ │ └── default.txt
│ │ │ ├── sml
│ │ │ │ └── default.txt
│ │ │ ├── sqf
│ │ │ │ └── default.txt
│ │ │ ├── sql
│ │ │ │ └── default.txt
│ │ │ ├── stan
│ │ │ │ └── default.txt
│ │ │ ├── stata
│ │ │ │ └── default.txt
│ │ │ ├── step21
│ │ │ │ └── default.txt
│ │ │ ├── stylus
│ │ │ │ └── default.txt
│ │ │ ├── subunit
│ │ │ │ └── default.txt
│ │ │ ├── swift
│ │ │ │ └── default.txt
│ │ │ ├── taggerscript
│ │ │ │ └── default.txt
│ │ │ ├── tap
│ │ │ │ └── default.txt
│ │ │ ├── tcl
│ │ │ │ └── default.txt
│ │ │ ├── tex
│ │ │ │ └── default.txt
│ │ │ ├── thrift
│ │ │ │ └── default.txt
│ │ │ ├── tp
│ │ │ │ └── default.txt
│ │ │ ├── twig
│ │ │ │ └── default.txt
│ │ │ ├── typescript
│ │ │ │ └── default.txt
│ │ │ ├── vala
│ │ │ │ └── default.txt
│ │ │ ├── vbnet
│ │ │ │ └── default.txt
│ │ │ ├── vbscript-html
│ │ │ │ └── default.txt
│ │ │ ├── vbscript
│ │ │ │ └── default.txt
│ │ │ ├── verilog
│ │ │ │ └── default.txt
│ │ │ ├── vhdl
│ │ │ │ └── default.txt
│ │ │ ├── vim
│ │ │ │ └── default.txt
│ │ │ ├── x86asm
│ │ │ │ └── default.txt
│ │ │ ├── xl
│ │ │ │ └── default.txt
│ │ │ ├── xml
│ │ │ │ ├── default.txt
│ │ │ │ ├── groovy-julia.txt
│ │ │ │ └── js.txt
│ │ │ ├── xquery
│ │ │ │ └── default.txt
│ │ │ ├── yaml
│ │ │ │ └── default.txt
│ │ │ └── zephir
│ │ │ │ └── default.txt
│ │ ├── markup
│ │ │ ├── abnf
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── accesslog
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── actionscript
│ │ │ │ ├── method-call.expect.txt
│ │ │ │ └── method-call.txt
│ │ │ ├── arcade
│ │ │ │ ├── profile.expect.txt
│ │ │ │ └── profile.txt
│ │ │ ├── arduino
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── aspectj
│ │ │ │ ├── intertype-constructor.expect.txt
│ │ │ │ ├── intertype-constructor.txt
│ │ │ │ ├── intertype-method.expect.txt
│ │ │ │ └── intertype-method.txt
│ │ │ ├── bash
│ │ │ │ ├── escaped-quote.expect.txt
│ │ │ │ ├── escaped-quote.txt
│ │ │ │ ├── no-numbers.expect.txt
│ │ │ │ └── no-numbers.txt
│ │ │ ├── ceylon
│ │ │ │ ├── nested-comments.expect.txt
│ │ │ │ └── nested-comments.txt
│ │ │ ├── clojure-repl
│ │ │ │ ├── prompt.expect.txt
│ │ │ │ └── prompt.txt
│ │ │ ├── clojure
│ │ │ │ ├── hint_col.expect.txt
│ │ │ │ ├── hint_col.txt
│ │ │ │ ├── symbols-numbers.expect.txt
│ │ │ │ └── symbols-numbers.txt
│ │ │ ├── coffeescript
│ │ │ │ ├── division.expect.txt
│ │ │ │ ├── division.txt
│ │ │ │ ├── freeze_bug.expect.txt
│ │ │ │ ├── freeze_bug.txt
│ │ │ │ ├── function.expect.txt
│ │ │ │ ├── function.txt
│ │ │ │ ├── regex.expect.txt
│ │ │ │ └── regex.txt
│ │ │ ├── cos
│ │ │ │ ├── basic.expect.txt
│ │ │ │ ├── basic.txt
│ │ │ │ ├── embedded.expect.txt
│ │ │ │ └── embedded.txt
│ │ │ ├── cpp
│ │ │ │ ├── expression-keywords.expect.txt
│ │ │ │ ├── expression-keywords.txt
│ │ │ │ ├── function-declarations.expect.txt
│ │ │ │ ├── function-declarations.txt
│ │ │ │ ├── function-params.expect.txt
│ │ │ │ ├── function-params.txt
│ │ │ │ ├── function-title.expect.txt
│ │ │ │ ├── function-title.txt
│ │ │ │ ├── number-literals.expect.txt
│ │ │ │ ├── number-literals.txt
│ │ │ │ ├── pointers-returns.expect.txt
│ │ │ │ ├── pointers-returns.txt
│ │ │ │ ├── preprocessor.expect.txt
│ │ │ │ ├── preprocessor.txt
│ │ │ │ ├── primitive-types.expect.txt
│ │ │ │ ├── primitive-types.txt
│ │ │ │ ├── string-literals.expect.txt
│ │ │ │ └── string-literals.txt
│ │ │ ├── crystal
│ │ │ │ ├── defs.expect.txt
│ │ │ │ ├── defs.txt
│ │ │ │ ├── literals.expect.txt
│ │ │ │ ├── literals.txt
│ │ │ │ ├── macro.expect.txt
│ │ │ │ ├── macro.txt
│ │ │ │ ├── operators.expect.txt
│ │ │ │ ├── operators.txt
│ │ │ │ ├── regexes.expect.txt
│ │ │ │ ├── regexes.txt
│ │ │ │ ├── toplevel-keywords.expect.txt
│ │ │ │ └── toplevel-keywords.txt
│ │ │ ├── cs
│ │ │ │ ├── dotted-namespace.expect.txt
│ │ │ │ ├── dotted-namespace.txt
│ │ │ │ ├── floats.expect.txt
│ │ │ │ ├── floats.txt
│ │ │ │ ├── functions.expect.txt
│ │ │ │ ├── functions.txt
│ │ │ │ ├── string-interpolation.expect.txt
│ │ │ │ ├── string-interpolation.txt
│ │ │ │ ├── titles.expect.txt
│ │ │ │ └── titles.txt
│ │ │ ├── css
│ │ │ │ ├── pseudo-selector.expect.txt
│ │ │ │ ├── pseudo-selector.txt
│ │ │ │ ├── sample.expect.txt
│ │ │ │ ├── sample.txt
│ │ │ │ ├── url.expect.txt
│ │ │ │ └── url.txt
│ │ │ ├── dart
│ │ │ │ ├── comment-markdown.expect.txt
│ │ │ │ ├── comment-markdown.txt
│ │ │ │ ├── string-interpolation.expect.txt
│ │ │ │ └── string-interpolation.txt
│ │ │ ├── delphi
│ │ │ │ ├── compiler-directive.expect.txt
│ │ │ │ └── compiler-directive.txt
│ │ │ ├── diff
│ │ │ │ ├── comments.expect.txt
│ │ │ │ └── comments.txt
│ │ │ ├── dockerfile
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── dos
│ │ │ │ ├── comments.expect.txt
│ │ │ │ └── comments.txt
│ │ │ ├── dsconfig
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── ebnf
│ │ │ │ ├── quote-symbols.expect.txt
│ │ │ │ ├── quote-symbols.txt
│ │ │ │ ├── terminators.expect.txt
│ │ │ │ ├── terminators.txt
│ │ │ │ ├── underscore-production.expect.txt
│ │ │ │ └── underscore-production.txt
│ │ │ ├── elixir
│ │ │ │ ├── function-title.expect.txt
│ │ │ │ ├── function-title.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── sigils.expect.txt
│ │ │ │ ├── sigils.txt
│ │ │ │ ├── strings.expect.txt
│ │ │ │ ├── strings.txt
│ │ │ │ ├── uppercase-string-sigil.expect.txt
│ │ │ │ └── uppercase-string-sigil.txt
│ │ │ ├── excel
│ │ │ │ ├── comments.expect.txt
│ │ │ │ └── comments.txt
│ │ │ ├── fortran
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ └── numbers.txt
│ │ │ ├── fsharp
│ │ │ │ ├── bang-keywords.expect.txt
│ │ │ │ └── bang-keywords.txt
│ │ │ ├── gauss
│ │ │ │ ├── function_defs.expect.txt
│ │ │ │ ├── function_defs.txt
│ │ │ │ ├── function_refs.expect.txt
│ │ │ │ ├── function_refs.txt
│ │ │ │ ├── keywords.expect.txt
│ │ │ │ └── keywords.txt
│ │ │ ├── go
│ │ │ │ ├── functions.expect.txt
│ │ │ │ ├── functions.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── strings.expect.txt
│ │ │ │ └── strings.txt
│ │ │ ├── golo
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── handlebars
│ │ │ │ ├── block-expression-variants-as-path-segment.expect.txt
│ │ │ │ ├── block-expression-variants-as-path-segment.txt
│ │ │ │ ├── block-expression-variants-in-helper-name.expect.txt
│ │ │ │ ├── block-expression-variants-in-helper-name.txt
│ │ │ │ ├── block-expression-variants-in-param.expect.txt
│ │ │ │ ├── block-expression-variants-in-param.txt
│ │ │ │ ├── block-with-param.expect.txt
│ │ │ │ ├── block-with-param.txt
│ │ │ │ ├── block.expect.txt
│ │ │ │ ├── block.txt
│ │ │ │ ├── built-ins.expect.txt
│ │ │ │ ├── built-ins.txt
│ │ │ │ ├── comments.expect.txt
│ │ │ │ ├── comments.txt
│ │ │ │ ├── escaped-mustaches.expect.txt
│ │ │ │ ├── escaped-mustaches.txt
│ │ │ │ ├── expression-variants.expect.txt
│ │ │ │ ├── expression-variants.txt
│ │ │ │ ├── partial-call.expect.txt
│ │ │ │ ├── partial-call.txt
│ │ │ │ ├── raw-block.expect.txt
│ │ │ │ ├── raw-block.txt
│ │ │ │ ├── simple-expression.expect.txt
│ │ │ │ ├── simple-expression.txt
│ │ │ │ ├── sub-expressions.expect.txt
│ │ │ │ ├── sub-expressions.txt
│ │ │ │ ├── triple-mustache.expect.txt
│ │ │ │ └── triple-mustache.txt
│ │ │ ├── haskell
│ │ │ │ ├── infix.expect.txt
│ │ │ │ ├── infix.txt
│ │ │ │ ├── nested-comments.expect.txt
│ │ │ │ └── nested-comments.txt
│ │ │ ├── http
│ │ │ │ ├── default.expect.txt
│ │ │ │ └── default.txt
│ │ │ ├── ini
│ │ │ │ ├── array.expect.txt
│ │ │ │ ├── array.txt
│ │ │ │ ├── comments.expect.txt
│ │ │ │ ├── comments.txt
│ │ │ │ ├── tables.expect.txt
│ │ │ │ ├── tables.txt
│ │ │ │ ├── types.expect.txt
│ │ │ │ ├── types.txt
│ │ │ │ ├── variable.expect.txt
│ │ │ │ └── variable.txt
│ │ │ ├── java
│ │ │ │ ├── gh1031.expect.txt
│ │ │ │ ├── gh1031.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── titles.expect.txt
│ │ │ │ └── titles.txt
│ │ │ ├── javascript
│ │ │ │ ├── arrow-function.expect.txt
│ │ │ │ ├── arrow-function.txt
│ │ │ │ ├── class.expect.txt
│ │ │ │ ├── class.txt
│ │ │ │ ├── default-parameters.expect.txt
│ │ │ │ ├── default-parameters.txt
│ │ │ │ ├── inline-languages.expect.txt
│ │ │ │ ├── inline-languages.txt
│ │ │ │ ├── jsdoc.expect.txt
│ │ │ │ ├── jsdoc.txt
│ │ │ │ ├── jsx-fragment.expect.txt
│ │ │ │ ├── jsx-fragment.txt
│ │ │ │ ├── jsx.expect.txt
│ │ │ │ ├── jsx.txt
│ │ │ │ ├── keywords.expect.txt
│ │ │ │ ├── keywords.txt
│ │ │ │ ├── method-call.expect.txt
│ │ │ │ ├── method-call.txt
│ │ │ │ ├── modules.expect.txt
│ │ │ │ ├── modules.txt
│ │ │ │ ├── object-attr.expect.txt
│ │ │ │ ├── object-attr.txt
│ │ │ │ ├── shebang.expect.txt
│ │ │ │ ├── shebang.txt
│ │ │ │ ├── template-strings.expect.txt
│ │ │ │ └── template-strings.txt
│ │ │ ├── json
│ │ │ │ ├── comments.expect.txt
│ │ │ │ └── comments.txt
│ │ │ ├── kotlin
│ │ │ │ ├── class.expect.txt
│ │ │ │ ├── class.txt
│ │ │ │ ├── function.expect.txt
│ │ │ │ ├── function.txt
│ │ │ │ ├── nested_comment.expect.txt
│ │ │ │ ├── nested_comment.txt
│ │ │ │ ├── string.expect.txt
│ │ │ │ └── string.txt
│ │ │ ├── lasso
│ │ │ │ ├── delimiters.expect.txt
│ │ │ │ └── delimiters.txt
│ │ │ ├── ldif
│ │ │ │ ├── ldapmodify.expect.txt
│ │ │ │ ├── ldapmodify.txt
│ │ │ │ ├── schema.expect.txt
│ │ │ │ └── schema.txt
│ │ │ ├── less
│ │ │ │ ├── selectors.expect.txt
│ │ │ │ └── selectors.txt
│ │ │ ├── lisp
│ │ │ │ ├── mec.expect.txt
│ │ │ │ └── mec.txt
│ │ │ ├── markdown
│ │ │ │ ├── code.expect.txt
│ │ │ │ ├── code.txt
│ │ │ │ ├── list.expect.txt
│ │ │ │ └── list.txt
│ │ │ ├── matlab
│ │ │ │ ├── block_comment.expect.txt
│ │ │ │ ├── block_comment.txt
│ │ │ │ ├── transpose.expect.txt
│ │ │ │ └── transpose.txt
│ │ │ ├── maxima
│ │ │ │ ├── example.expect.txt
│ │ │ │ ├── example.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── symbols.expect.txt
│ │ │ │ └── symbols.txt
│ │ │ ├── objectivec
│ │ │ │ ├── preprocessor.expect.txt
│ │ │ │ ├── preprocessor.txt
│ │ │ │ ├── string-literals.expect.txt
│ │ │ │ └── string-literals.txt
│ │ │ ├── ocaml
│ │ │ │ ├── literals.expect.txt
│ │ │ │ ├── literals.txt
│ │ │ │ ├── types.expect.txt
│ │ │ │ └── types.txt
│ │ │ ├── pgsql
│ │ │ │ ├── clauses.expect.txt
│ │ │ │ ├── clauses.txt
│ │ │ │ ├── clauses2.expect.txt
│ │ │ │ ├── clauses2.txt
│ │ │ │ ├── constraints.expect.txt
│ │ │ │ ├── constraints.txt
│ │ │ │ ├── options.expect.txt
│ │ │ │ ├── options.txt
│ │ │ │ ├── plpgsql.expect.txt
│ │ │ │ ├── plpgsql.txt
│ │ │ │ ├── sql-commands.expect.txt
│ │ │ │ ├── sql-commands.txt
│ │ │ │ ├── window-functions.expect.txt
│ │ │ │ ├── window-functions.txt
│ │ │ │ ├── xml.expect.txt
│ │ │ │ └── xml.txt
│ │ │ ├── php
│ │ │ │ ├── comments.expect.txt
│ │ │ │ ├── comments.txt
│ │ │ │ ├── heredoc.expect.txt
│ │ │ │ └── heredoc.txt
│ │ │ ├── pony
│ │ │ │ ├── control-flow.expect.txt
│ │ │ │ ├── control-flow.txt
│ │ │ │ ├── creator.expect.txt
│ │ │ │ ├── creator.txt
│ │ │ │ ├── iterface-trait.expect.txt
│ │ │ │ ├── iterface-trait.txt
│ │ │ │ ├── lambda.expect.txt
│ │ │ │ ├── lambda.txt
│ │ │ │ ├── match.expect.txt
│ │ │ │ ├── match.txt
│ │ │ │ ├── method.expect.txt
│ │ │ │ ├── method.txt
│ │ │ │ ├── number-literals.expect.txt
│ │ │ │ ├── number-literals.txt
│ │ │ │ ├── objects.expect.txt
│ │ │ │ ├── objects.txt
│ │ │ │ ├── prime.expect.txt
│ │ │ │ ├── prime.txt
│ │ │ │ ├── triple-quote.expect.txt
│ │ │ │ └── triple-quote.txt
│ │ │ ├── powershell
│ │ │ │ ├── apos-herestring.expect.txt
│ │ │ │ ├── apos-herestring.txt
│ │ │ │ ├── classes.expect.txt
│ │ │ │ ├── classes.txt
│ │ │ │ ├── misc.expect.txt
│ │ │ │ ├── misc.txt
│ │ │ │ ├── quote-herestring.expect.txt
│ │ │ │ └── quote-herestring.txt
│ │ │ ├── properties
│ │ │ │ ├── syntax.expect.txt
│ │ │ │ └── syntax.txt
│ │ │ ├── protobuf
│ │ │ │ ├── message-message.expect.txt
│ │ │ │ └── message-message.txt
│ │ │ ├── python
│ │ │ │ ├── escaped-quotes.expect.txt
│ │ │ │ ├── escaped-quotes.txt
│ │ │ │ ├── f-strings.expect.txt
│ │ │ │ ├── f-strings.txt
│ │ │ │ ├── function-header-comments.expect.txt
│ │ │ │ ├── function-header-comments.txt
│ │ │ │ ├── function-header.expect.txt
│ │ │ │ ├── function-header.txt
│ │ │ │ ├── matrix-multiplication.expect.txt
│ │ │ │ └── matrix-multiplication.txt
│ │ │ ├── reasonml
│ │ │ │ ├── functions.expect.txt
│ │ │ │ ├── functions.txt
│ │ │ │ ├── literals.expect.txt
│ │ │ │ ├── literals.txt
│ │ │ │ ├── modules.expect.txt
│ │ │ │ ├── modules.txt
│ │ │ │ ├── pattern-matching.expect.txt
│ │ │ │ └── pattern-matching.txt
│ │ │ ├── ruby
│ │ │ │ ├── gemfile.expect.txt
│ │ │ │ ├── gemfile.txt
│ │ │ │ ├── heredoc.expect.txt
│ │ │ │ ├── heredoc.txt
│ │ │ │ ├── prompt.expect.txt
│ │ │ │ ├── prompt.txt
│ │ │ │ ├── regexes.expect.txt
│ │ │ │ └── regexes.txt
│ │ │ ├── rust
│ │ │ │ ├── comments.expect.txt
│ │ │ │ ├── comments.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── strings.expect.txt
│ │ │ │ ├── strings.txt
│ │ │ │ ├── traits.expect.txt
│ │ │ │ ├── traits.txt
│ │ │ │ ├── types.expect.txt
│ │ │ │ ├── types.txt
│ │ │ │ ├── variables.expect.txt
│ │ │ │ └── variables.txt
│ │ │ ├── scala
│ │ │ │ ├── case-classes.expect.txt
│ │ │ │ └── case-classes.txt
│ │ │ ├── scheme
│ │ │ │ ├── lambda.expect.txt
│ │ │ │ ├── lambda.txt
│ │ │ │ ├── quoted.expect.txt
│ │ │ │ └── quoted.txt
│ │ │ ├── shell
│ │ │ │ ├── plain-prompt.expect.txt
│ │ │ │ ├── plain-prompt.txt
│ │ │ │ ├── prompt-with-slash.expect.txt
│ │ │ │ └── prompt-with-slash.txt
│ │ │ ├── sql
│ │ │ │ ├── interval.expect.txt
│ │ │ │ ├── interval.txt
│ │ │ │ ├── join.expect.txt
│ │ │ │ ├── join.txt
│ │ │ │ ├── keywords.expect.txt
│ │ │ │ ├── keywords.txt
│ │ │ │ ├── lateral-view.expect.txt
│ │ │ │ ├── lateral-view.txt
│ │ │ │ ├── numeric-types.expect.txt
│ │ │ │ ├── numeric-types.txt
│ │ │ │ ├── set-operator.expect.txt
│ │ │ │ ├── set-operator.txt
│ │ │ │ ├── string-types.expect.txt
│ │ │ │ ├── string-types.txt
│ │ │ │ ├── tablesample.expect.txt
│ │ │ │ ├── tablesample.txt
│ │ │ │ ├── values-statement.expect.txt
│ │ │ │ ├── values-statement.txt
│ │ │ │ ├── window-function.expect.txt
│ │ │ │ └── window-function.txt
│ │ │ ├── stata
│ │ │ │ ├── built_ins.expect.txt
│ │ │ │ └── built_ins.txt
│ │ │ ├── subunit
│ │ │ │ ├── subunit-errorline.expect.txt
│ │ │ │ ├── subunit-errorline.txt
│ │ │ │ ├── subunit-failureline.expect.txt
│ │ │ │ ├── subunit-failureline.txt
│ │ │ │ ├── subunit-progressline.expect.txt
│ │ │ │ ├── subunit-progressline.txt
│ │ │ │ ├── subunit-skipline.expect.txt
│ │ │ │ ├── subunit-skipline.txt
│ │ │ │ ├── subunit-successline.expect.txt
│ │ │ │ ├── subunit-successline.txt
│ │ │ │ ├── subunit-tagline.expect.txt
│ │ │ │ ├── subunit-tagline.txt
│ │ │ │ ├── subunit-testline.expect.txt
│ │ │ │ ├── subunit-testline.txt
│ │ │ │ ├── subunit-timeline.expect.txt
│ │ │ │ ├── subunit-timeline.txt
│ │ │ │ ├── subunit-uxsuccessline.expect.txt
│ │ │ │ ├── subunit-uxsuccessline.txt
│ │ │ │ ├── subunit-xfailline.expect.txt
│ │ │ │ └── subunit-xfailline.txt
│ │ │ ├── swift
│ │ │ │ ├── functions.expect.txt
│ │ │ │ ├── functions.txt
│ │ │ │ ├── multiline-string.expect.txt
│ │ │ │ └── multiline-string.txt
│ │ │ ├── tap
│ │ │ │ ├── basic.expect.txt
│ │ │ │ ├── basic.txt
│ │ │ │ ├── without-numbers.expect.txt
│ │ │ │ ├── without-numbers.txt
│ │ │ │ ├── yaml-block.expect.txt
│ │ │ │ └── yaml-block.txt
│ │ │ ├── twig
│ │ │ │ ├── filter_with_underscore.expect.txt
│ │ │ │ ├── filter_with_underscore.txt
│ │ │ │ ├── template_tags.expect.txt
│ │ │ │ └── template_tags.txt
│ │ │ ├── typescript
│ │ │ │ ├── class.expect.txt
│ │ │ │ ├── class.txt
│ │ │ │ ├── declares.expect.txt
│ │ │ │ ├── declares.txt
│ │ │ │ ├── decorator-factories.expect.txt
│ │ │ │ ├── decorator-factories.txt
│ │ │ │ ├── functions.expect.txt
│ │ │ │ ├── functions.txt
│ │ │ │ ├── inline-languages.expect.txt
│ │ │ │ ├── inline-languages.txt
│ │ │ │ ├── jsx.expect.txt
│ │ │ │ ├── jsx.txt
│ │ │ │ ├── module-id.expect.txt
│ │ │ │ ├── module-id.txt
│ │ │ │ ├── nested-templates.expect.txt
│ │ │ │ └── nested-templates.txt
│ │ │ ├── verilog
│ │ │ │ ├── misc.expect.txt
│ │ │ │ ├── misc.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ └── numbers.txt
│ │ │ ├── vim
│ │ │ │ ├── strings-comments.expect.txt
│ │ │ │ └── strings-comments.txt
│ │ │ ├── x86asm
│ │ │ │ ├── labels-directives.expect.txt
│ │ │ │ └── labels-directives.txt
│ │ │ ├── xml
│ │ │ │ ├── document-type-variations.expect.txt
│ │ │ │ ├── document-type-variations.txt
│ │ │ │ ├── space-attributes.expect.txt
│ │ │ │ ├── space-attributes.txt
│ │ │ │ ├── unquoted-attributes.expect.txt
│ │ │ │ └── unquoted-attributes.txt
│ │ │ ├── xquery
│ │ │ │ ├── computed_inbuilt.expect.txt
│ │ │ │ ├── computed_inbuilt.txt
│ │ │ │ ├── direct_method.expect.txt
│ │ │ │ ├── direct_method.txt
│ │ │ │ ├── function_body.expect.txt
│ │ │ │ ├── function_body.txt
│ │ │ │ ├── prolog_declarations.expect.txt
│ │ │ │ └── prolog_declarations.txt
│ │ │ └── yaml
│ │ │ │ ├── block.expect.txt
│ │ │ │ ├── block.txt
│ │ │ │ ├── keys.expect.txt
│ │ │ │ ├── keys.txt
│ │ │ │ ├── numbers.expect.txt
│ │ │ │ ├── numbers.txt
│ │ │ │ ├── string.expect.txt
│ │ │ │ ├── string.txt
│ │ │ │ ├── tag.expect.txt
│ │ │ │ └── tag.txt
│ │ └── special
│ │ │ ├── languagealias.expect.txt
│ │ │ ├── languagealias.txt
│ │ │ ├── line-endings.crlf.expect.txt
│ │ │ ├── line-endings.crlf.txt
│ │ │ ├── sublanguages.expect.txt
│ │ │ ├── sublanguages.txt
│ │ │ ├── tabreplace.expect.txt
│ │ │ └── tabreplace.txt
│ │ └── tools
│ │ ├── .htaccess
│ │ ├── export.js
│ │ ├── get_language_definitions.php
│ │ ├── get_styles_colors.php
│ │ ├── launcher.js
│ │ ├── lodash.cloneDeep.js
│ │ └── process.sh
├── sebastian
│ ├── code-unit-reverse-lookup
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ └── Wizard.php
│ │ └── tests
│ │ │ └── WizardTest.php
│ ├── comparator
│ │ ├── .github
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── 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
│ │ └── tests
│ │ │ ├── ArrayComparatorTest.php
│ │ │ ├── ComparisonFailureTest.php
│ │ │ ├── DOMNodeComparatorTest.php
│ │ │ ├── DateTimeComparatorTest.php
│ │ │ ├── DoubleComparatorTest.php
│ │ │ ├── ExceptionComparatorTest.php
│ │ │ ├── FactoryTest.php
│ │ │ ├── MockObjectComparatorTest.php
│ │ │ ├── NumericComparatorTest.php
│ │ │ ├── ObjectComparatorTest.php
│ │ │ ├── ResourceComparatorTest.php
│ │ │ ├── ScalarComparatorTest.php
│ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ ├── TypeComparatorTest.php
│ │ │ └── _fixture
│ │ │ ├── Author.php
│ │ │ ├── Book.php
│ │ │ ├── ClassWithToString.php
│ │ │ ├── SampleClass.php
│ │ │ ├── Struct.php
│ │ │ ├── TestClass.php
│ │ │ └── TestClassComparator.php
│ ├── diff
│ │ ├── .github
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── 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
│ │ └── tests
│ │ │ ├── ChunkTest.php
│ │ │ ├── DiffTest.php
│ │ │ ├── DifferTest.php
│ │ │ ├── Exception
│ │ │ ├── ConfigurationExceptionTest.php
│ │ │ └── InvalidArgumentExceptionTest.php
│ │ │ ├── LineTest.php
│ │ │ ├── LongestCommonSubsequenceTest.php
│ │ │ ├── MemoryEfficientImplementationTest.php
│ │ │ ├── Output
│ │ │ ├── AbstractChunkOutputBuilderTest.php
│ │ │ ├── DiffOnlyOutputBuilderTest.php
│ │ │ ├── Integration
│ │ │ │ ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php
│ │ │ │ └── UnifiedDiffOutputBuilderIntegrationTest.php
│ │ │ ├── StrictUnifiedDiffOutputBuilderDataProvider.php
│ │ │ ├── StrictUnifiedDiffOutputBuilderTest.php
│ │ │ ├── UnifiedDiffOutputBuilderDataProvider.php
│ │ │ └── UnifiedDiffOutputBuilderTest.php
│ │ │ ├── ParserTest.php
│ │ │ ├── TimeEfficientImplementationTest.php
│ │ │ ├── Utils
│ │ │ ├── FileUtils.php
│ │ │ ├── UnifiedDiffAssertTrait.php
│ │ │ ├── UnifiedDiffAssertTraitIntegrationTest.php
│ │ │ └── UnifiedDiffAssertTraitTest.php
│ │ │ └── fixtures
│ │ │ ├── .editorconfig
│ │ │ ├── UnifiedDiffAssertTraitIntegrationTest
│ │ │ ├── 1_a.txt
│ │ │ ├── 1_b.txt
│ │ │ ├── 2_a.txt
│ │ │ └── 2_b.txt
│ │ │ ├── out
│ │ │ ├── .editorconfig
│ │ │ └── .gitignore
│ │ │ ├── patch.txt
│ │ │ ├── patch2.txt
│ │ │ └── serialized_diff.bin
│ ├── environment
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Console.php
│ │ │ ├── OperatingSystem.php
│ │ │ └── Runtime.php
│ │ └── tests
│ │ │ ├── ConsoleTest.php
│ │ │ ├── OperatingSystemTest.php
│ │ │ └── RuntimeTest.php
│ ├── exporter
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ └── Exporter.php
│ │ └── tests
│ │ │ └── ExporterTest.php
│ ├── global-state
│ │ ├── .github
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Blacklist.php
│ │ │ ├── CodeExporter.php
│ │ │ ├── Restorer.php
│ │ │ ├── Snapshot.php
│ │ │ └── exceptions
│ │ │ │ ├── Exception.php
│ │ │ │ └── RuntimeException.php
│ │ └── tests
│ │ │ ├── BlacklistTest.php
│ │ │ ├── CodeExporterTest.php
│ │ │ ├── RestorerTest.php
│ │ │ ├── SnapshotTest.php
│ │ │ └── _fixture
│ │ │ ├── BlacklistedChildClass.php
│ │ │ ├── BlacklistedClass.php
│ │ │ ├── BlacklistedImplementor.php
│ │ │ ├── BlacklistedInterface.php
│ │ │ ├── SnapshotClass.php
│ │ │ ├── SnapshotDomDocument.php
│ │ │ ├── SnapshotFunctions.php
│ │ │ └── SnapshotTrait.php
│ ├── object-enumerator
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Enumerator.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ │ ├── EnumeratorTest.php
│ │ │ └── _fixture
│ │ │ └── ExceptionThrower.php
│ ├── object-reflector
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Exception.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ └── ObjectReflector.php
│ │ └── tests
│ │ │ ├── ObjectReflectorTest.php
│ │ │ └── _fixture
│ │ │ ├── ChildClass.php
│ │ │ ├── ClassWithIntegerAttributeName.php
│ │ │ └── ParentClass.php
│ ├── recursion-context
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phpunit.xml
│ │ ├── src
│ │ │ ├── Context.php
│ │ │ ├── Exception.php
│ │ │ └── InvalidArgumentException.php
│ │ └── tests
│ │ │ └── ContextTest.php
│ ├── resource-operations
│ │ ├── .github
│ │ │ └── stale.yml
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── build
│ │ │ └── generate.php
│ │ ├── composer.json
│ │ ├── src
│ │ │ └── ResourceOperations.php
│ │ └── tests
│ │ │ └── ResourceOperationsTest.php
│ ├── type
│ │ ├── .gitattributes
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ ├── .gitignore
│ │ ├── .idea
│ │ │ ├── inspectionProfiles
│ │ │ │ └── Project_Default.xml
│ │ │ ├── misc.xml
│ │ │ ├── modules.xml
│ │ │ ├── php-inspections-ea-ultimate.xml
│ │ │ ├── php.xml
│ │ │ ├── type.iml
│ │ │ └── vcs.xml
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── ChangeLog.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phive.xml
│ │ ├── phpunit.xml
│ │ ├── psalm.xml
│ │ ├── src
│ │ │ ├── CallableType.php
│ │ │ ├── GenericObjectType.php
│ │ │ ├── IterableType.php
│ │ │ ├── NullType.php
│ │ │ ├── ObjectType.php
│ │ │ ├── SimpleType.php
│ │ │ ├── Type.php
│ │ │ ├── TypeName.php
│ │ │ ├── UnknownType.php
│ │ │ ├── VoidType.php
│ │ │ └── exception
│ │ │ │ ├── Exception.php
│ │ │ │ └── RuntimeException.php
│ │ └── tests
│ │ │ ├── _fixture
│ │ │ ├── ChildClass.php
│ │ │ ├── ClassWithCallbackMethods.php
│ │ │ ├── ClassWithInvokeMethod.php
│ │ │ ├── Iterator.php
│ │ │ ├── ParentClass.php
│ │ │ └── callback_function.php
│ │ │ └── unit
│ │ │ ├── CallableTypeTest.php
│ │ │ ├── GenericObjectTypeTest.php
│ │ │ ├── IterableTypeTest.php
│ │ │ ├── NullTypeTest.php
│ │ │ ├── ObjectTypeTest.php
│ │ │ ├── SimpleTypeTest.php
│ │ │ ├── TypeNameTest.php
│ │ │ ├── TypeTest.php
│ │ │ ├── UnknownTypeTest.php
│ │ │ └── VoidTypeTest.php
│ └── version
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ └── src
│ │ └── Version.php
├── swiftmailer
│ └── swiftmailer
│ │ ├── .gitattributes
│ │ ├── .github
│ │ ├── ISSUE_TEMPLATE.md
│ │ └── PULL_REQUEST_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── .php_cs.dist
│ │ ├── .travis.yml
│ │ ├── CHANGES
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── doc
│ │ ├── headers.rst
│ │ ├── index.rst
│ │ ├── introduction.rst
│ │ ├── japanese.rst
│ │ ├── messages.rst
│ │ ├── plugins.rst
│ │ └── sending.rst
│ │ ├── lib
│ │ ├── classes
│ │ │ ├── Swift.php
│ │ │ └── Swift
│ │ │ │ ├── AddressEncoder.php
│ │ │ │ ├── AddressEncoder
│ │ │ │ ├── IdnAddressEncoder.php
│ │ │ │ └── Utf8AddressEncoder.php
│ │ │ │ ├── AddressEncoderException.php
│ │ │ │ ├── Attachment.php
│ │ │ │ ├── ByteStream
│ │ │ │ ├── AbstractFilterableInputStream.php
│ │ │ │ ├── ArrayByteStream.php
│ │ │ │ ├── FileByteStream.php
│ │ │ │ └── TemporaryFileByteStream.php
│ │ │ │ ├── CharacterReader.php
│ │ │ │ ├── CharacterReader
│ │ │ │ ├── GenericFixedWidthReader.php
│ │ │ │ ├── UsAsciiReader.php
│ │ │ │ └── Utf8Reader.php
│ │ │ │ ├── CharacterReaderFactory.php
│ │ │ │ ├── CharacterReaderFactory
│ │ │ │ └── SimpleCharacterReaderFactory.php
│ │ │ │ ├── CharacterStream.php
│ │ │ │ ├── CharacterStream
│ │ │ │ ├── ArrayCharacterStream.php
│ │ │ │ └── NgCharacterStream.php
│ │ │ │ ├── ConfigurableSpool.php
│ │ │ │ ├── DependencyContainer.php
│ │ │ │ ├── DependencyException.php
│ │ │ │ ├── EmbeddedFile.php
│ │ │ │ ├── Encoder.php
│ │ │ │ ├── Encoder
│ │ │ │ ├── Base64Encoder.php
│ │ │ │ ├── QpEncoder.php
│ │ │ │ └── Rfc2231Encoder.php
│ │ │ │ ├── Events
│ │ │ │ ├── CommandEvent.php
│ │ │ │ ├── CommandListener.php
│ │ │ │ ├── Event.php
│ │ │ │ ├── EventDispatcher.php
│ │ │ │ ├── EventListener.php
│ │ │ │ ├── EventObject.php
│ │ │ │ ├── ResponseEvent.php
│ │ │ │ ├── ResponseListener.php
│ │ │ │ ├── SendEvent.php
│ │ │ │ ├── SendListener.php
│ │ │ │ ├── SimpleEventDispatcher.php
│ │ │ │ ├── TransportChangeEvent.php
│ │ │ │ ├── TransportChangeListener.php
│ │ │ │ ├── TransportExceptionEvent.php
│ │ │ │ └── TransportExceptionListener.php
│ │ │ │ ├── FailoverTransport.php
│ │ │ │ ├── FileSpool.php
│ │ │ │ ├── FileStream.php
│ │ │ │ ├── Filterable.php
│ │ │ │ ├── IdGenerator.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── InputByteStream.php
│ │ │ │ ├── IoException.php
│ │ │ │ ├── KeyCache.php
│ │ │ │ ├── KeyCache
│ │ │ │ ├── ArrayKeyCache.php
│ │ │ │ ├── DiskKeyCache.php
│ │ │ │ ├── KeyCacheInputStream.php
│ │ │ │ ├── NullKeyCache.php
│ │ │ │ └── SimpleKeyCacheInputStream.php
│ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ ├── Mailer.php
│ │ │ │ ├── Mailer
│ │ │ │ ├── ArrayRecipientIterator.php
│ │ │ │ └── RecipientIterator.php
│ │ │ │ ├── MemorySpool.php
│ │ │ │ ├── Message.php
│ │ │ │ ├── Mime
│ │ │ │ ├── Attachment.php
│ │ │ │ ├── CharsetObserver.php
│ │ │ │ ├── ContentEncoder.php
│ │ │ │ ├── ContentEncoder
│ │ │ │ │ ├── Base64ContentEncoder.php
│ │ │ │ │ ├── NativeQpContentEncoder.php
│ │ │ │ │ ├── NullContentEncoder.php
│ │ │ │ │ ├── PlainContentEncoder.php
│ │ │ │ │ ├── QpContentEncoder.php
│ │ │ │ │ ├── QpContentEncoderProxy.php
│ │ │ │ │ └── RawContentEncoder.php
│ │ │ │ ├── EmbeddedFile.php
│ │ │ │ ├── EncodingObserver.php
│ │ │ │ ├── Header.php
│ │ │ │ ├── HeaderEncoder.php
│ │ │ │ ├── HeaderEncoder
│ │ │ │ │ ├── Base64HeaderEncoder.php
│ │ │ │ │ └── QpHeaderEncoder.php
│ │ │ │ ├── Headers
│ │ │ │ │ ├── AbstractHeader.php
│ │ │ │ │ ├── DateHeader.php
│ │ │ │ │ ├── IdentificationHeader.php
│ │ │ │ │ ├── MailboxHeader.php
│ │ │ │ │ ├── OpenDKIMHeader.php
│ │ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ │ ├── PathHeader.php
│ │ │ │ │ └── UnstructuredHeader.php
│ │ │ │ ├── IdGenerator.php
│ │ │ │ ├── MimePart.php
│ │ │ │ ├── SimpleHeaderFactory.php
│ │ │ │ ├── SimpleHeaderSet.php
│ │ │ │ ├── SimpleMessage.php
│ │ │ │ └── SimpleMimeEntity.php
│ │ │ │ ├── MimePart.php
│ │ │ │ ├── NullTransport.php
│ │ │ │ ├── OutputByteStream.php
│ │ │ │ ├── Plugins
│ │ │ │ ├── AntiFloodPlugin.php
│ │ │ │ ├── BandwidthMonitorPlugin.php
│ │ │ │ ├── Decorator
│ │ │ │ │ └── Replacements.php
│ │ │ │ ├── DecoratorPlugin.php
│ │ │ │ ├── ImpersonatePlugin.php
│ │ │ │ ├── Logger.php
│ │ │ │ ├── LoggerPlugin.php
│ │ │ │ ├── Loggers
│ │ │ │ │ ├── ArrayLogger.php
│ │ │ │ │ └── EchoLogger.php
│ │ │ │ ├── MessageLogger.php
│ │ │ │ ├── Pop
│ │ │ │ │ ├── Pop3Connection.php
│ │ │ │ │ └── Pop3Exception.php
│ │ │ │ ├── PopBeforeSmtpPlugin.php
│ │ │ │ ├── RedirectingPlugin.php
│ │ │ │ ├── Reporter.php
│ │ │ │ ├── ReporterPlugin.php
│ │ │ │ ├── Reporters
│ │ │ │ │ ├── HitReporter.php
│ │ │ │ │ └── HtmlReporter.php
│ │ │ │ ├── Sleeper.php
│ │ │ │ ├── ThrottlerPlugin.php
│ │ │ │ └── Timer.php
│ │ │ │ ├── Preferences.php
│ │ │ │ ├── ReplacementFilterFactory.php
│ │ │ │ ├── RfcComplianceException.php
│ │ │ │ ├── SendmailTransport.php
│ │ │ │ ├── Signer.php
│ │ │ │ ├── Signers
│ │ │ │ ├── BodySigner.php
│ │ │ │ ├── DKIMSigner.php
│ │ │ │ ├── DomainKeySigner.php
│ │ │ │ ├── HeaderSigner.php
│ │ │ │ ├── OpenDKIMSigner.php
│ │ │ │ └── SMimeSigner.php
│ │ │ │ ├── SmtpTransport.php
│ │ │ │ ├── Spool.php
│ │ │ │ ├── SpoolTransport.php
│ │ │ │ ├── StreamFilter.php
│ │ │ │ ├── StreamFilters
│ │ │ │ ├── ByteArrayReplacementFilter.php
│ │ │ │ ├── StringReplacementFilter.php
│ │ │ │ └── StringReplacementFilterFactory.php
│ │ │ │ ├── SwiftException.php
│ │ │ │ ├── Transport.php
│ │ │ │ ├── Transport
│ │ │ │ ├── AbstractSmtpTransport.php
│ │ │ │ ├── Esmtp
│ │ │ │ │ ├── Auth
│ │ │ │ │ │ ├── CramMd5Authenticator.php
│ │ │ │ │ │ ├── LoginAuthenticator.php
│ │ │ │ │ │ ├── NTLMAuthenticator.php
│ │ │ │ │ │ ├── PlainAuthenticator.php
│ │ │ │ │ │ └── XOAuth2Authenticator.php
│ │ │ │ │ ├── AuthHandler.php
│ │ │ │ │ ├── Authenticator.php
│ │ │ │ │ ├── EightBitMimeHandler.php
│ │ │ │ │ └── SmtpUtf8Handler.php
│ │ │ │ ├── EsmtpHandler.php
│ │ │ │ ├── EsmtpTransport.php
│ │ │ │ ├── FailoverTransport.php
│ │ │ │ ├── IoBuffer.php
│ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ ├── NullTransport.php
│ │ │ │ ├── SendmailTransport.php
│ │ │ │ ├── SmtpAgent.php
│ │ │ │ ├── SpoolTransport.php
│ │ │ │ └── StreamBuffer.php
│ │ │ │ └── TransportException.php
│ │ ├── dependency_maps
│ │ │ ├── cache_deps.php
│ │ │ ├── message_deps.php
│ │ │ ├── mime_deps.php
│ │ │ └── transport_deps.php
│ │ ├── mime_types.php
│ │ ├── preferences.php
│ │ ├── swift_required.php
│ │ └── swiftmailer_generate_mimes_config.php
│ │ ├── phpunit.xml.dist
│ │ └── tests
│ │ ├── IdenticalBinaryConstraint.php
│ │ ├── StreamCollector.php
│ │ ├── SwiftMailerSmokeTestCase.php
│ │ ├── SwiftMailerTestCase.php
│ │ ├── _samples
│ │ ├── charsets
│ │ │ ├── iso-2022-jp
│ │ │ │ └── one.txt
│ │ │ ├── iso-8859-1
│ │ │ │ └── one.txt
│ │ │ └── utf-8
│ │ │ │ ├── one.txt
│ │ │ │ ├── three.txt
│ │ │ │ └── two.txt
│ │ ├── dkim
│ │ │ ├── dkim.test.priv
│ │ │ └── dkim.test.pub
│ │ ├── files
│ │ │ ├── data.txt
│ │ │ ├── swiftmailer.png
│ │ │ └── textfile.zip
│ │ └── smime
│ │ │ ├── CA.srl
│ │ │ ├── ca.crt
│ │ │ ├── ca.key
│ │ │ ├── create-cert.sh
│ │ │ ├── encrypt.crt
│ │ │ ├── encrypt.key
│ │ │ ├── encrypt2.crt
│ │ │ ├── encrypt2.key
│ │ │ ├── intermediate.crt
│ │ │ ├── intermediate.key
│ │ │ ├── sign.crt
│ │ │ ├── sign.key
│ │ │ ├── sign2.crt
│ │ │ └── sign2.key
│ │ ├── acceptance.conf.php.default
│ │ ├── acceptance
│ │ └── Swift
│ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ ├── ByteStream
│ │ │ └── FileByteStreamAcceptanceTest.php
│ │ │ ├── CharacterReaderFactory
│ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php
│ │ │ ├── DependencyContainerAcceptanceTest.php
│ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ ├── Encoder
│ │ │ ├── Base64EncoderAcceptanceTest.php
│ │ │ ├── QpEncoderAcceptanceTest.php
│ │ │ └── Rfc2231EncoderAcceptanceTest.php
│ │ │ ├── KeyCache
│ │ │ ├── ArrayKeyCacheAcceptanceTest.php
│ │ │ └── DiskKeyCacheAcceptanceTest.php
│ │ │ ├── MessageAcceptanceTest.php
│ │ │ ├── Mime
│ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ ├── ContentEncoder
│ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php
│ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php
│ │ │ │ ├── PlainContentEncoderAcceptanceTest.php
│ │ │ │ └── QpContentEncoderAcceptanceTest.php
│ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ ├── HeaderEncoder
│ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php
│ │ │ ├── MimePartAcceptanceTest.php
│ │ │ └── SimpleMessageAcceptanceTest.php
│ │ │ ├── MimePartAcceptanceTest.php
│ │ │ └── Transport
│ │ │ └── StreamBuffer
│ │ │ ├── AbstractStreamBufferAcceptanceTest.php
│ │ │ ├── BasicSocketAcceptanceTest.php
│ │ │ ├── ProcessAcceptanceTest.php
│ │ │ ├── SocketTimeoutTest.php
│ │ │ ├── SslSocketAcceptanceTest.php
│ │ │ └── TlsSocketAcceptanceTest.php
│ │ ├── bootstrap.php
│ │ ├── bug
│ │ └── Swift
│ │ │ ├── Bug111Test.php
│ │ │ ├── Bug118Test.php
│ │ │ ├── Bug206Test.php
│ │ │ ├── Bug274Test.php
│ │ │ ├── Bug34Test.php
│ │ │ ├── Bug35Test.php
│ │ │ ├── Bug38Test.php
│ │ │ ├── Bug518Test.php
│ │ │ ├── Bug51Test.php
│ │ │ ├── Bug534Test.php
│ │ │ ├── Bug650Test.php
│ │ │ ├── Bug71Test.php
│ │ │ ├── Bug76Test.php
│ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php
│ │ ├── fixtures
│ │ └── MimeEntityFixture.php
│ │ ├── smoke.conf.php.default
│ │ ├── smoke
│ │ └── Swift
│ │ │ └── Smoke
│ │ │ ├── AttachmentSmokeTest.php
│ │ │ ├── BasicSmokeTest.php
│ │ │ ├── HtmlWithAttachmentSmokeTest.php
│ │ │ └── InternationalSmokeTest.php
│ │ └── unit
│ │ └── Swift
│ │ ├── ByteStream
│ │ └── ArrayByteStreamTest.php
│ │ ├── CharacterReader
│ │ ├── GenericFixedWidthReaderTest.php
│ │ ├── UsAsciiReaderTest.php
│ │ └── Utf8ReaderTest.php
│ │ ├── CharacterStream
│ │ └── ArrayCharacterStreamTest.php
│ │ ├── DependencyContainerTest.php
│ │ ├── Encoder
│ │ ├── Base64EncoderTest.php
│ │ ├── QpEncoderTest.php
│ │ └── Rfc2231EncoderTest.php
│ │ ├── Events
│ │ ├── CommandEventTest.php
│ │ ├── EventObjectTest.php
│ │ ├── ResponseEventTest.php
│ │ ├── SendEventTest.php
│ │ ├── SimpleEventDispatcherTest.php
│ │ ├── TransportChangeEventTest.php
│ │ └── TransportExceptionEventTest.php
│ │ ├── KeyCache
│ │ ├── ArrayKeyCacheTest.php
│ │ └── SimpleKeyCacheInputStreamTest.php
│ │ ├── Mailer
│ │ └── ArrayRecipientIteratorTest.php
│ │ ├── MailerTest.php
│ │ ├── MessageTest.php
│ │ ├── Mime
│ │ ├── AbstractMimeEntityTest.php
│ │ ├── AttachmentTest.php
│ │ ├── ContentEncoder
│ │ │ ├── Base64ContentEncoderTest.php
│ │ │ ├── PlainContentEncoderTest.php
│ │ │ └── QpContentEncoderTest.php
│ │ ├── EmbeddedFileTest.php
│ │ ├── HeaderEncoder
│ │ │ ├── Base64HeaderEncoderTest.php
│ │ │ └── QpHeaderEncoderTest.php
│ │ ├── Headers
│ │ │ ├── DateHeaderTest.php
│ │ │ ├── IdentificationHeaderTest.php
│ │ │ ├── MailboxHeaderTest.php
│ │ │ ├── ParameterizedHeaderTest.php
│ │ │ ├── PathHeaderTest.php
│ │ │ └── UnstructuredHeaderTest.php
│ │ ├── IdGeneratorTest.php
│ │ ├── MimePartTest.php
│ │ ├── SimpleHeaderFactoryTest.php
│ │ ├── SimpleHeaderSetTest.php
│ │ ├── SimpleMessageTest.php
│ │ └── SimpleMimeEntityTest.php
│ │ ├── Plugins
│ │ ├── AntiFloodPluginTest.php
│ │ ├── BandwidthMonitorPluginTest.php
│ │ ├── DecoratorPluginTest.php
│ │ ├── LoggerPluginTest.php
│ │ ├── Loggers
│ │ │ ├── ArrayLoggerTest.php
│ │ │ └── EchoLoggerTest.php
│ │ ├── PopBeforeSmtpPluginTest.php
│ │ ├── RedirectingPluginTest.php
│ │ ├── ReporterPluginTest.php
│ │ ├── Reporters
│ │ │ ├── HitReporterTest.php
│ │ │ └── HtmlReporterTest.php
│ │ └── ThrottlerPluginTest.php
│ │ ├── Signers
│ │ ├── DKIMSignerTest.php
│ │ ├── OpenDKIMSignerTest.php
│ │ └── SMimeSignerTest.php
│ │ ├── StreamFilters
│ │ ├── ByteArrayReplacementFilterTest.php
│ │ ├── StringReplacementFilterFactoryTest.php
│ │ └── StringReplacementFilterTest.php
│ │ └── Transport
│ │ ├── AbstractSmtpEventSupportTest.php
│ │ ├── AbstractSmtpTest.php
│ │ ├── Esmtp
│ │ ├── Auth
│ │ │ ├── CramMd5AuthenticatorTest.php
│ │ │ ├── LoginAuthenticatorTest.php
│ │ │ ├── NTLMAuthenticatorTest.php
│ │ │ └── PlainAuthenticatorTest.php
│ │ └── AuthHandlerTest.php
│ │ ├── EsmtpTransport
│ │ └── ExtensionSupportTest.php
│ │ ├── EsmtpTransportTest.php
│ │ ├── FailoverTransportTest.php
│ │ ├── LoadBalancedTransportTest.php
│ │ ├── SendmailTransportTest.php
│ │ └── StreamBufferTest.php
├── symfony
│ ├── console
│ │ ├── Application.php
│ │ ├── CHANGELOG.md
│ │ ├── Command
│ │ │ ├── Command.php
│ │ │ ├── HelpCommand.php
│ │ │ ├── ListCommand.php
│ │ │ └── LockableTrait.php
│ │ ├── CommandLoader
│ │ │ ├── CommandLoaderInterface.php
│ │ │ ├── ContainerCommandLoader.php
│ │ │ └── FactoryCommandLoader.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
│ │ │ └── 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
│ │ │ ├── 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
│ │ ├── Question
│ │ │ ├── ChoiceQuestion.php
│ │ │ ├── ConfirmationQuestion.php
│ │ │ └── Question.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── bin
│ │ │ │ └── hiddeninput.exe
│ │ ├── SingleCommandApplication.php
│ │ ├── Style
│ │ │ ├── OutputStyle.php
│ │ │ ├── StyleInterface.php
│ │ │ └── SymfonyStyle.php
│ │ ├── Terminal.php
│ │ ├── Tester
│ │ │ ├── ApplicationTester.php
│ │ │ ├── CommandTester.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
│ ├── debug
│ │ ├── BufferingLogger.php
│ │ ├── CHANGELOG.md
│ │ ├── Debug.php
│ │ ├── DebugClassLoader.php
│ │ ├── ErrorHandler.php
│ │ ├── Exception
│ │ │ ├── ClassNotFoundException.php
│ │ │ ├── FatalErrorException.php
│ │ │ ├── FatalThrowableError.php
│ │ │ ├── FlattenException.php
│ │ │ ├── OutOfMemoryException.php
│ │ │ ├── SilencedErrorContext.php
│ │ │ ├── UndefinedFunctionException.php
│ │ │ └── UndefinedMethodException.php
│ │ ├── ExceptionHandler.php
│ │ ├── FatalErrorHandler
│ │ │ ├── ClassNotFoundFatalErrorHandler.php
│ │ │ ├── FatalErrorHandlerInterface.php
│ │ │ ├── UndefinedFunctionFatalErrorHandler.php
│ │ │ └── UndefinedMethodFatalErrorHandler.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── composer.json
│ ├── deprecation-contracts
│ │ ├── .gitignore
│ │ ├── 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
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── Resources
│ │ │ ├── assets
│ │ │ │ ├── css
│ │ │ │ │ ├── error.css
│ │ │ │ │ ├── exception.css
│ │ │ │ │ └── exception_full.css
│ │ │ │ ├── images
│ │ │ │ │ ├── chevron-right.svg
│ │ │ │ │ ├── favicon.png.base64
│ │ │ │ │ ├── icon-book.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
│ │ │ └── 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
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── Event.php
│ │ ├── EventDispatcherInterface.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── composer.json
│ ├── event-dispatcher
│ │ ├── CHANGELOG.md
│ │ ├── Debug
│ │ │ ├── TraceableEventDispatcher.php
│ │ │ └── WrappedListener.php
│ │ ├── DependencyInjection
│ │ │ ├── AddEventAliasesPass.php
│ │ │ └── RegisterListenersPass.php
│ │ ├── EventDispatcher.php
│ │ ├── EventDispatcherInterface.php
│ │ ├── EventSubscriberInterface.php
│ │ ├── GenericEvent.php
│ │ ├── ImmutableEventDispatcher.php
│ │ ├── LICENSE
│ │ ├── LegacyEventDispatcherProxy.php
│ │ ├── 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
│ │ │ ├── MultiplePcreFilterIterator.php
│ │ │ ├── PathFilterIterator.php
│ │ │ ├── RecursiveDirectoryIterator.php
│ │ │ ├── SizeRangeFilterIterator.php
│ │ │ └── SortableIterator.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
│ │ │ ├── RequestExceptionInterface.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
│ │ ├── RedirectResponse.php
│ │ ├── Request.php
│ │ ├── RequestMatcher.php
│ │ ├── RequestMatcherInterface.php
│ │ ├── RequestStack.php
│ │ ├── Response.php
│ │ ├── ResponseHeaderBag.php
│ │ ├── ServerBag.php
│ │ ├── Session
│ │ │ ├── Attribute
│ │ │ │ ├── AttributeBag.php
│ │ │ │ ├── AttributeBagInterface.php
│ │ │ │ └── NamespacedAttributeBag.php
│ │ │ ├── Flash
│ │ │ │ ├── AutoExpireFlashBag.php
│ │ │ │ ├── FlashBag.php
│ │ │ │ └── FlashBagInterface.php
│ │ │ ├── Session.php
│ │ │ ├── SessionBagInterface.php
│ │ │ ├── SessionBagProxy.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
│ │ │ │ ├── NativeSessionStorage.php
│ │ │ │ ├── PhpBridgeSessionStorage.php
│ │ │ │ ├── Proxy
│ │ │ │ ├── AbstractProxy.php
│ │ │ │ └── SessionHandlerProxy.php
│ │ │ │ └── SessionStorageInterface.php
│ │ ├── StreamedResponse.php
│ │ ├── Test
│ │ │ └── Constraint
│ │ │ │ ├── RequestAttributeValueSame.php
│ │ │ │ ├── ResponseCookieValueSame.php
│ │ │ │ ├── ResponseHasCookie.php
│ │ │ │ ├── ResponseHasHeader.php
│ │ │ │ ├── ResponseHeaderSame.php
│ │ │ │ ├── ResponseIsRedirected.php
│ │ │ │ ├── ResponseIsSuccessful.php
│ │ │ │ └── ResponseStatusCodeSame.php
│ │ ├── UrlHelper.php
│ │ └── composer.json
│ ├── http-kernel
│ │ ├── 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
│ │ │ ├── AbstractTestSessionListener.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
│ │ │ ├── TestSessionListener.php
│ │ │ └── ValidateRequestListener.php
│ │ ├── Exception
│ │ │ ├── AccessDeniedHttpException.php
│ │ │ ├── BadRequestHttpException.php
│ │ │ ├── ConflictHttpException.php
│ │ │ ├── ControllerDoesNotReturnResponseException.php
│ │ │ ├── GoneHttpException.php
│ │ │ ├── HttpException.php
│ │ │ ├── HttpExceptionInterface.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
│ │ │ ├── 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
│ ├── mime
│ │ ├── Address.php
│ │ ├── BodyRendererInterface.php
│ │ ├── CHANGELOG.md
│ │ ├── CharacterStream.php
│ │ ├── Crypto
│ │ │ ├── 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
│ │ └── 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
│ │ └── composer.json
│ ├── polyfill-intl-grapheme
│ │ ├── Grapheme.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bootstrap.php
│ │ └── composer.json
│ ├── polyfill-intl-idn
│ │ ├── Idn.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bootstrap.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
│ │ └── composer.json
│ ├── polyfill-mbstring
│ │ ├── LICENSE
│ │ ├── Mbstring.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── unidata
│ │ │ │ ├── lowerCase.php
│ │ │ │ ├── titleCaseRegexp.php
│ │ │ │ └── upperCase.php
│ │ ├── bootstrap.php
│ │ └── composer.json
│ ├── polyfill-php72
│ │ ├── LICENSE
│ │ ├── Php72.php
│ │ ├── README.md
│ │ ├── bootstrap.php
│ │ └── composer.json
│ ├── polyfill-php73
│ │ ├── LICENSE
│ │ ├── Php73.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── stubs
│ │ │ │ └── JsonException.php
│ │ ├── bootstrap.php
│ │ └── composer.json
│ ├── polyfill-php80
│ │ ├── LICENSE
│ │ ├── Php80.php
│ │ ├── README.md
│ │ ├── Resources
│ │ │ └── stubs
│ │ │ │ ├── Stringable.php
│ │ │ │ └── ValueError.php
│ │ ├── bootstrap.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
│ │ ├── Annotation
│ │ │ └── Route.php
│ │ ├── CHANGELOG.md
│ │ ├── CompiledRoute.php
│ │ ├── DependencyInjection
│ │ │ └── RoutingResolverPass.php
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidParameterException.php
│ │ │ ├── MethodNotAllowedException.php
│ │ │ ├── MissingMandatoryParametersException.php
│ │ │ ├── NoConfigurationException.php
│ │ │ ├── ResourceNotFoundException.php
│ │ │ └── RouteNotFoundException.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
│ │ │ │ ├── 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
│ │ ├── RouteCollectionBuilder.php
│ │ ├── RouteCompiler.php
│ │ ├── RouteCompilerInterface.php
│ │ ├── Router.php
│ │ ├── RouterInterface.php
│ │ └── composer.json
│ ├── service-contracts
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── ResetInterface.php
│ │ ├── ServiceLocatorTrait.php
│ │ ├── ServiceProviderInterface.php
│ │ ├── ServiceSubscriberInterface.php
│ │ ├── ServiceSubscriberTrait.php
│ │ ├── Test
│ │ │ └── ServiceLocatorTest.php
│ │ └── composer.json
│ ├── string
│ │ ├── .gitattributes
│ │ ├── AbstractString.php
│ │ ├── AbstractUnicodeString.php
│ │ ├── ByteString.php
│ │ ├── CHANGELOG.md
│ │ ├── CodePointString.php
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ └── RuntimeException.php
│ │ ├── Inflector
│ │ │ ├── EnglishInflector.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
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── LocaleAwareInterface.php
│ │ ├── README.md
│ │ ├── Test
│ │ │ └── TranslatorTest.php
│ │ ├── TranslatorInterface.php
│ │ ├── TranslatorTrait.php
│ │ └── composer.json
│ ├── translation
│ │ ├── CHANGELOG.md
│ │ ├── Catalogue
│ │ │ ├── AbstractOperation.php
│ │ │ ├── MergeOperation.php
│ │ │ ├── OperationInterface.php
│ │ │ └── TargetOperation.php
│ │ ├── Command
│ │ │ └── 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
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── InvalidResourceException.php
│ │ │ ├── LogicException.php
│ │ │ ├── NotFoundResourceException.php
│ │ │ └── RuntimeException.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
│ │ ├── README.md
│ │ ├── Reader
│ │ │ ├── TranslationReader.php
│ │ │ └── TranslationReaderInterface.php
│ │ ├── Resources
│ │ │ ├── bin
│ │ │ │ └── translation-status.php
│ │ │ ├── data
│ │ │ │ └── parents.json
│ │ │ └── schemas
│ │ │ │ ├── xliff-core-1.2-strict.xsd
│ │ │ │ ├── xliff-core-2.0.xsd
│ │ │ │ └── xml.xsd
│ │ ├── Translator.php
│ │ ├── TranslatorBagInterface.php
│ │ ├── Util
│ │ │ ├── ArrayConverter.php
│ │ │ └── XliffUtils.php
│ │ ├── Writer
│ │ │ ├── TranslationWriter.php
│ │ │ └── TranslationWriterInterface.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
│ │ ├── FrameStub.php
│ │ ├── GmpCaster.php
│ │ ├── ImagineCaster.php
│ │ ├── ImgStub.php
│ │ ├── IntlCaster.php
│ │ ├── LinkStub.php
│ │ ├── MemcachedCaster.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
├── theseer
│ └── tokenizer
│ │ ├── .gitignore
│ │ ├── .php_cs
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── phive.xml
│ │ ├── phpunit.xml
│ │ ├── src
│ │ ├── Exception.php
│ │ ├── NamespaceUri.php
│ │ ├── NamespaceUriException.php
│ │ ├── Token.php
│ │ ├── TokenCollection.php
│ │ ├── TokenCollectionException.php
│ │ ├── Tokenizer.php
│ │ └── XMLSerializer.php
│ │ └── tests
│ │ ├── NamespaceUriTest.php
│ │ ├── TokenCollectionTest.php
│ │ ├── TokenTest.php
│ │ ├── TokenizerTest.php
│ │ ├── XMLSerializerTest.php
│ │ └── _files
│ │ ├── customns.xml
│ │ ├── empty.xml
│ │ ├── test.php
│ │ ├── test.php.tokens
│ │ └── test.php.xml
├── 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
│ │ ├── phpstan.src.neon.dist
│ │ └── src
│ │ ├── Dotenv.php
│ │ ├── Exception
│ │ ├── ExceptionInterface.php
│ │ ├── InvalidFileException.php
│ │ ├── InvalidPathException.php
│ │ └── ValidationException.php
│ │ ├── Loader
│ │ ├── Lines.php
│ │ ├── Loader.php
│ │ ├── LoaderInterface.php
│ │ ├── Parser.php
│ │ └── Value.php
│ │ ├── Regex
│ │ └── Regex.php
│ │ ├── Repository
│ │ ├── AbstractRepository.php
│ │ ├── Adapter
│ │ │ ├── ApacheAdapter.php
│ │ │ ├── ArrayAdapter.php
│ │ │ ├── AvailabilityInterface.php
│ │ │ ├── EnvConstAdapter.php
│ │ │ ├── PutenvAdapter.php
│ │ │ ├── ReaderInterface.php
│ │ │ ├── ServerConstAdapter.php
│ │ │ └── WriterInterface.php
│ │ ├── AdapterRepository.php
│ │ ├── RepositoryBuilder.php
│ │ └── RepositoryInterface.php
│ │ ├── Result
│ │ ├── Error.php
│ │ ├── Result.php
│ │ └── Success.php
│ │ ├── Store
│ │ ├── File
│ │ │ ├── Paths.php
│ │ │ └── Reader.php
│ │ ├── FileStore.php
│ │ ├── StoreBuilder.php
│ │ └── StoreInterface.php
│ │ └── Validator.php
├── voku
│ └── portable-ascii
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── build
│ │ ├── composer.json
│ │ ├── docs
│ │ │ └── base.md
│ │ ├── generate_docs.php
│ │ └── gernerate_max_key_length.php
│ │ ├── 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
│ ├── .editorconfig
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── composer.json
│ ├── psalm.xml
│ └── src
│ ├── Assert.php
│ └── Mixin.php
└── webpack.mix.js
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/.DS_Store
--------------------------------------------------------------------------------
/part 47/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/.DS_Store
--------------------------------------------------------------------------------
/part 47/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/README.md
--------------------------------------------------------------------------------
/part 47/app/Console/Kernel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Console/Kernel.php
--------------------------------------------------------------------------------
/part 47/app/Exceptions/Handler.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Exceptions/Handler.php
--------------------------------------------------------------------------------
/part 47/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Controllers/Controller.php
--------------------------------------------------------------------------------
/part 47/app/Http/Kernel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Kernel.php
--------------------------------------------------------------------------------
/part 47/app/Http/Middleware/Authenticate.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Middleware/Authenticate.php
--------------------------------------------------------------------------------
/part 47/app/Http/Middleware/TrimStrings.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Middleware/TrimStrings.php
--------------------------------------------------------------------------------
/part 47/app/Http/Middleware/TrustHosts.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Middleware/TrustHosts.php
--------------------------------------------------------------------------------
/part 47/app/Http/Middleware/TrustProxies.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Http/Middleware/TrustProxies.php
--------------------------------------------------------------------------------
/part 47/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/Providers/AppServiceProvider.php
--------------------------------------------------------------------------------
/part 47/app/User.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/app/User.php
--------------------------------------------------------------------------------
/part 47/artisan:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/artisan
--------------------------------------------------------------------------------
/part 47/bootstrap/app.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/bootstrap/app.php
--------------------------------------------------------------------------------
/part 47/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/composer.json
--------------------------------------------------------------------------------
/part 47/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/composer.lock
--------------------------------------------------------------------------------
/part 47/config/app.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/app.php
--------------------------------------------------------------------------------
/part 47/config/auth.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/auth.php
--------------------------------------------------------------------------------
/part 47/config/broadcasting.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/broadcasting.php
--------------------------------------------------------------------------------
/part 47/config/cache.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/cache.php
--------------------------------------------------------------------------------
/part 47/config/cors.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/cors.php
--------------------------------------------------------------------------------
/part 47/config/database.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/database.php
--------------------------------------------------------------------------------
/part 47/config/filesystems.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/filesystems.php
--------------------------------------------------------------------------------
/part 47/config/hashing.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/hashing.php
--------------------------------------------------------------------------------
/part 47/config/logging.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/logging.php
--------------------------------------------------------------------------------
/part 47/config/mail.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/mail.php
--------------------------------------------------------------------------------
/part 47/config/queue.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/queue.php
--------------------------------------------------------------------------------
/part 47/config/services.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/services.php
--------------------------------------------------------------------------------
/part 47/config/session.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/session.php
--------------------------------------------------------------------------------
/part 47/config/view.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/config/view.php
--------------------------------------------------------------------------------
/part 47/database/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/database/.gitignore
--------------------------------------------------------------------------------
/part 47/database/factories/UserFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/database/factories/UserFactory.php
--------------------------------------------------------------------------------
/part 47/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/database/seeds/DatabaseSeeder.php
--------------------------------------------------------------------------------
/part 47/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/package-lock.json
--------------------------------------------------------------------------------
/part 47/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/package.json
--------------------------------------------------------------------------------
/part 47/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/phpunit.xml
--------------------------------------------------------------------------------
/part 47/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/.DS_Store
--------------------------------------------------------------------------------
/part 47/public/.htaccess:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/.htaccess
--------------------------------------------------------------------------------
/part 47/public/css/all.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/all.css
--------------------------------------------------------------------------------
/part 47/public/css/app.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/public/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/bootstrap.min.css
--------------------------------------------------------------------------------
/part 47/public/css/carousel.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/carousel.css
--------------------------------------------------------------------------------
/part 47/public/css/common.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/common.css
--------------------------------------------------------------------------------
/part 47/public/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/main.css
--------------------------------------------------------------------------------
/part 47/public/css/responsive.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/css/responsive.css
--------------------------------------------------------------------------------
/part 47/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/public/index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/index.php
--------------------------------------------------------------------------------
/part 47/public/js/app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/js/app.js
--------------------------------------------------------------------------------
/part 47/public/mix-manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/public/mix-manifest.json
--------------------------------------------------------------------------------
/part 47/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/part 47/resources/js/app.js:
--------------------------------------------------------------------------------
1 | require('./bootstrap');
2 |
--------------------------------------------------------------------------------
/part 47/resources/js/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/js/bootstrap.js
--------------------------------------------------------------------------------
/part 47/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/lang/en/auth.php
--------------------------------------------------------------------------------
/part 47/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/lang/en/pagination.php
--------------------------------------------------------------------------------
/part 47/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/lang/en/passwords.php
--------------------------------------------------------------------------------
/part 47/resources/lang/en/validation.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/lang/en/validation.php
--------------------------------------------------------------------------------
/part 47/resources/sass/app.scss:
--------------------------------------------------------------------------------
1 | //
2 |
--------------------------------------------------------------------------------
/part 47/resources/views/home.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/views/home.blade.php
--------------------------------------------------------------------------------
/part 47/resources/views/layout/app.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/resources/views/layout/app.blade.php
--------------------------------------------------------------------------------
/part 47/resources/views/partials/header.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part 47/routes/api.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/routes/api.php
--------------------------------------------------------------------------------
/part 47/routes/channels.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/routes/channels.php
--------------------------------------------------------------------------------
/part 47/routes/console.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/routes/console.php
--------------------------------------------------------------------------------
/part 47/routes/web.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/routes/web.php
--------------------------------------------------------------------------------
/part 47/server.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/server.php
--------------------------------------------------------------------------------
/part 47/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/part 47/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/storage/framework/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/storage/framework/.gitignore
--------------------------------------------------------------------------------
/part 47/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/part 47/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 47/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/tests/CreatesApplication.php
--------------------------------------------------------------------------------
/part 47/tests/Feature/ExampleTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/tests/Feature/ExampleTest.php
--------------------------------------------------------------------------------
/part 47/tests/TestCase.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/tests/TestCase.php
--------------------------------------------------------------------------------
/part 47/tests/Unit/ExampleTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/tests/Unit/ExampleTest.php
--------------------------------------------------------------------------------
/part 47/vendor/asm89/stack-cors/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/asm89/stack-cors/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/asm89/stack-cors/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/asm89/stack-cors/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/asm89/stack-cors/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/asm89/stack-cors/README.md
--------------------------------------------------------------------------------
/part 47/vendor/asm89/stack-cors/src/Cors.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/asm89/stack-cors/src/Cors.php
--------------------------------------------------------------------------------
/part 47/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/autoload.php
--------------------------------------------------------------------------------
/part 47/vendor/bin/carbon:
--------------------------------------------------------------------------------
1 | ../nesbot/carbon/bin/carbon
--------------------------------------------------------------------------------
/part 47/vendor/bin/commonmark:
--------------------------------------------------------------------------------
1 | ../league/commonmark/bin/commonmark
--------------------------------------------------------------------------------
/part 47/vendor/bin/php-parse:
--------------------------------------------------------------------------------
1 | ../nikic/php-parser/bin/php-parse
--------------------------------------------------------------------------------
/part 47/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/phpunit
--------------------------------------------------------------------------------
/part 47/vendor/bin/psysh:
--------------------------------------------------------------------------------
1 | ../psy/psysh/bin/psysh
--------------------------------------------------------------------------------
/part 47/vendor/bin/var-dump-server:
--------------------------------------------------------------------------------
1 | ../symfony/var-dumper/Resources/bin/var-dump-server
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | tidelift: "packagist/brick/math"
2 |
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/SECURITY.md
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/psalm-baseline.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/psalm-baseline.xml
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/psalm.xml
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/src/BigDecimal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/src/BigDecimal.php
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/src/BigInteger.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/src/BigInteger.php
--------------------------------------------------------------------------------
/part 47/vendor/brick/math/src/BigNumber.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/brick/math/src/BigNumber.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/autoload_files.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/autoload_psr4.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/autoload_static.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/autoload_static.php
--------------------------------------------------------------------------------
/part 47/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/inflector/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/inflector/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/inflector/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/inflector/README.md
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/instantiator/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/instantiator/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/lexer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/lexer/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/lexer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/lexer/README.md
--------------------------------------------------------------------------------
/part 47/vendor/doctrine/lexer/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/doctrine/lexer/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/facade/flare-client-php/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: spatie
2 |
--------------------------------------------------------------------------------
/part 47/vendor/facade/ignition/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/facade/ignition/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/facade/ignition/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/facade/ignition/LICENSE.md
--------------------------------------------------------------------------------
/part 47/vendor/facade/ignition/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/facade/ignition/README.md
--------------------------------------------------------------------------------
/part 47/vendor/facade/ignition/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/facade/ignition/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/facade/ignition/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/facade/ignition/package.json
--------------------------------------------------------------------------------
/part 47/vendor/fideloper/proxy/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/fideloper/proxy/LICENSE.md
--------------------------------------------------------------------------------
/part 47/vendor/fideloper/proxy/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/fideloper/proxy/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/filp/whoops/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/filp/whoops/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/filp/whoops/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/filp/whoops/LICENSE.md
--------------------------------------------------------------------------------
/part 47/vendor/filp/whoops/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/filp/whoops/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/fzaninotto/faker/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/fzaninotto/faker/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/fzaninotto/faker/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/fzaninotto/faker/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/fzaninotto/faker/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/fzaninotto/faker/readme.md
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/guzzle/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/guzzle/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/guzzle/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/guzzle/Dockerfile
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/guzzle/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/guzzle/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/guzzle/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/guzzle/README.md
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/promises/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/promises/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/promises/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/promises/Makefile
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/promises/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/promises/README.md
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/psr7/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/psr7/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/psr7/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/psr7/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/psr7/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/psr7/README.md
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/psr7/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/psr7/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/guzzlehttp/psr7/src/Uri.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/guzzlehttp/psr7/src/Uri.php
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/.coveralls.yml:
--------------------------------------------------------------------------------
1 | src_dir: hamcrest
2 |
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 |
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt:
--------------------------------------------------------------------------------
1 | }
2 |
--------------------------------------------------------------------------------
/part 47/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt:
--------------------------------------------------------------------------------
1 |
2 | namespace Hamcrest;
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/framework/LICENSE.md
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/framework/README.md
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/laravel/tinker/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/tinker/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/laravel/tinker/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/tinker/LICENSE.md
--------------------------------------------------------------------------------
/part 47/vendor/laravel/tinker/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/tinker/README.md
--------------------------------------------------------------------------------
/part 47/vendor/laravel/tinker/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/laravel/tinker/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/league/commonmark/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/commonmark/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/league/commonmark/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/commonmark/README.md
--------------------------------------------------------------------------------
/part 47/vendor/league/flysystem/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/flysystem/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/league/flysystem/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/flysystem/SECURITY.md
--------------------------------------------------------------------------------
/part 47/vendor/league/flysystem/src/File.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/flysystem/src/File.php
--------------------------------------------------------------------------------
/part 47/vendor/league/flysystem/src/Util.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/league/flysystem/src/Util.php
--------------------------------------------------------------------------------
/part 47/vendor/mockery/mockery/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/mockery/mockery/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/mockery/mockery/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/mockery/mockery/README.md
--------------------------------------------------------------------------------
/part 47/vendor/mockery/mockery/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/mockery/mockery/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/mockery/mockery/docs/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/mockery/mockery/docs/conf.py
--------------------------------------------------------------------------------
/part 47/vendor/monolog/monolog/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/monolog/monolog/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/monolog/monolog/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/monolog/monolog/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/monolog/monolog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/monolog/monolog/README.md
--------------------------------------------------------------------------------
/part 47/vendor/monolog/monolog/UPGRADE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/monolog/monolog/UPGRADE.md
--------------------------------------------------------------------------------
/part 47/vendor/monolog/monolog/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/monolog/monolog/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/myclabs/deep-copy/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/myclabs/deep-copy/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/myclabs/deep-copy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/myclabs/deep-copy/README.md
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/bin/carbon:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/bin/carbon
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/bin/carbon.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/bin/carbon.bat
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/contributing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/contributing.md
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/extension.neon:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/extension.neon
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/phpmd.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/phpmd.xml
--------------------------------------------------------------------------------
/part 47/vendor/nesbot/carbon/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nesbot/carbon/readme.md
--------------------------------------------------------------------------------
/part 47/vendor/nikic/php-parser/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nikic/php-parser/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/nikic/php-parser/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nikic/php-parser/README.md
--------------------------------------------------------------------------------
/part 47/vendor/nunomaduro/collision/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/nunomaduro/collision/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/NOTICE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/NOTICE
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/README.md
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/autoload.php
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/functions.php
--------------------------------------------------------------------------------
/part 47/vendor/opis/closure/src/Analyzer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/opis/closure/src/Analyzer.php
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/.travis.yml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/README.md
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/phive.xml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/manifest/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/manifest/phpunit.xml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/.travis.yml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/README.md
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/phive.xml
--------------------------------------------------------------------------------
/part 47/vendor/phar-io/version/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phar-io/version/phpunit.xml
--------------------------------------------------------------------------------
/part 47/vendor/phpoption/phpoption/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phpoption/phpoption/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/phpspec/prophecy/CHANGES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phpspec/prophecy/CHANGES.md
--------------------------------------------------------------------------------
/part 47/vendor/phpspec/prophecy/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phpspec/prophecy/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/phpspec/prophecy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/phpspec/prophecy/README.md
--------------------------------------------------------------------------------
/part 47/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | /tools export-ignore
2 |
3 | *.php diff=php
4 |
--------------------------------------------------------------------------------
/part 47/vendor/phpunit/php-code-coverage/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: sebastianbergmann
2 |
--------------------------------------------------------------------------------
/part 47/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/vendor/phpunit/php-code-coverage/tests/_files/Crash.php:
--------------------------------------------------------------------------------
1 | 0);
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/actionscript/method-call.txt:
--------------------------------------------------------------------------------
1 | x.get(0);
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/clojure/symbols-numbers.txt:
--------------------------------------------------------------------------------
1 | (def +x [(a 1) +2 -3.0 y-5])
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/cpp/primitive-types.txt:
--------------------------------------------------------------------------------
1 | const uint64_t MAX_INT_64;
2 |
3 | struct position_tag;
4 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt:
--------------------------------------------------------------------------------
1 | a_production = nonterminal ;
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.txt:
--------------------------------------------------------------------------------
1 | a_production = nonterminal ;
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.txt:
--------------------------------------------------------------------------------
1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize)
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.txt:
--------------------------------------------------------------------------------
1 | {{> partial}}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.txt:
--------------------------------------------------------------------------------
1 | {{abc}}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/handlebars/sub-expressions.txt:
--------------------------------------------------------------------------------
1 | {{helper (subExpression 1 2)}}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.txt:
--------------------------------------------------------------------------------
1 | {{{raw}}}
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/ini/variable.txt:
--------------------------------------------------------------------------------
1 | memory_limit = ${PHP_MEMORY_LIMIT}
2 | key = $VAR1
3 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/javascript/method-call.expect.txt:
--------------------------------------------------------------------------------
1 | x.continue(0);
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/javascript/method-call.txt:
--------------------------------------------------------------------------------
1 | x.continue(0);
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/javascript/shebang.txt:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | var a = 1;
4 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/python/function-header.txt:
--------------------------------------------------------------------------------
1 | def f(x: int) -> None:
2 | pass
3 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.txt:
--------------------------------------------------------------------------------
1 | > foo
2 | > /bin/sh
3 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/sql/numeric-types.txt:
--------------------------------------------------------------------------------
1 | SELECT CAST(32768 AS TINYINT) FROM VALUES('dummy');
2 |
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt:
--------------------------------------------------------------------------------
1 | {{ "string with spaces"|url_encode }}
--------------------------------------------------------------------------------
/part 47/vendor/scrivo/highlight.php/test/special/tabreplace.txt:
--------------------------------------------------------------------------------
1 | for x in [1, 2, 3]:
2 | count(x)
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/code-unit-reverse-lookup/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 |
5 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/comparator/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/comparator/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/comparator/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/.php_cs.dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/.php_cs.dist
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/.travis.yml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/ChangeLog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/ChangeLog.md
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/README.md
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/phpunit.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/src/Chunk.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/src/Chunk.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/src/Diff.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/src/Diff.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/src/Differ.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/src/Differ.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/src/Line.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/src/Line.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/src/Parser.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/diff/src/Parser.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/tests/fixtures/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt:
--------------------------------------------------------------------------------
1 | a
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/diff/tests/fixtures/out/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/environment/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: sebastianbergmann
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/environment/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/environment/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/exporter/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: s_bergmann
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/exporter/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/exporter/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/exporter/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/exporter/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/exporter/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/exporter/README.md
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/exporter/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/exporter/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/object-reflector/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/recursion-context/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.gitattributes:
--------------------------------------------------------------------------------
1 | /tools export-ignore
2 |
3 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: s_bergmann
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.idea/misc.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.idea/misc.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.idea/php.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.idea/php.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.idea/type.iml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.idea/type.iml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.idea/vcs.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.idea/vcs.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.php_cs.dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.php_cs.dist
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/.travis.yml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/ChangeLog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/ChangeLog.md
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/README.md
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/phive.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/phpunit.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/psalm.xml
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/type/src/Type.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/type/src/Type.php
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/version/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/version/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/version/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/version/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/sebastian/version/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/sebastian/version/README.md
--------------------------------------------------------------------------------
/part 47/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 47/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl:
--------------------------------------------------------------------------------
1 | D42DA34CF90FA0DE
2 |
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/Cursor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/Cursor.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/Terminal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/Terminal.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/console/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/console/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/css-selector/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/css-selector/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/deprecation-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 47/vendor/symfony/error-handler/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/error-handler/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/event-dispatcher-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/Finder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/Finder.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/Gitignore.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/Gitignore.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/Glob.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/Glob.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/finder/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/finder/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/http-kernel/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/http-kernel/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/http-kernel/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/http-kernel/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/Address.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/Address.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/Crypto/SMime.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/Crypto/SMime.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/Email.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/Email.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/Message.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/Message.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/MimeTypes.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/MimeTypes.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/RawMessage.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/RawMessage.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/mime/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/mime/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/process/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/process/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/process/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/process/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/process/Process.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/process/Process.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/process/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/process/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/process/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/process/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/Route.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/Route.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/Router.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/Router.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/routing/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/routing/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/service-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/.gitattributes
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/ByteString.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/ByteString.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/LazyString.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/LazyString.php
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/string/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/string/composer.json
--------------------------------------------------------------------------------
/part 47/vendor/symfony/translation-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 47/vendor/symfony/translation/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/translation/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/translation/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/translation/README.md
--------------------------------------------------------------------------------
/part 47/vendor/symfony/var-dumper/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/var-dumper/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/symfony/var-dumper/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/symfony/var-dumper/README.md
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/.gitignore
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/.php_cs
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/.travis.yml
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/README.md
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/build.xml
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/phive.xml
--------------------------------------------------------------------------------
/part 47/vendor/theseer/tokenizer/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/theseer/tokenizer/phpunit.xml
--------------------------------------------------------------------------------
/part 47/vendor/vlucas/phpdotenv/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/vlucas/phpdotenv/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/voku/portable-ascii/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/voku/portable-ascii/README.md
--------------------------------------------------------------------------------
/part 47/vendor/webmozart/assert/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/webmozart/assert/CHANGELOG.md
--------------------------------------------------------------------------------
/part 47/vendor/webmozart/assert/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/webmozart/assert/LICENSE
--------------------------------------------------------------------------------
/part 47/vendor/webmozart/assert/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/webmozart/assert/README.md
--------------------------------------------------------------------------------
/part 47/vendor/webmozart/assert/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/vendor/webmozart/assert/psalm.xml
--------------------------------------------------------------------------------
/part 47/webpack.mix.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 47/webpack.mix.js
--------------------------------------------------------------------------------
/part 50/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/.DS_Store
--------------------------------------------------------------------------------
/part 50/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/README.md
--------------------------------------------------------------------------------
/part 50/app/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/.DS_Store
--------------------------------------------------------------------------------
/part 50/app/Blog.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Blog.php
--------------------------------------------------------------------------------
/part 50/app/Blogcategory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Blogcategory.php
--------------------------------------------------------------------------------
/part 50/app/Blogtag.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Blogtag.php
--------------------------------------------------------------------------------
/part 50/app/Category.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Category.php
--------------------------------------------------------------------------------
/part 50/app/Console/Kernel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Console/Kernel.php
--------------------------------------------------------------------------------
/part 50/app/Exceptions/Handler.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Exceptions/Handler.php
--------------------------------------------------------------------------------
/part 50/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Controllers/Controller.php
--------------------------------------------------------------------------------
/part 50/app/Http/Kernel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Kernel.php
--------------------------------------------------------------------------------
/part 50/app/Http/Middleware/Authenticate.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Middleware/Authenticate.php
--------------------------------------------------------------------------------
/part 50/app/Http/Middleware/TrimStrings.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Middleware/TrimStrings.php
--------------------------------------------------------------------------------
/part 50/app/Http/Middleware/TrustHosts.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Middleware/TrustHosts.php
--------------------------------------------------------------------------------
/part 50/app/Http/Middleware/TrustProxies.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Http/Middleware/TrustProxies.php
--------------------------------------------------------------------------------
/part 50/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Providers/AppServiceProvider.php
--------------------------------------------------------------------------------
/part 50/app/Role.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Role.php
--------------------------------------------------------------------------------
/part 50/app/Tag.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/Tag.php
--------------------------------------------------------------------------------
/part 50/app/User.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/app/User.php
--------------------------------------------------------------------------------
/part 50/artisan:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/artisan
--------------------------------------------------------------------------------
/part 50/bootstrap/app.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/bootstrap/app.php
--------------------------------------------------------------------------------
/part 50/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/composer.json
--------------------------------------------------------------------------------
/part 50/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/composer.lock
--------------------------------------------------------------------------------
/part 50/config/app.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/app.php
--------------------------------------------------------------------------------
/part 50/config/auth.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/auth.php
--------------------------------------------------------------------------------
/part 50/config/broadcasting.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/broadcasting.php
--------------------------------------------------------------------------------
/part 50/config/cache.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/cache.php
--------------------------------------------------------------------------------
/part 50/config/cors.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/cors.php
--------------------------------------------------------------------------------
/part 50/config/database.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/database.php
--------------------------------------------------------------------------------
/part 50/config/filesystems.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/filesystems.php
--------------------------------------------------------------------------------
/part 50/config/hashing.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/hashing.php
--------------------------------------------------------------------------------
/part 50/config/logging.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/logging.php
--------------------------------------------------------------------------------
/part 50/config/mail.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/mail.php
--------------------------------------------------------------------------------
/part 50/config/queue.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/queue.php
--------------------------------------------------------------------------------
/part 50/config/services.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/services.php
--------------------------------------------------------------------------------
/part 50/config/session.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/session.php
--------------------------------------------------------------------------------
/part 50/config/view.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/config/view.php
--------------------------------------------------------------------------------
/part 50/database/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/database/.gitignore
--------------------------------------------------------------------------------
/part 50/database/factories/UserFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/database/factories/UserFactory.php
--------------------------------------------------------------------------------
/part 50/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/database/seeds/DatabaseSeeder.php
--------------------------------------------------------------------------------
/part 50/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/package-lock.json
--------------------------------------------------------------------------------
/part 50/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/package.json
--------------------------------------------------------------------------------
/part 50/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/phpunit.xml
--------------------------------------------------------------------------------
/part 50/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/.DS_Store
--------------------------------------------------------------------------------
/part 50/public/.htaccess:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/.htaccess
--------------------------------------------------------------------------------
/part 50/public/css/all.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/all.css
--------------------------------------------------------------------------------
/part 50/public/css/app.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/public/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/bootstrap.min.css
--------------------------------------------------------------------------------
/part 50/public/css/carousel.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/carousel.css
--------------------------------------------------------------------------------
/part 50/public/css/common.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/common.css
--------------------------------------------------------------------------------
/part 50/public/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/main.css
--------------------------------------------------------------------------------
/part 50/public/css/responsive.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/css/responsive.css
--------------------------------------------------------------------------------
/part 50/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/public/img/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/img/.DS_Store
--------------------------------------------------------------------------------
/part 50/public/img/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/img/banner.jpg
--------------------------------------------------------------------------------
/part 50/public/index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/index.php
--------------------------------------------------------------------------------
/part 50/public/js/app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/js/app.js
--------------------------------------------------------------------------------
/part 50/public/mix-manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/public/mix-manifest.json
--------------------------------------------------------------------------------
/part 50/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/part 50/resources/js/app.js:
--------------------------------------------------------------------------------
1 | require('./bootstrap');
2 |
--------------------------------------------------------------------------------
/part 50/resources/js/bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/js/bootstrap.js
--------------------------------------------------------------------------------
/part 50/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/lang/en/auth.php
--------------------------------------------------------------------------------
/part 50/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/lang/en/pagination.php
--------------------------------------------------------------------------------
/part 50/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/lang/en/passwords.php
--------------------------------------------------------------------------------
/part 50/resources/lang/en/validation.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/lang/en/validation.php
--------------------------------------------------------------------------------
/part 50/resources/sass/app.scss:
--------------------------------------------------------------------------------
1 | //
2 |
--------------------------------------------------------------------------------
/part 50/resources/views/blogsingle.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/views/blogsingle.blade.php
--------------------------------------------------------------------------------
/part 50/resources/views/home.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/views/home.blade.php
--------------------------------------------------------------------------------
/part 50/resources/views/layout/app.blade.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/resources/views/layout/app.blade.php
--------------------------------------------------------------------------------
/part 50/resources/views/partials/header.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/part 50/routes/api.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/routes/api.php
--------------------------------------------------------------------------------
/part 50/routes/channels.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/routes/channels.php
--------------------------------------------------------------------------------
/part 50/routes/console.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/routes/console.php
--------------------------------------------------------------------------------
/part 50/routes/web.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/routes/web.php
--------------------------------------------------------------------------------
/part 50/server.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/server.php
--------------------------------------------------------------------------------
/part 50/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/part 50/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/debugbar/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/framework/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/storage/framework/.gitignore
--------------------------------------------------------------------------------
/part 50/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/part 50/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/part 50/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/tests/CreatesApplication.php
--------------------------------------------------------------------------------
/part 50/tests/Feature/ExampleTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/tests/Feature/ExampleTest.php
--------------------------------------------------------------------------------
/part 50/tests/TestCase.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/tests/TestCase.php
--------------------------------------------------------------------------------
/part 50/tests/Unit/ExampleTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/tests/Unit/ExampleTest.php
--------------------------------------------------------------------------------
/part 50/vendor/asm89/stack-cors/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/asm89/stack-cors/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/asm89/stack-cors/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/asm89/stack-cors/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/asm89/stack-cors/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/asm89/stack-cors/README.md
--------------------------------------------------------------------------------
/part 50/vendor/asm89/stack-cors/src/Cors.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/asm89/stack-cors/src/Cors.php
--------------------------------------------------------------------------------
/part 50/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/autoload.php
--------------------------------------------------------------------------------
/part 50/vendor/bin/carbon:
--------------------------------------------------------------------------------
1 | ../nesbot/carbon/bin/carbon
--------------------------------------------------------------------------------
/part 50/vendor/bin/commonmark:
--------------------------------------------------------------------------------
1 | ../league/commonmark/bin/commonmark
--------------------------------------------------------------------------------
/part 50/vendor/bin/php-parse:
--------------------------------------------------------------------------------
1 | ../nikic/php-parser/bin/php-parse
--------------------------------------------------------------------------------
/part 50/vendor/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../phpunit/phpunit/phpunit
--------------------------------------------------------------------------------
/part 50/vendor/bin/psysh:
--------------------------------------------------------------------------------
1 | ../psy/psysh/bin/psysh
--------------------------------------------------------------------------------
/part 50/vendor/bin/var-dump-server:
--------------------------------------------------------------------------------
1 | ../symfony/var-dumper/Resources/bin/var-dump-server
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | tidelift: "packagist/brick/math"
2 |
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/SECURITY.md
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/psalm-baseline.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/psalm-baseline.xml
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/psalm.xml
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/src/BigDecimal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/src/BigDecimal.php
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/src/BigInteger.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/src/BigInteger.php
--------------------------------------------------------------------------------
/part 50/vendor/brick/math/src/BigNumber.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/brick/math/src/BigNumber.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/autoload_files.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/autoload_psr4.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/autoload_static.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/autoload_static.php
--------------------------------------------------------------------------------
/part 50/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/composer/installed.json
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/inflector/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/inflector/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/inflector/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/inflector/README.md
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/instantiator/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/instantiator/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/lexer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/lexer/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/lexer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/lexer/README.md
--------------------------------------------------------------------------------
/part 50/vendor/doctrine/lexer/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/doctrine/lexer/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/facade/flare-client-php/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: spatie
2 |
--------------------------------------------------------------------------------
/part 50/vendor/facade/ignition/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/facade/ignition/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/facade/ignition/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/facade/ignition/LICENSE.md
--------------------------------------------------------------------------------
/part 50/vendor/facade/ignition/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/facade/ignition/README.md
--------------------------------------------------------------------------------
/part 50/vendor/facade/ignition/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/facade/ignition/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/facade/ignition/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/facade/ignition/package.json
--------------------------------------------------------------------------------
/part 50/vendor/fideloper/proxy/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/fideloper/proxy/LICENSE.md
--------------------------------------------------------------------------------
/part 50/vendor/fideloper/proxy/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/fideloper/proxy/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/filp/whoops/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/filp/whoops/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/filp/whoops/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/filp/whoops/LICENSE.md
--------------------------------------------------------------------------------
/part 50/vendor/filp/whoops/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/filp/whoops/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/fzaninotto/faker/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/fzaninotto/faker/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/fzaninotto/faker/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/fzaninotto/faker/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/fzaninotto/faker/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/fzaninotto/faker/readme.md
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/guzzle/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/guzzle/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/guzzle/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/guzzle/Dockerfile
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/guzzle/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/guzzle/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/guzzle/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/guzzle/README.md
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/promises/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/promises/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/promises/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/promises/Makefile
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/promises/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/promises/README.md
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/psr7/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/psr7/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/psr7/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/psr7/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/psr7/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/psr7/README.md
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/psr7/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/psr7/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/guzzlehttp/psr7/src/Uri.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/guzzlehttp/psr7/src/Uri.php
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/.coveralls.yml:
--------------------------------------------------------------------------------
1 | src_dir: hamcrest
2 |
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 |
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt:
--------------------------------------------------------------------------------
1 | }
2 |
--------------------------------------------------------------------------------
/part 50/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt:
--------------------------------------------------------------------------------
1 |
2 | namespace Hamcrest;
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/framework/LICENSE.md
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/framework/README.md
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/laravel/tinker/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/tinker/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/laravel/tinker/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/tinker/LICENSE.md
--------------------------------------------------------------------------------
/part 50/vendor/laravel/tinker/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/tinker/README.md
--------------------------------------------------------------------------------
/part 50/vendor/laravel/tinker/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/laravel/tinker/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/league/commonmark/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/commonmark/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/league/commonmark/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/commonmark/README.md
--------------------------------------------------------------------------------
/part 50/vendor/league/flysystem/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/flysystem/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/league/flysystem/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/flysystem/SECURITY.md
--------------------------------------------------------------------------------
/part 50/vendor/league/flysystem/src/File.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/flysystem/src/File.php
--------------------------------------------------------------------------------
/part 50/vendor/league/flysystem/src/Util.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/league/flysystem/src/Util.php
--------------------------------------------------------------------------------
/part 50/vendor/maximebf/debugbar/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/maximebf/debugbar/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/mockery/mockery/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/mockery/mockery/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/mockery/mockery/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/mockery/mockery/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/mockery/mockery/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/mockery/mockery/README.md
--------------------------------------------------------------------------------
/part 50/vendor/mockery/mockery/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/mockery/mockery/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/mockery/mockery/docs/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/mockery/mockery/docs/conf.py
--------------------------------------------------------------------------------
/part 50/vendor/monolog/monolog/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/monolog/monolog/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/monolog/monolog/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/monolog/monolog/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/monolog/monolog/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/monolog/monolog/README.md
--------------------------------------------------------------------------------
/part 50/vendor/monolog/monolog/UPGRADE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/monolog/monolog/UPGRADE.md
--------------------------------------------------------------------------------
/part 50/vendor/monolog/monolog/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/monolog/monolog/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/myclabs/deep-copy/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/myclabs/deep-copy/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/myclabs/deep-copy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/myclabs/deep-copy/README.md
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/bin/carbon:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/bin/carbon
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/bin/carbon.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/bin/carbon.bat
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/contributing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/contributing.md
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/extension.neon:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/extension.neon
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/phpmd.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/phpmd.xml
--------------------------------------------------------------------------------
/part 50/vendor/nesbot/carbon/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nesbot/carbon/readme.md
--------------------------------------------------------------------------------
/part 50/vendor/nikic/php-parser/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nikic/php-parser/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/nikic/php-parser/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nikic/php-parser/README.md
--------------------------------------------------------------------------------
/part 50/vendor/nunomaduro/collision/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/nunomaduro/collision/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/NOTICE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/NOTICE
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/README.md
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/autoload.php
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/functions.php
--------------------------------------------------------------------------------
/part 50/vendor/opis/closure/src/Analyzer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/opis/closure/src/Analyzer.php
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/.gitignore
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/.travis.yml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/README.md
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/build.xml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/phive.xml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/manifest/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/manifest/phpunit.xml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/.gitignore
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/.travis.yml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/README.md
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/build.xml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/phive.xml
--------------------------------------------------------------------------------
/part 50/vendor/phar-io/version/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phar-io/version/phpunit.xml
--------------------------------------------------------------------------------
/part 50/vendor/phpoption/phpoption/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phpoption/phpoption/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/phpspec/prophecy/CHANGES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phpspec/prophecy/CHANGES.md
--------------------------------------------------------------------------------
/part 50/vendor/phpspec/prophecy/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phpspec/prophecy/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/phpspec/prophecy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/phpspec/prophecy/README.md
--------------------------------------------------------------------------------
/part 50/vendor/phpunit/php-code-coverage/.gitattributes:
--------------------------------------------------------------------------------
1 | /tools export-ignore
2 |
3 | *.php diff=php
4 |
--------------------------------------------------------------------------------
/part 50/vendor/phpunit/php-code-coverage/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: sebastianbergmann
2 |
--------------------------------------------------------------------------------
/part 50/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/vendor/phpunit/php-code-coverage/tests/_files/Crash.php:
--------------------------------------------------------------------------------
1 | 0);
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/actionscript/method-call.txt:
--------------------------------------------------------------------------------
1 | x.get(0);
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/clojure/symbols-numbers.txt:
--------------------------------------------------------------------------------
1 | (def +x [(a 1) +2 -3.0 y-5])
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/cpp/primitive-types.txt:
--------------------------------------------------------------------------------
1 | const uint64_t MAX_INT_64;
2 |
3 | struct position_tag;
4 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt:
--------------------------------------------------------------------------------
1 | a_production = nonterminal ;
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.txt:
--------------------------------------------------------------------------------
1 | a_production = nonterminal ;
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.txt:
--------------------------------------------------------------------------------
1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize)
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.txt:
--------------------------------------------------------------------------------
1 | {{> partial}}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.txt:
--------------------------------------------------------------------------------
1 | {{abc}}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/handlebars/sub-expressions.txt:
--------------------------------------------------------------------------------
1 | {{helper (subExpression 1 2)}}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.txt:
--------------------------------------------------------------------------------
1 | {{{raw}}}
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/ini/variable.txt:
--------------------------------------------------------------------------------
1 | memory_limit = ${PHP_MEMORY_LIMIT}
2 | key = $VAR1
3 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/javascript/method-call.expect.txt:
--------------------------------------------------------------------------------
1 | x.continue(0);
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/javascript/method-call.txt:
--------------------------------------------------------------------------------
1 | x.continue(0);
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/javascript/shebang.txt:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 |
3 | var a = 1;
4 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/python/function-header.txt:
--------------------------------------------------------------------------------
1 | def f(x: int) -> None:
2 | pass
3 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.txt:
--------------------------------------------------------------------------------
1 | > foo
2 | > /bin/sh
3 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/sql/numeric-types.txt:
--------------------------------------------------------------------------------
1 | SELECT CAST(32768 AS TINYINT) FROM VALUES('dummy');
2 |
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt:
--------------------------------------------------------------------------------
1 | {{ "string with spaces"|url_encode }}
--------------------------------------------------------------------------------
/part 50/vendor/scrivo/highlight.php/test/special/tabreplace.txt:
--------------------------------------------------------------------------------
1 | for x in [1, 2, 3]:
2 | count(x)
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/code-unit-reverse-lookup/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 |
5 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/comparator/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/.gitignore
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/.travis.yml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/README.md
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/build.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/diff/phpunit.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/tests/fixtures/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt:
--------------------------------------------------------------------------------
1 | a
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/diff/tests/fixtures/out/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/environment/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: sebastianbergmann
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/exporter/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: s_bergmann
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/exporter/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/exporter/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/object-reflector/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/recursion-context/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/.gitattributes:
--------------------------------------------------------------------------------
1 | /tools export-ignore
2 |
3 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | patreon: s_bergmann
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/.gitignore
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/.travis.yml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/README.md
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/build.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/build.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/phive.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/phive.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/phpunit.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/phpunit.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/type/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/type/psalm.xml
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/version/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/version/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/sebastian/version/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/sebastian/version/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/part 50/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl:
--------------------------------------------------------------------------------
1 | D42DA34CF90FA0DE
2 |
--------------------------------------------------------------------------------
/part 50/vendor/symfony/console/Cursor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/console/Cursor.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/console/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/console/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/console/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/console/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/debug/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/debug/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/debug/Debug.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/debug/Debug.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/debug/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/debug/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/debug/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/debug/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/deprecation-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 50/vendor/symfony/event-dispatcher-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 50/vendor/symfony/finder/Finder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/finder/Finder.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/finder/Glob.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/finder/Glob.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/finder/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/finder/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/finder/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/finder/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/Address.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/Address.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/CHANGELOG.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/Email.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/Email.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/Message.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/Message.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/MimeTypes.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/MimeTypes.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/mime/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/mime/composer.json
--------------------------------------------------------------------------------
/part 50/vendor/symfony/process/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/process/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/process/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/process/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/routing/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/routing/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/routing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/routing/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/routing/Route.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/routing/Route.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/routing/Router.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/routing/Router.php
--------------------------------------------------------------------------------
/part 50/vendor/symfony/service-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 50/vendor/symfony/string/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/string/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/symfony/string/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/string/README.md
--------------------------------------------------------------------------------
/part 50/vendor/symfony/translation-contracts/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/part 50/vendor/symfony/var-dumper/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/symfony/var-dumper/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/theseer/tokenizer/.php_cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/theseer/tokenizer/.php_cs
--------------------------------------------------------------------------------
/part 50/vendor/theseer/tokenizer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/theseer/tokenizer/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/vlucas/phpdotenv/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/vlucas/phpdotenv/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/webmozart/assert/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/webmozart/assert/LICENSE
--------------------------------------------------------------------------------
/part 50/vendor/webmozart/assert/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/webmozart/assert/README.md
--------------------------------------------------------------------------------
/part 50/vendor/webmozart/assert/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/vendor/webmozart/assert/psalm.xml
--------------------------------------------------------------------------------
/part 50/webpack.mix.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hkmsadek/fullstack-laravel-vue-frontend/HEAD/part 50/webpack.mix.js
--------------------------------------------------------------------------------