├── .gitignore ├── .htaccess ├── README.md ├── css ├── css.css ├── style.css ├── style.min.css ├── sweetalert.css ├── zt2 │ ├── all.min.css │ ├── bootstrap.css │ ├── custom.css │ ├── easyhelper.min.css │ ├── fontawesome-all.min.css │ ├── google-fonts.css │ ├── main.min.css │ ├── style.min.css │ └── sweetalert.min.css └── zwcss │ ├── app.css │ ├── bootstrap-icons.css │ ├── index.js │ ├── simplex-noise.min.js │ ├── style.css │ ├── swiper-bundle.min.css │ ├── swiper-bundle.min.js │ └── tc.css ├── data.dat ├── epay ├── config.php ├── epayapi.php ├── index.php ├── lib │ ├── epay_core.function.php │ ├── epay_md5.function.php │ ├── epay_notify.class.php │ └── epay_submit.class.php ├── notify_url.php └── return_url.php ├── favicon.ico ├── images ├── 1.jpg ├── logo.png ├── tx.png ├── zt2 │ └── mockup.svg └── zw │ ├── back.svg │ ├── img-1.svg │ ├── img-2.svg │ └── img-3.svg ├── index.php ├── js ├── ip.js ├── jquery-3.1.1.min.js ├── main.js ├── sweetalert-dev.js ├── sweetalert.min.js └── yinghua.min.js ├── robots.txt ├── src ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Helper.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Admin │ │ │ │ ├── AdminController.php │ │ │ │ ├── ConfigController.php │ │ │ │ ├── Controller.php │ │ │ │ ├── DnsConfigController.php │ │ │ │ ├── DomainController.php │ │ │ │ ├── DomainRecordController.php │ │ │ │ ├── UserController.php │ │ │ │ └── UserGroupController.php │ │ │ ├── Auth │ │ │ │ └── LoginController.php │ │ │ ├── Controller.php │ │ │ ├── Home │ │ │ │ └── HomeController.php │ │ │ ├── Index │ │ │ │ └── IndexController.php │ │ │ └── InstallController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── AuthenticateSession.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── LoadSysConfig.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Klsf │ │ └── Dns │ │ │ ├── Aliyun.php │ │ │ ├── Cloudflare.php │ │ │ ├── DnsCom.php │ │ │ ├── DnsHttp.php │ │ │ ├── DnsInterface.php │ │ │ ├── DnsLa.php │ │ │ ├── Dnspod.php │ │ │ └── Helper.php │ ├── Models │ │ ├── Config.php │ │ ├── DnsConfig.php │ │ ├── Domain.php │ │ ├── DomainRecord.php │ │ ├── Model.php │ │ ├── User.php │ │ ├── UserGroup.php │ │ └── UserPointRecord.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.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 │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2014_10_12_100000_create_password_resets_table.php │ └── seeds │ │ └── DatabaseSeeder.php ├── install │ ├── install.sql │ └── update.3.1.1.sql ├── package.json ├── phpunit.xml ├── resources │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ ├── _variables.scss │ │ └── app.scss │ └── views │ │ ├── admin │ │ ├── config │ │ │ ├── beautify.blade.php │ │ │ ├── check.blade.php │ │ │ ├── dns.blade.php │ │ │ └── sys.blade.php │ │ ├── domain │ │ │ ├── list.blade.php │ │ │ └── record.blade.php │ │ ├── index.blade.php │ │ ├── layout │ │ │ ├── index.blade.php │ │ │ └── pagination.blade.php │ │ ├── login.blade.php │ │ ├── profile.blade.php │ │ └── user │ │ │ ├── group.blade.php │ │ │ ├── list.blade.php │ │ │ └── point.blade.php │ │ ├── email │ │ ├── password.blade.php │ │ ├── test.blade.php │ │ └── verify.blade.php │ │ ├── error.blade.php │ │ ├── home │ │ ├── index.blade.php │ │ ├── layout │ │ │ └── index.blade.php │ │ ├── point.blade.php │ │ ├── profile.blade.php │ │ └── red.blade.php │ │ ├── index.blade.php │ │ ├── index1.blade.php │ │ ├── index2.blade.php │ │ ├── install.blade.php │ │ ├── login.blade.php │ │ ├── password.blade.php │ │ └── 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 │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── vendor │ ├── autoload.php │ ├── beyondcode │ │ └── laravel-dump-server │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config │ │ │ └── config.php │ │ │ ├── helpers.php │ │ │ └── src │ │ │ ├── DumpServerCommand.php │ │ │ ├── DumpServerServiceProvider.php │ │ │ ├── Dumper.php │ │ │ └── RequestContextProvider.php │ ├── bin │ │ ├── php-parse │ │ ├── php-parse.bat │ │ ├── phpunit │ │ ├── phpunit.bat │ │ ├── psysh │ │ ├── psysh.bat │ │ ├── var-dump-server │ │ └── var-dump-server.bat │ ├── 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 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Xdg.php │ │ │ └── tests │ │ │ └── XdgTest.php │ ├── doctrine │ │ ├── inflector │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── lib │ │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Inflector │ │ │ │ └── Inflector.php │ │ ├── instantiator │ │ │ ├── .doctrine-project.json │ │ │ ├── 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 │ ├── erusev │ │ └── parsedown │ │ │ ├── LICENSE.txt │ │ │ ├── Parsedown.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── 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 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── readme.md │ │ │ ├── src │ │ │ ├── Faker │ │ │ │ ├── Calculator │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── 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 │ │ │ └── test │ │ │ ├── Faker │ │ │ ├── Calculator │ │ │ │ ├── IbanTest.php │ │ │ │ ├── InnTest.php │ │ │ │ ├── LuhnTest.php │ │ │ │ └── TCNoTest.php │ │ │ ├── DefaultGeneratorTest.php │ │ │ ├── GeneratorTest.php │ │ │ └── Provider │ │ │ │ ├── AddressTest.php │ │ │ │ ├── BarcodeTest.php │ │ │ │ ├── BaseTest.php │ │ │ │ ├── BiasedTest.php │ │ │ │ ├── ColorTest.php │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── DateTimeTest.php │ │ │ │ ├── HtmlLoremTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ ├── LocalizationTest.php │ │ │ │ ├── LoremTest.php │ │ │ │ ├── MiscellaneousTest.php │ │ │ │ ├── PaymentTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ ├── PhoneNumberTest.php │ │ │ │ ├── ProviderOverrideTest.php │ │ │ │ ├── TextTest.php │ │ │ │ ├── UserAgentTest.php │ │ │ │ ├── UuidTest.php │ │ │ │ ├── ar_JO │ │ │ │ └── InternetTest.php │ │ │ │ ├── ar_SA │ │ │ │ └── InternetTest.php │ │ │ │ ├── at_AT │ │ │ │ └── PaymentTest.php │ │ │ │ ├── bg_BG │ │ │ │ └── PaymentTest.php │ │ │ │ ├── bn_BD │ │ │ │ └── PersonTest.php │ │ │ │ ├── cs_CZ │ │ │ │ └── PersonTest.php │ │ │ │ ├── da_DK │ │ │ │ └── InternetTest.php │ │ │ │ ├── de_AT │ │ │ │ ├── InternetTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── de_CH │ │ │ │ ├── AddressTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── de_DE │ │ │ │ └── InternetTest.php │ │ │ │ ├── el_GR │ │ │ │ └── TextTest.php │ │ │ │ ├── en_AU │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_CA │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_GB │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_IN │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_NG │ │ │ │ ├── AddressTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── en_NZ │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── en_PH │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_SG │ │ │ │ ├── AddressTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── en_UG │ │ │ │ └── AddressTest.php │ │ │ │ ├── en_US │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── PaymentTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── en_ZA │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── es_ES │ │ │ │ ├── PaymentTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── TextTest.php │ │ │ │ ├── es_PE │ │ │ │ └── PersonTest.php │ │ │ │ ├── es_VE │ │ │ │ ├── CompanyTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── fi_FI │ │ │ │ ├── InternetTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── fr_BE │ │ │ │ └── PaymentTest.php │ │ │ │ ├── fr_CH │ │ │ │ ├── AddressTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── fr_FR │ │ │ │ ├── AddressTest.php │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── PaymentTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ ├── PhoneNumberTest.php │ │ │ │ └── TextTest.php │ │ │ │ ├── id_ID │ │ │ │ └── PersonTest.php │ │ │ │ ├── it_CH │ │ │ │ ├── AddressTest.php │ │ │ │ ├── InternetTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── it_IT │ │ │ │ ├── CompanyTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── ja_JP │ │ │ │ ├── InternetTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── ka_GE │ │ │ │ └── TextTest.php │ │ │ │ ├── kk_KZ │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── TextTest.php │ │ │ │ ├── ko_KR │ │ │ │ └── TextTest.php │ │ │ │ ├── mn_MN │ │ │ │ └── PersonTest.php │ │ │ │ ├── ms_MY │ │ │ │ └── PersonTest.php │ │ │ │ ├── nl_BE │ │ │ │ ├── PaymentTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── nl_NL │ │ │ │ ├── CompanyTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── pl_PL │ │ │ │ ├── AddressTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── pt_BR │ │ │ │ ├── CompanyTest.php │ │ │ │ └── PersonTest.php │ │ │ │ ├── pt_PT │ │ │ │ ├── AddressTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── ro_RO │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── ru_RU │ │ │ │ ├── CompanyTest.php │ │ │ │ └── TextTest.php │ │ │ │ ├── sv_SE │ │ │ │ └── PersonTest.php │ │ │ │ ├── tr_TR │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── PaymentTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ ├── uk_UA │ │ │ │ ├── AddressTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── PhoneNumberTest.php │ │ │ │ └── zh_TW │ │ │ │ ├── CompanyTest.php │ │ │ │ ├── PersonTest.php │ │ │ │ └── TextTest.php │ │ │ ├── documentor.php │ │ │ └── test.php │ ├── gregwar │ │ └── captcha │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── demo │ │ │ ├── demo.php │ │ │ ├── fingerprint.php │ │ │ ├── form.php │ │ │ ├── index.php │ │ │ ├── ocr.php │ │ │ ├── output.php │ │ │ └── session.php │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Gregwar │ │ │ │ └── Captcha │ │ │ │ ├── CaptchaBuilder.php │ │ │ │ ├── CaptchaBuilderInterface.php │ │ │ │ ├── Font │ │ │ │ ├── captcha0.ttf │ │ │ │ ├── captcha1.ttf │ │ │ │ ├── captcha2.ttf │ │ │ │ ├── captcha3.ttf │ │ │ │ ├── captcha4.ttf │ │ │ │ └── captcha5.ttf │ │ │ │ ├── ImageFileHandler.php │ │ │ │ ├── PhraseBuilder.php │ │ │ │ └── PhraseBuilderInterface.php │ │ │ └── tests │ │ │ └── CaptchaBuilderTest.php │ ├── guzzlehttp │ │ ├── guzzle │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Client.php │ │ │ │ ├── ClientInterface.php │ │ │ │ ├── Cookie │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ ├── FileCookieJar.php │ │ │ │ ├── SessionCookieJar.php │ │ │ │ └── SetCookie.php │ │ │ │ ├── Exception │ │ │ │ ├── BadResponseException.php │ │ │ │ ├── ClientException.php │ │ │ │ ├── ConnectException.php │ │ │ │ ├── GuzzleException.php │ │ │ │ ├── RequestException.php │ │ │ │ ├── SeekException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ └── TransferException.php │ │ │ │ ├── Handler │ │ │ │ ├── CurlFactory.php │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ ├── CurlHandler.php │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ ├── EasyHandle.php │ │ │ │ ├── MockHandler.php │ │ │ │ ├── Proxy.php │ │ │ │ └── StreamHandler.php │ │ │ │ ├── HandlerStack.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Pool.php │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ ├── RequestOptions.php │ │ │ │ ├── RetryMiddleware.php │ │ │ │ ├── TransferStats.php │ │ │ │ ├── UriTemplate.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ ├── promises │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── AggregateException.php │ │ │ │ ├── CancellationException.php │ │ │ │ ├── Coroutine.php │ │ │ │ ├── EachPromise.php │ │ │ │ ├── FulfilledPromise.php │ │ │ │ ├── Promise.php │ │ │ │ ├── PromiseInterface.php │ │ │ │ ├── PromisorInterface.php │ │ │ │ ├── RejectedPromise.php │ │ │ │ ├── RejectionException.php │ │ │ │ ├── TaskQueue.php │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ ├── functions.php │ │ │ │ └── functions_include.php │ │ └── psr7 │ │ │ ├── .editorconfig │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── FnStream.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── MessageTrait.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── hamcrest │ │ └── hamcrest-php │ │ │ ├── .coveralls.yml │ │ │ ├── .gitignore │ │ │ ├── .gush.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── TODO.txt │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── generator │ │ │ ├── FactoryCall.php │ │ │ ├── FactoryClass.php │ │ │ ├── FactoryFile.php │ │ │ ├── FactoryGenerator.php │ │ │ ├── FactoryMethod.php │ │ │ ├── FactoryParameter.php │ │ │ ├── GlobalFunctionFile.php │ │ │ ├── StaticMethodFile.php │ │ │ ├── parts │ │ │ │ ├── file_header.txt │ │ │ │ ├── functions_footer.txt │ │ │ │ ├── functions_header.txt │ │ │ │ ├── functions_imports.txt │ │ │ │ ├── matchers_footer.txt │ │ │ │ ├── matchers_header.txt │ │ │ │ └── matchers_imports.txt │ │ │ └── run.php │ │ │ ├── hamcrest │ │ │ ├── Hamcrest.php │ │ │ └── Hamcrest │ │ │ │ ├── Arrays │ │ │ │ ├── IsArray.php │ │ │ │ ├── IsArrayContaining.php │ │ │ │ ├── IsArrayContainingInAnyOrder.php │ │ │ │ ├── IsArrayContainingInOrder.php │ │ │ │ ├── IsArrayContainingKey.php │ │ │ │ ├── IsArrayContainingKeyValuePair.php │ │ │ │ ├── IsArrayWithSize.php │ │ │ │ ├── MatchingOnce.php │ │ │ │ └── SeriesMatchingOnce.php │ │ │ │ ├── AssertionError.php │ │ │ │ ├── BaseDescription.php │ │ │ │ ├── BaseMatcher.php │ │ │ │ ├── Collection │ │ │ │ ├── IsEmptyTraversable.php │ │ │ │ └── IsTraversableWithSize.php │ │ │ │ ├── Core │ │ │ │ ├── AllOf.php │ │ │ │ ├── AnyOf.php │ │ │ │ ├── CombinableMatcher.php │ │ │ │ ├── DescribedAs.php │ │ │ │ ├── Every.php │ │ │ │ ├── HasToString.php │ │ │ │ ├── Is.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsCollectionContaining.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNot.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsSame.php │ │ │ │ ├── IsTypeOf.php │ │ │ │ ├── Set.php │ │ │ │ └── ShortcutCombination.php │ │ │ │ ├── Description.php │ │ │ │ ├── DiagnosingMatcher.php │ │ │ │ ├── FeatureMatcher.php │ │ │ │ ├── Internal │ │ │ │ └── SelfDescribingValue.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MatcherAssert.php │ │ │ │ ├── Matchers.php │ │ │ │ ├── NullDescription.php │ │ │ │ ├── Number │ │ │ │ ├── IsCloseTo.php │ │ │ │ └── OrderingComparison.php │ │ │ │ ├── SelfDescribing.php │ │ │ │ ├── StringDescription.php │ │ │ │ ├── Text │ │ │ │ ├── IsEmptyString.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ │ │ ├── MatchesPattern.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringContainsIgnoringCase.php │ │ │ │ ├── StringContainsInOrder.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ └── SubstringMatcher.php │ │ │ │ ├── Type │ │ │ │ ├── IsArray.php │ │ │ │ ├── IsBoolean.php │ │ │ │ ├── IsCallable.php │ │ │ │ ├── IsDouble.php │ │ │ │ ├── IsInteger.php │ │ │ │ ├── IsNumeric.php │ │ │ │ ├── IsObject.php │ │ │ │ ├── IsResource.php │ │ │ │ ├── IsScalar.php │ │ │ │ └── IsString.php │ │ │ │ ├── TypeSafeDiagnosingMatcher.php │ │ │ │ ├── TypeSafeMatcher.php │ │ │ │ ├── Util.php │ │ │ │ └── Xml │ │ │ │ └── HasXPath.php │ │ │ └── tests │ │ │ ├── Hamcrest │ │ │ ├── AbstractMatcherTest.php │ │ │ ├── Array │ │ │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ │ │ ├── IsArrayContainingInOrderTest.php │ │ │ │ ├── IsArrayContainingKeyTest.php │ │ │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ │ │ ├── IsArrayContainingTest.php │ │ │ │ ├── IsArrayTest.php │ │ │ │ └── IsArrayWithSizeTest.php │ │ │ ├── BaseMatcherTest.php │ │ │ ├── Collection │ │ │ │ ├── IsEmptyTraversableTest.php │ │ │ │ └── IsTraversableWithSizeTest.php │ │ │ ├── Core │ │ │ │ ├── AllOfTest.php │ │ │ │ ├── AnyOfTest.php │ │ │ │ ├── CombinableMatcherTest.php │ │ │ │ ├── DescribedAsTest.php │ │ │ │ ├── EveryTest.php │ │ │ │ ├── HasToStringTest.php │ │ │ │ ├── IsAnythingTest.php │ │ │ │ ├── IsCollectionContainingTest.php │ │ │ │ ├── IsEqualTest.php │ │ │ │ ├── IsIdenticalTest.php │ │ │ │ ├── IsInstanceOfTest.php │ │ │ │ ├── IsNotTest.php │ │ │ │ ├── IsNullTest.php │ │ │ │ ├── IsSameTest.php │ │ │ │ ├── IsTest.php │ │ │ │ ├── IsTypeOfTest.php │ │ │ │ ├── SampleBaseClass.php │ │ │ │ ├── SampleSubClass.php │ │ │ │ └── SetTest.php │ │ │ ├── FeatureMatcherTest.php │ │ │ ├── MatcherAssertTest.php │ │ │ ├── Number │ │ │ │ ├── IsCloseToTest.php │ │ │ │ └── OrderingComparisonTest.php │ │ │ ├── StringDescriptionTest.php │ │ │ ├── Text │ │ │ │ ├── IsEmptyStringTest.php │ │ │ │ ├── IsEqualIgnoringCaseTest.php │ │ │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ │ │ ├── MatchesPatternTest.php │ │ │ │ ├── StringContainsIgnoringCaseTest.php │ │ │ │ ├── StringContainsInOrderTest.php │ │ │ │ ├── StringContainsTest.php │ │ │ │ ├── StringEndsWithTest.php │ │ │ │ └── StringStartsWithTest.php │ │ │ ├── Type │ │ │ │ ├── IsArrayTest.php │ │ │ │ ├── IsBooleanTest.php │ │ │ │ ├── IsCallableTest.php │ │ │ │ ├── IsDoubleTest.php │ │ │ │ ├── IsIntegerTest.php │ │ │ │ ├── IsNumericTest.php │ │ │ │ ├── IsObjectTest.php │ │ │ │ ├── IsResourceTest.php │ │ │ │ ├── IsScalarTest.php │ │ │ │ └── IsStringTest.php │ │ │ ├── UtilTest.php │ │ │ └── Xml │ │ │ │ └── HasXPathTest.php │ │ │ ├── bootstrap.php │ │ │ └── phpunit.xml.dist │ ├── 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 │ │ │ │ │ ├── AuthMakeCommand.php │ │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ │ └── make │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── HomeController.stub │ │ │ │ │ │ ├── routes.stub │ │ │ │ │ │ └── views │ │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── login.stub │ │ │ │ │ │ ├── passwords │ │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ │ └── reset.stub │ │ │ │ │ │ ├── register.stub │ │ │ │ │ │ └── verify.stub │ │ │ │ │ │ ├── home.stub │ │ │ │ │ │ └── layouts │ │ │ │ │ │ └── app.stub │ │ │ │ ├── CreatesUserProviders.php │ │ │ │ ├── DatabaseUserProvider.php │ │ │ │ ├── EloquentUserProvider.php │ │ │ │ ├── Events │ │ │ │ │ ├── Attempting.php │ │ │ │ │ ├── Authenticated.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── Lockout.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── Logout.php │ │ │ │ │ ├── OtherDeviceLogout.php │ │ │ │ │ ├── PasswordReset.php │ │ │ │ │ ├── Registered.php │ │ │ │ │ └── Verified.php │ │ │ │ ├── GenericUser.php │ │ │ │ ├── GuardHelpers.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Listeners │ │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ │ ├── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ │ ├── Authorize.php │ │ │ │ │ └── EnsureEmailIsVerified.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 │ │ │ │ ├── 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 │ │ │ │ ├── ConfirmableTrait.php │ │ │ │ ├── DetectsApplicationNamespace.php │ │ │ │ ├── Events │ │ │ │ │ ├── ArtisanStarting.php │ │ │ │ │ ├── CommandFinished.php │ │ │ │ │ └── CommandStarting.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 │ │ │ │ └── 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 │ │ │ │ │ └── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── DatabaseManager.php │ │ │ │ ├── DatabaseServiceProvider.php │ │ │ │ ├── DetectsDeadlocks.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── JsonExpression.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── AppNameCommand.php │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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-handler-queued.stub │ │ │ │ │ │ ├── event-handler.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── MandrillTransport.php │ │ │ │ │ ├── SesTransport.php │ │ │ │ │ ├── SparkPostTransport.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── DateFactory.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 │ │ │ │ │ ├── Input.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 │ │ │ │ ├── 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 │ │ │ │ │ ├── ForwardsCalls.php │ │ │ │ │ ├── Localizable.php │ │ │ │ │ └── Macroable.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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.txt │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── config │ │ │ └── tinker.php │ │ │ └── src │ │ │ ├── ClassAliasAutoloader.php │ │ │ ├── Console │ │ │ └── TinkerCommand.php │ │ │ ├── TinkerCaster.php │ │ │ └── TinkerServiceProvider.php │ ├── league │ │ └── flysystem │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ ├── Directory.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── FileExistsException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemInterface.php │ │ │ ├── FilesystemNotFoundException.php │ │ │ ├── Handler.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_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 │ │ │ │ │ ├── Parameter.php │ │ │ │ │ ├── StringManipulation │ │ │ │ │ │ └── Pass │ │ │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── .php_cs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── 01-usage.md │ │ │ ├── 02-handlers-formatters-processors.md │ │ │ ├── 03-utilities.md │ │ │ ├── 04-extending.md │ │ │ └── sockets.md │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Monolog │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── Formatter │ │ │ │ ├── ChromePHPFormatter.php │ │ │ │ ├── ElasticaFormatter.php │ │ │ │ ├── FlowdockFormatter.php │ │ │ │ ├── FluentdFormatter.php │ │ │ │ ├── FormatterInterface.php │ │ │ │ ├── GelfMessageFormatter.php │ │ │ │ ├── HtmlFormatter.php │ │ │ │ ├── JsonFormatter.php │ │ │ │ ├── LineFormatter.php │ │ │ │ ├── LogglyFormatter.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 │ │ │ │ ├── ElasticSearchHandler.php │ │ │ │ ├── ErrorLogHandler.php │ │ │ │ ├── FilterHandler.php │ │ │ │ ├── FingersCrossed │ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ │ ├── FingersCrossedHandler.php │ │ │ │ ├── FirePHPHandler.php │ │ │ │ ├── FleepHookHandler.php │ │ │ │ ├── FlowdockHandler.php │ │ │ │ ├── GelfHandler.php │ │ │ │ ├── GroupHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HandlerWrapper.php │ │ │ │ ├── HipChatHandler.php │ │ │ │ ├── IFTTTHandler.php │ │ │ │ ├── InsightOpsHandler.php │ │ │ │ ├── LogEntriesHandler.php │ │ │ │ ├── LogglyHandler.php │ │ │ │ ├── MailHandler.php │ │ │ │ ├── MandrillHandler.php │ │ │ │ ├── MissingExtensionException.php │ │ │ │ ├── MongoDBHandler.php │ │ │ │ ├── NativeMailerHandler.php │ │ │ │ ├── NewRelicHandler.php │ │ │ │ ├── NullHandler.php │ │ │ │ ├── PHPConsoleHandler.php │ │ │ │ ├── PsrHandler.php │ │ │ │ ├── PushoverHandler.php │ │ │ │ ├── RavenHandler.php │ │ │ │ ├── RedisHandler.php │ │ │ │ ├── RollbarHandler.php │ │ │ │ ├── RotatingFileHandler.php │ │ │ │ ├── SamplingHandler.php │ │ │ │ ├── Slack │ │ │ │ │ └── SlackRecord.php │ │ │ │ ├── SlackHandler.php │ │ │ │ ├── SlackWebhookHandler.php │ │ │ │ ├── SlackbotHandler.php │ │ │ │ ├── SocketHandler.php │ │ │ │ ├── StreamHandler.php │ │ │ │ ├── SwiftMailerHandler.php │ │ │ │ ├── SyslogHandler.php │ │ │ │ ├── SyslogUdp │ │ │ │ │ └── UdpSocket.php │ │ │ │ ├── SyslogUdpHandler.php │ │ │ │ ├── TestHandler.php │ │ │ │ ├── WhatFailureGroupHandler.php │ │ │ │ └── ZendMonitorHandler.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Processor │ │ │ │ ├── GitProcessor.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 │ │ │ │ └── Utils.php │ │ │ └── tests │ │ │ └── Monolog │ │ │ ├── ErrorHandlerTest.php │ │ │ ├── Formatter │ │ │ ├── ChromePHPFormatterTest.php │ │ │ ├── ElasticaFormatterTest.php │ │ │ ├── FlowdockFormatterTest.php │ │ │ ├── FluentdFormatterTest.php │ │ │ ├── GelfMessageFormatterTest.php │ │ │ ├── JsonFormatterTest.php │ │ │ ├── LineFormatterTest.php │ │ │ ├── LogglyFormatterTest.php │ │ │ ├── LogstashFormatterTest.php │ │ │ ├── MongoDBFormatterTest.php │ │ │ ├── NormalizerFormatterTest.php │ │ │ ├── ScalarFormatterTest.php │ │ │ └── WildfireFormatterTest.php │ │ │ ├── Handler │ │ │ ├── AbstractHandlerTest.php │ │ │ ├── AbstractProcessingHandlerTest.php │ │ │ ├── AmqpHandlerTest.php │ │ │ ├── BrowserConsoleHandlerTest.php │ │ │ ├── BufferHandlerTest.php │ │ │ ├── ChromePHPHandlerTest.php │ │ │ ├── CouchDBHandlerTest.php │ │ │ ├── DeduplicationHandlerTest.php │ │ │ ├── DoctrineCouchDBHandlerTest.php │ │ │ ├── DynamoDbHandlerTest.php │ │ │ ├── ElasticSearchHandlerTest.php │ │ │ ├── ErrorLogHandlerTest.php │ │ │ ├── FilterHandlerTest.php │ │ │ ├── FingersCrossedHandlerTest.php │ │ │ ├── FirePHPHandlerTest.php │ │ │ ├── Fixtures │ │ │ │ └── .gitkeep │ │ │ ├── FleepHookHandlerTest.php │ │ │ ├── FlowdockHandlerTest.php │ │ │ ├── GelfHandlerLegacyTest.php │ │ │ ├── GelfHandlerTest.php │ │ │ ├── GelfMockMessagePublisher.php │ │ │ ├── GroupHandlerTest.php │ │ │ ├── HandlerWrapperTest.php │ │ │ ├── HipChatHandlerTest.php │ │ │ ├── InsightOpsHandlerTest.php │ │ │ ├── LogEntriesHandlerTest.php │ │ │ ├── MailHandlerTest.php │ │ │ ├── MockRavenClient.php │ │ │ ├── MongoDBHandlerTest.php │ │ │ ├── NativeMailerHandlerTest.php │ │ │ ├── NewRelicHandlerTest.php │ │ │ ├── NullHandlerTest.php │ │ │ ├── PHPConsoleHandlerTest.php │ │ │ ├── PsrHandlerTest.php │ │ │ ├── PushoverHandlerTest.php │ │ │ ├── RavenHandlerTest.php │ │ │ ├── RedisHandlerTest.php │ │ │ ├── RollbarHandlerTest.php │ │ │ ├── RotatingFileHandlerTest.php │ │ │ ├── SamplingHandlerTest.php │ │ │ ├── Slack │ │ │ │ └── SlackRecordTest.php │ │ │ ├── SlackHandlerTest.php │ │ │ ├── SlackWebhookHandlerTest.php │ │ │ ├── SlackbotHandlerTest.php │ │ │ ├── SocketHandlerTest.php │ │ │ ├── StreamHandlerTest.php │ │ │ ├── SwiftMailerHandlerTest.php │ │ │ ├── SyslogHandlerTest.php │ │ │ ├── SyslogUdpHandlerTest.php │ │ │ ├── TestHandlerTest.php │ │ │ ├── UdpSocketTest.php │ │ │ ├── WhatFailureGroupHandlerTest.php │ │ │ └── ZendMonitorHandlerTest.php │ │ │ ├── LoggerTest.php │ │ │ ├── Processor │ │ │ ├── GitProcessorTest.php │ │ │ ├── IntrospectionProcessorTest.php │ │ │ ├── MemoryPeakUsageProcessorTest.php │ │ │ ├── MemoryUsageProcessorTest.php │ │ │ ├── MercurialProcessorTest.php │ │ │ ├── ProcessIdProcessorTest.php │ │ │ ├── PsrLogMessageProcessorTest.php │ │ │ ├── TagProcessorTest.php │ │ │ ├── UidProcessorTest.php │ │ │ └── WebProcessorTest.php │ │ │ ├── PsrLogCompatTest.php │ │ │ ├── RegistryTest.php │ │ │ ├── SignalHandlerTest.php │ │ │ └── TestCase.php │ ├── myclabs │ │ └── deep-copy │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .scrutinizer.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── clone.png │ │ │ ├── deep-clone.png │ │ │ ├── deep-copy.png │ │ │ └── graph.png │ │ │ ├── fixtures │ │ │ ├── f001 │ │ │ │ ├── A.php │ │ │ │ └── B.php │ │ │ ├── f002 │ │ │ │ └── A.php │ │ │ ├── f003 │ │ │ │ └── Foo.php │ │ │ ├── f004 │ │ │ │ └── UnclonableItem.php │ │ │ ├── f005 │ │ │ │ └── Foo.php │ │ │ ├── f006 │ │ │ │ ├── A.php │ │ │ │ └── B.php │ │ │ ├── f007 │ │ │ │ ├── FooDateInterval.php │ │ │ │ └── FooDateTimeZone.php │ │ │ └── f008 │ │ │ │ ├── A.php │ │ │ │ └── B.php │ │ │ └── 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 │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ │ ├── TypeMatcher │ │ │ └── TypeMatcher.php │ │ │ └── deep_copy.php │ ├── nesbot │ │ └── carbon │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .multi-tester.yml │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── contributing.md │ │ │ ├── phpmd.xml │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── Carbon │ │ │ ├── Carbon.php │ │ │ ├── CarbonImmutable.php │ │ │ ├── CarbonInterface.php │ │ │ ├── CarbonInterval.php │ │ │ ├── CarbonPeriod.php │ │ │ ├── CarbonTimeZone.php │ │ │ ├── Exceptions │ │ │ └── InvalidDateException.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 │ │ │ ├── me.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 │ │ │ ├── scr.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_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 │ │ │ ├── Comparison.php │ │ │ ├── Converter.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── Difference.php │ │ │ ├── Localization.php │ │ │ ├── Macro.php │ │ │ ├── Modifiers.php │ │ │ ├── Mutability.php │ │ │ ├── Options.php │ │ │ ├── Rounding.php │ │ │ ├── Serialization.php │ │ │ ├── Test.php │ │ │ ├── Timestamp.php │ │ │ ├── Units.php │ │ │ └── Week.php │ │ │ └── Translator.php │ ├── nikic │ │ └── php-parser │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE-1.0.md │ │ │ ├── UPGRADE-2.0.md │ │ │ ├── UPGRADE-3.0.md │ │ │ ├── UPGRADE-4.0.md │ │ │ ├── bin │ │ │ └── php-parse │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── 0_Introduction.markdown │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ ├── README.md │ │ │ └── component │ │ │ │ ├── AST_builders.markdown │ │ │ │ ├── Constant_expression_evaluation.markdown │ │ │ │ ├── Error_handling.markdown │ │ │ │ ├── FAQ.markdown │ │ │ │ ├── JSON_representation.markdown │ │ │ │ ├── Lexer.markdown │ │ │ │ ├── Name_resolution.markdown │ │ │ │ ├── Performance.markdown │ │ │ │ ├── Pretty_printing.markdown │ │ │ │ └── Walking_the_AST.markdown │ │ │ ├── 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 │ │ │ │ ├── NameContext.php │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ ├── Arg.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Expr │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ ├── Array_.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 │ │ │ │ └── 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 │ │ │ ├── phpunit.xml.dist │ │ │ ├── test │ │ │ ├── PhpParser │ │ │ │ ├── Builder │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ ├── TraitUseAdaptationTest.php │ │ │ │ │ ├── TraitUseTest.php │ │ │ │ │ └── UseTest.php │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ ├── CodeParsingTest.php │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ ├── CodeTestParser.php │ │ │ │ ├── CommentTest.php │ │ │ │ ├── ConstExprEvaluatorTest.php │ │ │ │ ├── ErrorHandler │ │ │ │ │ ├── CollectingTest.php │ │ │ │ │ └── ThrowingTest.php │ │ │ │ ├── ErrorTest.php │ │ │ │ ├── Internal │ │ │ │ │ └── DifferTest.php │ │ │ │ ├── JsonDecoderTest.php │ │ │ │ ├── Lexer │ │ │ │ │ └── EmulativeTest.php │ │ │ │ ├── LexerTest.php │ │ │ │ ├── NameContextTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── IdentifierTest.php │ │ │ │ │ ├── NameTest.php │ │ │ │ │ ├── Scalar │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ └── Stmt │ │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ ├── NodeDumperTest.php │ │ │ │ ├── NodeFinderTest.php │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ ├── NodeVisitor │ │ │ │ │ ├── FindingVisitorTest.php │ │ │ │ │ ├── FirstFindingVisitorTest.php │ │ │ │ │ └── NameResolverTest.php │ │ │ │ ├── Parser │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ └── Php7Test.php │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ └── PrettyPrinterTest.php │ │ │ ├── bootstrap.php │ │ │ ├── code │ │ │ │ ├── formatPreservation │ │ │ │ │ ├── addingPropertyType.test │ │ │ │ │ ├── anonClasses.test │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── blockConversion.test │ │ │ │ │ ├── comments.test │ │ │ │ │ ├── fixup.test │ │ │ │ │ ├── inlineHtml.test │ │ │ │ │ ├── insertionOfNullable.test │ │ │ │ │ ├── listInsertion.test │ │ │ │ │ ├── listInsertionIndentation.test │ │ │ │ │ ├── listRemoval.test │ │ │ │ │ ├── modifierChange.test │ │ │ │ │ ├── nopCommentAtEnd.test │ │ │ │ │ ├── removalViaNull.test │ │ │ │ │ ├── removingPropertyType.test │ │ │ │ │ └── traitAlias.test │ │ │ │ ├── parser │ │ │ │ │ ├── blockComments.test │ │ │ │ │ ├── commentAtEndOfClass.test │ │ │ │ │ ├── comments.test │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ │ └── recovery.test │ │ │ │ │ ├── expr │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ ├── listReferences.test │ │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ ├── trailingCommas.test │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ └── variable.test │ │ │ │ │ ├── exprStmtMode.test │ │ │ │ │ ├── scalar │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ ├── flexibleDocString.test │ │ │ │ │ │ ├── flexibleDocStringErrors.test │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ └── stmt │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ ├── class │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ ├── propertyTypes.test │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ ├── function │ │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ ├── loop │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ └── while.test │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ ├── commentAfterNamespace.test │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ │ ├── groupUseTrailingComma.test │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ └── unset.test │ │ │ │ └── prettyPrinter │ │ │ │ │ ├── comments.test │ │ │ │ │ ├── commentsInCommaList.test │ │ │ │ │ ├── expr │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ ├── call.test │ │ │ │ │ ├── closure.test │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ ├── docStrings.test │ │ │ │ │ ├── include.test │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ ├── list.test │ │ │ │ │ ├── literals.test │ │ │ │ │ ├── numbers.test │ │ │ │ │ ├── operators.test │ │ │ │ │ ├── parentheses.test │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ ├── uvs.test │ │ │ │ │ ├── variables.test │ │ │ │ │ └── yield.test │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ ├── nestedInlineHTML.test │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ └── stmt │ │ │ │ │ ├── alias.test │ │ │ │ │ ├── break_continue.test │ │ │ │ │ ├── class.test │ │ │ │ │ ├── class_const.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── declare.test │ │ │ │ │ ├── do_while.test │ │ │ │ │ ├── for.test │ │ │ │ │ ├── foreach.test │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ ├── goto.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ ├── if.test │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ ├── namespaces.test │ │ │ │ │ ├── nullable_types.test │ │ │ │ │ ├── properties.test │ │ │ │ │ ├── switch.test │ │ │ │ │ ├── throw.test │ │ │ │ │ ├── traitUse.test │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ └── while.test │ │ │ └── updateTests.php │ │ │ └── test_old │ │ │ ├── run-php-src.sh │ │ │ └── run.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 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Element.php │ │ │ │ ├── File.php │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Location.php │ │ │ │ ├── Project.php │ │ │ │ └── ProjectFactory.php │ │ ├── reflection-docblock │ │ │ ├── .coveralls.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── easy-coding-standard.neon │ │ │ └── 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 │ │ │ │ │ └── Strategy.php │ │ │ │ │ ├── Formatter.php │ │ │ │ │ ├── Formatter │ │ │ │ │ ├── AlignFormatter.php │ │ │ │ │ └── PassthroughFormatter.php │ │ │ │ │ ├── Generic.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 │ │ │ │ │ ├── Throws.php │ │ │ │ │ ├── Uses.php │ │ │ │ │ ├── Var_.php │ │ │ │ │ └── Version.php │ │ │ │ ├── DocBlockFactory.php │ │ │ │ └── DocBlockFactoryInterface.php │ │ └── type-resolver │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── FqsenResolver.php │ │ │ ├── Type.php │ │ │ ├── TypeResolver.php │ │ │ └── Types │ │ │ ├── Array_.php │ │ │ ├── Boolean.php │ │ │ ├── Callable_.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 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── PhpOption │ │ │ │ ├── LazyOption.php │ │ │ │ ├── None.php │ │ │ │ ├── Option.php │ │ │ │ └── Some.php │ │ │ └── tests │ │ │ ├── PhpOption │ │ │ └── Tests │ │ │ │ ├── EnsureTest.php │ │ │ │ ├── LazyOptionTest.php │ │ │ │ ├── NoneTest.php │ │ │ │ ├── OptionTest.php │ │ │ │ ├── PerformanceTest.php │ │ │ │ └── SomeTest.php │ │ │ └── bootstrap.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 │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── stale.yml │ │ │ ├── .gitignore │ │ │ ├── .php_cs.dist │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog-6.1.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ ├── CodeCoverage.php │ │ │ │ ├── Driver │ │ │ │ │ ├── Driver.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_without_ignore.php │ │ │ │ └── source_without_namespace.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── tests │ │ │ │ ├── BuilderTest.php │ │ │ │ ├── CloverTest.php │ │ │ │ ├── CodeCoverageTest.php │ │ │ │ ├── Crap4jTest.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 │ │ │ │ └── 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 │ │ │ │ └── stale.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ ├── Token.php │ │ │ │ └── Token │ │ │ │ │ ├── Stream.php │ │ │ │ │ └── Stream │ │ │ │ │ └── CachingFactory.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 │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── stale.yml │ │ │ ├── .gitignore │ │ │ ├── .phan │ │ │ └── config.php │ │ │ ├── .php_cs.dist │ │ │ ├── .travis.yml │ │ │ ├── ChangeLog-7.5.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phive.xml │ │ │ ├── phpunit │ │ │ ├── phpunit.xml │ │ │ ├── phpunit.xsd │ │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── Framework │ │ │ │ ├── Assert.php │ │ │ │ ├── Assert │ │ │ │ │ └── Functions.php │ │ │ │ ├── AssertionFailedError.php │ │ │ │ ├── CodeCoverageException.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 │ │ │ │ │ └── TraversableContainsOnly.php │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── DataProviderTestSuite.php │ │ │ │ ├── Error │ │ │ │ │ ├── Deprecated.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── Notice.php │ │ │ │ │ └── Warning.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionWrapper.php │ │ │ │ ├── ExpectationFailedException.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── IncompleteTestCase.php │ │ │ │ ├── IncompleteTestError.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── MockObject │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── Identity.php │ │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ │ ├── Match.php │ │ │ │ │ │ ├── MethodNameMatch.php │ │ │ │ │ │ ├── NamespaceMatch.php │ │ │ │ │ │ ├── ParametersMatch.php │ │ │ │ │ │ └── Stub.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ └── RuntimeException.php │ │ │ │ │ ├── ForwardCompatibility │ │ │ │ │ │ └── MockObject.php │ │ │ │ │ ├── Generator.php │ │ │ │ │ ├── Generator │ │ │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ │ ├── Invocation │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── ObjectInvocation.php │ │ │ │ │ │ └── StaticInvocation.php │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ ├── Invokable.php │ │ │ │ │ ├── Matcher.php │ │ │ │ │ ├── Matcher │ │ │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ │ │ ├── AnyParameters.php │ │ │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ │ │ ├── DeferredError.php │ │ │ │ │ │ ├── Invocation.php │ │ │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ │ │ ├── InvokedCount.php │ │ │ │ │ │ ├── InvokedRecorder.php │ │ │ │ │ │ ├── MethodName.php │ │ │ │ │ │ ├── Parameters.php │ │ │ │ │ │ └── StatelessInvocation.php │ │ │ │ │ ├── MockBuilder.php │ │ │ │ │ ├── MockMethod.php │ │ │ │ │ ├── MockMethodSet.php │ │ │ │ │ ├── MockObject.php │ │ │ │ │ ├── Stub.php │ │ │ │ │ ├── Stub │ │ │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── MatcherCollection.php │ │ │ │ │ │ ├── ReturnArgument.php │ │ │ │ │ │ ├── ReturnCallback.php │ │ │ │ │ │ ├── ReturnReference.php │ │ │ │ │ │ ├── ReturnSelf.php │ │ │ │ │ │ ├── ReturnStub.php │ │ │ │ │ │ └── ReturnValueMap.php │ │ │ │ │ └── Verifiable.php │ │ │ │ ├── OutputError.php │ │ │ │ ├── RiskyTest.php │ │ │ │ ├── RiskyTestError.php │ │ │ │ ├── SelfDescribing.php │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── SkippedTestCase.php │ │ │ │ ├── SkippedTestError.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ ├── SyntheticError.php │ │ │ │ ├── Test.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestFailure.php │ │ │ │ ├── TestListener.php │ │ │ │ ├── TestListenerDefaultImplementation.php │ │ │ │ ├── TestResult.php │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteIterator.php │ │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ │ ├── Warning.php │ │ │ │ └── WarningTestCase.php │ │ │ ├── Runner │ │ │ │ ├── BaseTestRunner.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 │ │ │ │ ├── PhptTestCase.php │ │ │ │ ├── ResultCacheExtension.php │ │ │ │ ├── StandardTestSuiteLoader.php │ │ │ │ ├── TestSuiteLoader.php │ │ │ │ ├── TestSuiteSorter.php │ │ │ │ └── Version.php │ │ │ ├── TextUI │ │ │ │ ├── Command.php │ │ │ │ ├── ResultPrinter.php │ │ │ │ └── TestRunner.php │ │ │ └── Util │ │ │ │ ├── Blacklist.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConfigurationGenerator.php │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Getopt.php │ │ │ │ ├── GlobalState.php │ │ │ │ ├── InvalidArgumentHelper.php │ │ │ │ ├── Json.php │ │ │ │ ├── Log │ │ │ │ ├── JUnit.php │ │ │ │ └── TeamCity.php │ │ │ │ ├── NullTestResultCache.php │ │ │ │ ├── PHP │ │ │ │ ├── AbstractPhpProcess.php │ │ │ │ ├── DefaultPhpProcess.php │ │ │ │ ├── Template │ │ │ │ │ ├── PhptTestCase.tpl.dist │ │ │ │ │ ├── TestCaseClass.tpl.dist │ │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ │ ├── WindowsPhpProcess.php │ │ │ │ └── eval-stdin.php │ │ │ │ ├── Printer.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── Test.php │ │ │ │ ├── TestDox │ │ │ │ ├── CliTestDoxPrinter.php │ │ │ │ ├── HtmlResultPrinter.php │ │ │ │ ├── NamePrettifier.php │ │ │ │ ├── ResultPrinter.php │ │ │ │ ├── TestResult.php │ │ │ │ ├── TextResultPrinter.php │ │ │ │ └── XmlResultPrinter.php │ │ │ │ ├── TestResultCache.php │ │ │ │ ├── TestResultCacheInterface.php │ │ │ │ ├── TextTestListRenderer.php │ │ │ │ ├── Type.php │ │ │ │ ├── XdebugFilterScriptGenerator.php │ │ │ │ ├── Xml.php │ │ │ │ └── XmlTestListRenderer.php │ │ │ └── tests │ │ │ ├── _files │ │ │ ├── 3194.php │ │ │ ├── 3530.wsdl │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTest.php │ │ │ ├── AbstractTrait.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 │ │ │ ├── ClonedDependencyTest.php │ │ │ ├── ConcreteTest.my.php │ │ │ ├── ConcreteTest.php │ │ │ ├── CountConstraint.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageCoversOverridesCoversNothingTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.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 │ │ │ ├── DataProviderTestDoxTest.php │ │ │ ├── DataproviderExecutionOrderTest.php │ │ │ ├── DataproviderExecutionOrderTest_result_cache.txt │ │ │ ├── DependencyFailureTest.php │ │ │ ├── DependencySuccessTest.php │ │ │ ├── DependencyTestSuite.php │ │ │ ├── DoNoAssertionTestCase.php │ │ │ ├── DoesNotPerformAssertionsButPerformingAssertionsTest.php │ │ │ ├── DoubleTestCase.php │ │ │ ├── DummyBarTest.php │ │ │ ├── DummyException.php │ │ │ ├── DummyFooTest.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 │ │ │ ├── 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 │ │ │ ├── MultiDependencyTest.php │ │ │ ├── MultiDependencyTest_result_cache.txt │ │ │ ├── MultipleDataProviderTest.php │ │ │ ├── MyCommand.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 │ │ │ ├── Singleton.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StackTest.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── StatusTest.php │ │ │ ├── StopOnErrorTestSuite.php │ │ │ ├── StopOnWarningTestSuite.php │ │ │ ├── StopsOnWarningTest.php │ │ │ ├── StringableClass.php │ │ │ ├── Struct.php │ │ │ ├── Success.php │ │ │ ├── TemplateMethodsTest.php │ │ │ ├── TestAutoreferenced.php │ │ │ ├── TestDoxGroupTest.php │ │ │ ├── TestGeneratorMaker.php │ │ │ ├── TestIncomplete.php │ │ │ ├── TestIterator.php │ │ │ ├── TestIterator2.php │ │ │ ├── TestIteratorAggregate.php │ │ │ ├── TestIteratorAggregate2.php │ │ │ ├── TestRisky.php │ │ │ ├── TestSkipped.php │ │ │ ├── TestTestError.php │ │ │ ├── TestWarning.php │ │ │ ├── TestWithTest.php │ │ │ ├── TestableCliTestDoxPrinter.php │ │ │ ├── ThrowExceptionTestCase.php │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── TruthyConstraint.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.custom-printer.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_whitelist.xml │ │ │ ├── configuration_xinclude.xml │ │ │ ├── expectedFileFormat.txt │ │ │ ├── foo.xml │ │ │ ├── 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 │ │ │ ├── bootstrap.php │ │ │ ├── end-to-end │ │ │ ├── _files │ │ │ │ ├── Extension.php │ │ │ │ ├── HookTest.php │ │ │ │ ├── NullPrinter.php │ │ │ │ ├── expect_external.txt │ │ │ │ ├── hooks.xml │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ └── phpt_external.php │ │ │ ├── abstract-test-class.phpt │ │ │ ├── assertion.phpt │ │ │ ├── cache-result.phpt │ │ │ ├── code-coverage-ignore.phpt │ │ │ ├── code-coverage-phpt.phpt │ │ │ ├── colors-always.phpt │ │ │ ├── concrete-test-class.phpt │ │ │ ├── custom-printer-debug.phpt │ │ │ ├── custom-printer-verbose.phpt │ │ │ ├── dataprovider-debug.phpt │ │ │ ├── dataprovider-issue-2833.phpt │ │ │ ├── dataprovider-issue-2859.phpt │ │ │ ├── dataprovider-issue-2922.phpt │ │ │ ├── dataprovider-log-xml-isolation.phpt │ │ │ ├── dataprovider-log-xml.phpt │ │ │ ├── dataprovider-testdox.phpt │ │ │ ├── debug.phpt │ │ │ ├── default-isolation.phpt │ │ │ ├── default.phpt │ │ │ ├── defaulttestsuite-using-testsuite.phpt │ │ │ ├── defaulttestsuite.phpt │ │ │ ├── defects-first-order-via-cli.phpt │ │ │ ├── dependencies-clone.phpt │ │ │ ├── dependencies-isolation.phpt │ │ │ ├── dependencies.phpt │ │ │ ├── dependencies2-isolation.phpt │ │ │ ├── dependencies2.phpt │ │ │ ├── dependencies3-isolation.phpt │ │ │ ├── dependencies3.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-options-via-config.phpt │ │ │ ├── failure-isolation.phpt │ │ │ ├── failure-reverse-list.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 │ │ │ ├── group-isolation.phpt │ │ │ ├── group.phpt │ │ │ ├── help.phpt │ │ │ ├── help2.phpt │ │ │ ├── hooks.phpt │ │ │ ├── ini-isolation.phpt │ │ │ ├── list-groups.phpt │ │ │ ├── list-suites.phpt │ │ │ ├── list-tests-dataprovider.phpt │ │ │ ├── list-tests-xml-dataprovider.phpt │ │ │ ├── log-junit-phpt.phpt │ │ │ ├── log-junit.phpt │ │ │ ├── log-teamcity-phpt.phpt │ │ │ ├── log-teamcity.phpt │ │ │ ├── mock-objects │ │ │ │ ├── generator │ │ │ │ │ ├── 232.phpt │ │ │ │ │ ├── 3154_namespaced_constant_resolving.phpt │ │ │ │ │ ├── 3530.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 │ │ │ ├── mycommand.phpt │ │ │ ├── options-after-arguments.phpt │ │ │ ├── order-by-default-invalid-via-cli.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 │ │ │ ├── regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── Issue74Test.php │ │ │ │ │ │ └── NewException.php │ │ │ │ │ ├── 244 │ │ │ │ │ │ └── Issue244Test.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 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── Test.php │ │ │ │ │ ├── 2591 │ │ │ │ │ │ ├── SeparateClassPreserveTest.php │ │ │ │ │ │ ├── SeparateFunctionNoPreserveTest.php │ │ │ │ │ │ ├── SeparateFunctionPreserveTest.php │ │ │ │ │ │ ├── bootstrapNoBootstrap.php │ │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ │ └── bootstrapWithBootstrapNoGlobal.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 │ │ │ │ │ ├── 3107 │ │ │ │ │ │ ├── Issue3107Test.php │ │ │ │ │ │ └── issue-3107-test.phpt │ │ │ │ │ ├── 3156 │ │ │ │ │ │ └── Issue3156Test.php │ │ │ │ │ ├── 3364 │ │ │ │ │ │ ├── issue-3364-test.phpt │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── Issue3364SetupBeforeClassTest.php │ │ │ │ │ │ │ └── Issue3364SetupTest.php │ │ │ │ │ ├── 3379 │ │ │ │ │ │ ├── Issue3379Test.php │ │ │ │ │ │ ├── Issue3379TestListener.php │ │ │ │ │ │ └── phpunit.xml │ │ │ │ │ ├── 3380 │ │ │ │ │ │ └── issue-3380-test.phpt │ │ │ │ │ ├── 3396 │ │ │ │ │ │ └── issue-3396-test.phpt │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 244.phpt │ │ │ │ │ ├── 2448-existing-test.phpt │ │ │ │ │ ├── 2448-not-existing-test.phpt │ │ │ │ │ ├── 2591-separate-class-preserve-no-bootstrap.phpt │ │ │ │ │ ├── 2591-separate-class-preserve.phpt │ │ │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-php73.phpt │ │ │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt │ │ │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ │ │ │ ├── 2591-separate-function-no-preserve.phpt │ │ │ │ │ ├── 2591-separate-function-preserve.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 │ │ │ │ │ ├── 433.phpt │ │ │ │ │ ├── 445.phpt │ │ │ │ │ ├── 498.phpt │ │ │ │ │ ├── 503.phpt │ │ │ │ │ ├── 581.phpt │ │ │ │ │ ├── 74.phpt │ │ │ │ │ ├── 765.phpt │ │ │ │ │ ├── 797.phpt │ │ │ │ │ ├── 863.phpt │ │ │ │ │ └── 873.phpt │ │ │ │ └── Trac │ │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ ├── 578 │ │ │ │ │ └── Issue578Test.php │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ ├── 783 │ │ │ │ │ ├── ChildSuite.php │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── TwoTest.php │ │ │ │ │ ├── 1021 │ │ │ │ │ └── Issue1021Test.php │ │ │ │ │ ├── 1021.phpt │ │ │ │ │ ├── 523.phpt │ │ │ │ │ ├── 578.phpt │ │ │ │ │ ├── 684.phpt │ │ │ │ │ └── 783.phpt │ │ │ ├── repeat.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 │ │ │ ├── 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 │ │ │ ├── teamcity-inner-exceptions.phpt │ │ │ ├── teamcity.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-suffix-multiple.phpt │ │ │ ├── test-suffix-single.phpt │ │ │ ├── testdox-dataprovider-placeholder.phpt │ │ │ ├── testdox-exclude-group.phpt │ │ │ ├── testdox-group.phpt │ │ │ ├── testdox-html.phpt │ │ │ ├── testdox-text.phpt │ │ │ ├── testdox-verbose.phpt │ │ │ ├── testdox-xml.phpt │ │ │ └── testdox.phpt │ │ │ ├── fail │ │ │ └── fail.phpt │ │ │ └── unit │ │ │ ├── Framework │ │ │ ├── AssertTest.php │ │ │ ├── Constraint │ │ │ │ ├── ArrayHasKeyTest.php │ │ │ │ ├── ArraySubsetTest.php │ │ │ │ ├── AttributeTest.php │ │ │ │ ├── CallbackTest.php │ │ │ │ ├── ClassHasAttributeTest.php │ │ │ │ ├── ClassHasStaticAttributeTest.php │ │ │ │ ├── ConstraintTestCase.php │ │ │ │ ├── CountTest.php │ │ │ │ ├── DirectoryExistsTest.php │ │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ │ ├── ExceptionMessageTest.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 │ │ │ │ ├── LogicalOrTest.php │ │ │ │ ├── LogicalXorTest.php │ │ │ │ ├── ObjectHasAttributeTest.php │ │ │ │ ├── RegularExpressionTest.php │ │ │ │ ├── SameSizeTest.php │ │ │ │ ├── StringContainsTest.php │ │ │ │ ├── StringEndsWithTest.php │ │ │ │ ├── StringMatchesFormatDescriptionTest.php │ │ │ │ ├── StringStartsWithTest.php │ │ │ │ └── TraversableContainsTest.php │ │ │ ├── ConstraintTest.php │ │ │ ├── ExceptionWrapperTest.php │ │ │ ├── MockObject │ │ │ │ ├── Builder │ │ │ │ │ └── InvocationMockerTest.php │ │ │ │ ├── GeneratorTest.php │ │ │ │ ├── Invocation │ │ │ │ │ ├── ObjectInvocationTest.php │ │ │ │ │ └── StaticInvocationTest.php │ │ │ │ ├── Matcher │ │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ │ ├── MockBuilderTest.php │ │ │ │ ├── MockMethodTest.php │ │ │ │ ├── MockObjectTest.php │ │ │ │ └── ProxyObjectTest.php │ │ │ ├── TestCaseTest.php │ │ │ ├── TestFailureTest.php │ │ │ ├── TestImplementorTest.php │ │ │ ├── TestListenerTest.php │ │ │ ├── TestResultTest.php │ │ │ └── TestSuiteTest.php │ │ │ ├── Runner │ │ │ ├── Filter │ │ │ │ └── NameFilterIteratorTest.php │ │ │ ├── PhptTestCaseTest.php │ │ │ ├── ResultCacheExtensionTest.php │ │ │ └── TestSuiteSorterTest.php │ │ │ ├── TextUI │ │ │ └── TestRunnerTest.php │ │ │ └── Util │ │ │ ├── ConfigurationGeneratorTest.php │ │ │ ├── ConfigurationTest.php │ │ │ ├── GetoptTest.php │ │ │ ├── GlobalStateTest.php │ │ │ ├── JsonTest.php │ │ │ ├── NullTestResultCacheTest.php │ │ │ ├── PHP │ │ │ └── AbstractPhpProcessTest.php │ │ │ ├── RegularExpressionTest.php │ │ │ ├── TestDox │ │ │ ├── CliTestDoxPrinterTest.php │ │ │ └── NamePrettifierTest.php │ │ │ ├── TestResultCacheTest.php │ │ │ ├── TestTest.php │ │ │ ├── XDebugFilterScriptGeneratorTest.php │ │ │ └── XmlTest.php │ ├── psr │ │ ├── container │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ContainerExceptionInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotFoundExceptionInterface.php │ │ ├── http-message │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.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 │ ├── ralouphie │ │ └── getallheaders │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ └── getallheaders.php │ │ │ └── tests │ │ │ └── GetAllHeadersTest.php │ ├── ramsey │ │ └── uuid │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── 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 │ ├── 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 │ │ │ │ └── stale.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 │ │ │ ├── .gitignore │ │ │ ├── .php_cs │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ └── Exporter.php │ │ │ └── tests │ │ │ │ └── ExporterTest.php │ │ ├── global-state │ │ │ ├── .gitignore │ │ │ ├── .php_cs │ │ │ ├── .travis.yml │ │ │ ├── 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 │ │ └── 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 │ │ │ ├── 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 │ │ │ │ │ ├── CharacterStream.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 │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── ApplicationTest.php │ │ │ │ ├── Command │ │ │ │ │ ├── CommandTest.php │ │ │ │ │ ├── HelpCommandTest.php │ │ │ │ │ ├── ListCommandTest.php │ │ │ │ │ └── LockableTraitTest.php │ │ │ │ ├── CommandLoader │ │ │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ │ │ └── FactoryCommandLoaderTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── AddConsoleCommandPassTest.php │ │ │ │ ├── Descriptor │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ │ ├── ObjectsProvider.php │ │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ │ └── XmlDescriptorTest.php │ │ │ │ ├── EventListener │ │ │ │ │ └── ErrorListenerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── BarBucCommand.php │ │ │ │ │ ├── DescriptorApplication1.php │ │ │ │ │ ├── DescriptorApplication2.php │ │ │ │ │ ├── DescriptorApplicationMbString.php │ │ │ │ │ ├── DescriptorCommand1.php │ │ │ │ │ ├── DescriptorCommand2.php │ │ │ │ │ ├── DescriptorCommand3.php │ │ │ │ │ ├── DescriptorCommand4.php │ │ │ │ │ ├── DescriptorCommandMbString.php │ │ │ │ │ ├── DummyOutput.php │ │ │ │ │ ├── Foo1Command.php │ │ │ │ │ ├── Foo2Command.php │ │ │ │ │ ├── Foo3Command.php │ │ │ │ │ ├── Foo4Command.php │ │ │ │ │ ├── Foo5Command.php │ │ │ │ │ ├── Foo6Command.php │ │ │ │ │ ├── FooCommand.php │ │ │ │ │ ├── FooLock2Command.php │ │ │ │ │ ├── FooLockCommand.php │ │ │ │ │ ├── FooOptCommand.php │ │ │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ │ │ ├── FooSubnamespaced1Command.php │ │ │ │ │ ├── FooSubnamespaced2Command.php │ │ │ │ │ ├── FooWithoutAliasCommand.php │ │ │ │ │ ├── FoobarCommand.php │ │ │ │ │ ├── Style │ │ │ │ │ │ └── SymfonyStyle │ │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── command_0.php │ │ │ │ │ │ │ ├── command_1.php │ │ │ │ │ │ │ ├── command_10.php │ │ │ │ │ │ │ ├── command_11.php │ │ │ │ │ │ │ ├── command_12.php │ │ │ │ │ │ │ ├── command_13.php │ │ │ │ │ │ │ ├── command_14.php │ │ │ │ │ │ │ ├── command_15.php │ │ │ │ │ │ │ ├── command_16.php │ │ │ │ │ │ │ ├── command_17.php │ │ │ │ │ │ │ ├── command_2.php │ │ │ │ │ │ │ ├── command_3.php │ │ │ │ │ │ │ ├── command_4.php │ │ │ │ │ │ │ ├── command_4_with_iterators.php │ │ │ │ │ │ │ ├── command_5.php │ │ │ │ │ │ │ ├── command_6.php │ │ │ │ │ │ │ ├── command_7.php │ │ │ │ │ │ │ ├── command_8.php │ │ │ │ │ │ │ ├── command_9.php │ │ │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ │ │ └── output │ │ │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ │ │ ├── output_0.txt │ │ │ │ │ │ │ ├── output_1.txt │ │ │ │ │ │ │ ├── output_10.txt │ │ │ │ │ │ │ ├── output_11.txt │ │ │ │ │ │ │ ├── output_12.txt │ │ │ │ │ │ │ ├── output_13.txt │ │ │ │ │ │ │ ├── output_14.txt │ │ │ │ │ │ │ ├── output_15.txt │ │ │ │ │ │ │ ├── output_16.txt │ │ │ │ │ │ │ ├── output_17.txt │ │ │ │ │ │ │ ├── output_2.txt │ │ │ │ │ │ │ ├── output_3.txt │ │ │ │ │ │ │ ├── output_4.txt │ │ │ │ │ │ │ ├── output_4_with_iterators.txt │ │ │ │ │ │ │ ├── output_5.txt │ │ │ │ │ │ │ ├── output_6.txt │ │ │ │ │ │ │ ├── output_7.txt │ │ │ │ │ │ │ ├── output_8.txt │ │ │ │ │ │ │ └── output_9.txt │ │ │ │ │ ├── TestCommand.php │ │ │ │ │ ├── TestTiti.php │ │ │ │ │ ├── TestToto.php │ │ │ │ │ ├── application_1.json │ │ │ │ │ ├── application_1.md │ │ │ │ │ ├── application_1.txt │ │ │ │ │ ├── application_1.xml │ │ │ │ │ ├── application_2.json │ │ │ │ │ ├── application_2.md │ │ │ │ │ ├── application_2.txt │ │ │ │ │ ├── application_2.xml │ │ │ │ │ ├── application_filtered_namespace.txt │ │ │ │ │ ├── application_gethelp.txt │ │ │ │ │ ├── application_mbstring.md │ │ │ │ │ ├── application_mbstring.txt │ │ │ │ │ ├── application_renderexception1.txt │ │ │ │ │ ├── application_renderexception2.txt │ │ │ │ │ ├── application_renderexception3.txt │ │ │ │ │ ├── application_renderexception3decorated.txt │ │ │ │ │ ├── application_renderexception4.txt │ │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ │ │ ├── application_renderexception_linebreaks.txt │ │ │ │ │ ├── application_run1.txt │ │ │ │ │ ├── application_run2.txt │ │ │ │ │ ├── application_run3.txt │ │ │ │ │ ├── application_run4.txt │ │ │ │ │ ├── command_1.json │ │ │ │ │ ├── command_1.md │ │ │ │ │ ├── command_1.txt │ │ │ │ │ ├── command_1.xml │ │ │ │ │ ├── command_2.json │ │ │ │ │ ├── command_2.md │ │ │ │ │ ├── command_2.txt │ │ │ │ │ ├── command_2.xml │ │ │ │ │ ├── command_mbstring.md │ │ │ │ │ ├── command_mbstring.txt │ │ │ │ │ ├── input_argument_1.json │ │ │ │ │ ├── input_argument_1.md │ │ │ │ │ ├── input_argument_1.txt │ │ │ │ │ ├── input_argument_1.xml │ │ │ │ │ ├── input_argument_2.json │ │ │ │ │ ├── input_argument_2.md │ │ │ │ │ ├── input_argument_2.txt │ │ │ │ │ ├── input_argument_2.xml │ │ │ │ │ ├── input_argument_3.json │ │ │ │ │ ├── input_argument_3.md │ │ │ │ │ ├── input_argument_3.txt │ │ │ │ │ ├── input_argument_3.xml │ │ │ │ │ ├── input_argument_4.json │ │ │ │ │ ├── input_argument_4.md │ │ │ │ │ ├── input_argument_4.txt │ │ │ │ │ ├── input_argument_4.xml │ │ │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ │ │ ├── input_argument_with_style.json │ │ │ │ │ ├── input_argument_with_style.md │ │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ │ ├── input_argument_with_style.xml │ │ │ │ │ ├── input_definition_1.json │ │ │ │ │ ├── input_definition_1.md │ │ │ │ │ ├── input_definition_1.txt │ │ │ │ │ ├── input_definition_1.xml │ │ │ │ │ ├── input_definition_2.json │ │ │ │ │ ├── input_definition_2.md │ │ │ │ │ ├── input_definition_2.txt │ │ │ │ │ ├── input_definition_2.xml │ │ │ │ │ ├── input_definition_3.json │ │ │ │ │ ├── input_definition_3.md │ │ │ │ │ ├── input_definition_3.txt │ │ │ │ │ ├── input_definition_3.xml │ │ │ │ │ ├── input_definition_4.json │ │ │ │ │ ├── input_definition_4.md │ │ │ │ │ ├── input_definition_4.txt │ │ │ │ │ ├── input_definition_4.xml │ │ │ │ │ ├── input_option_1.json │ │ │ │ │ ├── input_option_1.md │ │ │ │ │ ├── input_option_1.txt │ │ │ │ │ ├── input_option_1.xml │ │ │ │ │ ├── input_option_2.json │ │ │ │ │ ├── input_option_2.md │ │ │ │ │ ├── input_option_2.txt │ │ │ │ │ ├── input_option_2.xml │ │ │ │ │ ├── input_option_3.json │ │ │ │ │ ├── input_option_3.md │ │ │ │ │ ├── input_option_3.txt │ │ │ │ │ ├── input_option_3.xml │ │ │ │ │ ├── input_option_4.json │ │ │ │ │ ├── input_option_4.md │ │ │ │ │ ├── input_option_4.txt │ │ │ │ │ ├── input_option_4.xml │ │ │ │ │ ├── input_option_5.json │ │ │ │ │ ├── input_option_5.md │ │ │ │ │ ├── input_option_5.txt │ │ │ │ │ ├── input_option_5.xml │ │ │ │ │ ├── input_option_6.json │ │ │ │ │ ├── input_option_6.md │ │ │ │ │ ├── input_option_6.txt │ │ │ │ │ ├── input_option_6.xml │ │ │ │ │ ├── input_option_with_default_inf_value.json │ │ │ │ │ ├── input_option_with_default_inf_value.md │ │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ │ │ ├── input_option_with_style.json │ │ │ │ │ ├── input_option_with_style.md │ │ │ │ │ ├── input_option_with_style.txt │ │ │ │ │ ├── input_option_with_style.xml │ │ │ │ │ ├── input_option_with_style_array.json │ │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ │ └── input_option_with_style_array.xml │ │ │ │ ├── Formatter │ │ │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ │ │ ├── OutputFormatterStyleTest.php │ │ │ │ │ └── OutputFormatterTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ │ │ ├── FormatterHelperTest.php │ │ │ │ │ ├── HelperSetTest.php │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ ├── ProcessHelperTest.php │ │ │ │ │ ├── ProgressBarTest.php │ │ │ │ │ ├── ProgressIndicatorTest.php │ │ │ │ │ ├── QuestionHelperTest.php │ │ │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ │ │ ├── TableStyleTest.php │ │ │ │ │ └── TableTest.php │ │ │ │ ├── Input │ │ │ │ │ ├── ArgvInputTest.php │ │ │ │ │ ├── ArrayInputTest.php │ │ │ │ │ ├── InputArgumentTest.php │ │ │ │ │ ├── InputDefinitionTest.php │ │ │ │ │ ├── InputOptionTest.php │ │ │ │ │ ├── InputTest.php │ │ │ │ │ └── StringInputTest.php │ │ │ │ ├── Logger │ │ │ │ │ └── ConsoleLoggerTest.php │ │ │ │ ├── Output │ │ │ │ │ ├── ConsoleOutputTest.php │ │ │ │ │ ├── ConsoleSectionOutputTest.php │ │ │ │ │ ├── NullOutputTest.php │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ └── StreamOutputTest.php │ │ │ │ ├── Question │ │ │ │ │ └── ConfirmationQuestionTest.php │ │ │ │ ├── Style │ │ │ │ │ └── SymfonyStyleTest.php │ │ │ │ ├── TerminalTest.php │ │ │ │ └── Tester │ │ │ │ │ ├── ApplicationTesterTest.php │ │ │ │ │ └── CommandTesterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── contracts │ │ │ ├── .gitignore │ │ │ ├── Cache │ │ │ │ ├── CacheInterface.php │ │ │ │ ├── CacheTrait.php │ │ │ │ ├── CallbackInterface.php │ │ │ │ ├── ItemInterface.php │ │ │ │ └── TagAwareCacheInterface.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Service │ │ │ │ ├── ResetInterface.php │ │ │ │ ├── ServiceLocatorTrait.php │ │ │ │ ├── ServiceSubscriberInterface.php │ │ │ │ └── ServiceSubscriberTrait.php │ │ │ ├── Tests │ │ │ │ ├── Cache │ │ │ │ │ └── CacheTraitTest.php │ │ │ │ ├── Service │ │ │ │ │ ├── ServiceLocatorTest.php │ │ │ │ │ └── ServiceSubscriberTraitTest.php │ │ │ │ └── Translation │ │ │ │ │ └── TranslatorTest.php │ │ │ ├── Translation │ │ │ │ ├── LocaleAwareInterface.php │ │ │ │ ├── TranslatorInterface.php │ │ │ │ └── TranslatorTrait.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── css-selector │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── CssSelectorConverterTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ │ ├── ClassNodeTest.php │ │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ │ ├── ElementNodeTest.php │ │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ │ ├── HashNodeTest.php │ │ │ │ │ ├── NegationNodeTest.php │ │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ │ └── SpecificityTest.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ ├── Shortcut │ │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ │ └── HashParserTest.php │ │ │ │ │ └── TokenStreamTest.php │ │ │ │ └── XPath │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ids.html │ │ │ │ │ ├── lang.xml │ │ │ │ │ └── shakespear.html │ │ │ │ │ └── TranslatorTest.php │ │ │ ├── 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 │ │ │ └── phpunit.xml.dist │ │ ├── debug │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClass.php │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ ├── ClassWithAnnotatedParameters.php │ │ │ │ │ ├── DefinitionInEvaluatedCode.php │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ │ │ │ ├── ExtendedFinalMethod.php │ │ │ │ │ ├── FinalClasses.php │ │ │ │ │ ├── FinalMethod.php │ │ │ │ │ ├── FinalMethod2Trait.php │ │ │ │ │ ├── InterfaceWithAnnotatedParameters.php │ │ │ │ │ ├── InternalClass.php │ │ │ │ │ ├── InternalInterface.php │ │ │ │ │ ├── InternalTrait.php │ │ │ │ │ ├── InternalTrait2.php │ │ │ │ │ ├── LoggerThatSetAnErrorHandler.php │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ ├── SubClassWithAnnotatedParameters.php │ │ │ │ │ ├── Throwing.php │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ ├── TraitWithAnnotatedParameters.php │ │ │ │ │ ├── TraitWithInternalMethod.php │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ ├── psr4 │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ ├── Fixtures2 │ │ │ │ │ └── RequiredTwice.php │ │ │ │ ├── HeaderMock.php │ │ │ │ ├── MockExceptionHandler.php │ │ │ │ └── phpt │ │ │ │ │ ├── debug_class_loader.phpt │ │ │ │ │ ├── decorate_exception_hander.phpt │ │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── event-dispatcher │ │ │ ├── .gitignore │ │ │ ├── Debug │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPass.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableEventDispatcherTest.php │ │ │ │ │ └── WrappedListenerTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ ├── EventTest.php │ │ │ │ ├── GenericEventTest.php │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── finder │ │ │ ├── .gitignore │ │ │ ├── Comparator │ │ │ │ ├── Comparator.php │ │ │ │ ├── DateComparator.php │ │ │ │ └── NumberComparator.php │ │ │ ├── Exception │ │ │ │ └── AccessDeniedException.php │ │ │ ├── Finder.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 │ │ │ ├── Tests │ │ │ │ ├── Comparator │ │ │ │ │ ├── ComparatorTest.php │ │ │ │ │ ├── DateComparatorTest.php │ │ │ │ │ └── NumberComparatorTest.php │ │ │ │ ├── FinderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── .dot │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ ├── A │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat │ │ │ │ │ │ │ └── ab.dat │ │ │ │ │ │ └── a.dat │ │ │ │ │ ├── copy │ │ │ │ │ │ └── A │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ │ │ └── a.dat.copy │ │ │ │ │ ├── dolor.txt │ │ │ │ │ ├── ipsum.txt │ │ │ │ │ ├── lorem.txt │ │ │ │ │ ├── one │ │ │ │ │ │ ├── .dot │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ │ │ └── dir │ │ │ │ │ │ │ └── bar.dat │ │ │ │ │ └── with space │ │ │ │ │ │ └── foo.txt │ │ │ │ ├── GlobTest.php │ │ │ │ └── Iterator │ │ │ │ │ ├── CustomFilterIteratorTest.php │ │ │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ │ │ ├── Iterator.php │ │ │ │ │ ├── IteratorTestCase.php │ │ │ │ │ ├── MockFileListIterator.php │ │ │ │ │ ├── MockSplFileInfo.php │ │ │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ │ │ ├── PathFilterIteratorTest.php │ │ │ │ │ ├── RealIteratorTestCase.php │ │ │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ │ │ └── SortableIteratorTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-foundation │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ │ │ └── StrictSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Tests │ │ │ │ ├── AcceptHeaderItemTest.php │ │ │ │ ├── AcceptHeaderTest.php │ │ │ │ ├── ApacheRequestTest.php │ │ │ │ ├── BinaryFileResponseTest.php │ │ │ │ ├── CookieTest.php │ │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ │ ├── File │ │ │ │ │ ├── FakeFile.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── .unknownextension │ │ │ │ │ │ ├── directory │ │ │ │ │ │ │ └── .empty │ │ │ │ │ │ ├── other-file.example │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── test.gif │ │ │ │ │ ├── MimeType │ │ │ │ │ │ └── MimeTypeTest.php │ │ │ │ │ └── UploadedFileTest.php │ │ │ │ ├── FileBagTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ └── response-functional │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ ├── cookie_max_age.expected │ │ │ │ │ │ ├── cookie_max_age.php │ │ │ │ │ │ ├── cookie_raw_urlencode.expected │ │ │ │ │ │ ├── cookie_raw_urlencode.php │ │ │ │ │ │ ├── cookie_samesite_lax.expected │ │ │ │ │ │ ├── cookie_samesite_lax.php │ │ │ │ │ │ ├── cookie_samesite_strict.expected │ │ │ │ │ │ ├── cookie_samesite_strict.php │ │ │ │ │ │ ├── cookie_urlencode.expected │ │ │ │ │ │ ├── cookie_urlencode.php │ │ │ │ │ │ ├── invalid_cookie_name.expected │ │ │ │ │ │ └── invalid_cookie_name.php │ │ │ │ ├── HeaderBagTest.php │ │ │ │ ├── HeaderUtilsTest.php │ │ │ │ ├── IpUtilsTest.php │ │ │ │ ├── JsonResponseTest.php │ │ │ │ ├── ParameterBagTest.php │ │ │ │ ├── RedirectResponseTest.php │ │ │ │ ├── RequestMatcherTest.php │ │ │ │ ├── RequestStackTest.php │ │ │ │ ├── RequestTest.php │ │ │ │ ├── ResponseFunctionalTest.php │ │ │ │ ├── ResponseHeaderBagTest.php │ │ │ │ ├── ResponseTest.php │ │ │ │ ├── ResponseTestCase.php │ │ │ │ ├── ServerBagTest.php │ │ │ │ ├── Session │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ │ ├── Flash │ │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ │ └── FlashBagTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractRedisSessionHandlerTestCase.php │ │ │ │ │ │ ├── AbstractSessionHandlerTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ │ ├── empty_destroys.expected │ │ │ │ │ │ │ ├── empty_destroys.php │ │ │ │ │ │ │ ├── read_only.expected │ │ │ │ │ │ │ ├── read_only.php │ │ │ │ │ │ │ ├── regenerate.expected │ │ │ │ │ │ │ ├── regenerate.php │ │ │ │ │ │ │ ├── storage.expected │ │ │ │ │ │ │ ├── storage.php │ │ │ │ │ │ │ ├── with_cookie.expected │ │ │ │ │ │ │ ├── with_cookie.php │ │ │ │ │ │ │ ├── with_cookie_and_session.expected │ │ │ │ │ │ │ ├── with_cookie_and_session.php │ │ │ │ │ │ │ ├── with_samesite.expected │ │ │ │ │ │ │ ├── with_samesite.php │ │ │ │ │ │ │ ├── with_samesite_and_migration.expected │ │ │ │ │ │ │ └── with_samesite_and_migration.php │ │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ │ ├── MigratingSessionHandlerTest.php │ │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ │ ├── PredisClusterSessionHandlerTest.php │ │ │ │ │ │ ├── PredisSessionHandlerTest.php │ │ │ │ │ │ ├── RedisArraySessionHandlerTest.php │ │ │ │ │ │ ├── RedisClusterSessionHandlerTest.php │ │ │ │ │ │ ├── RedisSessionHandlerTest.php │ │ │ │ │ │ └── StrictSessionHandlerTest.php │ │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ │ └── Proxy │ │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ │ ├── StreamedResponseTest.php │ │ │ │ └── schema │ │ │ │ │ ├── http-status-codes.rng │ │ │ │ │ └── iana-registry.rng │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-kernel │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ │ ├── RequestValueResolver.php │ │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ │ ├── SessionValueResolver.php │ │ │ │ │ ├── TraceableValueResolver.php │ │ │ │ │ └── VariadicValueResolver.php │ │ │ │ ├── ArgumentResolverInterface.php │ │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ │ ├── ContainerControllerResolver.php │ │ │ │ ├── ControllerReference.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── ControllerResolverInterface.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 │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ │ ├── ResettableServicePass.php │ │ │ │ └── ServicesResetter.php │ │ │ ├── Event │ │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ ├── GetResponseEvent.php │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ ├── KernelEvent.php │ │ │ │ └── PostResponseEvent.php │ │ │ ├── EventListener │ │ │ │ ├── AbstractSessionListener.php │ │ │ │ ├── AbstractTestSessionListener.php │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ ├── DumpListener.php │ │ │ │ ├── ExceptionListener.php │ │ │ │ ├── FragmentListener.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 │ │ │ ├── HttpKernel.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 │ │ │ ├── Tests │ │ │ │ ├── Bundle │ │ │ │ │ └── BundleTest.php │ │ │ │ ├── CacheClearer │ │ │ │ │ ├── ChainCacheClearerTest.php │ │ │ │ │ └── Psr6CacheClearerTest.php │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ │ └── CacheWarmerTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ ├── Config │ │ │ │ │ └── FileLocatorTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── ArgumentResolver │ │ │ │ │ │ ├── ServiceValueResolverTest.php │ │ │ │ │ │ └── TraceableValueResolverTest.php │ │ │ │ │ ├── ArgumentResolverTest.php │ │ │ │ │ ├── ContainerControllerResolverTest.php │ │ │ │ │ └── ControllerResolverTest.php │ │ │ │ ├── ControllerMetadata │ │ │ │ │ ├── ArgumentMetadataFactoryTest.php │ │ │ │ │ └── ArgumentMetadataTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ ├── Compiler.log │ │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ │ ├── DataCollectorTest.php │ │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ │ └── TimeDataCollectorTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── FileLinkFormatterTest.php │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AddAnnotatedClassesToCachePassTest.php │ │ │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ │ │ ├── FragmentRendererPassTest.php │ │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ │ │ ├── LoggerPassTest.php │ │ │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ │ │ ├── RegisterControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── ResettableServicePassTest.php │ │ │ │ │ └── ServicesResetterTest.php │ │ │ │ ├── Event │ │ │ │ │ ├── FilterControllerArgumentsEventTest.php │ │ │ │ │ └── GetResponseForExceptionEventTest.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ │ ├── DumpListenerTest.php │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ ├── RouterListenerTest.php │ │ │ │ │ ├── SaveSessionListenerTest.php │ │ │ │ │ ├── SessionListenerTest.php │ │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ │ ├── TranslatorListenerTest.php │ │ │ │ │ └── ValidateRequestListenerTest.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedHttpExceptionTest.php │ │ │ │ │ ├── BadRequestHttpExceptionTest.php │ │ │ │ │ ├── ConflictHttpExceptionTest.php │ │ │ │ │ ├── GoneHttpExceptionTest.php │ │ │ │ │ ├── HttpExceptionTest.php │ │ │ │ │ ├── LengthRequiredHttpExceptionTest.php │ │ │ │ │ ├── MethodNotAllowedHttpExceptionTest.php │ │ │ │ │ ├── NotAcceptableHttpExceptionTest.php │ │ │ │ │ ├── NotFoundHttpExceptionTest.php │ │ │ │ │ ├── PreconditionFailedHttpExceptionTest.php │ │ │ │ │ ├── PreconditionRequiredHttpExceptionTest.php │ │ │ │ │ ├── ServiceUnavailableHttpExceptionTest.php │ │ │ │ │ ├── TooManyRequestsHttpExceptionTest.php │ │ │ │ │ ├── UnauthorizedHttpExceptionTest.php │ │ │ │ │ ├── UnprocessableEntityHttpExceptionTest.php │ │ │ │ │ └── UnsupportedMediaTypeHttpExceptionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── ClearableService.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── BasicTypesController.php │ │ │ │ │ │ ├── ExtendingRequest.php │ │ │ │ │ │ ├── ExtendingSession.php │ │ │ │ │ │ ├── NullableController.php │ │ │ │ │ │ └── VariadicController.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ └── CloneVarDataCollector.php │ │ │ │ │ ├── ExtensionAbsentBundle │ │ │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ │ │ ├── ExtensionLoadedBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ │ │ ├── ExtensionNotValidBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ │ │ ├── ExtensionPresentBundle │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ │ │ └── FooCommand.php │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ │ │ └── ExtensionPresentBundle.php │ │ │ │ │ ├── KernelForOverrideName.php │ │ │ │ │ ├── KernelForTest.php │ │ │ │ │ ├── KernelWithoutBundles.php │ │ │ │ │ ├── ResettableService.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── TestClient.php │ │ │ │ │ └── TestEventDispatcher.php │ │ │ │ ├── Fragment │ │ │ │ │ ├── EsiFragmentRendererTest.php │ │ │ │ │ ├── FragmentHandlerTest.php │ │ │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ │ │ ├── InlineFragmentRendererTest.php │ │ │ │ │ ├── RoutableFragmentRendererTest.php │ │ │ │ │ └── SsiFragmentRendererTest.php │ │ │ │ ├── HttpCache │ │ │ │ │ ├── EsiTest.php │ │ │ │ │ ├── HttpCacheTest.php │ │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ │ │ ├── SsiTest.php │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ ├── SubRequestHandlerTest.php │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ │ ├── HttpKernelTest.php │ │ │ │ ├── KernelTest.php │ │ │ │ ├── Log │ │ │ │ │ └── LoggerTest.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Profiler │ │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ │ └── ProfilerTest.php │ │ │ │ ├── TestHttpKernel.php │ │ │ │ └── UriSignerTest.php │ │ │ ├── UriSigner.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── 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 │ │ ├── process │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── ExecutableFinderTest.php │ │ │ │ ├── KillableProcessWithOutput.php │ │ │ │ ├── NonStopableProcess.php │ │ │ │ ├── PhpExecutableFinderTest.php │ │ │ │ ├── PhpProcessTest.php │ │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ │ ├── ProcessTest.php │ │ │ │ └── SignalListener.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── routing │ │ │ ├── .gitignore │ │ │ ├── Annotation │ │ │ │ └── Route.php │ │ │ ├── CompiledRoute.php │ │ │ ├── DependencyInjection │ │ │ │ └── RoutingResolverPass.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ ├── MissingMandatoryParametersException.php │ │ │ │ ├── NoConfigurationException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ └── RouteNotFoundException.php │ │ │ ├── Generator │ │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── 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 │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ServiceRouterLoader.php │ │ │ │ ├── DirectoryLoader.php │ │ │ │ ├── GlobFileLoader.php │ │ │ │ ├── ObjectRouteLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema │ │ │ │ │ └── routing │ │ │ │ │ └── routing-1.0.xsd │ │ │ ├── Matcher │ │ │ │ ├── Dumper │ │ │ │ │ ├── MatcherDumper.php │ │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ │ ├── PhpMatcherTrait.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 │ │ │ ├── Tests │ │ │ │ ├── Annotation │ │ │ │ │ └── RouteTest.php │ │ │ │ ├── CompiledRouteTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RoutingResolverPassTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ │ ├── BarClass.php │ │ │ │ │ │ ├── BazClass.php │ │ │ │ │ │ ├── FooClass.php │ │ │ │ │ │ └── FooTrait.php │ │ │ │ │ ├── AnnotationFixtures │ │ │ │ │ │ ├── AbstractClassController.php │ │ │ │ │ │ ├── ActionPathController.php │ │ │ │ │ │ ├── DefaultValueController.php │ │ │ │ │ │ ├── ExplicitLocalizedActionPathController.php │ │ │ │ │ │ ├── InvokableController.php │ │ │ │ │ │ ├── InvokableLocalizedController.php │ │ │ │ │ │ ├── LocalizedActionPathController.php │ │ │ │ │ │ ├── LocalizedMethodActionControllers.php │ │ │ │ │ │ ├── LocalizedPrefixLocalizedActionController.php │ │ │ │ │ │ ├── LocalizedPrefixMissingLocaleActionController.php │ │ │ │ │ │ ├── LocalizedPrefixMissingRouteLocaleActionController.php │ │ │ │ │ │ ├── LocalizedPrefixWithRouteWithoutLocale.php │ │ │ │ │ │ ├── MethodActionControllers.php │ │ │ │ │ │ ├── MissingRouteNameController.php │ │ │ │ │ │ ├── NothingButNameController.php │ │ │ │ │ │ ├── PrefixedActionLocalizedRouteController.php │ │ │ │ │ │ ├── PrefixedActionPathController.php │ │ │ │ │ │ ├── RequirementsWithoutPlaceholderNameController.php │ │ │ │ │ │ └── RouteWithPrefixController.php │ │ │ │ │ ├── CustomCompiledRoute.php │ │ │ │ │ ├── CustomRouteCompiler.php │ │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ │ │ ├── AnonymousClassInTrait.php │ │ │ │ │ │ ├── NoStartTagClass.php │ │ │ │ │ │ └── VariadicClass.php │ │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ │ ├── annotated.php │ │ │ │ │ ├── bad_format.yml │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── import__controller.xml │ │ │ │ │ │ ├── import__controller.yml │ │ │ │ │ │ ├── import_controller.xml │ │ │ │ │ │ ├── import_controller.yml │ │ │ │ │ │ ├── import_override_defaults.xml │ │ │ │ │ │ ├── import_override_defaults.yml │ │ │ │ │ │ ├── override_defaults.xml │ │ │ │ │ │ ├── override_defaults.yml │ │ │ │ │ │ ├── routing.xml │ │ │ │ │ │ └── routing.yml │ │ │ │ │ ├── directory │ │ │ │ │ │ ├── recurse │ │ │ │ │ │ │ ├── routes1.yml │ │ │ │ │ │ │ └── routes2.yml │ │ │ │ │ │ └── routes3.yml │ │ │ │ │ ├── directory_import │ │ │ │ │ │ └── import.yml │ │ │ │ │ ├── dumper │ │ │ │ │ │ ├── url_matcher0.php │ │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ │ ├── url_matcher10.php │ │ │ │ │ │ ├── url_matcher11.php │ │ │ │ │ │ ├── url_matcher12.php │ │ │ │ │ │ ├── url_matcher13.php │ │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ │ ├── url_matcher3.php │ │ │ │ │ │ ├── url_matcher4.php │ │ │ │ │ │ ├── url_matcher5.php │ │ │ │ │ │ ├── url_matcher6.php │ │ │ │ │ │ ├── url_matcher7.php │ │ │ │ │ │ ├── url_matcher8.php │ │ │ │ │ │ └── url_matcher9.php │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── file_resource.yml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── foo1.xml │ │ │ │ │ ├── glob │ │ │ │ │ │ ├── bar.xml │ │ │ │ │ │ ├── bar.yml │ │ │ │ │ │ ├── baz.xml │ │ │ │ │ │ ├── baz.yml │ │ │ │ │ │ ├── import_multiple.xml │ │ │ │ │ │ ├── import_multiple.yml │ │ │ │ │ │ ├── import_single.xml │ │ │ │ │ │ ├── import_single.yml │ │ │ │ │ │ ├── php_dsl.php │ │ │ │ │ │ ├── php_dsl_bar.php │ │ │ │ │ │ └── php_dsl_baz.php │ │ │ │ │ ├── import_with_name_prefix │ │ │ │ │ │ ├── routing.xml │ │ │ │ │ │ └── routing.yml │ │ │ │ │ ├── import_with_no_trailing_slash │ │ │ │ │ │ ├── routing.xml │ │ │ │ │ │ └── routing.yml │ │ │ │ │ ├── incomplete.yml │ │ │ │ │ ├── list_defaults.xml │ │ │ │ │ ├── list_in_list_defaults.xml │ │ │ │ │ ├── list_in_map_defaults.xml │ │ │ │ │ ├── list_null_values.xml │ │ │ │ │ ├── localized.xml │ │ │ │ │ ├── localized │ │ │ │ │ │ ├── imported-with-locale-but-not-localized.xml │ │ │ │ │ │ ├── imported-with-locale-but-not-localized.yml │ │ │ │ │ │ ├── imported-with-locale.xml │ │ │ │ │ │ ├── imported-with-locale.yml │ │ │ │ │ │ ├── importer-with-controller-default.yml │ │ │ │ │ │ ├── importer-with-locale-imports-non-localized-route.xml │ │ │ │ │ │ ├── importer-with-locale-imports-non-localized-route.yml │ │ │ │ │ │ ├── importer-with-locale.xml │ │ │ │ │ │ ├── importer-with-locale.yml │ │ │ │ │ │ ├── importing-localized-route.yml │ │ │ │ │ │ ├── localized-route.yml │ │ │ │ │ │ ├── missing-locale-in-importer.yml │ │ │ │ │ │ ├── not-localized.yml │ │ │ │ │ │ ├── officially_formatted_locales.yml │ │ │ │ │ │ ├── route-without-path-or-locales.yml │ │ │ │ │ │ └── utf8.xml │ │ │ │ │ ├── map_defaults.xml │ │ │ │ │ ├── map_in_list_defaults.xml │ │ │ │ │ ├── map_in_map_defaults.xml │ │ │ │ │ ├── map_null_values.xml │ │ │ │ │ ├── missing_id.xml │ │ │ │ │ ├── missing_path.xml │ │ │ │ │ ├── namespaceprefix.xml │ │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ │ ├── nonvalid.xml │ │ │ │ │ ├── nonvalid.yml │ │ │ │ │ ├── nonvalid2.yml │ │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ │ ├── nonvalidnode.xml │ │ │ │ │ ├── nonvalidroute.xml │ │ │ │ │ ├── null_values.xml │ │ │ │ │ ├── php_dsl.php │ │ │ │ │ ├── php_dsl_i18n.php │ │ │ │ │ ├── php_dsl_sub.php │ │ │ │ │ ├── php_dsl_sub_i18n.php │ │ │ │ │ ├── php_dsl_sub_root.php │ │ │ │ │ ├── php_object_dsl.php │ │ │ │ │ ├── requirements_without_placeholder_name.yml │ │ │ │ │ ├── scalar_defaults.xml │ │ │ │ │ ├── special_route_name.yml │ │ │ │ │ ├── validpattern.php │ │ │ │ │ ├── validpattern.xml │ │ │ │ │ ├── validpattern.yml │ │ │ │ │ ├── validresource.php │ │ │ │ │ ├── validresource.xml │ │ │ │ │ ├── validresource.yml │ │ │ │ │ ├── with_define_path_variable.php │ │ │ │ │ └── withdoctype.xml │ │ │ │ ├── Generator │ │ │ │ │ ├── Dumper │ │ │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ │ │ └── UrlGeneratorTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ │ ├── DirectoryLoaderTest.php │ │ │ │ │ ├── FileLocatorStub.php │ │ │ │ │ ├── GlobFileLoaderTest.php │ │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── Matcher │ │ │ │ │ ├── DumpedRedirectableUrlMatcherTest.php │ │ │ │ │ ├── DumpedUrlMatcherTest.php │ │ │ │ │ ├── Dumper │ │ │ │ │ │ ├── PhpMatcherDumperTest.php │ │ │ │ │ │ └── StaticPrefixCollectionTest.php │ │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ │ └── UrlMatcherTest.php │ │ │ │ ├── RequestContextTest.php │ │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ │ ├── RouteCollectionTest.php │ │ │ │ ├── RouteCompilerTest.php │ │ │ │ ├── RouteTest.php │ │ │ │ └── RouterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── translation │ │ │ ├── .gitignore │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperation.php │ │ │ │ ├── MergeOperation.php │ │ │ │ ├── OperationInterface.php │ │ │ │ └── TargetOperation.php │ │ │ ├── Command │ │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector │ │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection │ │ │ │ ├── TranslationDumperPass.php │ │ │ │ ├── TranslationExtractorPass.php │ │ │ │ └── TranslatorPass.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 │ │ │ ├── Tests │ │ │ │ ├── Catalogue │ │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ │ ├── MergeOperationTest.php │ │ │ │ │ └── TargetOperationTest.php │ │ │ │ ├── Command │ │ │ │ │ └── XliffLintCommandTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── TranslationDataCollectorTest.php │ │ │ │ ├── DataCollectorTranslatorTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── TranslationDumperPassTest.php │ │ │ │ │ ├── TranslationExtractorPassTest.php │ │ │ │ │ └── TranslationPassTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── CsvFileDumperTest.php │ │ │ │ │ ├── FileDumperTest.php │ │ │ │ │ ├── IcuResFileDumperTest.php │ │ │ │ │ ├── IniFileDumperTest.php │ │ │ │ │ ├── JsonFileDumperTest.php │ │ │ │ │ ├── MoFileDumperTest.php │ │ │ │ │ ├── PhpFileDumperTest.php │ │ │ │ │ ├── PoFileDumperTest.php │ │ │ │ │ ├── QtFileDumperTest.php │ │ │ │ │ ├── XliffFileDumperTest.php │ │ │ │ │ └── YamlFileDumperTest.php │ │ │ │ ├── Extractor │ │ │ │ │ └── PhpExtractorTest.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── IntlFormatterTest.php │ │ │ │ │ └── MessageFormatterTest.php │ │ │ │ ├── IdentityTranslatorTest.php │ │ │ │ ├── IntervalTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── CsvFileLoaderTest.php │ │ │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ │ │ ├── IcuResFileLoaderTest.php │ │ │ │ │ ├── IniFileLoaderTest.php │ │ │ │ │ ├── JsonFileLoaderTest.php │ │ │ │ │ ├── LocalizedTestCase.php │ │ │ │ │ ├── MoFileLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── PoFileLoaderTest.php │ │ │ │ │ ├── QtFileLoaderTest.php │ │ │ │ │ ├── XliffFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── LoggingTranslatorTest.php │ │ │ │ ├── MessageCatalogueTest.php │ │ │ │ ├── MessageSelectorTest.php │ │ │ │ ├── PluralizationRulesTest.php │ │ │ │ ├── TranslatorCacheTest.php │ │ │ │ ├── TranslatorTest.php │ │ │ │ ├── Util │ │ │ │ │ └── ArrayConverterTest.php │ │ │ │ ├── Writer │ │ │ │ │ └── TranslationWriterTest.php │ │ │ │ └── fixtures │ │ │ │ │ ├── empty-translation.mo │ │ │ │ │ ├── empty-translation.po │ │ │ │ │ ├── empty.csv │ │ │ │ │ ├── empty.ini │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── empty.mo │ │ │ │ │ ├── empty.po │ │ │ │ │ ├── empty.xlf │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── encoding.xlf │ │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ │ ├── escaped-id.po │ │ │ │ │ ├── extractor │ │ │ │ │ ├── resource.format.engine │ │ │ │ │ ├── this.is.a.template.format.engine │ │ │ │ │ └── translation.html.php │ │ │ │ │ ├── fuzzy-translations.po │ │ │ │ │ ├── invalid-xml-resources.xlf │ │ │ │ │ ├── malformed.json │ │ │ │ │ ├── messages.yml │ │ │ │ │ ├── messages_linear.yml │ │ │ │ │ ├── non-valid.xlf │ │ │ │ │ ├── non-valid.yml │ │ │ │ │ ├── plurals.mo │ │ │ │ │ ├── plurals.po │ │ │ │ │ ├── resname.xlf │ │ │ │ │ ├── resourcebundle │ │ │ │ │ ├── corrupted │ │ │ │ │ │ └── resources.dat │ │ │ │ │ ├── dat │ │ │ │ │ │ ├── en.res │ │ │ │ │ │ ├── en.txt │ │ │ │ │ │ ├── fr.res │ │ │ │ │ │ ├── fr.txt │ │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ │ └── resources.dat │ │ │ │ │ └── res │ │ │ │ │ │ └── en.res │ │ │ │ │ ├── resources-2.0+intl-icu.xlf │ │ │ │ │ ├── resources-2.0-clean.xlf │ │ │ │ │ ├── resources-2.0-multi-segment-unit.xlf │ │ │ │ │ ├── resources-2.0.xlf │ │ │ │ │ ├── resources-clean.xlf │ │ │ │ │ ├── resources-notes-meta.xlf │ │ │ │ │ ├── resources-target-attributes.xlf │ │ │ │ │ ├── resources-tool-info.xlf │ │ │ │ │ ├── resources.csv │ │ │ │ │ ├── resources.dump.json │ │ │ │ │ ├── resources.ini │ │ │ │ │ ├── resources.json │ │ │ │ │ ├── resources.mo │ │ │ │ │ ├── resources.php │ │ │ │ │ ├── resources.po │ │ │ │ │ ├── resources.ts │ │ │ │ │ ├── resources.xlf │ │ │ │ │ ├── resources.yml │ │ │ │ │ ├── valid.csv │ │ │ │ │ ├── with-attributes.xlf │ │ │ │ │ ├── withdoctype.xlf │ │ │ │ │ └── withnote.xlf │ │ │ ├── Translator.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── Util │ │ │ │ ├── ArrayConverter.php │ │ │ │ └── XliffUtils.php │ │ │ ├── Writer │ │ │ │ ├── TranslationWriter.php │ │ │ │ └── TranslationWriterInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ └── var-dumper │ │ │ ├── .gitignore │ │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── ArgsStub.php │ │ │ ├── Caster.php │ │ │ ├── ClassStub.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DateCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── GmpCaster.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ ├── Caster │ │ │ │ ├── CasterTest.php │ │ │ │ ├── DateCasterTest.php │ │ │ │ ├── ExceptionCasterTest.php │ │ │ │ ├── GmpCasterTest.php │ │ │ │ ├── IntlCasterTest.php │ │ │ │ ├── MemcachedCasterTest.php │ │ │ │ ├── PdoCasterTest.php │ │ │ │ ├── RedisCasterTest.php │ │ │ │ ├── ReflectionCasterTest.php │ │ │ │ ├── SplCasterTest.php │ │ │ │ ├── StubCasterTest.php │ │ │ │ └── XmlReaderCasterTest.php │ │ │ ├── Cloner │ │ │ │ ├── DataTest.php │ │ │ │ └── VarClonerTest.php │ │ │ ├── Command │ │ │ │ └── Descriptor │ │ │ │ │ ├── CliDescriptorTest.php │ │ │ │ │ └── HtmlDescriptorTest.php │ │ │ ├── Dumper │ │ │ │ ├── CliDumperTest.php │ │ │ │ ├── FunctionsTest.php │ │ │ │ ├── HtmlDumperTest.php │ │ │ │ └── ServerDumperTest.php │ │ │ ├── Fixtures │ │ │ │ ├── FooInterface.php │ │ │ │ ├── GeneratorDemo.php │ │ │ │ ├── NotLoadableClass.php │ │ │ │ ├── Twig.php │ │ │ │ ├── dumb-var.php │ │ │ │ ├── dump_server.php │ │ │ │ └── xml_reader.xml │ │ │ ├── Server │ │ │ │ └── ConnectionTest.php │ │ │ └── Test │ │ │ │ └── VarDumperTestTraitTest.php │ │ │ ├── VarDumper.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ ├── 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 │ │ │ ├── test.php │ │ │ ├── test.php.tokens │ │ │ └── test.php.xml │ ├── tijsverkoyen │ │ └── css-to-inline-styles │ │ │ ├── LICENSE.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ └── src │ │ │ ├── Css │ │ │ ├── Processor.php │ │ │ ├── Property │ │ │ │ ├── Processor.php │ │ │ │ └── Property.php │ │ │ └── Rule │ │ │ │ ├── Processor.php │ │ │ │ └── Rule.php │ │ │ └── CssToInlineStyles.php │ ├── vlucas │ │ └── phpdotenv │ │ │ ├── LICENSE.txt │ │ │ ├── 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 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Assert.php ├── webpack.mix.js └── yarn.lock └── ttf ├── XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTQ3ig.ttf └── XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTQ3ig.ttf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/README.md -------------------------------------------------------------------------------- /css/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/css.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/style.min.css -------------------------------------------------------------------------------- /css/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/sweetalert.css -------------------------------------------------------------------------------- /css/zt2/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/all.min.css -------------------------------------------------------------------------------- /css/zt2/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/bootstrap.css -------------------------------------------------------------------------------- /css/zt2/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/custom.css -------------------------------------------------------------------------------- /css/zt2/easyhelper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/easyhelper.min.css -------------------------------------------------------------------------------- /css/zt2/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/fontawesome-all.min.css -------------------------------------------------------------------------------- /css/zt2/google-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/google-fonts.css -------------------------------------------------------------------------------- /css/zt2/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/main.min.css -------------------------------------------------------------------------------- /css/zt2/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/style.min.css -------------------------------------------------------------------------------- /css/zt2/sweetalert.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zt2/sweetalert.min.css -------------------------------------------------------------------------------- /css/zwcss/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/app.css -------------------------------------------------------------------------------- /css/zwcss/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/bootstrap-icons.css -------------------------------------------------------------------------------- /css/zwcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/index.js -------------------------------------------------------------------------------- /css/zwcss/simplex-noise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/simplex-noise.min.js -------------------------------------------------------------------------------- /css/zwcss/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/style.css -------------------------------------------------------------------------------- /css/zwcss/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/swiper-bundle.min.css -------------------------------------------------------------------------------- /css/zwcss/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/swiper-bundle.min.js -------------------------------------------------------------------------------- /css/zwcss/tc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/css/zwcss/tc.css -------------------------------------------------------------------------------- /data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/data.dat -------------------------------------------------------------------------------- /epay/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/config.php -------------------------------------------------------------------------------- /epay/epayapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/epayapi.php -------------------------------------------------------------------------------- /epay/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/index.php -------------------------------------------------------------------------------- /epay/lib/epay_core.function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/lib/epay_core.function.php -------------------------------------------------------------------------------- /epay/lib/epay_md5.function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/lib/epay_md5.function.php -------------------------------------------------------------------------------- /epay/lib/epay_notify.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/lib/epay_notify.class.php -------------------------------------------------------------------------------- /epay/lib/epay_submit.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/lib/epay_submit.class.php -------------------------------------------------------------------------------- /epay/notify_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/notify_url.php -------------------------------------------------------------------------------- /epay/return_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/epay/return_url.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/tx.png -------------------------------------------------------------------------------- /images/zt2/mockup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/zt2/mockup.svg -------------------------------------------------------------------------------- /images/zw/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/zw/back.svg -------------------------------------------------------------------------------- /images/zw/img-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/zw/img-1.svg -------------------------------------------------------------------------------- /images/zw/img-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/zw/img-2.svg -------------------------------------------------------------------------------- /images/zw/img-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/images/zw/img-3.svg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/index.php -------------------------------------------------------------------------------- /js/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/ip.js -------------------------------------------------------------------------------- /js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/main.js -------------------------------------------------------------------------------- /js/sweetalert-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/sweetalert-dev.js -------------------------------------------------------------------------------- /js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/sweetalert.min.js -------------------------------------------------------------------------------- /js/yinghua.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/js/yinghua.min.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/.env -------------------------------------------------------------------------------- /src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/.env.example -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Console/Kernel.php -------------------------------------------------------------------------------- /src/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/app/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Helper.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Admin/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/Admin/Controller.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/Home/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/Home/HomeController.php -------------------------------------------------------------------------------- /src/app/Http/Controllers/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Controllers/InstallController.php -------------------------------------------------------------------------------- /src/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Kernel.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/AuthenticateSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/AuthenticateSession.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/LoadSysConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/LoadSysConfig.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /src/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/Aliyun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/Aliyun.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/Cloudflare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/Cloudflare.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/DnsCom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/DnsCom.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/DnsHttp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/DnsHttp.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/DnsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/DnsInterface.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/DnsLa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/DnsLa.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/Dnspod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/Dnspod.php -------------------------------------------------------------------------------- /src/app/Klsf/Dns/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Klsf/Dns/Helper.php -------------------------------------------------------------------------------- /src/app/Models/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/Config.php -------------------------------------------------------------------------------- /src/app/Models/DnsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/DnsConfig.php -------------------------------------------------------------------------------- /src/app/Models/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/Domain.php -------------------------------------------------------------------------------- /src/app/Models/DomainRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/DomainRecord.php -------------------------------------------------------------------------------- /src/app/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/Model.php -------------------------------------------------------------------------------- /src/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/User.php -------------------------------------------------------------------------------- /src/app/Models/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/UserGroup.php -------------------------------------------------------------------------------- /src/app/Models/UserPointRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Models/UserPointRecord.php -------------------------------------------------------------------------------- /src/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/artisan -------------------------------------------------------------------------------- /src/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/bootstrap/app.php -------------------------------------------------------------------------------- /src/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/composer.lock -------------------------------------------------------------------------------- /src/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/app.php -------------------------------------------------------------------------------- /src/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/auth.php -------------------------------------------------------------------------------- /src/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/broadcasting.php -------------------------------------------------------------------------------- /src/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/cache.php -------------------------------------------------------------------------------- /src/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/database.php -------------------------------------------------------------------------------- /src/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/filesystems.php -------------------------------------------------------------------------------- /src/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/hashing.php -------------------------------------------------------------------------------- /src/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/logging.php -------------------------------------------------------------------------------- /src/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/mail.php -------------------------------------------------------------------------------- /src/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/queue.php -------------------------------------------------------------------------------- /src/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/services.php -------------------------------------------------------------------------------- /src/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/session.php -------------------------------------------------------------------------------- /src/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/config/view.php -------------------------------------------------------------------------------- /src/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/database/.gitignore -------------------------------------------------------------------------------- /src/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/database/factories/UserFactory.php -------------------------------------------------------------------------------- /src/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /src/install/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/install/install.sql -------------------------------------------------------------------------------- /src/install/update.3.1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/install/update.3.1.1.sql -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/package.json -------------------------------------------------------------------------------- /src/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/phpunit.xml -------------------------------------------------------------------------------- /src/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/js/app.js -------------------------------------------------------------------------------- /src/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/js/bootstrap.js -------------------------------------------------------------------------------- /src/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/lang/en/auth.php -------------------------------------------------------------------------------- /src/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /src/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /src/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/lang/en/validation.php -------------------------------------------------------------------------------- /src/resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/sass/_variables.scss -------------------------------------------------------------------------------- /src/resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/sass/app.scss -------------------------------------------------------------------------------- /src/resources/views/admin/config/dns.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/config/dns.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/config/sys.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/config/sys.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/login.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/profile.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/user/group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/user/group.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/user/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/user/list.blade.php -------------------------------------------------------------------------------- /src/resources/views/admin/user/point.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/admin/user/point.blade.php -------------------------------------------------------------------------------- /src/resources/views/email/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/email/password.blade.php -------------------------------------------------------------------------------- /src/resources/views/email/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/email/test.blade.php -------------------------------------------------------------------------------- /src/resources/views/email/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/email/verify.blade.php -------------------------------------------------------------------------------- /src/resources/views/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/error.blade.php -------------------------------------------------------------------------------- /src/resources/views/home/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/home/index.blade.php -------------------------------------------------------------------------------- /src/resources/views/home/point.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/home/point.blade.php -------------------------------------------------------------------------------- /src/resources/views/home/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/home/profile.blade.php -------------------------------------------------------------------------------- /src/resources/views/home/red.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/home/red.blade.php -------------------------------------------------------------------------------- /src/resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/index.blade.php -------------------------------------------------------------------------------- /src/resources/views/index1.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/index1.blade.php -------------------------------------------------------------------------------- /src/resources/views/index2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/index2.blade.php -------------------------------------------------------------------------------- /src/resources/views/install.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/install.blade.php -------------------------------------------------------------------------------- /src/resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/login.blade.php -------------------------------------------------------------------------------- /src/resources/views/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/password.blade.php -------------------------------------------------------------------------------- /src/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /src/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/routes/api.php -------------------------------------------------------------------------------- /src/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/routes/channels.php -------------------------------------------------------------------------------- /src/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/routes/console.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/routes/web.php -------------------------------------------------------------------------------- /src/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/server.php -------------------------------------------------------------------------------- /src/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/storage/framework/.gitignore -------------------------------------------------------------------------------- /src/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/tests/CreatesApplication.php -------------------------------------------------------------------------------- /src/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /src/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/tests/TestCase.php -------------------------------------------------------------------------------- /src/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /src/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/autoload.php -------------------------------------------------------------------------------- /src/vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/php-parse -------------------------------------------------------------------------------- /src/vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /src/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/phpunit -------------------------------------------------------------------------------- /src/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /src/vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/psysh -------------------------------------------------------------------------------- /src/vendor/bin/psysh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/psysh.bat -------------------------------------------------------------------------------- /src/vendor/bin/var-dump-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/var-dump-server -------------------------------------------------------------------------------- /src/vendor/bin/var-dump-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/bin/var-dump-server.bat -------------------------------------------------------------------------------- /src/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /src/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/LICENSE -------------------------------------------------------------------------------- /src/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /src/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/composer/installed.json -------------------------------------------------------------------------------- /src/vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /src/vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /src/vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /src/vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /src/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /src/vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /src/vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /src/vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /src/vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /src/vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/instantiator/phpbench.json -------------------------------------------------------------------------------- /src/vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /src/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /src/vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /src/vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /src/vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /src/vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /src/vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /src/vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /src/vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /src/vendor/fideloper/proxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fideloper/proxy/LICENSE.md -------------------------------------------------------------------------------- /src/vendor/fideloper/proxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fideloper/proxy/composer.json -------------------------------------------------------------------------------- /src/vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /src/vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /src/vendor/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /src/vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/.gitignore -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/.travis.yml -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/LICENSE -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/README.md -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/composer.json -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/demo.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/form.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/index.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/ocr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/ocr.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/output.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/demo/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/demo/session.php -------------------------------------------------------------------------------- /src/vendor/gregwar/captcha/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/gregwar/captcha/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/UPGRADING.md -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/composer.json -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/src/Client.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/src/Pool.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/guzzle/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/guzzle/src/functions.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/promises/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/promises/Makefile -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/promises/README.md -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/promises/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/promises/composer.json -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/promises/src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/promises/src/Promise.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/.editorconfig -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/LimitStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/LimitStream.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/PumpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/PumpStream.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/Rfc7230.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/UriResolver.php -------------------------------------------------------------------------------- /src/vendor/guzzlehttp/psr7/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/guzzlehttp/psr7/src/functions.php -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/hamcrest/hamcrest-php/composer.lock -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /src/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /src/vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /src/vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /src/vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /src/vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/vendor/laravel/tinker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/tinker/LICENSE.txt -------------------------------------------------------------------------------- /src/vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /src/vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /src/vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /src/vendor/laravel/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/laravel/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /src/vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /src/vendor/league/flysystem/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/deprecations.md -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /src/vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.phpstorm.meta.php -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.styleci.yml -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/Makefile -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/library/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/library/helpers.php -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /src/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/doc/03-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/doc/03-utilities.md -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/doc/04-extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/doc/04-extending.md -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/.gitattributes -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/.gitignore -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/.scrutinizer.yml -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/.travis.yml -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /src/vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/phpunit/phpunit/tests/bootstrap.php -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/end-to-end/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/end-to-end/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2158/constant.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/.gitignore: -------------------------------------------------------------------------------- 1 | .phpunit.result.cache 2 | 3 | -------------------------------------------------------------------------------- /src/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /src/vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /src/vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/container/README.md -------------------------------------------------------------------------------- /src/vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /src/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /src/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /src/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /src/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /src/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /src/vendor/psr/log/Psr/Log/Test/TestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/Psr/Log/Test/TestLogger.php -------------------------------------------------------------------------------- /src/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/README.md -------------------------------------------------------------------------------- /src/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /src/vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /src/vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /src/vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /src/vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.phan/config.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /src/vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /src/vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /src/vendor/psy/psysh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/Makefile -------------------------------------------------------------------------------- /src/vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /src/vendor/psy/psysh/bin/build-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/bin/build-stub -------------------------------------------------------------------------------- /src/vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /src/vendor/psy/psysh/box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/box.json.dist -------------------------------------------------------------------------------- /src/vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /src/vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/CodeCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/CodeCleaner.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Command/Command.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/ConfigPaths.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Configuration.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Context.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/ContextAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/ContextAware.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/ExecutionClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/ExecutionClosure.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/ExecutionLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/ExecutionLoop.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Input/ShellInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Input/ShellInput.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Input/SilentInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Input/SilentInput.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/ParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/ParserFactory.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Readline/Libedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Readline/Libedit.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Readline/Readline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Readline/Readline.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Shell.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Sudo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Sudo.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Sudo/SudoVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Sudo/SudoVisitor.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Util/Docblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Util/Docblock.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Util/Json.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Util/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Util/Mirror.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/Util/Str.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/VarDumper/Cloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/VarDumper/Cloner.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/VarDumper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/VarDumper/Dumper.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/src/functions.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/ClassWithSecrets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/ClassWithSecrets.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/CodeCleanerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/CodeCleanerTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/ContextTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/FakeShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/FakeShell.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/ParserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/ParserTestCase.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/ShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/ShellTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/SudoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/SudoTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/Util/MirrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/Util/MirrorTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/Util/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/Util/StrTest.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/fixtures/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/psy/psysh/test/fixtures/config.php -------------------------------------------------------------------------------- /src/vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /src/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /src/vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /src/vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /src/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /src/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /src/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /src/vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/symfony/contracts/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/vendor/symfony/contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/contracts/LICENSE -------------------------------------------------------------------------------- /src/vendor/symfony/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/contracts/README.md -------------------------------------------------------------------------------- /src/vendor/symfony/contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/contracts/composer.json -------------------------------------------------------------------------------- /src/vendor/symfony/contracts/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/contracts/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /src/vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /src/vendor/symfony/css-selector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/css-selector/composer.json -------------------------------------------------------------------------------- /src/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /src/vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /src/vendor/symfony/debug/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/DebugClassLoader.php -------------------------------------------------------------------------------- /src/vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /src/vendor/symfony/debug/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/ExceptionHandler.php -------------------------------------------------------------------------------- /src/vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /src/vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /src/vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /src/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /src/vendor/symfony/translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/translation/Translator.php -------------------------------------------------------------------------------- /src/vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/Cloner/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/Cloner/Data.php -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/Cloner/Stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/Cloner/Stub.php -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /src/vendor/symfony/var-dumper/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/symfony/var-dumper/phpunit.xml.dist -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/.gitignore -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/.php_cs -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/.travis.yml -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/LICENSE -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/README.md -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/build.xml -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/composer.json -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/phive.xml -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/phpunit.xml -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/src/Exception.php -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/src/Token.php -------------------------------------------------------------------------------- /src/vendor/theseer/tokenizer/src/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/theseer/tokenizer/src/Tokenizer.php -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/src/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/src/Lines.php -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/src/Parser.php -------------------------------------------------------------------------------- /src/vendor/vlucas/phpdotenv/src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/vlucas/phpdotenv/src/Validator.php -------------------------------------------------------------------------------- /src/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /src/vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /src/vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /src/vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /src/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/webpack.mix.js -------------------------------------------------------------------------------- /src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/src/yarn.lock -------------------------------------------------------------------------------- /ttf/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTQ3ig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/ttf/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTQ3ig.ttf -------------------------------------------------------------------------------- /ttf/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTQ3ig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoudedi/xzdns/HEAD/ttf/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTQ3ig.ttf --------------------------------------------------------------------------------