├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ └── PostController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ └── Post.php ├── Post.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 ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── PostFactory.php │ └── 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 │ └── 2020_02_22_023237_create_posts_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ └── welcome.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 │ └── Http │ │ └── Controllers │ │ └── Api │ │ └── PostControllerTest.php └── TestCase.php ├── vendor ├── autoload.php ├── bin │ ├── carbon │ ├── commonmark │ ├── php-parse │ ├── phpunit │ ├── psysh │ └── var-dump-server ├── 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 │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── 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 │ │ ├── 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 │ │ ├── EmailValidator │ │ ├── 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 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── psalm.baseline.xml │ │ └── psalm.xml ├── facade │ ├── flare-client-php │ │ ├── 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 │ │ ├── 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 │ │ ├── .babelrc │ │ ├── .github │ │ └── workflows │ │ │ └── run-tests.yml │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── .styleci.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ ├── flare.php │ │ └── ignition.php │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── 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 │ │ │ ├── Packagist │ │ │ │ ├── Package.php │ │ │ │ └── Packagist.php │ │ │ └── StringComparator.php │ │ ├── Tabs │ │ │ └── Tab.php │ │ ├── Views │ │ │ ├── Compilers │ │ │ │ └── BladeSourceMapCompiler.php │ │ │ ├── Concerns │ │ │ │ └── CollectsViewExceptions.php │ │ │ └── Engines │ │ │ │ ├── CompilerEngine.php │ │ │ │ └── PhpEngine.php │ │ └── helpers.php │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ └── webpack.config.js ├── fideloper │ └── proxy │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── config │ │ └── trustedproxy.php │ │ └── src │ │ ├── TrustProxies.php │ │ └── TrustedProxyServiceProvider.php ├── filp │ └── whoops │ │ ├── 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 ├── fzaninotto │ └── faker │ │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ │ ├── .travis │ │ └── xdebug.sh │ │ ├── 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 ├── 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 ├── jakub-onderka │ ├── php-console-color │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── example.php │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ │ └── tests │ │ │ └── ConsoleColorTest.php │ └── php-console-highlighter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── examples │ │ ├── snippet.php │ │ ├── whole_file.php │ │ └── whole_file_line_numbers.php │ │ ├── phpunit.xml │ │ ├── src │ │ └── Highlighter.php │ │ └── tests │ │ └── HigligterTest.php ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── DetectsApplicationNamespace.php │ │ │ ├── Events │ │ │ │ ├── ArtisanStarting.php │ │ │ │ ├── CommandFinished.php │ │ │ │ ├── CommandStarting.php │ │ │ │ ├── ScheduledTaskFinished.php │ │ │ │ ├── ScheduledTaskSkipped.php │ │ │ │ └── ScheduledTaskStarting.php │ │ │ ├── GeneratorCommand.php │ │ │ ├── LICENSE.md │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── Scheduling │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── LICENSE.md │ │ │ ├── Mail │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ │ ├── AuthenticatesUsers.php │ │ │ │ ├── ConfirmsPasswords.php │ │ │ │ ├── RedirectsUsers.php │ │ │ │ ├── RegistersUsers.php │ │ │ │ ├── ResetsPasswords.php │ │ │ │ ├── SendsPasswordResetEmails.php │ │ │ │ ├── ThrottlesLogins.php │ │ │ │ ├── User.php │ │ │ │ └── VerifiesEmails.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 │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── ClosureCommand.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 │ │ │ │ ├── PresetCommand.php │ │ │ │ ├── Presets │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ ├── None.php │ │ │ │ │ ├── Preset.php │ │ │ │ │ ├── React.php │ │ │ │ │ ├── Vue.php │ │ │ │ │ ├── bootstrap-stubs │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── app.scss │ │ │ │ │ ├── none-stubs │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ ├── react-stubs │ │ │ │ │ │ ├── Example.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ └── vue-stubs │ │ │ │ │ │ ├── ExampleComponent.vue │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ ├── QueuedCommand.php │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── RouteClearCommand.php │ │ │ │ ├── RouteListCommand.php │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ ├── ServeCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── 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.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── observer.stub │ │ │ │ │ ├── pivot.model.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ └── unit-test.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 │ │ │ │ ├── Assert.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── Constraints │ │ │ │ │ ├── ArraySubset.php │ │ │ │ │ ├── HasInDatabase.php │ │ │ │ │ ├── SeeInOrder.php │ │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── PendingCommand.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestResponse.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 │ │ │ ├── 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 │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── Resources │ │ │ │ ├── CollectsResources.php │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ ├── DelegatesToResource.php │ │ │ │ ├── Json │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ ├── JsonResource.php │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ ├── Resource.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 │ │ │ ├── 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 │ │ │ ├── TransportManager.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── html │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ │ └── button.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 │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ └── button.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ ├── RouteFileRegistrar.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParameterBinder.php │ │ │ ├── RouteRegistrar.php │ │ │ ├── RouteSignatureParameters.php │ │ │ ├── RouteUrlGenerator.php │ │ │ ├── Router.php │ │ │ ├── RoutingServiceProvider.php │ │ │ ├── SortedMiddleware.php │ │ │ ├── UrlGenerator.php │ │ │ ├── ViewController.php │ │ │ └── composer.json │ │ │ ├── Session │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── HtmlString.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── LICENSE.md │ │ │ ├── LazyCollection.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.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 │ │ │ │ └── Tappable.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Compilers │ │ │ ├── BladeCompiler.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerInterface.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 │ │ │ ├── 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 │ │ │ ├── LICENSE.md │ │ │ ├── Middleware │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ └── tinker │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── tinker.php │ │ └── src │ │ ├── ClassAliasAutoloader.php │ │ ├── Console │ │ └── TinkerCommand.php │ │ ├── TinkerCaster.php │ │ └── TinkerServiceProvider.php ├── league │ ├── commonmark │ │ ├── .editorconfig │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG-0.x.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── commonmark │ │ ├── commonmark-banner.png │ │ ├── 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 │ │ │ ├── Exception │ │ │ └── UnexpectedEncodingException.php │ │ │ ├── Extension │ │ │ ├── Autolink │ │ │ │ ├── AutolinkExtension.php │ │ │ │ ├── EmailAutolinkProcessor.php │ │ │ │ ├── InlineMentionParser.php │ │ │ │ ├── README.md │ │ │ │ └── UrlAutolinkProcessor.php │ │ │ ├── CommonMarkCoreExtension.php │ │ │ ├── DisallowedRawHtml │ │ │ │ ├── DisallowedRawHtmlBlockRenderer.php │ │ │ │ ├── DisallowedRawHtmlExtension.php │ │ │ │ └── DisallowedRawHtmlInlineRenderer.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── ExternalLink │ │ │ │ ├── ExternalLinkExtension.php │ │ │ │ ├── ExternalLinkProcessor.php │ │ │ │ └── README.md │ │ │ ├── GithubFlavoredMarkdownExtension.php │ │ │ ├── InlinesOnly │ │ │ │ ├── ChildRenderer.php │ │ │ │ ├── InlinesOnlyExtension.php │ │ │ │ └── README.md │ │ │ ├── SmartPunct │ │ │ │ ├── PunctuationParser.php │ │ │ │ ├── Quote.php │ │ │ │ ├── QuoteParser.php │ │ │ │ ├── QuoteProcessor.php │ │ │ │ ├── QuoteRenderer.php │ │ │ │ ├── README.md │ │ │ │ └── SmartPunctExtension.php │ │ │ ├── Strikethrough │ │ │ │ ├── README.md │ │ │ │ ├── Strikethrough.php │ │ │ │ ├── StrikethroughDelimiterProcessor.php │ │ │ │ ├── StrikethroughExtension.php │ │ │ │ └── StrikethroughRenderer.php │ │ │ ├── Table │ │ │ │ ├── README.md │ │ │ │ ├── Table.php │ │ │ │ ├── TableCell.php │ │ │ │ ├── TableCellRenderer.php │ │ │ │ ├── TableExtension.php │ │ │ │ ├── TableParser.php │ │ │ │ ├── TableRenderer.php │ │ │ │ ├── TableRow.php │ │ │ │ ├── TableRowRenderer.php │ │ │ │ ├── TableSection.php │ │ │ │ └── TableSectionRenderer.php │ │ │ └── TaskList │ │ │ │ ├── README.md │ │ │ │ ├── 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 │ │ │ ├── Node │ │ │ ├── Node.php │ │ │ ├── NodeWalker.php │ │ │ └── NodeWalkerEvent.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 │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .phpstorm.meta.php │ │ ├── .scrutinizer.yml │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ ├── docker │ │ └── php56 │ │ │ └── Dockerfile │ │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── 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 │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── TestListenerForV5.php │ │ │ │ │ ├── TestListenerForV6.php │ │ │ │ │ ├── TestListenerForV7.php │ │ │ │ │ └── TestListenerTrait.php │ │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditionsForV7AndPrevious.php │ │ │ │ │ ├── MockeryPHPUnitIntegrationAssertPostConditionsForV8.php │ │ │ │ │ ├── MockeryTestCase.php │ │ │ │ │ ├── MockeryTestCaseSetUpForV7AndPrevious.php │ │ │ │ │ ├── MockeryTestCaseSetUpForV8.php │ │ │ │ │ └── TestListener.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 │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ ├── MockeryPHPUnitIntegrationTest.php │ │ │ │ └── TestListenerTest.php │ │ ├── AdhocTest.php │ │ ├── AllowsExpectsSyntaxTest.php │ │ ├── CallableSpyTest.php │ │ ├── ContainerTest.php │ │ ├── DemeterChainTest.php │ │ ├── DummyClasses │ │ │ ├── DemeterChain.php │ │ │ └── Namespaced.php │ │ ├── ExpectationTest.php │ │ ├── Fixtures │ │ │ ├── ClassWithAllLowerCaseMethod.php │ │ │ ├── ClassWithConstants.php │ │ │ ├── EmptyTestCaseV5.php │ │ │ ├── EmptyTestCaseV6.php │ │ │ ├── EmptyTestCaseV7.php │ │ │ ├── MethodWithHHVMReturnType.php │ │ │ ├── MethodWithIterableTypeHints.php │ │ │ ├── MethodWithNullableReturnType.php │ │ │ ├── MethodWithNullableTypedParameter.php │ │ │ ├── MethodWithParametersWithDefaultValues.php │ │ │ ├── MethodWithVoidReturnType.php │ │ │ └── SemiReservedWordsAsMethods.php │ │ ├── Generator │ │ │ ├── DefinedTargetClassTest.php │ │ │ ├── MockConfigurationBuilderTest.php │ │ │ ├── MockConfigurationTest.php │ │ │ └── StringManipulation │ │ │ │ └── Pass │ │ │ │ ├── CallTypeHintPassTest.php │ │ │ │ ├── ClassNamePassTest.php │ │ │ │ ├── ClassPassTest.php │ │ │ │ ├── ConstantsPassTest.php │ │ │ │ ├── InstanceMockPassTest.php │ │ │ │ └── InterfacePassTest.php │ │ ├── GlobalHelpersTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── Loader │ │ │ ├── EvalLoaderTest.php │ │ │ ├── LoaderTestCase.php │ │ │ └── RequireLoaderTest.php │ │ ├── Matcher │ │ │ ├── PHPUnitConstraintTest.php │ │ │ └── SubsetTest.php │ │ ├── MockClassWithFinalWakeupTest.php │ │ ├── MockClassWithMethodOverloadingTest.php │ │ ├── MockClassWithUnknownTypeHintTest.php │ │ ├── MockTest.php │ │ ├── MockeryCanMockClassesWithSemiReservedWordsTest.php │ │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php │ │ ├── MockingAllLowerCasedMethodsTest.php │ │ ├── MockingClassConstantsTest.php │ │ ├── MockingHHVMMethodsTest.php │ │ ├── MockingMethodsWithIterableTypeHintsTest.php │ │ ├── MockingMethodsWithNullableParametersTest.php │ │ ├── MockingNullableMethodsTest.php │ │ ├── MockingProtectedMethodsTest.php │ │ ├── MockingStaticMethodsCalledObjectStyleTest.php │ │ ├── MockingVariadicArgumentsTest.php │ │ ├── MockingVoidMethodsTest.php │ │ ├── NamedMockTest.php │ │ ├── ProxyMockingTest.php │ │ ├── SpyTest.php │ │ ├── Stubs │ │ │ ├── Animal.php │ │ │ └── Habitat.php │ │ ├── TraitsTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ ├── PHP56 │ │ └── MockingOldStyleConstructorTest.php │ │ ├── PHP70 │ │ ├── Generator │ │ │ └── StringManipulation │ │ │ │ └── Pass │ │ │ │ └── MagicMethodTypeHintsPassTest.php │ │ └── MockingParameterAndReturnTypesTest.php │ │ └── PHP72 │ │ └── Php72LanguageFeaturesTest.php ├── monolog │ └── monolog │ │ ├── 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 │ │ ├── doc │ │ ├── clone.png │ │ ├── deep-clone.png │ │ ├── deep-copy.png │ │ └── graph.png │ │ └── 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 │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE.md │ │ ├── .multi-tester.yml │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── phpmd.xml │ │ ├── readme.md │ │ └── src │ │ └── Carbon │ │ ├── Carbon.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Exceptions │ │ ├── BadUnitException.php │ │ ├── InvalidDateException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ └── ParseErrorException.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 │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── Difference.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 │ │ ├── .gitattributes │ │ ├── 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 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Adapters │ │ ├── Laravel │ │ │ ├── CollisionServiceProvider.php │ │ │ ├── ExceptionHandler.php │ │ │ └── Inspector.php │ │ └── Phpunit │ │ │ └── Listener.php │ │ ├── ArgumentFormatter.php │ │ ├── Contracts │ │ ├── Adapters │ │ │ └── Phpunit │ │ │ │ └── Listener.php │ │ ├── ArgumentFormatter.php │ │ ├── Handler.php │ │ ├── Highlighter.php │ │ ├── Provider.php │ │ └── Writer.php │ │ ├── Handler.php │ │ ├── Highlighter.php │ │ ├── Provider.php │ │ └── Writer.php ├── opis │ └── closure │ │ ├── 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 ├── paragonie │ └── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ └── random.php │ │ ├── other │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml ├── 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 │ │ ├── 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 │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── composer.json │ │ ├── easy-coding-standard.neon │ │ ├── phive.xml │ │ ├── phpmd.xml.dist │ │ ├── phpstan.neon │ │ └── 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 │ │ ├── .github │ │ └── workflows │ │ │ └── push.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── composer-require-config.json │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phive.xml │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon │ │ ├── psalm.xml │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── AbstractList.php │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Collection.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.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 │ │ └── 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 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── BACKWARD_COMPATIBILITY_BREAK.md │ │ │ ├── BUG.md │ │ │ ├── FEATURE_REQUEST.md │ │ │ └── SUPPORT_QUESTION.md │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ ├── FAILING_TEST.md │ │ │ ├── FIX.md │ │ │ ├── IMPROVEMENT.md │ │ │ └── NEW_FEATURE.md │ │ └── workflows │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .phpstorm.meta.php │ │ ├── .psalm │ │ ├── baseline.xml │ │ ├── config.xml │ │ └── static-analysis.xml │ │ ├── .travis.yml │ │ ├── ChangeLog-8.5.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── 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 │ │ │ ├── XdebugFilterScriptGenerator.php │ │ │ ├── Xml.php │ │ │ └── XmlTestListRenderer.php │ │ └── tests │ │ ├── README.md │ │ ├── _files │ │ ├── 3194.php │ │ ├── 3530.wsdl │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTest.php │ │ ├── AbstractTrait.php │ │ ├── AbstractVariousIterableDataProviderTest.php │ │ ├── ActualOutputTest.php │ │ ├── AnInterface.php │ │ ├── AnInterfaceWithReturnType.php │ │ ├── AnotherInterface.php │ │ ├── ArrayAccessible.php │ │ ├── AssertionExample.php │ │ ├── AssertionExampleTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BankAccountTest2.php │ │ ├── Bar.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithAllPossibleReturnTypes.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithSelfTypeHint.php │ │ ├── ClassWithStaticMethod.php │ │ ├── ClassWithToString.php │ │ ├── ClassWithVariadicArgumentMethod.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CountConstraint.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassNothingTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageClassWithoutAnnotationsTest.php │ │ ├── CoverageCoversOverridesCoversNothingTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodNothingCoversMethod.php │ │ ├── CoverageMethodNothingTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNamespacedFunctionTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── CustomPrinter.php │ │ ├── DataProviderDebugTest.php │ │ ├── DataProviderDependencyTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderIssue2833 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderIssue2859 │ │ │ ├── phpunit.xml │ │ │ └── tests │ │ │ │ └── another │ │ │ │ └── TestWithDataProviderTest.php │ │ ├── DataProviderIssue2922 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DataproviderExecutionOrderTest.php │ │ ├── DataproviderExecutionOrderTest_result_cache.txt │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DoNoAssertionTestCase.php │ │ ├── DoesNotPerformAssertionsButPerformingAssertionsTest.php │ │ ├── DoubleTestCase.php │ │ ├── DummyBarTest.php │ │ ├── DummyException.php │ │ ├── DummyFooTest.php │ │ ├── DuplicateKeyDataProviderTest.php │ │ ├── EmptyDataProviderTest.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExampleTrait.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownAfterClassTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionInTestDetectedInTeardown.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── ExceptionWithThrowable.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FalsyConstraint.php │ │ ├── FatalTest.php │ │ ├── FinalClass.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── Go ogle-Sea.rch.wsdl │ │ ├── GoogleSearch.wsdl │ │ ├── IgnoreCodeCoverageClass.php │ │ ├── IgnoreCodeCoverageClassTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ ├── InterfaceWithStaticMethod.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockRunner.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── ModifiedConstructorTestCase.php │ │ ├── MultipleDataProviderTest.php │ │ ├── MyTestListener.php │ │ ├── NamedConstraint.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 │ │ ├── NamespaceCoveredFunction.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── NotPublicTestCase.php │ │ ├── NotSelfDescribingTest.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── NumericGroupAnnotationTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── ParseTestMethodAnnotationsMock.php │ │ ├── PartialMockTestClass.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── RouterTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── SeparateProcessesTest.php │ │ ├── Singleton.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ ├── StopOnErrorTestSuite.php │ │ ├── StopOnWarningTestSuite.php │ │ ├── StopsOnWarningTest.php │ │ ├── StringableClass.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestAutoreferenced.php │ │ ├── TestCaseWithExceptionInHook.php │ │ ├── TestGeneratorMaker.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestIteratorAggregate.php │ │ ├── TestIteratorAggregate2.php │ │ ├── TestProxyFixture.php │ │ ├── TestRisky.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWarning.php │ │ ├── TestWithAnnotations.php │ │ ├── TestWithDifferentNames.php │ │ ├── TestWithDifferentOutput.php │ │ ├── TestWithDifferentSizes.php │ │ ├── TestWithDifferentStatuses.php │ │ ├── TestWithTest.php │ │ ├── TestableCliTestDoxPrinter.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── TraitWithConstructor.php │ │ ├── TraversableMockTestInterface.php │ │ ├── TruthyConstraint.php │ │ ├── VariousDocblockDefinedDataProvider.php │ │ ├── VariousIterableDataProviderTest.php │ │ ├── WasRun.php │ │ ├── WrapperIteratorAggregate.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.columns.default.xml │ │ ├── configuration.defaulttestsuite.xml │ │ ├── configuration.one-file-suite.xml │ │ ├── configuration.suites.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_execution_order_options.xml │ │ ├── configuration_stop_on_defect.xml │ │ ├── configuration_stop_on_error.xml │ │ ├── configuration_stop_on_incomplete.xml │ │ ├── configuration_stop_on_warning.xml │ │ ├── configuration_testdox.xml │ │ ├── configuration_testdox_printerClass.xml │ │ ├── configuration_whitelist.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── mock-object │ │ │ ├── AnotherClassUsingConfigurableMethods.php │ │ │ ├── ChildClass.php │ │ │ ├── ClassUsingConfigurableMethods.php │ │ │ ├── ClassWithImplicitProtocol.php │ │ │ ├── ClassWithoutParentButParentReturnType.php │ │ │ ├── MockClassGenerated.tpl │ │ │ ├── MockClassWithConfigurableMethods.php │ │ │ ├── MockTraitGenerated.tpl │ │ │ ├── ParentClass.php │ │ │ └── ReinitializeConfigurableMethods.php │ │ ├── namespace │ │ │ ├── someNamespaceA │ │ │ │ └── NamespacedClass.php │ │ │ └── someNamespaceB │ │ │ │ └── NamespacedClass.php │ │ ├── phpt-for-coverage.phpt │ │ ├── phpt-unsupported-section.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpunit-example-extension │ │ │ ├── phpunit.xml │ │ │ ├── tests │ │ │ │ └── OneTest.php │ │ │ └── tools │ │ │ │ └── phpunit.d │ │ │ │ └── phpunit-example-extension-3.0.3.phar │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ ├── basic │ │ ├── README.md │ │ ├── configuration.basic.xml │ │ └── unit │ │ │ ├── SetUpBeforeClassTest.php │ │ │ ├── SetUpTest.php │ │ │ ├── StatusTest.php │ │ │ └── TearDownAfterClassTest.php │ │ ├── bootstrap.php │ │ ├── end-to-end │ │ ├── _files │ │ │ ├── Extension.php │ │ │ ├── NullPrinter.php │ │ │ ├── expect_external.txt │ │ │ ├── phpt-env.expected.txt │ │ │ ├── phpt-expect-external-location-hint-example.phpt │ │ │ ├── phpt-expect-location-hint-example.phpt │ │ │ ├── phpt-skipif-location-hint-example.phpt │ │ │ └── phpt_external.php │ │ ├── abstract-test-class.phpt │ │ ├── assertion.phpt │ │ ├── cli │ │ │ ├── _files │ │ │ │ ├── MyCommand.php │ │ │ │ ├── output-cli-help-color.txt │ │ │ │ └── output-cli-usage.txt │ │ │ ├── columns-max.phpt │ │ │ ├── columns.phpt │ │ │ ├── deprecation-warning-with-class.phpt │ │ │ ├── generate-configuration.phpt │ │ │ ├── help-color.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── mycommand.phpt │ │ │ ├── options-after-arguments.phpt │ │ │ └── test-file-not-found.phpt │ │ ├── code-coverage-ignore.phpt │ │ ├── code-coverage-phpt.phpt │ │ ├── concrete-test-class.phpt │ │ ├── dataprovider-issue-2833.phpt │ │ ├── dataprovider-issue-2859.phpt │ │ ├── dataprovider-issue-2922.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── defaulttestsuite-using-testsuite.phpt │ │ ├── defaulttestsuite.phpt │ │ ├── disable-code-coverage-ignore.phpt │ │ ├── dump-xdebug-filter.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── execution-order │ │ │ ├── _files │ │ │ │ ├── ClonedDependencyTest.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── MultiDependencyTest.php │ │ │ │ ├── MultiDependencyTest_result_cache.txt │ │ │ │ ├── StackTest.php │ │ │ │ ├── TestWithDifferentDurations.php │ │ │ │ ├── TestWithDifferentDurations.phpunit.result.cache.txt │ │ │ │ └── order-by-duration.phpunit.xml │ │ │ ├── cache-result.phpt │ │ │ ├── defects-first-order-via-cli.phpt │ │ │ ├── dependencies-clone.phpt │ │ │ ├── dependencies-isolation.phpt │ │ │ ├── depends-as-parameter-with-isolation.phpt │ │ │ ├── depends-as-parameter.phpt │ │ │ ├── depends-multiple-parameter-with-isolation.phpt │ │ │ ├── depends-multiple-parameters.phpt │ │ │ ├── execution-order-options-via-config.phpt │ │ │ ├── order-by-default-invalid-via-cli.phpt │ │ │ ├── order-by-duration-via-cli.phpt │ │ │ ├── order-by-duration-via-phpunit-xml.phpt │ │ │ ├── repeat.phpt │ │ │ ├── stop-on-defect-via-cli.phpt │ │ │ ├── stop-on-defect-via-config.phpt │ │ │ ├── stop-on-error-via-cli.phpt │ │ │ ├── stop-on-error-via-config.phpt │ │ │ ├── stop-on-incomplete-via-cli.phpt │ │ │ ├── stop-on-incomplete-via-config.phpt │ │ │ ├── stop-on-warning-via-cli.phpt │ │ │ ├── stop-on-warning-via-config.phpt │ │ │ ├── test-order-randomized-seed-with-dependency-resolution.phpt │ │ │ ├── test-order-randomized-with-dependency-resolution.phpt │ │ │ ├── test-order-reversed-with-dependency-resolution.phpt │ │ │ ├── test-order-reversed-without-dependency-resolution.phpt │ │ │ └── test-order-size-with-dependency-resolution.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure.phpt │ │ ├── fatal-isolation.phpt │ │ ├── filter-class-isolation.phpt │ │ ├── filter-class.phpt │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ ├── filter-dataprovider-by-number.phpt │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ ├── filter-dataprovider-by-only-range.phpt │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ ├── filter-dataprovider-by-only-string.phpt │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ ├── filter-dataprovider-by-range.phpt │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-regexp.phpt │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ ├── filter-dataprovider-by-string.phpt │ │ ├── filter-method-case-insensitive.phpt │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ ├── filter-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── forward-compatibility.phpt │ │ ├── getActualOutputForAssertion.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── list-suites.phpt │ │ ├── list-tests-dataprovider.phpt │ │ ├── list-tests-xml-dataprovider.phpt │ │ ├── loggers │ │ │ ├── _files │ │ │ │ ├── HookTest.php │ │ │ │ ├── TestDoxGroupTest.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── hooks.xml │ │ │ │ ├── raw_output_ColorTest.txt │ │ │ │ └── raw_output_StatusTest.txt │ │ │ ├── custom-printer-debug.phpt │ │ │ ├── custom-printer-verbose.phpt │ │ │ ├── debug.phpt │ │ │ ├── failure-reverse-list.phpt │ │ │ ├── hooks.phpt │ │ │ ├── log-junit-phpt.phpt │ │ │ ├── log-junit.phpt │ │ │ ├── log-teamcity-phpt.phpt │ │ │ ├── log-teamcity.phpt │ │ │ ├── teamcity-inner-exceptions.phpt │ │ │ ├── teamcity.phpt │ │ │ ├── testdox-colors-verbose.phpt │ │ │ ├── testdox-dataprovider-placeholder.phpt │ │ │ ├── testdox-exclude-group.phpt │ │ │ ├── testdox-force-flush.phpt │ │ │ ├── testdox-group.phpt │ │ │ ├── testdox-html.phpt │ │ │ ├── testdox-text.phpt │ │ │ ├── testdox-xml.phpt │ │ │ └── testdox.phpt │ │ ├── mock-objects │ │ │ ├── generator │ │ │ │ ├── 232.phpt │ │ │ │ ├── 3154_namespaced_constant_resolving.phpt │ │ │ │ ├── 3530.phpt │ │ │ │ ├── 3967.phpt │ │ │ │ ├── 397.phpt │ │ │ │ ├── abstract_class.phpt │ │ │ │ ├── class.phpt │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── class_nonexistent_method.phpt │ │ │ │ ├── class_partial.phpt │ │ │ │ ├── class_with_deprecated_method.phpt │ │ │ │ ├── class_with_final_method.phpt │ │ │ │ ├── class_with_method_named_method.phpt │ │ │ │ ├── class_with_method_with_nullable_typehinted_variadic_arguments.phpt │ │ │ │ ├── class_with_method_with_typehinted_variadic_arguments.phpt │ │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ │ ├── constant_as_parameter_default_value.phpt │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── namespaced_class.phpt │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ ├── nullable_types.phpt │ │ │ │ ├── proxy.phpt │ │ │ │ ├── return_type_declarations_closure.phpt │ │ │ │ ├── return_type_declarations_final.phpt │ │ │ │ ├── return_type_declarations_generator.phpt │ │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ │ ├── return_type_declarations_parent.phpt │ │ │ │ ├── return_type_declarations_self.phpt │ │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ │ ├── return_type_declarations_void.phpt │ │ │ │ ├── scalar_type_declarations.phpt │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ └── mock-method │ │ │ │ ├── call_original.phpt │ │ │ │ ├── call_original_with_argument.phpt │ │ │ │ ├── call_original_with_argument_variadic.phpt │ │ │ │ ├── call_original_with_return_type_void.phpt │ │ │ │ ├── clone_method_arguments.phpt │ │ │ │ ├── deprecated_with_description.phpt │ │ │ │ ├── deprecated_without_description.phpt │ │ │ │ ├── private_method.phpt │ │ │ │ ├── protected_method.phpt │ │ │ │ ├── return_by_reference.phpt │ │ │ │ ├── return_by_reference_with_return_type.phpt │ │ │ │ ├── return_type.phpt │ │ │ │ ├── return_type_parent.phpt │ │ │ │ ├── return_type_self.phpt │ │ │ │ ├── static_method.phpt │ │ │ │ ├── static_method_with_return_type.phpt │ │ │ │ ├── with_argument.phpt │ │ │ │ ├── with_argument_default.phpt │ │ │ │ ├── with_argument_default_constant.phpt │ │ │ │ ├── with_argument_default_null.phpt │ │ │ │ ├── with_argument_nullable.phpt │ │ │ │ ├── with_argument_reference.phpt │ │ │ │ ├── with_argument_typed_array.phpt │ │ │ │ ├── with_argument_typed_callable.phpt │ │ │ │ ├── with_argument_typed_class.phpt │ │ │ │ ├── with_argument_typed_scalar.phpt │ │ │ │ ├── with_argument_typed_self.phpt │ │ │ │ ├── with_argument_typed_unkown_class.phpt │ │ │ │ ├── with_argument_typed_variadic.phpt │ │ │ │ ├── with_argument_variadic.phpt │ │ │ │ └── with_arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── phar-extension-suppressed.phpt │ │ ├── phar-extension.phpt │ │ ├── phpt-args.phpt │ │ ├── phpt-env.phpt │ │ ├── phpt-external.phpt │ │ ├── phpt-parsing.phpt │ │ ├── phpt-stderr.phpt │ │ ├── phpt-stdin.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpt │ │ │ ├── expect-external-location-hint.phpt │ │ │ ├── expect-location-hint.phpt │ │ │ └── skipif-location-hint.phpt │ │ ├── regression │ │ │ ├── GitHub │ │ │ │ ├── 74 │ │ │ │ │ ├── Issue74Test.php │ │ │ │ │ └── NewException.php │ │ │ │ ├── 322 │ │ │ │ │ ├── Issue322Test.php │ │ │ │ │ └── phpunit322.xml │ │ │ │ ├── 433 │ │ │ │ │ └── Issue433Test.php │ │ │ │ ├── 445 │ │ │ │ │ └── Issue445Test.php │ │ │ │ ├── 498 │ │ │ │ │ └── Issue498Test.php │ │ │ │ ├── 503 │ │ │ │ │ └── Issue503Test.php │ │ │ │ ├── 581 │ │ │ │ │ └── Issue581Test.php │ │ │ │ ├── 765 │ │ │ │ │ └── Issue765Test.php │ │ │ │ ├── 797 │ │ │ │ │ ├── Issue797Test.php │ │ │ │ │ └── bootstrap797.php │ │ │ │ ├── 873 │ │ │ │ │ └── Issue873Test.php │ │ │ │ ├── 1149 │ │ │ │ │ └── Issue1149Test.php │ │ │ │ ├── 1216 │ │ │ │ │ ├── Issue1216Test.php │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ └── phpunit1216.xml │ │ │ │ ├── 1265 │ │ │ │ │ ├── Issue1265Test.php │ │ │ │ │ └── phpunit1265.xml │ │ │ │ ├── 1330 │ │ │ │ │ ├── Issue1330Test.php │ │ │ │ │ └── phpunit1330.xml │ │ │ │ ├── 1335 │ │ │ │ │ ├── Issue1335Test.php │ │ │ │ │ └── bootstrap1335.php │ │ │ │ ├── 1337 │ │ │ │ │ └── Issue1337Test.php │ │ │ │ ├── 1348 │ │ │ │ │ └── Issue1348Test.php │ │ │ │ ├── 1351 │ │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ │ └── Issue1351Test.php │ │ │ │ ├── 1374 │ │ │ │ │ └── Issue1374Test.php │ │ │ │ ├── 1437 │ │ │ │ │ └── Issue1437Test.php │ │ │ │ ├── 1468 │ │ │ │ │ └── Issue1468Test.php │ │ │ │ ├── 1471 │ │ │ │ │ └── Issue1471Test.php │ │ │ │ ├── 1472 │ │ │ │ │ └── Issue1472Test.php │ │ │ │ ├── 1570 │ │ │ │ │ └── Issue1570Test.php │ │ │ │ ├── 2085 │ │ │ │ │ ├── Issue2085Test.php │ │ │ │ │ └── configuration_enforce_time_limit_options.xml │ │ │ │ ├── 2137 │ │ │ │ │ └── Issue2137Test.php │ │ │ │ ├── 2145 │ │ │ │ │ └── Issue2145Test.php │ │ │ │ ├── 2158 │ │ │ │ │ ├── Issue2158Test.php │ │ │ │ │ └── constant.inc │ │ │ │ ├── 2366 │ │ │ │ │ └── Issue2366Test.php │ │ │ │ ├── 2380 │ │ │ │ │ └── Issue2380Test.php │ │ │ │ ├── 2382 │ │ │ │ │ └── Issue2382Test.php │ │ │ │ ├── 2435 │ │ │ │ │ └── Issue2435Test.php │ │ │ │ ├── 2448 │ │ │ │ │ └── Test.php │ │ │ │ ├── 2724 │ │ │ │ │ └── SeparateClassRunMethodInNewProcessTest.php │ │ │ │ ├── 2725 │ │ │ │ │ └── BeforeAfterClassPidTest.php │ │ │ │ ├── 2731 │ │ │ │ │ └── Issue2731Test.php │ │ │ │ ├── 2811 │ │ │ │ │ └── Issue2811Test.php │ │ │ │ ├── 2830 │ │ │ │ │ └── Issue2830Test.php │ │ │ │ ├── 2972 │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ ├── 3093 │ │ │ │ │ ├── Issue3093Test.php │ │ │ │ │ └── issue-3093-test.phpt │ │ │ │ ├── 3156 │ │ │ │ │ └── Issue3156Test.php │ │ │ │ ├── 3379 │ │ │ │ │ ├── Issue3379Test.php │ │ │ │ │ ├── Issue3379TestListener.php │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── 3380 │ │ │ │ │ └── issue-3380-test.phpt │ │ │ │ ├── 3396 │ │ │ │ │ └── issue-3396-test.phpt │ │ │ │ ├── 3739 │ │ │ │ │ └── Issue3739Test.php │ │ │ │ ├── 3881 │ │ │ │ │ └── Issue3881Test.php │ │ │ │ ├── 3889 │ │ │ │ │ ├── Issue3889Test.test.php │ │ │ │ │ └── MyIssue3889Test.php │ │ │ │ ├── 3904 │ │ │ │ │ ├── Issue3904Test.php │ │ │ │ │ ├── Issue3904_2Test.php │ │ │ │ │ └── Issue3904_3Test.php │ │ │ │ ├── 3983 │ │ │ │ │ └── Issue3983Test.php │ │ │ │ ├── 1149.phpt │ │ │ │ ├── 1216.phpt │ │ │ │ ├── 1265.phpt │ │ │ │ ├── 1330.phpt │ │ │ │ ├── 1335.phpt │ │ │ │ ├── 1337.phpt │ │ │ │ ├── 1348.phpt │ │ │ │ ├── 1351.phpt │ │ │ │ ├── 1374.phpt │ │ │ │ ├── 1437.phpt │ │ │ │ ├── 1468.phpt │ │ │ │ ├── 1471.phpt │ │ │ │ ├── 1472.phpt │ │ │ │ ├── 1570.phpt │ │ │ │ ├── 2085-enforce-time-limit-options-via-config-without-invoker.phpt │ │ │ │ ├── 2085-without-invoker.phpt │ │ │ │ ├── 2085.phpt │ │ │ │ ├── 2137-filter.phpt │ │ │ │ ├── 2137-no_filter.phpt │ │ │ │ ├── 2145.phpt │ │ │ │ ├── 2158.phpt │ │ │ │ ├── 2366.phpt │ │ │ │ ├── 2380.phpt │ │ │ │ ├── 2382.phpt │ │ │ │ ├── 2435.phpt │ │ │ │ ├── 2448-existing-test.phpt │ │ │ │ ├── 2448-not-existing-test.phpt │ │ │ │ ├── 2724-diff-pid-from-master-process.phpt │ │ │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ │ │ ├── 2731.phpt │ │ │ │ ├── 2811.phpt │ │ │ │ ├── 2830.phpt │ │ │ │ ├── 2972.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 3379.phpt │ │ │ │ ├── 3739.phpt │ │ │ │ ├── 3881.phpt │ │ │ │ ├── 3889-2.phpt │ │ │ │ ├── 3889.phpt │ │ │ │ ├── 3904.phpt │ │ │ │ ├── 3904_2.phpt │ │ │ │ ├── 3904_3.phpt │ │ │ │ ├── 3983-1.phpt │ │ │ │ ├── 3983-2.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ ├── 797.phpt │ │ │ │ ├── 863.phpt │ │ │ │ └── 873.phpt │ │ │ └── Trac │ │ │ │ ├── 578 │ │ │ │ └── Issue578Test.php │ │ │ │ ├── 684 │ │ │ │ └── Issue684Test.php │ │ │ │ ├── 783 │ │ │ │ ├── ChildSuite.php │ │ │ │ ├── OneTest.php │ │ │ │ ├── ParentSuite.php │ │ │ │ └── TwoTest.php │ │ │ │ ├── 1021 │ │ │ │ └── Issue1021Test.php │ │ │ │ ├── 1021.phpt │ │ │ │ ├── 578.phpt │ │ │ │ ├── 684.phpt │ │ │ │ └── 783.phpt │ │ ├── report-tests-performing-assertions-when-annotated-with-does-not-perform-assertions.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── requires-skip-code-location-hints.phpt │ │ ├── separate-processes-test.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ └── version.phpt │ │ ├── fail │ │ └── fail.phpt │ │ ├── static-analysis │ │ ├── TestUsingMocks.php │ │ └── happy-path │ │ │ ├── assert-empty.php │ │ │ ├── assert-false.php │ │ │ ├── assert-instance-of.php │ │ │ ├── assert-is-array.php │ │ │ ├── assert-is-bool.php │ │ │ ├── assert-is-callable.php │ │ │ ├── assert-is-float.php │ │ │ ├── assert-is-int.php │ │ │ ├── assert-is-iterable.php │ │ │ ├── assert-is-not-array.php │ │ │ ├── assert-is-not-bool.php │ │ │ ├── assert-is-not-callable.php │ │ │ ├── assert-is-not-float.php │ │ │ ├── assert-is-not-int.php │ │ │ ├── assert-is-not-iterable.php │ │ │ ├── assert-is-not-numeric.php │ │ │ ├── assert-is-not-object.php │ │ │ ├── assert-is-not-resource.php │ │ │ ├── assert-is-not-scalar.php │ │ │ ├── assert-is-not-string.php │ │ │ ├── assert-is-numeric.php │ │ │ ├── assert-is-object.php │ │ │ ├── assert-is-resource.php │ │ │ ├── assert-is-scalar.php │ │ │ ├── assert-is-string.php │ │ │ ├── assert-not-empty.php │ │ │ ├── assert-not-false.php │ │ │ ├── assert-not-instance-of.php │ │ │ ├── assert-not-null.php │ │ │ ├── assert-not-true.php │ │ │ ├── assert-null.php │ │ │ ├── assert-same.php │ │ │ ├── assert-true.php │ │ │ └── fail.php │ │ └── unit │ │ ├── Framework │ │ ├── Assert │ │ │ └── FunctionsTest.php │ │ ├── AssertTest.php │ │ ├── Constraint │ │ │ ├── ArrayHasKeyTest.php │ │ │ ├── ArraySubsetTest.php │ │ │ ├── CallbackTest.php │ │ │ ├── ClassHasAttributeTest.php │ │ │ ├── ClassHasStaticAttributeTest.php │ │ │ ├── ConstraintTestCase.php │ │ │ ├── CountTest.php │ │ │ ├── DirectoryExistsTest.php │ │ │ ├── ExceptionCodeTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── ExceptionTest.php │ │ │ ├── FileExistsTest.php │ │ │ ├── GreaterThanTest.php │ │ │ ├── IsEmptyTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsInstanceOfTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsReadableTest.php │ │ │ ├── IsTypeTest.php │ │ │ ├── IsWritableTest.php │ │ │ ├── JsonMatchesErrorMessageProviderTest.php │ │ │ ├── JsonMatchesTest.php │ │ │ ├── LessThanTest.php │ │ │ ├── LogicalAndTest.php │ │ │ ├── LogicalNotTest.php │ │ │ ├── LogicalOrTest.php │ │ │ ├── LogicalXorTest.php │ │ │ ├── ObjectHasAttributeTest.php │ │ │ ├── RegularExpressionTest.php │ │ │ ├── SameSizeTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ ├── StringMatchesFormatDescriptionTest.php │ │ │ ├── StringStartsWithTest.php │ │ │ └── TraversableContainsTest.php │ │ ├── ConstraintTest.php │ │ ├── Exception │ │ │ ├── ExceptionTest.php │ │ │ └── InvalidArgumentExceptionTest.php │ │ ├── ExceptionWrapperTest.php │ │ ├── IncompleteTestCaseTest.php │ │ ├── MockObject │ │ │ ├── Builder │ │ │ │ └── InvocationMockerTest.php │ │ │ ├── ConfigurableMethodTest.php │ │ │ ├── ConfigurableMethodsTest.php │ │ │ ├── GeneratorTest.php │ │ │ ├── InvocationHandlerTest.php │ │ │ ├── Matcher │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ ├── MatcherTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockClassTest.php │ │ │ ├── MockMethodTest.php │ │ │ ├── MockObjectTest.php │ │ │ ├── MockTraitTest.php │ │ │ └── ProxyObjectTest.php │ │ ├── SkippedTestCaseTest.php │ │ ├── TestBuilderTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ ├── TestListenerTest.php │ │ ├── TestSuiteIteratorTest.php │ │ └── TestSuiteTest.php │ │ ├── Runner │ │ ├── DefaultTestResultCacheTest.php │ │ ├── Filter │ │ │ └── NameFilterIteratorTest.php │ │ ├── NullTestResultCacheTest.php │ │ ├── PhptTestCaseTest.php │ │ ├── ResultCacheExtensionTest.php │ │ ├── TestResultCacheTest.php │ │ └── TestSuiteSorterTest.php │ │ └── Util │ │ ├── Annotation │ │ └── RegistryTest.php │ │ ├── ColorTest.php │ │ ├── ConfigurationGeneratorTest.php │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── JsonTest.php │ │ ├── PHP │ │ └── AbstractPhpProcessTest.php │ │ ├── RegularExpressionTest.php │ │ ├── TestClassTest.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinterColorTest.php │ │ ├── CliTestDoxPrinterTest.php │ │ └── NamePrettifierTest.php │ │ ├── XDebugFilterScriptGeneratorTest.php │ │ └── XmlTest.php ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── log │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── 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 │ │ ├── .editorconfig │ │ ├── .github │ │ └── CONTRIBUTING.md │ │ ├── .gitignore │ │ ├── .phan │ │ └── config.php │ │ ├── .php_cs │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ ├── build-stub │ │ └── psysh │ │ ├── box.json.dist │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── CodeCleaner.php │ │ ├── CodeCleaner │ │ │ ├── AbstractClassPass.php │ │ │ ├── AssignThisVariablePass.php │ │ │ ├── CallTimePassByReferencePass.php │ │ │ ├── CalledClassPass.php │ │ │ ├── CodeCleanerPass.php │ │ │ ├── ExitPass.php │ │ │ ├── FinalClassPass.php │ │ │ ├── FunctionContextPass.php │ │ │ ├── FunctionReturnInWriteContextPass.php │ │ │ ├── ImplicitReturnPass.php │ │ │ ├── InstanceOfPass.php │ │ │ ├── LeavePsyshAlonePass.php │ │ │ ├── LegacyEmptyPass.php │ │ │ ├── ListPass.php │ │ │ ├── LoopContextPass.php │ │ │ ├── MagicConstantsPass.php │ │ │ ├── NamespaceAwarePass.php │ │ │ ├── NamespacePass.php │ │ │ ├── NoReturnValue.php │ │ │ ├── PassableByReferencePass.php │ │ │ ├── RequirePass.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 │ │ │ │ ├── InterfaceEnumerator.php │ │ │ │ ├── MethodEnumerator.php │ │ │ │ ├── PropertyEnumerator.php │ │ │ │ ├── TraitEnumerator.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 │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop.php │ │ ├── ExecutionLoop │ │ │ ├── AbstractListener.php │ │ │ ├── Listener.php │ │ │ ├── ProcessForker.php │ │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter │ │ │ ├── CodeFormatter.php │ │ │ ├── DocblockFormatter.php │ │ │ ├── Formatter.php │ │ │ └── SignatureFormatter.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 │ │ ├── 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 │ │ ├── test │ │ ├── ClassWithSecrets.php │ │ ├── CodeCleaner │ │ │ ├── AbstractClassPassTest.php │ │ │ ├── AssignThisVariablePassTest.php │ │ │ ├── CallTimePassByReferencePassTest.php │ │ │ ├── CalledClassPassTest.php │ │ │ ├── CodeCleanerTestCase.php │ │ │ ├── ExitPassTest.php │ │ │ ├── FinalClassPassTest.php │ │ │ ├── Fixtures │ │ │ │ ├── ClassWithCallStatic.php │ │ │ │ ├── ClassWithStatic.php │ │ │ │ └── TraitWithStatic.php │ │ │ ├── FunctionContextPassTest.php │ │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ │ ├── ImplicitReturnPassTest.php │ │ │ ├── InstanceOfPassTest.php │ │ │ ├── LeavePsyshAlonePassTest.php │ │ │ ├── LegacyEmptyPassTest.php │ │ │ ├── ListPassTest.php │ │ │ ├── LoopContextPassTest.php │ │ │ ├── MagicConstantsPassTest.php │ │ │ ├── NamespacePassTest.php │ │ │ ├── NoReturnValueTest.php │ │ │ ├── PassableByReferencePassTest.php │ │ │ ├── RequirePassTest.php │ │ │ ├── StrictTypesPassTest.php │ │ │ ├── UseStatementPassTest.php │ │ │ ├── ValidClassNamePassTest.php │ │ │ ├── ValidConstantPassTest.php │ │ │ ├── ValidConstructorPassTest.php │ │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.php │ │ ├── Command │ │ │ ├── ExitCommandTest.php │ │ │ ├── ThrowUpCommandTest.php │ │ │ └── TimeitCommand │ │ │ │ └── TimeitVisitorTest.php │ │ ├── ConfigurationTest.php │ │ ├── ConsoleColorFactoryTest.php │ │ ├── ContextTest.php │ │ ├── Exception │ │ │ ├── BreakExceptionTest.php │ │ │ ├── ErrorExceptionTest.php │ │ │ ├── FatalErrorExceptionTest.php │ │ │ ├── ParseErrorExceptionTest.php │ │ │ ├── RuntimeExceptionTest.php │ │ │ ├── ThrowUpExceptionTest.php │ │ │ └── TypeErrorExceptionTest.php │ │ ├── FakeShell.php │ │ ├── Formatter │ │ │ ├── CodeFormatterTest.php │ │ │ ├── DocblockFormatterTest.php │ │ │ ├── Fixtures │ │ │ │ ├── BoringTrait.php │ │ │ │ └── SomeClass.php │ │ │ └── SignatureFormatterTest.php │ │ ├── Input │ │ │ ├── CodeArgumentTest.php │ │ │ ├── FilterOptionsTest.php │ │ │ └── ShellInputTest.php │ │ ├── ParserTestCase.php │ │ ├── Readline │ │ │ ├── GNUReadlineTest.php │ │ │ ├── HoaConsoleTest.php │ │ │ ├── LibeditTest.php │ │ │ └── TransientTest.php │ │ ├── Reflection │ │ │ ├── ReflectionClassConstantTest.php │ │ │ ├── ReflectionConstantBCTest.php │ │ │ ├── ReflectionConstantTest.php │ │ │ ├── ReflectionLanguageConstructParameterTest.php │ │ │ └── ReflectionLanguageConstructTest.php │ │ ├── ShellTest.php │ │ ├── Sudo │ │ │ └── SudoVisitorTest.php │ │ ├── SudoTest.php │ │ ├── TabCompletion │ │ │ ├── AutoCompleterTest.php │ │ │ └── StaticSample.php │ │ ├── Util │ │ │ ├── DocblockTest.php │ │ │ ├── MirrorTest.php │ │ │ └── StrTest.php │ │ ├── VersionUpdater │ │ │ ├── GitHubCheckerTest.php │ │ │ └── NoopCheckerTest.php │ │ ├── fixtures │ │ │ ├── config.php │ │ │ ├── default │ │ │ │ ├── .config │ │ │ │ │ └── psysh │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ └── psysh_history │ │ │ │ └── .local │ │ │ │ │ └── share │ │ │ │ │ └── psysh │ │ │ │ │ └── php_manual.sqlite │ │ │ ├── empty.php │ │ │ ├── legacy │ │ │ │ └── .psysh │ │ │ │ │ ├── history │ │ │ │ │ ├── php_manual.sqlite │ │ │ │ │ └── rc.php │ │ │ ├── mixed │ │ │ │ └── .psysh │ │ │ │ │ ├── config.php │ │ │ │ │ ├── psysh_history │ │ │ │ │ └── rc.php │ │ │ ├── project │ │ │ │ └── .psysh.php │ │ │ └── unvis_fixtures.json │ │ └── tools │ │ │ ├── gen_unvis_fixtures.py │ │ │ └── vis.py │ │ └── vendor-bin │ │ └── box │ │ ├── composer.json │ │ └── composer.lock ├── ramsey │ └── uuid │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BinaryUtils.php │ │ ├── Builder │ │ ├── DefaultUuidBuilder.php │ │ ├── DegradedUuidBuilder.php │ │ └── UuidBuilderInterface.php │ │ ├── Codec │ │ ├── CodecInterface.php │ │ ├── GuidStringCodec.php │ │ ├── OrderedTimeCodec.php │ │ ├── StringCodec.php │ │ ├── TimestampFirstCombCodec.php │ │ └── TimestampLastCombCodec.php │ │ ├── Converter │ │ ├── Number │ │ │ ├── BigNumberConverter.php │ │ │ └── DegradedNumberConverter.php │ │ ├── NumberConverterInterface.php │ │ ├── Time │ │ │ ├── BigNumberTimeConverter.php │ │ │ ├── DegradedTimeConverter.php │ │ │ └── PhpTimeConverter.php │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── Exception │ │ ├── InvalidUuidStringException.php │ │ ├── UnsatisfiedDependencyException.php │ │ └── UnsupportedOperationException.php │ │ ├── FeatureSet.php │ │ ├── Generator │ │ ├── CombGenerator.php │ │ ├── DefaultTimeGenerator.php │ │ ├── MtRandGenerator.php │ │ ├── OpenSslGenerator.php │ │ ├── PeclUuidRandomGenerator.php │ │ ├── PeclUuidTimeGenerator.php │ │ ├── RandomBytesGenerator.php │ │ ├── RandomGeneratorFactory.php │ │ ├── RandomGeneratorInterface.php │ │ ├── RandomLibAdapter.php │ │ ├── SodiumRandomGenerator.php │ │ ├── TimeGeneratorFactory.php │ │ └── TimeGeneratorInterface.php │ │ ├── Provider │ │ ├── Node │ │ │ ├── FallbackNodeProvider.php │ │ │ ├── RandomNodeProvider.php │ │ │ └── SystemNodeProvider.php │ │ ├── NodeProviderInterface.php │ │ ├── Time │ │ │ ├── FixedTimeProvider.php │ │ │ └── SystemTimeProvider.php │ │ └── TimeProviderInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ ├── UuidInterface.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 │ │ └── 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 │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── HelpCommand.php │ │ │ ├── ListCommand.php │ │ │ └── LockableTrait.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── ConsoleEvents.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 │ │ │ ├── NamespaceNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── 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 │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandTester.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── css-selector │ │ ├── .gitattributes │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── BufferingLogger.php │ │ ├── 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 │ ├── error-handler │ │ ├── .gitattributes │ │ ├── BufferingLogger.php │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── Error │ │ │ ├── ClassNotFoundError.php │ │ │ ├── FatalError.php │ │ │ ├── OutOfMemoryError.php │ │ │ ├── UndefinedFunctionError.php │ │ │ └── UndefinedMethodError.php │ │ ├── ErrorEnhancer │ │ │ ├── ClassNotFoundErrorEnhancer.php │ │ │ ├── ErrorEnhancerInterface.php │ │ │ ├── UndefinedFunctionErrorEnhancer.php │ │ │ └── UndefinedMethodErrorEnhancer.php │ │ ├── ErrorHandler.php │ │ ├── ErrorRenderer │ │ │ ├── CliErrorRenderer.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── 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 │ │ ├── Event.php │ │ ├── EventDispatcherInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── event-dispatcher │ │ ├── .gitattributes │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ ├── AddEventAliasesPass.php │ │ │ └── RegisterListenersPass.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ ├── LICENSE │ │ ├── LegacyEventDispatcherProxy.php │ │ ├── LegacyEventProxy.php │ │ ├── README.md │ │ └── composer.json │ ├── finder │ │ ├── .gitattributes │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── ApacheRequest.php │ │ ├── BinaryFileResponse.php │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── 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 │ │ │ ├── MimeType │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── HeaderUtils.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 │ │ │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── Bundle │ │ │ ├── Bundle.php │ │ │ └── BundleInterface.php │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ ├── ChainCacheClearer.php │ │ │ └── Psr6CacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Client.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 │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ ├── FilterControllerEvent.php │ │ │ ├── FilterResponseEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── GetResponseEvent.php │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ ├── KernelEvent.php │ │ │ ├── PostResponseEvent.php │ │ │ ├── RequestEvent.php │ │ │ ├── ResponseEvent.php │ │ │ ├── TerminateEvent.php │ │ │ └── ViewEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AbstractTestSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DisallowRobotsIndexingListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorListener.php │ │ │ ├── ExceptionListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleAwareListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SaveSessionListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ ├── TestSessionListener.php │ │ │ ├── TranslatorListener.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 │ │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── Address.php │ │ ├── BodyRendererInterface.php │ │ ├── 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-idn │ │ ├── Idn.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── 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 │ ├── process │ │ ├── .gitattributes │ │ ├── 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 │ │ ├── .gitattributes │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── 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 │ │ │ │ └── PhpGeneratorDumper.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 │ │ │ │ │ └── RouteTrait.php │ │ │ ├── ContainerLoader.php │ │ │ ├── DependencyInjection │ │ │ │ └── ServiceRouterLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── ObjectLoader.php │ │ │ ├── ObjectRouteLoader.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 │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ └── StaticPrefixCollection.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 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ └── composer.json │ ├── translation-contracts │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── translation │ │ ├── .gitattributes │ │ ├── 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 │ │ │ ├── ChoiceMessageFormatterInterface.php │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ ├── IdentityTranslator.php │ │ ├── Interval.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 │ │ ├── MessageSelector.php │ │ ├── MetadataAwareInterface.php │ │ ├── PluralizationRules.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 │ │ ├── TranslatorInterface.php │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ └── var-dumper │ │ ├── .gitattributes │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── src │ │ ├── Dotenv.php │ │ ├── Environment │ │ ├── AbstractVariables.php │ │ ├── Adapter │ │ │ ├── AdapterInterface.php │ │ │ ├── ApacheAdapter.php │ │ │ ├── ArrayAdapter.php │ │ │ ├── EnvConstAdapter.php │ │ │ ├── PutenvAdapter.php │ │ │ └── ServerConstAdapter.php │ │ ├── DotenvFactory.php │ │ ├── DotenvVariables.php │ │ ├── FactoryInterface.php │ │ └── VariablesInterface.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidFileException.php │ │ ├── InvalidPathException.php │ │ └── ValidationException.php │ │ ├── Lines.php │ │ ├── Loader.php │ │ ├── Parser.php │ │ ├── Regex │ │ ├── Error.php │ │ ├── Regex.php │ │ ├── Result.php │ │ └── Success.php │ │ └── Validator.php └── webmozart │ └── assert │ ├── .editorconfig │ ├── LICENSE │ ├── README.md │ ├── ci │ └── composer.json │ ├── composer.json │ ├── psalm.xml │ └── src │ └── Assert.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.env -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Controllers/Api/PostController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Http/Requests/Post.php -------------------------------------------------------------------------------- /app/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Post.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/carbon: -------------------------------------------------------------------------------- 1 | ../nesbot/carbon/bin/carbon -------------------------------------------------------------------------------- /vendor/bin/commonmark: -------------------------------------------------------------------------------- 1 | ../league/commonmark/bin/commonmark -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/bin/var-dump-server: -------------------------------------------------------------------------------- 1 | ../symfony/var-dumper/Resources/bin/var-dump-server -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/src/Xdg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/dnoegel/php-xdg-base-dir/src/Xdg.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/inflector/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/instantiator/phpbench.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/instantiator/phpcs.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /vendor/egulias/email-validator/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/egulias/email-validator/psalm.xml -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/flare-client-php/LICENSE.md -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/flare-client-php/README.md -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/flare-client-php/src/Api.php -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/flare-client-php/src/View.php -------------------------------------------------------------------------------- /vendor/facade/ignition-contracts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition-contracts/LICENSE.md -------------------------------------------------------------------------------- /vendor/facade/ignition-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition-contracts/README.md -------------------------------------------------------------------------------- /vendor/facade/ignition/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/.babelrc -------------------------------------------------------------------------------- /vendor/facade/ignition/.prettierignore: -------------------------------------------------------------------------------- 1 | resources/compiled 2 | -------------------------------------------------------------------------------- /vendor/facade/ignition/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/.prettierrc -------------------------------------------------------------------------------- /vendor/facade/ignition/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/.styleci.yml -------------------------------------------------------------------------------- /vendor/facade/ignition/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/LICENSE.md -------------------------------------------------------------------------------- /vendor/facade/ignition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/README.md -------------------------------------------------------------------------------- /vendor/facade/ignition/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/composer.json -------------------------------------------------------------------------------- /vendor/facade/ignition/config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/config/flare.php -------------------------------------------------------------------------------- /vendor/facade/ignition/config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/config/ignition.php -------------------------------------------------------------------------------- /vendor/facade/ignition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/package.json -------------------------------------------------------------------------------- /vendor/facade/ignition/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/postcss.config.js -------------------------------------------------------------------------------- /vendor/facade/ignition/resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/resources/.gitignore -------------------------------------------------------------------------------- /vendor/facade/ignition/src/Ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/src/Ignition.php -------------------------------------------------------------------------------- /vendor/facade/ignition/src/Tabs/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/src/Tabs/Tab.php -------------------------------------------------------------------------------- /vendor/facade/ignition/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/src/helpers.php -------------------------------------------------------------------------------- /vendor/facade/ignition/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/tailwind.config.js -------------------------------------------------------------------------------- /vendor/facade/ignition/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/tsconfig.json -------------------------------------------------------------------------------- /vendor/facade/ignition/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/facade/ignition/webpack.config.js -------------------------------------------------------------------------------- /vendor/fideloper/proxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fideloper/proxy/LICENSE.md -------------------------------------------------------------------------------- /vendor/fideloper/proxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fideloper/proxy/composer.json -------------------------------------------------------------------------------- /vendor/fideloper/proxy/src/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fideloper/proxy/src/TrustProxies.php -------------------------------------------------------------------------------- /vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Util/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/filp/whoops/src/Whoops/Util/Misc.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis/xdebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fzaninotto/faker/.travis/xdebug.sh -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/hamcrest/hamcrest-php/composer.lock -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/tinker/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/tinker/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /vendor/laravel/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/laravel/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /vendor/league/commonmark/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/.editorconfig -------------------------------------------------------------------------------- /vendor/league/commonmark/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/.phpstorm.meta.php -------------------------------------------------------------------------------- /vendor/league/commonmark/CHANGELOG-0.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/CHANGELOG-0.x.md -------------------------------------------------------------------------------- /vendor/league/commonmark/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/league/commonmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/LICENSE -------------------------------------------------------------------------------- /vendor/league/commonmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/README.md -------------------------------------------------------------------------------- /vendor/league/commonmark/bin/commonmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/bin/commonmark -------------------------------------------------------------------------------- /vendor/league/commonmark/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/composer.json -------------------------------------------------------------------------------- /vendor/league/commonmark/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/Context.php -------------------------------------------------------------------------------- /vendor/league/commonmark/src/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/Converter.php -------------------------------------------------------------------------------- /vendor/league/commonmark/src/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/Cursor.php -------------------------------------------------------------------------------- /vendor/league/commonmark/src/DocParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/DocParser.php -------------------------------------------------------------------------------- /vendor/league/commonmark/src/Node/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/Node/Node.php -------------------------------------------------------------------------------- /vendor/league/commonmark/src/Util/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/commonmark/src/Util/Xml.php -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/SECURITY.md -------------------------------------------------------------------------------- /vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /vendor/league/flysystem/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/deprecations.md -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Adapter/Ftp.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/SafeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/SafeStorage.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /vendor/mockery/mockery/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.phpstorm.meta.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.styleci.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/library/helpers.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/monolog/monolog/UPGRADE.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/nesbot/carbon/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/.github/FUNDING.yml -------------------------------------------------------------------------------- /vendor/nesbot/carbon/.multi-tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/.multi-tester.yml -------------------------------------------------------------------------------- /vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /vendor/nesbot/carbon/bin/carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/bin/carbon -------------------------------------------------------------------------------- /vendor/nesbot/carbon/bin/carbon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/bin/carbon.bat -------------------------------------------------------------------------------- /vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /vendor/nesbot/carbon/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/contributing.md -------------------------------------------------------------------------------- /vendor/nesbot/carbon/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/phpmd.xml -------------------------------------------------------------------------------- /vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Carbon.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Factory.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/aa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/aa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/af.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ak.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/am.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/an.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/an.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ar.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/as.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/as.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/az.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/be.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bm.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/br.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bs.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ca.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ce.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/cs.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/cu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/cv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/cy.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/da.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/de.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/dv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/dz.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ee.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/el.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/en.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/eo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/es.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/et.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/eu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ff.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fy.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ga.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/gd.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/gl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/gu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/gv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ha.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/he.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ht.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hy.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ia.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/id.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ig.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ii.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ik.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/in.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/is.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/it.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/iu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/iu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/iw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/iw.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ja.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/jv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/jv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ka.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ki.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/kk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/kl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/km.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/km.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/kn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ko.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ks.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ku.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/kw.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ky.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lb.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/li.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/li.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ln.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ml.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ms.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/mt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/my.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nb.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nd.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ne.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/no.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/oc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/oc.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/om.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/om.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/or.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/or.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/os.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/os.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ps.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/qu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/qu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/rm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/rm.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/rn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/rn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ro.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ru.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/rw.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sc.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sd.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/se.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sh.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/si.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/si.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sm.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/so.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/so.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sq.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ss.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/st.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/st.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sw.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ta.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/te.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/te.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/th.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ti.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ti.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/to.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/to.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ts.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ug.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/uk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ur.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/uz.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ve.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/vi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/vo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/wa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/wo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/xh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/xh.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/yi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/yo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/zh.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/zu.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/.gitattributes -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/grammar/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/grammar/php5.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/grammar/php7.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/tokens.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nikic/php-parser/grammar/tokens.y -------------------------------------------------------------------------------- /vendor/nunomaduro/collision/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nunomaduro/collision/LICENSE.md -------------------------------------------------------------------------------- /vendor/nunomaduro/collision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nunomaduro/collision/README.md -------------------------------------------------------------------------------- /vendor/nunomaduro/collision/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nunomaduro/collision/composer.json -------------------------------------------------------------------------------- /vendor/nunomaduro/collision/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nunomaduro/collision/src/Handler.php -------------------------------------------------------------------------------- /vendor/nunomaduro/collision/src/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/nunomaduro/collision/src/Writer.php -------------------------------------------------------------------------------- /vendor/opis/closure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/LICENSE -------------------------------------------------------------------------------- /vendor/opis/closure/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/NOTICE -------------------------------------------------------------------------------- /vendor/opis/closure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/README.md -------------------------------------------------------------------------------- /vendor/opis/closure/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/autoload.php -------------------------------------------------------------------------------- /vendor/opis/closure/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/composer.json -------------------------------------------------------------------------------- /vendor/opis/closure/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/functions.php -------------------------------------------------------------------------------- /vendor/opis/closure/src/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/src/Analyzer.php -------------------------------------------------------------------------------- /vendor/opis/closure/src/ClosureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/src/ClosureContext.php -------------------------------------------------------------------------------- /vendor/opis/closure/src/ClosureScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/src/ClosureScope.php -------------------------------------------------------------------------------- /vendor/opis/closure/src/ClosureStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/src/ClosureStream.php -------------------------------------------------------------------------------- /vendor/opis/closure/src/SelfReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/opis/closure/src/SelfReference.php -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/paragonie/random_compat/LICENSE -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/paragonie/random_compat/psalm.xml -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/.gitignore -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/.php_cs -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/.travis.yml -------------------------------------------------------------------------------- /vendor/phar-io/manifest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/README.md -------------------------------------------------------------------------------- /vendor/phar-io/manifest/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/build.xml -------------------------------------------------------------------------------- /vendor/phar-io/manifest/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/composer.json -------------------------------------------------------------------------------- /vendor/phar-io/manifest/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/composer.lock -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/phive.xml -------------------------------------------------------------------------------- /vendor/phar-io/manifest/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/phpunit.xml -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/src/values/Type.php -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/values/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/manifest/src/values/Url.php -------------------------------------------------------------------------------- /vendor/phar-io/version/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/.gitignore -------------------------------------------------------------------------------- /vendor/phar-io/version/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/.php_cs -------------------------------------------------------------------------------- /vendor/phar-io/version/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/.travis.yml -------------------------------------------------------------------------------- /vendor/phar-io/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/README.md -------------------------------------------------------------------------------- /vendor/phar-io/version/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/build.xml -------------------------------------------------------------------------------- /vendor/phar-io/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/composer.json -------------------------------------------------------------------------------- /vendor/phar-io/version/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/phive.xml -------------------------------------------------------------------------------- /vendor/phar-io/version/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/phpunit.xml -------------------------------------------------------------------------------- /vendor/phar-io/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phar-io/version/src/Version.php -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/phpstan.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/type-resolver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpdocumentor/type-resolver/LICENSE -------------------------------------------------------------------------------- /vendor/phpoption/phpoption/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpoption/phpoption/LICENSE -------------------------------------------------------------------------------- /vendor/phpoption/phpoption/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpoption/phpoption/composer.json -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpspec/prophecy/CHANGES.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpspec/prophecy/LICENSE -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpspec/prophecy/README.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpspec/prophecy/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | *.php diff=php 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpunit/php-code-coverage/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpunit/php-code-coverage/build.xml -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/phpunit/php-code-coverage/phive.xml -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/container/README.md -------------------------------------------------------------------------------- /vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /vendor/psy/psysh/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /vendor/psy/psysh/.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.phan/config.php -------------------------------------------------------------------------------- /vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /vendor/psy/psysh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/Makefile -------------------------------------------------------------------------------- /vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/bin/build-stub -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/psy/psysh/box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/box.json.dist -------------------------------------------------------------------------------- /vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/psy/psysh/src/CodeCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/CodeCleaner.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Command/Command.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/ConfigPaths.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Configuration.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Context.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ContextAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/ContextAware.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ExecutionLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/ExecutionLoop.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/ParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/ParserFactory.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Shell.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Sudo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Sudo.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Docblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Util/Docblock.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Util/Json.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Util/Mirror.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/Util/Str.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/src/functions.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/ContextTest.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/FakeShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/FakeShell.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/ParserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/ParserTestCase.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/ShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/ShellTest.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/SudoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/SudoTest.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/Util/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/psy/psysh/test/Util/StrTest.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | 0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/actionscript/method-call.txt: -------------------------------------------------------------------------------- 1 | x.get(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/clojure/symbols-numbers.txt: -------------------------------------------------------------------------------- 1 | (def +x [(a 1) +2 -3.0 y-5]) 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/cpp/primitive-types.txt: -------------------------------------------------------------------------------- 1 | const uint64_t MAX_INT_64; 2 | 3 | struct position_tag; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.txt: -------------------------------------------------------------------------------- 1 | a_production = nonterminal ; 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.txt: -------------------------------------------------------------------------------- 1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize) 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.txt: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.txt: -------------------------------------------------------------------------------- 1 | {{abc}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/sub-expressions.txt: -------------------------------------------------------------------------------- 1 | {{helper (subExpression 1 2)}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.txt: -------------------------------------------------------------------------------- 1 | {{{raw}}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ini/variable.txt: -------------------------------------------------------------------------------- 1 | memory_limit = ${PHP_MEMORY_LIMIT} 2 | key = $VAR1 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/method-call.expect.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/method-call.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/shebang.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = 1; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/python/function-header.txt: -------------------------------------------------------------------------------- 1 | def f(x: int) -> None: 2 | pass 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.txt: -------------------------------------------------------------------------------- 1 | > foo 2 | > /bin/sh 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/sql/numeric-types.txt: -------------------------------------------------------------------------------- 1 | SELECT CAST(32768 AS TINYINT) FROM VALUES('dummy'); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt: -------------------------------------------------------------------------------- 1 | {{ "string with spaces"|url_encode }} -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/tabreplace.txt: -------------------------------------------------------------------------------- 1 | for x in [1, 2, 3]: 2 | count(x) -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/.php_cs.dist -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/README.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/comparator/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/comparator/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/.github/stale.yml -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/diff/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/.php_cs.dist -------------------------------------------------------------------------------- /vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/diff/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Differ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/src/Differ.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/src/Parser.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/DiffTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/tests/DiffTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/LineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/diff/tests/LineTest.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/environment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/README.md -------------------------------------------------------------------------------- /vendor/sebastian/environment/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/environment/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/environment/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/.php_cs.dist -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/exporter/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/exporter/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/global-state/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/global-state/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/global-state/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/global-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/global-state/README.md -------------------------------------------------------------------------------- /vendor/sebastian/global-state/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/global-state/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.gitignore -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.idea/misc.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.idea/modules.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.idea/php.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/type.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.idea/type.iml -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.idea/vcs.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.php_cs.dist -------------------------------------------------------------------------------- /vendor/sebastian/type/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/.travis.yml -------------------------------------------------------------------------------- /vendor/sebastian/type/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/README.md -------------------------------------------------------------------------------- /vendor/sebastian/type/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/build.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/type/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/phive.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/phpunit.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/psalm.xml -------------------------------------------------------------------------------- /vendor/sebastian/type/src/NullType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/NullType.php -------------------------------------------------------------------------------- /vendor/sebastian/type/src/ObjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/ObjectType.php -------------------------------------------------------------------------------- /vendor/sebastian/type/src/SimpleType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/SimpleType.php -------------------------------------------------------------------------------- /vendor/sebastian/type/src/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/Type.php -------------------------------------------------------------------------------- /vendor/sebastian/type/src/TypeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/TypeName.php -------------------------------------------------------------------------------- /vendor/sebastian/type/src/VoidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/type/src/VoidType.php -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/version/.php_cs -------------------------------------------------------------------------------- /vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/version/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/sebastian/version/src/Version.php -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/swiftmailer/swiftmailer/LICENSE -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/swiftmailer/swiftmailer/README.md -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Helper/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/debug/composer.json -------------------------------------------------------------------------------- /vendor/symfony/error-handler/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/error-handler/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/error-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/error-handler/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/error-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/error-handler/README.md -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/event-dispatcher/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/Finder.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Gitignore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/Gitignore.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/Glob.php -------------------------------------------------------------------------------- /vendor/symfony/finder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/README.md -------------------------------------------------------------------------------- /vendor/symfony/finder/SplFileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/SplFileInfo.php -------------------------------------------------------------------------------- /vendor/symfony/finder/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/finder/composer.json -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-foundation/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-foundation/README.md -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/Client.php -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/Kernel.php -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/README.md -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/UriSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/UriSigner.php -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/http-kernel/composer.json -------------------------------------------------------------------------------- /vendor/symfony/mime/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/mime/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Address.php -------------------------------------------------------------------------------- /vendor/symfony/mime/CharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/CharacterStream.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Crypto/SMime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Crypto/SMime.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Email.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Header/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Header/Headers.php -------------------------------------------------------------------------------- /vendor/symfony/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/mime/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Message.php -------------------------------------------------------------------------------- /vendor/symfony/mime/MessageConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/MessageConverter.php -------------------------------------------------------------------------------- /vendor/symfony/mime/MimeTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/MimeTypes.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Part/DataPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Part/DataPart.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Part/MessagePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Part/MessagePart.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Part/SMimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Part/SMimePart.php -------------------------------------------------------------------------------- /vendor/symfony/mime/Part/TextPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/Part/TextPart.php -------------------------------------------------------------------------------- /vendor/symfony/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/README.md -------------------------------------------------------------------------------- /vendor/symfony/mime/RawMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/RawMessage.php -------------------------------------------------------------------------------- /vendor/symfony/mime/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/mime/composer.json -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-iconv/Iconv.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-iconv/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-iconv/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-intl-idn/Idn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-intl-idn/Idn.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-intl-idn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-intl-idn/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php72/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php72/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php72/Php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php72/Php72.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php72/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php73/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php73/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php73/Php73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php73/Php73.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php73/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/polyfill-php73/README.md -------------------------------------------------------------------------------- /vendor/symfony/process/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/process/InputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/InputStream.php -------------------------------------------------------------------------------- /vendor/symfony/process/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/process/PhpProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/PhpProcess.php -------------------------------------------------------------------------------- /vendor/symfony/process/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/Process.php -------------------------------------------------------------------------------- /vendor/symfony/process/ProcessUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/ProcessUtils.php -------------------------------------------------------------------------------- /vendor/symfony/process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/README.md -------------------------------------------------------------------------------- /vendor/symfony/process/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/process/composer.json -------------------------------------------------------------------------------- /vendor/symfony/routing/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/routing/CompiledRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/CompiledRoute.php -------------------------------------------------------------------------------- /vendor/symfony/routing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/README.md -------------------------------------------------------------------------------- /vendor/symfony/routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/Route.php -------------------------------------------------------------------------------- /vendor/symfony/routing/RouteCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/RouteCompiler.php -------------------------------------------------------------------------------- /vendor/symfony/routing/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/Router.php -------------------------------------------------------------------------------- /vendor/symfony/routing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/routing/composer.json -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/service-contracts/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/translation/Interval.php -------------------------------------------------------------------------------- /vendor/symfony/translation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/translation/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/translation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/translation/README.md -------------------------------------------------------------------------------- /vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/var-dumper/.gitattributes -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/.gitignore -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/.php_cs -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/.travis.yml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/LICENSE -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/README.md -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/build.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/composer.json -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/phive.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/phpunit.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/theseer/tokenizer/src/Token.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/LICENSE -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/src/Lines.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/vlucas/phpdotenv/src/Parser.php -------------------------------------------------------------------------------- /vendor/webmozart/assert/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/.editorconfig -------------------------------------------------------------------------------- /vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/ci/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/ci/composer.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/psalm.xml -------------------------------------------------------------------------------- /vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-intro-laravel/HEAD/webpack.mix.js --------------------------------------------------------------------------------