├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── CORS.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── trustedproxy.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 ├── image.jpg ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── dist │ ├── 3rdpartylicenses.txt │ ├── favicon.ico │ ├── index.html │ ├── main.js │ ├── main.js.map │ ├── polyfills.js │ ├── polyfills.js.map │ ├── runtime.js │ ├── runtime.js.map │ ├── styles.js │ ├── styles.js.map │ ├── vendor.js │ └── vendor.js.map ├── favicon.ico ├── index.php ├── js │ └── app.js └── robots.txt ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ ├── sass │ │ ├── _variables.scss │ │ └── app.scss │ └── src │ │ └── angular-app │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── first-page │ │ │ │ ├── first-page.component.css │ │ │ │ ├── first-page.component.html │ │ │ │ ├── first-page.component.spec.ts │ │ │ │ └── first-page.component.ts │ │ │ ├── my-dashboard │ │ │ │ ├── my-dashboard.component.css │ │ │ │ ├── my-dashboard.component.html │ │ │ │ ├── my-dashboard.component.spec.ts │ │ │ │ └── my-dashboard.component.ts │ │ │ ├── my-nav │ │ │ │ ├── my-nav.component.css │ │ │ │ ├── my-nav.component.html │ │ │ │ ├── my-nav.component.spec.ts │ │ │ │ └── my-nav.component.ts │ │ │ ├── my-table │ │ │ │ ├── my-table-datasource.ts │ │ │ │ ├── my-table.component.css │ │ │ │ ├── my-table.component.html │ │ │ │ ├── my-table.component.spec.ts │ │ │ │ └── my-table.component.ts │ │ │ ├── second-page │ │ │ │ ├── second-page.component.css │ │ │ │ ├── second-page.component.html │ │ │ │ ├── second-page.component.spec.ts │ │ │ │ └── second-page.component.ts │ │ │ └── third-page │ │ │ │ ├── third-page.component.css │ │ │ │ ├── third-page.component.html │ │ │ │ ├── third-page.component.spec.ts │ │ │ │ └── third-page.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ ├── tsconfig.json │ │ └── tslint.json ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── index.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshot-1.png ├── screenshot-2.png ├── server.php ├── storage ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vendor ├── autoload.php ├── bin ├── php-parse ├── phpunit ├── psysh └── var-dump-server ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── dnoegel └── php-xdg-base-dir │ ├── .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 │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── tr_TR │ │ │ │ ├── Address.php │ │ │ │ ├── Color.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 │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── fi_FI │ │ ├── InternetTest.php │ │ └── PersonTest.php │ │ ├── fr_BE │ │ └── PaymentTest.php │ │ ├── fr_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── fr_FR │ │ ├── CompanyTest.php │ │ └── PersonTest.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 │ │ ├── kk_KZ │ │ ├── CompanyTest.php │ │ └── PersonTest.php │ │ ├── mn_MN │ │ └── PersonTest.php │ │ ├── nl_BE │ │ └── PaymentTest.php │ │ ├── nl_NL │ │ └── CompanyTest.php │ │ ├── pl_PL │ │ └── AddressTest.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 │ │ ├── sv_SE │ │ └── PersonTest.php │ │ ├── uk_UA │ │ ├── AddressTest.php │ │ ├── PersonTest.php │ │ └── PhoneNumberTest.php │ │ └── zh_TW │ │ ├── CompanyTest.php │ │ ├── PersonTest.php │ │ └── TextTest.php │ ├── documentor.php │ └── test.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 │ ├── build.xml │ ├── composer.json │ ├── example.php │ ├── phpunit.xml │ ├── src │ │ └── JakubOnderka │ │ │ └── PhpConsoleColor │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ └── tests │ │ ├── JakubOnderka │ │ └── PhpConsoleColor │ │ │ └── ConsoleColorTest.php │ │ └── bootstrap.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 │ └── JakubOnderka │ │ └── PhpConsoleHighlighter │ │ └── Highlighter.php │ └── tests │ ├── JakubOnderka │ └── PhpConsoleHighligter │ │ └── HigligterTest.php │ └── bootstrap.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 │ │ │ │ ├── home.stub │ │ │ │ └── layouts │ │ │ │ └── app.stub │ │ ├── CreatesUserProviders.php │ │ ├── DatabaseUserProvider.php │ │ ├── EloquentUserProvider.php │ │ ├── Events │ │ │ ├── Attempting.php │ │ │ ├── Authenticated.php │ │ │ ├── Failed.php │ │ │ ├── Lockout.php │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ ├── PasswordReset.php │ │ │ └── Registered.php │ │ ├── GenericUser.php │ │ ├── GuardHelpers.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ └── Authorize.php │ │ ├── Notifications │ │ │ └── ResetPassword.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 │ │ ├── Channel.php │ │ ├── InteractsWithSockets.php │ │ ├── PendingBroadcast.php │ │ ├── PresenceChannel.php │ │ ├── PrivateChannel.php │ │ └── composer.json │ │ ├── Bus │ │ ├── BusServiceProvider.php │ │ ├── Dispatcher.php │ │ ├── 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 │ │ ├── Events │ │ │ ├── CacheEvent.php │ │ │ ├── CacheHit.php │ │ │ ├── CacheMissed.php │ │ │ ├── KeyForgotten.php │ │ │ └── KeyWritten.php │ │ ├── FileStore.php │ │ ├── Lock.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 │ │ ├── Repository.php │ │ └── composer.json │ │ ├── Console │ │ ├── Application.php │ │ ├── Command.php │ │ ├── ConfirmableTrait.php │ │ ├── DetectsApplicationNamespace.php │ │ ├── Events │ │ │ ├── ArtisanStarting.php │ │ │ ├── CommandFinished.php │ │ │ └── CommandStarting.php │ │ ├── GeneratorCommand.php │ │ ├── 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 │ │ └── composer.json │ │ ├── Contracts │ │ ├── Auth │ │ │ ├── Access │ │ │ │ ├── Authorizable.php │ │ │ │ └── Gate.php │ │ │ ├── Authenticatable.php │ │ │ ├── CanResetPassword.php │ │ │ ├── Factory.php │ │ │ ├── Guard.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 │ │ │ ├── FileNotFoundException.php │ │ │ └── Filesystem.php │ │ ├── Foundation │ │ │ └── Application.php │ │ ├── Hashing │ │ │ └── Hasher.php │ │ ├── Http │ │ │ └── Kernel.php │ │ ├── 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 │ │ │ ├── Htmlable.php │ │ │ ├── Jsonable.php │ │ │ ├── MessageBag.php │ │ │ ├── MessageProvider.php │ │ │ ├── Renderable.php │ │ │ └── Responsable.php │ │ ├── Translation │ │ │ ├── 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 │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── JsonEncodingException.php │ │ │ ├── MassAssignmentException.php │ │ │ ├── Model.php │ │ │ ├── ModelNotFoundException.php │ │ │ ├── QueueEntityResolver.php │ │ │ ├── RelationNotFoundException.php │ │ │ ├── Relations │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ └── SupportsDefaultModels.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── HasOneOrMany.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 │ │ ├── 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 │ │ │ ├── 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 │ │ └── composer.json │ │ ├── Events │ │ ├── CallQueuedListener.php │ │ ├── Dispatcher.php │ │ ├── EventServiceProvider.php │ │ └── composer.json │ │ ├── Filesystem │ │ ├── Cache.php │ │ ├── Filesystem.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemManager.php │ │ ├── FilesystemServiceProvider.php │ │ └── 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 │ │ ├── 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 │ │ │ ├── EventGenerateCommand.php │ │ │ ├── EventMakeCommand.php │ │ │ ├── ExceptionMakeCommand.php │ │ │ ├── JobMakeCommand.php │ │ │ ├── Kernel.php │ │ │ ├── KeyGenerateCommand.php │ │ │ ├── ListenerMakeCommand.php │ │ │ ├── MailMakeCommand.php │ │ │ ├── ModelMakeCommand.php │ │ │ ├── NotificationMakeCommand.php │ │ │ ├── ObserverMakeCommand.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 │ │ │ │ ├── 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 │ │ │ ├── Dispatchable.php │ │ │ └── LocaleUpdated.php │ │ ├── Exceptions │ │ │ ├── Handler.php │ │ │ ├── WhoopsHandler.php │ │ │ └── views │ │ │ │ ├── 404.blade.php │ │ │ │ ├── 419.blade.php │ │ │ │ ├── 429.blade.php │ │ │ │ ├── 500.blade.php │ │ │ │ ├── 503.blade.php │ │ │ │ └── layout.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 │ │ ├── PackageManifest.php │ │ ├── ProviderRepository.php │ │ ├── Providers │ │ │ ├── ArtisanServiceProvider.php │ │ │ ├── ComposerServiceProvider.php │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ ├── FormRequestServiceProvider.php │ │ │ └── FoundationServiceProvider.php │ │ ├── Support │ │ │ └── Providers │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── RouteServiceProvider.php │ │ ├── Testing │ │ │ ├── Concerns │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ ├── InteractsWithSession.php │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ └── MocksApplicationServices.php │ │ │ ├── Constraints │ │ │ │ ├── HasInDatabase.php │ │ │ │ ├── SeeInOrder.php │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ ├── DatabaseMigrations.php │ │ │ ├── DatabaseTransactions.php │ │ │ ├── HttpException.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 │ │ ├── ArgonHasher.php │ │ ├── BcryptHasher.php │ │ ├── HashManager.php │ │ ├── HashServiceProvider.php │ │ └── composer.json │ │ ├── Http │ │ ├── Concerns │ │ │ ├── InteractsWithContentTypes.php │ │ │ ├── InteractsWithFlashData.php │ │ │ └── InteractsWithInput.php │ │ ├── Exceptions │ │ │ ├── HttpResponseException.php │ │ │ ├── PostTooLargeException.php │ │ │ └── ThrottleRequestsException.php │ │ ├── File.php │ │ ├── FileHelpers.php │ │ ├── JsonResponse.php │ │ ├── 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 │ │ ├── LogManager.php │ │ ├── LogServiceProvider.php │ │ ├── Logger.php │ │ └── composer.json │ │ ├── Mail │ │ ├── Events │ │ │ ├── MessageSending.php │ │ │ └── MessageSent.php │ │ ├── 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 │ │ │ └── markdown │ │ │ ├── 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 │ │ │ ├── NexmoSmsChannel.php │ │ │ └── SlackWebhookChannel.php │ │ ├── Console │ │ │ ├── NotificationTableCommand.php │ │ │ └── stubs │ │ │ │ └── notifications.stub │ │ ├── DatabaseNotification.php │ │ ├── DatabaseNotificationCollection.php │ │ ├── Events │ │ │ ├── BroadcastNotificationCreated.php │ │ │ ├── NotificationFailed.php │ │ │ ├── NotificationSending.php │ │ │ └── NotificationSent.php │ │ ├── HasDatabaseNotifications.php │ │ ├── Messages │ │ │ ├── BroadcastMessage.php │ │ │ ├── DatabaseMessage.php │ │ │ ├── MailMessage.php │ │ │ ├── NexmoMessage.php │ │ │ ├── SimpleMessage.php │ │ │ ├── SlackAttachment.php │ │ │ ├── SlackAttachmentField.php │ │ │ └── SlackMessage.php │ │ ├── Notifiable.php │ │ ├── Notification.php │ │ ├── NotificationSender.php │ │ ├── NotificationServiceProvider.php │ │ ├── RoutesNotifications.php │ │ ├── SendQueuedNotifications.php │ │ ├── composer.json │ │ └── resources │ │ │ └── views │ │ │ └── email.blade.php │ │ ├── Pagination │ │ ├── AbstractPaginator.php │ │ ├── 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 │ │ ├── Pipeline.php │ │ ├── PipelineServiceProvider.php │ │ └── composer.json │ │ ├── Queue │ │ ├── BeanstalkdQueue.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 │ │ ├── FailingJob.php │ │ ├── InteractsWithQueue.php │ │ ├── InvalidPayloadException.php │ │ ├── Jobs │ │ │ ├── BeanstalkdJob.php │ │ │ ├── DatabaseJob.php │ │ │ ├── DatabaseJobRecord.php │ │ │ ├── Job.php │ │ │ ├── JobName.php │ │ │ ├── RedisJob.php │ │ │ ├── SqsJob.php │ │ │ └── SyncJob.php │ │ ├── Listener.php │ │ ├── ListenerOptions.php │ │ ├── LuaScripts.php │ │ ├── ManuallyFailedException.php │ │ ├── MaxAttemptsExceededException.php │ │ ├── NullQueue.php │ │ ├── Queue.php │ │ ├── QueueManager.php │ │ ├── QueueServiceProvider.php │ │ ├── README.md │ │ ├── RedisQueue.php │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ ├── SerializesModels.php │ │ ├── SqsQueue.php │ │ ├── SyncQueue.php │ │ ├── Worker.php │ │ ├── WorkerOptions.php │ │ └── composer.json │ │ ├── Redis │ │ ├── Connections │ │ │ ├── Connection.php │ │ │ ├── PhpRedisClusterConnection.php │ │ │ ├── PhpRedisConnection.php │ │ │ ├── PredisClusterConnection.php │ │ │ └── PredisConnection.php │ │ ├── Connectors │ │ │ ├── PhpRedisConnector.php │ │ │ └── PredisConnector.php │ │ ├── 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.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Debug │ │ │ ├── Dumper.php │ │ │ └── HtmlDumper.php │ │ ├── Facades │ │ │ ├── App.php │ │ │ ├── Artisan.php │ │ │ ├── Auth.php │ │ │ ├── Blade.php │ │ │ ├── Broadcast.php │ │ │ ├── Bus.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Cookie.php │ │ │ ├── Crypt.php │ │ │ ├── DB.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 │ │ ├── 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 │ │ │ ├── Localizable.php │ │ │ └── Macroable.php │ │ ├── ViewErrorBag.php │ │ ├── composer.json │ │ └── helpers.php │ │ ├── Translation │ │ ├── ArrayLoader.php │ │ ├── FileLoader.php │ │ ├── MessageSelector.php │ │ ├── TranslationServiceProvider.php │ │ ├── Translator.php │ │ └── composer.json │ │ ├── Validation │ │ ├── ClosureValidationRule.php │ │ ├── Concerns │ │ │ ├── FormatsMessages.php │ │ │ ├── ReplacesAttributes.php │ │ │ └── ValidatesAttributes.php │ │ ├── DatabasePresenceVerifier.php │ │ ├── Factory.php │ │ ├── PresenceVerifierInterface.php │ │ ├── Rule.php │ │ ├── Rules │ │ │ ├── DatabaseRule.php │ │ │ ├── Dimensions.php │ │ │ ├── Exists.php │ │ │ ├── In.php │ │ │ ├── NotIn.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 │ │ ├── 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 │ └── 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 │ ├── .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 │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ ├── MockeryTestCase.php │ │ │ │ └── TestListener.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 │ ├── ContainerTest.php │ ├── DemeterChainTest.php │ ├── DummyClasses │ ├── DemeterChain.php │ └── Namespaced.php │ ├── ExpectationTest.php │ ├── Fixtures │ ├── ClassWithAllLowerCaseMethod.php │ ├── ClassWithConstants.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 │ │ ├── ConstantsPassTest.php │ │ ├── InstanceMockPassTest.php │ │ ├── InterfacePassTest.php │ │ └── MagicMethodTypeHintsPassTest.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 │ ├── MockingMethodsWithIterableTypeHintsTest.php │ ├── MockingMethodsWithNullableParametersTest.php │ ├── MockingNullableMethodsTest.php │ ├── MockingOldStyleConstructorTest.php │ ├── MockingParameterAndReturnTypesTest.php │ ├── MockingProtectedMethodsTest.php │ ├── MockingVariadicArgumentsTest.php │ ├── MockingVoidMethodsTest.php │ ├── NamedMockTest.php │ ├── Php72LanguageFeaturesTest.php │ ├── SpyTest.php │ ├── Stubs │ ├── Animal.php │ └── Habitat.php │ ├── TraitsTest.php │ ├── WithFormatterExpectationTest.php │ └── _files │ └── file.txt ├── 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 │ │ ├── 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 │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.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 │ ├── 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 │ └── 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 │ ├── .php_cs.dist │ ├── LICENSE │ ├── build.php │ ├── composer.json │ ├── readme.md │ └── src │ └── Carbon │ ├── Carbon.php │ ├── CarbonInterval.php │ ├── Exceptions │ └── InvalidDateException.php │ ├── Lang │ ├── af.php │ ├── ar.php │ ├── ar_Shakl.php │ ├── az.php │ ├── bg.php │ ├── bn.php │ ├── ca.php │ ├── cs.php │ ├── da.php │ ├── de.php │ ├── dv_MV.php │ ├── el.php │ ├── en.php │ ├── eo.php │ ├── es.php │ ├── et.php │ ├── eu.php │ ├── fa.php │ ├── fi.php │ ├── fo.php │ ├── fr.php │ ├── gl.php │ ├── gu.php │ ├── he.php │ ├── hr.php │ ├── hu.php │ ├── hy.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── ka.php │ ├── kk.php │ ├── km.php │ ├── ko.php │ ├── lt.php │ ├── lv.php │ ├── mk.php │ ├── mn.php │ ├── ms.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── ps.php │ ├── pt.php │ ├── pt_BR.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sl.php │ ├── sq.php │ ├── sr.php │ ├── sr_Cyrl.php │ ├── sr_Cyrl_ME.php │ ├── sr_Latn_ME.php │ ├── sr_ME.php │ ├── sv.php │ ├── th.php │ ├── tr.php │ ├── uk.php │ ├── ur.php │ ├── uz.php │ ├── vi.php │ ├── zh.php │ └── zh_TW.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 │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── anonClasses.test │ │ │ ├── basic.test │ │ │ ├── blockConversion.test │ │ │ ├── comments.test │ │ │ ├── fixup.test │ │ │ ├── inlineHtml.test │ │ │ ├── insertionOfNullable.test │ │ │ ├── listInsertion.test │ │ │ ├── listInsertionIndentation.test │ │ │ ├── listRemoval.test │ │ │ ├── modifierChange.test │ │ │ ├── removalViaNull.test │ │ │ └── traitAlias.test │ │ ├── parser │ │ │ ├── blockComments.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── switch.test │ │ │ ├── throw.test │ │ │ ├── traitUse.test │ │ │ ├── tryCatch.test │ │ │ └── while.test │ └── updateTests.php │ └── test_old │ ├── run-php-src.sh │ └── run.php ├── paragonie └── random_compat │ ├── LICENSE │ ├── build-phar.sh │ ├── composer.json │ ├── dist │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc │ ├── lib │ ├── byte_safe_strings.php │ ├── cast_to_int.php │ ├── error_polyfill.php │ ├── random.php │ ├── random_bytes_com_dotnet.php │ ├── random_bytes_dev_urandom.php │ ├── random_bytes_libsodium.php │ ├── random_bytes_libsodium_legacy.php │ ├── random_bytes_mcrypt.php │ └── random_int.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 │ ├── 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 │ ├── AbstractVersionConstraint.php │ ├── AndVersionConstraintGroup.php │ ├── AnyVersionConstraint.php │ ├── ExactVersionConstraint.php │ ├── Exception.php │ ├── GreaterThanOrEqualToVersionConstraint.php │ ├── InvalidVersionException.php │ ├── OrVersionConstraintGroup.php │ ├── PreReleaseSuffix.php │ ├── SpecificMajorAndMinorVersionConstraint.php │ ├── SpecificMajorVersionConstraint.php │ ├── UnsupportedVersionConstraintException.php │ ├── Version.php │ ├── VersionConstraint.php │ ├── VersionConstraintParser.php │ ├── VersionConstraintValue.php │ └── VersionNumber.php │ └── tests │ ├── Integration │ └── VersionConstraintParserTest.php │ └── Unit │ ├── AbstractVersionConstraintTest.php │ ├── AndVersionConstraintGroupTest.php │ ├── AnyVersionConstraintTest.php │ ├── ExactVersionConstraintTest.php │ ├── GreaterThanOrEqualToVersionConstraintTest.php │ ├── OrVersionConstraintGroupTest.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 ├── 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 │ │ └── 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 │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog-2.2.md │ ├── ChangeLog-3.0.md │ ├── ChangeLog-3.1.md │ ├── ChangeLog-3.2.md │ ├── ChangeLog-3.3.md │ ├── ChangeLog-4.0.md │ ├── ChangeLog-5.0.md │ ├── ChangeLog-5.1.md │ ├── ChangeLog-5.2.md │ ├── ChangeLog-5.3.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── HHVM.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 │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.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 │ │ ├── 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 │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .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 │ │ ├── TokenTest.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-mock-objects │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── 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 │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ ├── MockBuilder.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 │ └── tests │ │ ├── Builder │ │ └── InvocationMockerTest.php │ │ ├── Generator │ │ ├── 232.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_partial.phpt │ │ ├── class_with_deprecated_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_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 │ │ ├── GeneratorTest.php │ │ ├── Invocation │ │ ├── ObjectInvocationTest.php │ │ └── StaticInvocationTest.php │ │ ├── Matcher │ │ └── ConsecutiveParametersTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnInterfaceWithReturnType.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithAllPossibleReturnTypes.php │ │ ├── ClassWithSelfTypeHint.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ ├── StringableClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .php_cs.dist │ ├── .travis.yml │ ├── ChangeLog-5.7.md │ ├── ChangeLog-6.5.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── build.xml │ ├── composer.json │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.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 │ │ ├── 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 │ │ ├── PhptTestCase.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.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 │ │ ├── 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 │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── Xml.php │ │ └── XmlTestListRenderer.php │ └── tests │ ├── Fail │ └── fail.phpt │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.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 │ │ ├── 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 │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── 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 │ │ ├── 2137 │ │ │ └── Issue2137Test.php │ │ ├── 2145 │ │ │ └── Issue2145Test.php │ │ ├── 2158 │ │ │ ├── Issue2158Test.php │ │ │ └── constant.inc │ │ ├── 2366 │ │ │ └── Issue2366Test.php │ │ ├── 2380 │ │ │ └── Issue2380Test.php │ │ ├── 2382 │ │ │ └── Issue2382Test.php │ │ ├── 2435 │ │ │ └── Issue2435Test.php │ │ ├── 2448 │ │ │ └── Test.php │ │ ├── 2591 │ │ │ ├── SeparateClassPreserveTest.php │ │ │ ├── SeparateFunctionNoPreserveTest.php │ │ │ ├── SeparateFunctionPreserveTest.php │ │ │ ├── bootstrapNoBootstrap.php │ │ │ ├── bootstrapWithBootstrap.php │ │ │ └── bootstrapWithBootstrapNoGlobal.php │ │ ├── 2725 │ │ │ └── BeforeAfterClassPidTest.php │ │ ├── 2731 │ │ │ └── Issue2731Test.php │ │ ├── 2811 │ │ │ └── Issue2811Test.php │ │ ├── 2830 │ │ │ └── Issue2830Test.php │ │ ├── 2972 │ │ │ ├── issue-2972-test.phpt │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ ├── 1149.phpt │ │ ├── 1216.phpt │ │ ├── 1265.phpt │ │ ├── 1330.phpt │ │ ├── 1335.phpt │ │ ├── 1337.phpt │ │ ├── 1348.phpt │ │ ├── 1351.phpt │ │ ├── 1374.phpt │ │ ├── 1437.phpt │ │ ├── 1468.phpt │ │ ├── 1471.phpt │ │ ├── 1472.phpt │ │ ├── 1570.phpt │ │ ├── 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-xdebug.phpt │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ ├── 2591-separate-function-no-preserve.phpt │ │ ├── 2591-separate-function-preserve.phpt │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ ├── 2731.phpt │ │ ├── 2811.phpt │ │ ├── 2830.phpt │ │ ├── 2972.phpt │ │ ├── 322.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 │ ├── Runner │ └── PhptTestCaseTest.php │ ├── TextUI │ ├── _files │ │ ├── expect_external.txt │ │ ├── phpt-env.expected.txt │ │ └── phpt_external.php │ ├── abstract-test-class.phpt │ ├── assertion.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 │ ├── dependencies-clone.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── disable-code-coverage-ignore.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.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 │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── list-suites.phpt │ ├── list-tests-dataprovider.phpt │ ├── list-tests-xml-dataprovider.phpt │ ├── log-junit.phpt │ ├── log-teamcity.phpt │ ├── mycommand.phpt │ ├── options-after-arguments.phpt │ ├── output-isolation.phpt │ ├── phar-extension-suppressed.phpt │ ├── phar-extension.phpt │ ├── phpt-args.phpt │ ├── phpt-env.phpt │ ├── phpt-external.phpt │ ├── phpt-stderr.phpt │ ├── phpt-stdin.phpt │ ├── phpt-xfail.phpt │ ├── repeat.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── stop-on-warning-via-cli.phpt │ ├── stop-on-warning-via-config.phpt │ ├── teamcity-inner-exceptions.phpt │ ├── teamcity.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-exclude-group.phpt │ ├── testdox-group.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ ├── testdox-xml.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationGeneratorTest.php │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── JsonTest.php │ ├── PHP │ │ └── AbstractPhpProcessTest.php │ ├── RegularExpressionTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XmlTest.php │ ├── _files │ ├── AbstractTest.php │ ├── ArrayAccessible.php │ ├── AssertionExample.php │ ├── AssertionExampleTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BankAccountTest2.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── BeforeClassWithOnlyDataProviderTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ClonedDependencyTest.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CountConstraint.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.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 │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyBarTest.php │ ├── DummyException.php │ ├── DummyFooTest.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FalsyConstraint.php │ ├── FatalTest.php │ ├── IgnoreCodeCoverageClass.php │ ├── IgnoreCodeCoverageClassTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── Mockable.php │ ├── MultiDependencyTest.php │ ├── MultipleDataProviderTest.php │ ├── MyCommand.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 │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── ParseTestMethodAnnotationsMock.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── StatusTest.php │ ├── StopOnWarningTestSuite.php │ ├── StopsOnWarningTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestAutoreferenced.php │ ├── TestDoxGroupTest.php │ ├── TestGeneratorMaker.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestIteratorAggregate.php │ ├── TestIteratorAggregate2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.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.custom-printer.xml │ ├── configuration.defaulttestsuite.xml │ ├── configuration.one-file-suite.xml │ ├── configuration.suites.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_stop_on_warning.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── phpt-for-coverage.phpt │ ├── phpt-xfail.phpt │ ├── phpunit-example-extension │ │ ├── phpunit.xml │ │ ├── tests │ │ │ └── OneTest.php │ │ └── tools │ │ │ └── phpunit.d │ │ │ └── phpunit-example-extension-1.0.1.phar │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ └── bootstrap.php ├── psr ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ └── LoggerInterfaceTest.php │ ├── 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 │ │ ├── FunctionContextPassTest.php │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ ├── ImplicitReturnPassTest.php │ │ ├── InstanceOfPassTest.php │ │ ├── LeavePsyshAlonePassTest.php │ │ ├── LegacyEmptyPassTest.php │ │ ├── ListPassTest.php │ │ ├── LoopContextPassTest.php │ │ ├── MagicConstantsPassTest.php │ │ ├── NamespacePassTest.php │ │ ├── NoReturnValueTest.php │ │ ├── PassableByReferencePassTest.php │ │ ├── RequirePassTest.php │ │ ├── StrictTypesPassTest.php │ │ ├── UseStatementPassTest.php │ │ ├── ValidClassNamePassTest.php │ │ ├── ValidConstantPassTest.php │ │ ├── ValidConstructorPassTest.php │ │ └── ValidFunctionNamePassTest.php │ ├── CodeCleanerTest.php │ ├── Command │ │ ├── ExitCommandTest.php │ │ ├── ThrowUpCommandTest.php │ │ └── TimeitCommand │ │ │ └── TimeitVisitorTest.php │ ├── ConfigurationTest.php │ ├── ConsoleColorFactoryTest.php │ ├── ContextTest.php │ ├── Exception │ │ ├── BreakExceptionTest.php │ │ ├── ErrorExceptionTest.php │ │ ├── FatalErrorExceptionTest.php │ │ ├── ParseErrorExceptionTest.php │ │ ├── RuntimeExceptionTest.php │ │ ├── ThrowUpExceptionTest.php │ │ └── TypeErrorExceptionTest.php │ ├── FakeShell.php │ ├── Formatter │ │ ├── CodeFormatterTest.php │ │ ├── DocblockFormatterTest.php │ │ ├── Fixtures │ │ │ ├── BoringTrait.php │ │ │ └── SomeClass.php │ │ └── SignatureFormatterTest.php │ ├── Input │ │ ├── CodeArgumentTest.php │ │ ├── FilterOptionsTest.php │ │ └── ShellInputTest.php │ ├── ParserTestCase.php │ ├── Readline │ │ ├── GNUReadlineTest.php │ │ ├── HoaConsoleTest.php │ │ ├── LibeditTest.php │ │ └── TransientTest.php │ ├── Reflection │ │ ├── ReflectionClassConstantTest.php │ │ ├── ReflectionConstantBCTest.php │ │ ├── ReflectionConstantTest.php │ │ ├── ReflectionLanguageConstructParameterTest.php │ │ └── ReflectionLanguageConstructTest.php │ ├── ShellTest.php │ ├── Sudo │ │ └── SudoVisitorTest.php │ ├── SudoTest.php │ ├── TabCompletion │ │ ├── AutoCompleterTest.php │ │ └── StaticSample.php │ ├── Util │ │ ├── DocblockTest.php │ │ ├── MirrorTest.php │ │ └── StrTest.php │ ├── VersionUpdater │ │ ├── GitHubCheckerTest.php │ │ └── NoopCheckerTest.php │ ├── fixtures │ │ ├── config.php │ │ ├── default │ │ │ ├── .config │ │ │ │ └── psysh │ │ │ │ │ ├── config.php │ │ │ │ │ └── psysh_history │ │ │ └── .local │ │ │ │ └── share │ │ │ │ └── psysh │ │ │ │ └── php_manual.sqlite │ │ ├── empty.php │ │ ├── legacy │ │ │ └── .psysh │ │ │ │ ├── history │ │ │ │ ├── php_manual.sqlite │ │ │ │ └── rc.php │ │ ├── mixed │ │ │ └── .psysh │ │ │ │ ├── config.php │ │ │ │ ├── psysh_history │ │ │ │ └── rc.php │ │ ├── project │ │ │ └── .psysh.php │ │ └── unvis_fixtures.json │ └── tools │ │ ├── gen_unvis_fixtures.py │ │ └── vis.py │ └── vendor-bin │ └── box │ ├── composer.json │ └── composer.lock ├── ramsey └── uuid │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── .gitignore │ ├── Makefile │ ├── _static │ │ └── .gitkeep │ ├── conf.py │ └── index.rst │ └── 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 │ ├── .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 │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ ├── Line.php │ │ ├── LongestCommonSubsequenceCalculator.php │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ ├── Parser.php │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ └── tests │ │ ├── ChunkTest.php │ │ ├── DiffTest.php │ │ ├── DifferTest.php │ │ ├── DifferTestTest.php │ │ ├── LineTest.php │ │ ├── LongestCommonSubsequenceTest.php │ │ ├── MemoryEfficientImplementationTest.php │ │ ├── ParserTest.php │ │ ├── TimeEfficientImplementationTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .php_cs │ ├── .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 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── generate.php │ ├── composer.json │ └── src │ │ └── ResourceOperations.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 │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── IdGenerator.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── 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 │ │ │ ├── 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 │ ├── 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 │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ ├── TerminalTest.php │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.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 │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ ├── ExtendedFinalMethod.php │ │ │ ├── FinalClass.php │ │ │ ├── FinalMethod.php │ │ │ ├── InternalClass.php │ │ │ ├── InternalInterface.php │ │ │ ├── InternalTrait.php │ │ │ ├── InternalTrait2.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── PEARClass.php │ │ │ ├── Throwing.php │ │ │ ├── ToStringThrower.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 │ │ ├── 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 │ │ └── 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 │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ ├── MigratingSessionHandlerTest.php │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ ├── PredisClusterSessionHandlerTest.php │ │ │ │ ├── PredisSessionHandlerTest.php │ │ │ │ ├── RedisArraySessionHandlerTest.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 │ │ ├── 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 │ │ └── 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 │ │ │ ├── 123 │ │ │ │ └── Kernel123.php │ │ │ ├── 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 │ │ │ ├── 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-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.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 │ │ ├── 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 │ │ │ └── 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 │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ └── schema │ │ │ └── dic │ │ │ └── xliff-core │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ ├── LoggingTranslator.php │ ├── MessageCatalogue.php │ ├── MessageCatalogueInterface.php │ ├── MessageSelector.php │ ├── MetadataAwareInterface.php │ ├── PluralizationRules.php │ ├── README.md │ ├── Reader │ │ ├── TranslationReader.php │ │ └── TranslationReaderInterface.php │ ├── Resources │ │ └── schemas │ │ │ └── xliff-core-1.2-strict.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 │ │ │ └── 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-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 │ ├── 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 │ ├── LinkStub.php │ ├── PdoCaster.php │ ├── PgSqlCaster.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 │ └── DumpServer.php │ ├── Test │ └── VarDumperTestTrait.php │ ├── Tests │ ├── Caster │ │ ├── CasterTest.php │ │ ├── DateCasterTest.php │ │ ├── ExceptionCasterTest.php │ │ ├── GmpCasterTest.php │ │ ├── PdoCasterTest.php │ │ ├── RedisCasterTest.php │ │ ├── ReflectionCasterTest.php │ │ ├── SplCasterTest.php │ │ ├── StubCasterTest.php │ │ └── XmlReaderCasterTest.php │ ├── Cloner │ │ ├── DataTest.php │ │ └── VarClonerTest.php │ ├── Dumper │ │ ├── CliDumperTest.php │ │ ├── HtmlDumperTest.php │ │ └── ServerDumperTest.php │ ├── Fixtures │ │ ├── FooInterface.php │ │ ├── GeneratorDemo.php │ │ ├── NotLoadableClass.php │ │ ├── Twig.php │ │ ├── dumb-var.php │ │ ├── dump_server.php │ │ └── xml_reader.xml │ └── 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 │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidCallbackException.php │ ├── InvalidFileException.php │ ├── InvalidPathException.php │ └── ValidationException.php │ ├── Loader.php │ └── Validator.php └── webmozart └── assert ├── .composer-auth.json ├── .styleci.yml ├── LICENSE ├── README.md ├── composer.json └── src └── Assert.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/CORS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Middleware/CORS.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/session.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/image.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/dist/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/3rdpartylicenses.txt -------------------------------------------------------------------------------- /public/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/favicon.ico -------------------------------------------------------------------------------- /public/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/index.html -------------------------------------------------------------------------------- /public/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/main.js -------------------------------------------------------------------------------- /public/dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/main.js.map -------------------------------------------------------------------------------- /public/dist/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/polyfills.js -------------------------------------------------------------------------------- /public/dist/polyfills.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/polyfills.js.map -------------------------------------------------------------------------------- /public/dist/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/runtime.js -------------------------------------------------------------------------------- /public/dist/runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/runtime.js.map -------------------------------------------------------------------------------- /public/dist/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/styles.js -------------------------------------------------------------------------------- /public/dist/styles.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/styles.js.map -------------------------------------------------------------------------------- /public/dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/vendor.js -------------------------------------------------------------------------------- /public/dist/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/dist/vendor.js.map -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/assets/src/angular-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/.editorconfig -------------------------------------------------------------------------------- /resources/assets/src/angular-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/.gitignore -------------------------------------------------------------------------------- /resources/assets/src/angular-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/README.md -------------------------------------------------------------------------------- /resources/assets/src/angular-app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/angular.json -------------------------------------------------------------------------------- /resources/assets/src/angular-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/package.json -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/my-table/my-table.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/second-page/second-page.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/second-page/second-page.component.html: -------------------------------------------------------------------------------- 1 |
2 | second-page works! 3 |
4 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/third-page/third-page.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/app/third-page/third-page.component.html: -------------------------------------------------------------------------------- 1 |2 | third-page works! 3 |
4 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/src/main.ts -------------------------------------------------------------------------------- /resources/assets/src/angular-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/src/test.ts -------------------------------------------------------------------------------- /resources/assets/src/angular-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/tsconfig.json -------------------------------------------------------------------------------- /resources/assets/src/angular-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/assets/src/angular-app/tslint.json -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/routes/web.php -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/server.php -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/bin/var-dump-server: -------------------------------------------------------------------------------- 1 | ../symfony/var-dumper/Resources/bin/var-dump-server -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dnoegel/php-xdg-base-dir/composer.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/src/Xdg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dnoegel/php-xdg-base-dir/src/Xdg.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/instantiator/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /vendor/dragonmantank/cron-expression/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dragonmantank/cron-expression/LICENSE -------------------------------------------------------------------------------- /vendor/dragonmantank/cron-expression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/dragonmantank/cron-expression/README.md -------------------------------------------------------------------------------- /vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /vendor/egulias/email-validator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/egulias/email-validator/composer.json -------------------------------------------------------------------------------- /vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /vendor/fideloper/proxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fideloper/proxy/LICENSE.md -------------------------------------------------------------------------------- /vendor/fideloper/proxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fideloper/proxy/composer.json -------------------------------------------------------------------------------- /vendor/fideloper/proxy/config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fideloper/proxy/config/trustedproxy.php -------------------------------------------------------------------------------- /vendor/fideloper/proxy/src/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fideloper/proxy/src/TrustProxies.php -------------------------------------------------------------------------------- /vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/RunInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/filp/whoops/src/Whoops/RunInterface.php -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Util/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/filp/whoops/src/Whoops/Util/Misc.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/src/Faker/Factory.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/documentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/test/documentor.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/composer.lock -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/hamcrest/hamcrest-php/generator/run.php -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/tinker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/tinker/LICENSE.txt -------------------------------------------------------------------------------- /vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /vendor/laravel/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/laravel/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Adapter/Ftp.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Ftpd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Adapter/Ftpd.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Adapter/Local.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/MountManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/MountManager.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/ReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/ReadInterface.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/SafeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/SafeStorage.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/.styleci.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/library/helpers.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/03-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/doc/03-utilities.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/04-extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/doc/04-extending.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/.gitattributes -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/.gitignore -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/.travis.yml -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilirhushi/laravel-angular6-material/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 |