├── .editorconfig ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── banner.svg ├── banner@2x.png ├── composer.json ├── composer.lock ├── docker-compose.yml ├── freeradius ├── Dockerfile ├── config │ └── freeradius │ │ ├── README.rst │ │ ├── certs │ │ ├── 01.pem │ │ ├── 02.pem │ │ ├── Makefile │ │ ├── README │ │ ├── bootstrap │ │ ├── ca.cnf │ │ ├── ca.der │ │ ├── ca.key │ │ ├── ca.pem │ │ ├── client.cnf │ │ ├── client.crt │ │ ├── client.csr │ │ ├── client.key │ │ ├── client.p12 │ │ ├── client.pem │ │ ├── dh │ │ ├── index.txt │ │ ├── index.txt.attr │ │ ├── index.txt.attr.old │ │ ├── index.txt.old │ │ ├── inner-server.cnf │ │ ├── passwords.mk │ │ ├── serial │ │ ├── serial.old │ │ ├── server.cnf │ │ ├── server.crt │ │ ├── server.csr │ │ ├── server.key │ │ ├── server.p12 │ │ ├── server.pem │ │ ├── user@example.org.pem │ │ └── xpextensions │ │ ├── clients.conf │ │ ├── dictionary │ │ ├── experimental.conf │ │ ├── hints │ │ ├── huntgroups │ │ ├── mods-available │ │ ├── README.rst │ │ ├── abfab_psk_sql │ │ ├── always │ │ ├── attr_filter │ │ ├── cache │ │ ├── cache_eap │ │ ├── chap │ │ ├── couchbase │ │ ├── counter │ │ ├── cui │ │ ├── date │ │ ├── detail │ │ ├── detail.example.com │ │ ├── detail.log │ │ ├── dhcp │ │ ├── dhcp_sqlippool │ │ ├── digest │ │ ├── dynamic_clients │ │ ├── eap │ │ ├── echo │ │ ├── etc_group │ │ ├── exec │ │ ├── expiration │ │ ├── expr │ │ ├── files │ │ ├── idn │ │ ├── inner-eap │ │ ├── ippool │ │ ├── krb5 │ │ ├── ldap │ │ ├── linelog │ │ ├── logintime │ │ ├── mac2ip │ │ ├── mac2vlan │ │ ├── moonshot-targeted-ids │ │ ├── mschap │ │ ├── ntlm_auth │ │ ├── opendirectory │ │ ├── otp │ │ ├── pam │ │ ├── pap │ │ ├── passwd │ │ ├── perl │ │ ├── preprocess │ │ ├── python │ │ ├── radutmp │ │ ├── realm │ │ ├── redis │ │ ├── rediswho │ │ ├── replicate │ │ ├── rest │ │ ├── smbpasswd │ │ ├── smsotp │ │ ├── soh │ │ ├── sometimes │ │ ├── sql │ │ ├── sqlcounter │ │ ├── sqlippool │ │ ├── sradutmp │ │ ├── unbound │ │ ├── unix │ │ ├── unpack │ │ ├── utf8 │ │ ├── wimax │ │ └── yubikey │ │ ├── mods-config │ │ ├── README.rst │ │ ├── attr_filter │ │ │ ├── access_challenge │ │ │ ├── access_reject │ │ │ ├── accounting_response │ │ │ ├── post-proxy │ │ │ └── pre-proxy │ │ ├── files │ │ │ ├── accounting │ │ │ ├── authorize │ │ │ └── pre-proxy │ │ ├── perl │ │ │ └── example.pl │ │ ├── preprocess │ │ │ ├── hints │ │ │ └── huntgroups │ │ ├── python │ │ │ ├── example.py │ │ │ └── radiusd.py │ │ ├── sql │ │ │ ├── counter │ │ │ │ ├── mysql │ │ │ │ │ ├── dailycounter.conf │ │ │ │ │ ├── expire_on_login.conf │ │ │ │ │ ├── monthlycounter.conf │ │ │ │ │ └── noresetcounter.conf │ │ │ │ ├── postgresql │ │ │ │ │ ├── dailycounter.conf │ │ │ │ │ ├── expire_on_login.conf │ │ │ │ │ ├── monthlycounter.conf │ │ │ │ │ └── noresetcounter.conf │ │ │ │ └── sqlite │ │ │ │ │ ├── dailycounter.conf │ │ │ │ │ ├── expire_on_login.conf │ │ │ │ │ ├── monthlycounter.conf │ │ │ │ │ └── noresetcounter.conf │ │ │ ├── cui │ │ │ │ ├── mysql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── postgresql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ └── sqlite │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ ├── ippool-dhcp │ │ │ │ ├── mysql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── oracle │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ └── sqlite │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ ├── ippool │ │ │ │ ├── mysql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── oracle │ │ │ │ │ ├── procedures.sql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── postgresql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ └── sqlite │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ ├── main │ │ │ │ ├── mssql │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── mysql │ │ │ │ │ ├── extras │ │ │ │ │ │ └── wimax │ │ │ │ │ │ │ ├── queries.conf │ │ │ │ │ │ │ └── schema.sql │ │ │ │ │ ├── queries.conf │ │ │ │ │ ├── schema.sql │ │ │ │ │ └── setup.sql │ │ │ │ ├── ndb │ │ │ │ │ ├── README │ │ │ │ │ ├── schema.sql │ │ │ │ │ └── setup.sql │ │ │ │ ├── oracle │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ │ ├── postgresql │ │ │ │ │ ├── extras │ │ │ │ │ │ ├── cisco_h323_db_schema.sql │ │ │ │ │ │ └── voip-postpaid.conf │ │ │ │ │ ├── queries.conf │ │ │ │ │ ├── schema.sql │ │ │ │ │ └── setup.sql │ │ │ │ └── sqlite │ │ │ │ │ ├── queries.conf │ │ │ │ │ └── schema.sql │ │ │ └── moonshot-targeted-ids │ │ │ │ ├── mysql │ │ │ │ ├── queries.conf │ │ │ │ └── schema.sql │ │ │ │ ├── postgresql │ │ │ │ ├── queries.conf │ │ │ │ └── schema.sql │ │ │ │ └── sqlite │ │ │ │ ├── queries.conf │ │ │ │ └── schema.sql │ │ └── unbound │ │ │ └── default.conf │ │ ├── mods-enabled │ │ ├── always │ │ ├── attr_filter │ │ ├── cache_eap │ │ ├── chap │ │ ├── date │ │ ├── detail │ │ ├── detail.log │ │ ├── digest │ │ ├── dynamic_clients │ │ ├── echo │ │ ├── exec │ │ ├── expiration │ │ ├── expr │ │ ├── files │ │ ├── linelog │ │ ├── logintime │ │ ├── mschap │ │ ├── ntlm_auth │ │ ├── pap │ │ ├── passwd │ │ ├── preprocess │ │ ├── radutmp │ │ ├── realm │ │ ├── replicate │ │ ├── soh │ │ ├── sql │ │ ├── sradutmp │ │ ├── unix │ │ ├── unpack │ │ └── utf8 │ │ ├── panic.gdb │ │ ├── policy.d │ │ ├── abfab-tr │ │ ├── accounting │ │ ├── canonicalization │ │ ├── control │ │ ├── cui │ │ ├── debug │ │ ├── dhcp │ │ ├── eap │ │ ├── filter │ │ ├── moonshot-targeted-ids │ │ └── operator-name │ │ ├── proxy.conf │ │ ├── radiusd.conf │ │ ├── sites-available │ │ ├── README │ │ ├── abfab-tls │ │ ├── abfab-tr-idp │ │ ├── buffered-sql │ │ ├── challenge │ │ ├── channel_bindings │ │ ├── check-eap-tls │ │ ├── coa │ │ ├── control-socket │ │ ├── copy-acct-to-home-server │ │ ├── decoupled-accounting │ │ ├── default │ │ ├── dhcp │ │ ├── dhcp.relay │ │ ├── dynamic-clients │ │ ├── example │ │ ├── inner-tunnel │ │ ├── originate-coa │ │ ├── proxy-inner-tunnel │ │ ├── robust-proxy-accounting │ │ ├── server01 │ │ ├── soh │ │ ├── status │ │ ├── tls │ │ ├── virtual.example.com │ │ └── vmps │ │ ├── sites-enabled │ │ └── server01 │ │ ├── templates.conf │ │ ├── trigger.conf │ │ └── users ├── logs │ └── radius.log └── rad_service_start.sh ├── generate-le.sh ├── mysql ├── schema │ └── radius-2018-10-14-00.sql └── srv │ ├── conf.d │ └── mysql.cnf │ └── initdb.d │ └── radius.sql ├── php └── Dockerfile ├── phpmyadmin └── Dockerfile ├── radtest └── Dockerfile └── web ├── conf.d └── default.conf └── src ├── .env ├── .env.example ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ └── LoginController.php │ ├── Kernel.php │ └── Middleware │ │ ├── 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 ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── 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 ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── admins.css │ ├── dashboard.css │ ├── foundation.min.css │ ├── groups.css │ ├── login.css │ ├── uikit-rtl.css │ ├── uikit-rtl.min.css │ ├── uikit.css │ ├── uikit.min.css │ └── users.css ├── favicon.ico ├── images │ ├── fradmin-logo.svg │ └── login-background.svg ├── index.php ├── js │ ├── foundation.min.js │ ├── uikit-icons.js │ ├── uikit-icons.min.js │ ├── uikit.js │ └── uikit.min.js └── robots.txt ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── dashboard.blade.php │ ├── footer.php │ ├── groups.blade.php │ ├── left-sidebar.blade.php │ ├── login.blade.php │ ├── right-sidebar.blade.php │ ├── showAdmins.blade.php │ ├── userAdd.blade.php │ ├── userDelete.blade.php │ ├── userDirectory.blade.php │ ├── userList.blade.php │ ├── userModify.blade.php │ └── users.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── 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 ├── barryvdh │ └── laravel-debugbar │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── changelog.md │ │ ├── composer.json │ │ ├── config │ │ └── debugbar.php │ │ ├── readme.md │ │ └── src │ │ ├── Console │ │ └── ClearCommand.php │ │ ├── Controllers │ │ ├── AssetController.php │ │ ├── BaseController.php │ │ ├── CacheController.php │ │ └── OpenHandlerController.php │ │ ├── DataCollector │ │ ├── CacheCollector.php │ │ ├── EventCollector.php │ │ ├── FilesCollector.php │ │ ├── GateCollector.php │ │ ├── LaravelCollector.php │ │ ├── LogsCollector.php │ │ ├── MultiAuthCollector.php │ │ ├── QueryCollector.php │ │ ├── RequestCollector.php │ │ ├── RouteCollector.php │ │ ├── SessionCollector.php │ │ └── ViewCollector.php │ │ ├── DataFormatter │ │ ├── QueryFormatter.php │ │ └── SimpleFormatter.php │ │ ├── Facade.php │ │ ├── JavascriptRenderer.php │ │ ├── LaravelDebugbar.php │ │ ├── LumenServiceProvider.php │ │ ├── Middleware │ │ ├── DebugbarEnabled.php │ │ └── InjectDebugbar.php │ │ ├── Resources │ │ ├── cache │ │ │ └── widget.js │ │ ├── laravel-debugbar.css │ │ ├── sqlqueries │ │ │ └── widget.js │ │ └── vendor │ │ │ └── font-awesome │ │ │ ├── generator_config.txt │ │ │ └── style.css │ │ ├── ServiceProvider.php │ │ ├── Storage │ │ └── FilesystemStorage.php │ │ ├── Support │ │ └── Clockwork │ │ │ ├── ClockworkCollector.php │ │ │ └── Converter.php │ │ ├── SymfonyHttpDriver.php │ │ ├── Twig │ │ ├── Extension │ │ │ ├── Debug.php │ │ │ ├── Dump.php │ │ │ └── Stopwatch.php │ │ ├── Node │ │ │ └── StopwatchNode.php │ │ └── TokenParser │ │ │ └── StopwatchTokenParser.php │ │ ├── helpers.php │ │ └── migrations │ │ └── 2014_12_01_120000_create_phpdebugbar_storage_table.php ├── bin │ ├── php-parse │ ├── phpunit │ └── psysh ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── 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 ├── maximebf │ └── debugbar │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── DebugBar │ │ ├── Bridge │ │ ├── CacheCacheCollector.php │ │ ├── DoctrineCollector.php │ │ ├── MonologCollector.php │ │ ├── Propel2Collector.php │ │ ├── PropelCollector.php │ │ ├── SlimCollector.php │ │ ├── SwiftMailer │ │ │ ├── SwiftLogCollector.php │ │ │ └── SwiftMailCollector.php │ │ ├── Twig │ │ │ ├── TimeableTwigExtensionProfiler.php │ │ │ ├── TraceableTwigEnvironment.php │ │ │ ├── TraceableTwigTemplate.php │ │ │ └── TwigCollector.php │ │ └── TwigProfileCollector.php │ │ ├── DataCollector │ │ ├── AggregatedCollector.php │ │ ├── AssetProvider.php │ │ ├── ConfigCollector.php │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── ExceptionsCollector.php │ │ ├── LocalizationCollector.php │ │ ├── MemoryCollector.php │ │ ├── MessagesAggregateInterface.php │ │ ├── MessagesCollector.php │ │ ├── PDO │ │ │ ├── PDOCollector.php │ │ │ ├── TraceablePDO.php │ │ │ ├── TraceablePDOStatement.php │ │ │ └── TracedStatement.php │ │ ├── PhpInfoCollector.php │ │ ├── Renderable.php │ │ ├── RequestDataCollector.php │ │ └── TimeDataCollector.php │ │ ├── DataFormatter │ │ ├── DataFormatter.php │ │ ├── DataFormatterInterface.php │ │ ├── DebugBarVarDumper.php │ │ └── VarDumper │ │ │ ├── DebugBarHtmlDumper.php │ │ │ └── SeekingData.php │ │ ├── DebugBar.php │ │ ├── DebugBarException.php │ │ ├── HttpDriverInterface.php │ │ ├── JavascriptRenderer.php │ │ ├── OpenHandler.php │ │ ├── PhpHttpDriver.php │ │ ├── RequestIdGenerator.php │ │ ├── RequestIdGeneratorInterface.php │ │ ├── Resources │ │ ├── debugbar.css │ │ ├── debugbar.js │ │ ├── openhandler.css │ │ ├── openhandler.js │ │ ├── vendor │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── highlightjs │ │ │ │ ├── highlight.pack.js │ │ │ │ └── styles │ │ │ │ │ └── github.css │ │ │ └── jquery │ │ │ │ └── dist │ │ │ │ └── jquery.min.js │ │ ├── widgets.css │ │ ├── widgets.js │ │ └── widgets │ │ │ ├── mails │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ ├── sqlqueries │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ └── templates │ │ │ ├── widget.css │ │ │ └── widget.js │ │ ├── StandardDebugBar.php │ │ └── Storage │ │ ├── FileStorage.php │ │ ├── MemcachedStorage.php │ │ ├── PdoStorage.php │ │ ├── RedisStorage.php │ │ ├── StorageInterface.php │ │ └── pdo_storage_schema.sql ├── mockery │ └── mockery │ │ ├── .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 │ │ ├── .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 ├── nunomaduro │ └── collision │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Adapters │ │ ├── Laravel │ │ │ ├── CollisionServiceProvider.php │ │ │ ├── ExceptionHandler.php │ │ │ └── Inspector.php │ │ └── Phpunit │ │ │ └── Listener.php │ │ ├── ArgumentFormatter.php │ │ ├── Contracts │ │ ├── Adapters │ │ │ └── Phpunit │ │ │ │ └── Listener.php │ │ ├── ArgumentFormatter.php │ │ ├── Handler.php │ │ ├── Highlighter.php │ │ ├── Provider.php │ │ └── Writer.php │ │ ├── Handler.php │ │ ├── Highlighter.php │ │ ├── Provider.php │ │ └── Writer.php ├── 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 │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .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 │ │ ├── ChangeLog-6.0.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── 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 │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── RuntimeException.php │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ └── CachingFactory.php │ │ └── tests │ │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ │ ├── _fixture │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── class_with_method_named_empty.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── php-code-coverage-issue-424.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog.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 │ │ │ │ ├── DeferredError.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 │ │ │ ├── interface.phpt │ │ │ ├── invocation_object_clone_object.phpt │ │ │ ├── namespaced_class.phpt │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_partial.phpt │ │ │ ├── namespaced_interface.phpt │ │ │ ├── nonexistent_class.phpt │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ ├── nullable_types.phpt │ │ │ ├── proxy.phpt │ │ │ ├── return_type_declarations_closure.phpt │ │ │ ├── return_type_declarations_final.phpt │ │ │ ├── return_type_declarations_generator.phpt │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ ├── return_type_declarations_parent.phpt │ │ │ ├── return_type_declarations_self.phpt │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ ├── return_type_declarations_void.phpt │ │ │ ├── scalar_type_declarations.phpt │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── 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 │ │ │ ├── ExampleTrait.php │ │ │ ├── ExceptionWithThrowable.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-6.5.md │ │ ├── ChangeLog-7.0.md │ │ ├── ChangeLog-7.1.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpstan-tests.neon │ │ ├── phpstan.neon │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegularExpression.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── DataProviderTestSuite.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Error.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── OutputError.php │ │ │ ├── RiskyTest.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestListenerDefaultImplementation.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ ├── Warning.php │ │ │ └── WarningTestCase.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── GroupFilterIterator.php │ │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ │ └── NameFilterIterator.php │ │ │ ├── Hook │ │ │ │ ├── AfterIncompleteTestHook.php │ │ │ │ ├── AfterLastTestHook.php │ │ │ │ ├── AfterRiskyTestHook.php │ │ │ │ ├── AfterSkippedTestHook.php │ │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ │ ├── AfterTestErrorHook.php │ │ │ │ ├── AfterTestFailureHook.php │ │ │ │ ├── AfterTestWarningHook.php │ │ │ │ ├── BeforeFirstTestHook.php │ │ │ │ ├── BeforeTestHook.php │ │ │ │ ├── Hook.php │ │ │ │ ├── TestHook.php │ │ │ │ └── TestListenerAdapter.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 │ │ │ ├── CliTestDoxPrinter.php │ │ │ ├── HtmlResultPrinter.php │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ ├── TestResult.php │ │ │ ├── TextResultPrinter.php │ │ │ └── XmlResultPrinter.php │ │ │ ├── TextTestListRenderer.php │ │ │ ├── Type.php │ │ │ ├── Xml.php │ │ │ └── XmlTestListRenderer.php │ │ └── tests │ │ ├── Fail │ │ └── fail.phpt │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── Constraint │ │ │ ├── ArrayHasKeyTest.php │ │ │ ├── ArraySubsetTest.php │ │ │ ├── AttributeTest.php │ │ │ ├── CallbackTest.php │ │ │ ├── ClassHasAttributeTest.php │ │ │ ├── ClassHasStaticAttributeTest.php │ │ │ ├── ConstraintTestCase.php │ │ │ ├── CountTest.php │ │ │ ├── DirectoryExistsTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── FileExistsTest.php │ │ │ ├── GreaterThanTest.php │ │ │ ├── IsEmptyTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsReadableTest.php │ │ │ ├── IsTypeTest.php │ │ │ ├── IsWritableTest.php │ │ │ ├── JsonMatchesErrorMessageProviderTest.php │ │ │ ├── JsonMatchesTest.php │ │ │ ├── LessThanTest.php │ │ │ ├── LogicalAndTest.php │ │ │ ├── LogicalOrTest.php │ │ │ ├── LogicalXorTest.php │ │ │ ├── ObjectHasAttributeTest.php │ │ │ ├── RegularExpressionTest.php │ │ │ ├── SameSizeTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ ├── StringMatchesFormatDescriptionTest.php │ │ │ ├── StringStartsWithTest.php │ │ │ └── TraversableContainsTest.php │ │ ├── ConstraintTest.php │ │ ├── ExceptionWrapperTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ ├── TestListenerTest.php │ │ └── TestSuiteTest.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 │ │ │ ├── 2724 │ │ │ │ └── SeparateClassRunMethodInNewProcessTest.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-php73.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ │ ├── 2591-separate-function-no-preserve.phpt │ │ │ ├── 2591-separate-function-preserve.phpt │ │ │ ├── 2724-diff-pid-from-master-process.phpt │ │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2830.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.phpt │ │ │ ├── 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 │ │ │ ├── Extension.php │ │ │ ├── HookTest.php │ │ │ ├── NullPrinter.php │ │ │ ├── expect_external.txt │ │ │ ├── hooks.xml │ │ │ ├── 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 │ │ ├── hooks.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-verbose.phpt │ │ ├── testdox-xml.phpt │ │ └── testdox.phpt │ │ ├── Util │ │ ├── ConfigurationGeneratorTest.php │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── JsonTest.php │ │ ├── PHP │ │ │ └── AbstractPhpProcessTest.php │ │ ├── RegularExpressionTest.php │ │ ├── TestDox │ │ │ ├── CliTestDoxPrinterTest.php │ │ │ └── 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 │ │ ├── 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 │ │ ├── ExceptionInTestDetectedInTeardown.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 │ │ ├── TestableCliTestDoxPrinter.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-3.0.3.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── PassableByReferencePassTest.php │ │ │ ├── RequirePassTest.php │ │ │ ├── StrictTypesPassTest.php │ │ │ ├── UseStatementPassTest.php │ │ │ ├── ValidClassNamePassTest.php │ │ │ ├── ValidConstantPassTest.php │ │ │ ├── ValidConstructorPassTest.php │ │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.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 │ │ │ └── ShellInputTest.php │ │ ├── ParserTestCase.php │ │ ├── Readline │ │ │ ├── GNUReadlineTest.php │ │ │ ├── HoaConsoleTest.php │ │ │ ├── LibeditTest.php │ │ │ └── TransientTest.php │ │ ├── Reflection │ │ │ ├── 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.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── Exception │ │ │ ├── ConfigurationExceptionTest.php │ │ │ └── InvalidArgumentExceptionTest.php │ │ │ ├── LineTest.php │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilderTest.php │ │ │ ├── DiffOnlyOutputBuilderTest.php │ │ │ ├── Integration │ │ │ │ ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php │ │ │ │ └── UnifiedDiffOutputBuilderIntegrationTest.php │ │ │ ├── StrictUnifiedDiffOutputBuilderDataProvider.php │ │ │ ├── StrictUnifiedDiffOutputBuilderTest.php │ │ │ ├── UnifiedDiffOutputBuilderDataProvider.php │ │ │ └── UnifiedDiffOutputBuilderTest.php │ │ │ ├── ParserTest.php │ │ │ ├── TimeEfficientImplementationTest.php │ │ │ ├── Utils │ │ │ ├── FileUtils.php │ │ │ ├── UnifiedDiffAssertTrait.php │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest.php │ │ │ └── UnifiedDiffAssertTraitTest.php │ │ │ └── fixtures │ │ │ ├── .editorconfig │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ │ ├── 1_a.txt │ │ │ ├── 1_b.txt │ │ │ ├── 2_a.txt │ │ │ └── 2_b.txt │ │ │ ├── out │ │ │ ├── .editorconfig │ │ │ └── .gitignore │ │ │ ├── patch.txt │ │ │ ├── patch2.txt │ │ │ └── serialized_diff.bin │ ├── environment │ │ ├── .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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ │ │ ├── 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_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_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 │ │ │ │ ├── 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 │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.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 │ │ ├── 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 │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.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 │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ ├── PdoSessionHandlerTest.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 │ │ │ │ └── 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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── DumperCollection.php │ │ │ │ ├── DumperRoute.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ └── StaticPrefixCollection.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── TraceableUrlMatcher.php │ │ │ ├── UrlMatcher.php │ │ │ └── UrlMatcherInterface.php │ │ ├── README.md │ │ ├── RequestContext.php │ │ ├── RequestContextAwareInterface.php │ │ ├── Route.php │ │ ├── RouteCollection.php │ │ ├── RouteCollectionBuilder.php │ │ ├── RouteCompiler.php │ │ ├── RouteCompilerInterface.php │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ ├── Tests │ │ │ ├── Annotation │ │ │ │ └── RouteTest.php │ │ │ ├── CompiledRouteTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── RoutingResolverPassTest.php │ │ │ ├── Fixtures │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ ├── BarClass.php │ │ │ │ │ ├── BazClass.php │ │ │ │ │ ├── FooClass.php │ │ │ │ │ └── FooTrait.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_matcher2.php │ │ │ │ │ ├── url_matcher3.php │ │ │ │ │ ├── url_matcher4.php │ │ │ │ │ ├── url_matcher5.php │ │ │ │ │ ├── url_matcher6.php │ │ │ │ │ └── url_matcher7.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 │ │ │ │ ├── incomplete.yml │ │ │ │ ├── list_defaults.xml │ │ │ │ ├── list_in_list_defaults.xml │ │ │ │ ├── list_in_map_defaults.xml │ │ │ │ ├── list_null_values.xml │ │ │ │ ├── map_defaults.xml │ │ │ │ ├── map_in_list_defaults.xml │ │ │ │ ├── map_in_map_defaults.xml │ │ │ │ ├── map_null_values.xml │ │ │ │ ├── missing_id.xml │ │ │ │ ├── missing_path.xml │ │ │ │ ├── namespaceprefix.xml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── nonvalid.xml │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonvalidnode.xml │ │ │ │ ├── nonvalidroute.xml │ │ │ │ ├── null_values.xml │ │ │ │ ├── php_dsl.php │ │ │ │ ├── php_dsl_sub.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 │ │ │ │ ├── GlobFileLoaderTest.php │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ └── YamlFileLoaderTest.php │ │ │ ├── Matcher │ │ │ │ ├── DumpedRedirectableUrlMatcherTest.php │ │ │ │ ├── DumpedUrlMatcherTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── Dumper │ │ ├── AbstractDumper.php │ │ ├── CliDumper.php │ │ ├── DataDumperInterface.php │ │ └── HtmlDumper.php │ │ ├── Exception │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ └── functions │ │ │ └── dump.php │ │ ├── Test │ │ └── VarDumperTestTrait.php │ │ ├── Tests │ │ ├── Caster │ │ │ ├── CasterTest.php │ │ │ ├── DateCasterTest.php │ │ │ ├── ExceptionCasterTest.php │ │ │ ├── PdoCasterTest.php │ │ │ ├── RedisCasterTest.php │ │ │ ├── ReflectionCasterTest.php │ │ │ ├── SplCasterTest.php │ │ │ ├── StubCasterTest.php │ │ │ └── XmlReaderCasterTest.php │ │ ├── Cloner │ │ │ ├── DataTest.php │ │ │ └── VarClonerTest.php │ │ ├── Dumper │ │ │ ├── CliDumperTest.php │ │ │ └── HtmlDumperTest.php │ │ ├── Fixtures │ │ │ ├── FooInterface.php │ │ │ ├── GeneratorDemo.php │ │ │ ├── NotLoadableClass.php │ │ │ ├── Twig.php │ │ │ ├── dumb-var.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 ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/README.md -------------------------------------------------------------------------------- /banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/banner.svg -------------------------------------------------------------------------------- /banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/banner@2x.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /freeradius/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/Dockerfile -------------------------------------------------------------------------------- /freeradius/config/freeradius/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/README.rst -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/01.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/01.pem -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/02.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/02.pem -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/Makefile -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/README -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/bootstrap -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/ca.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/ca.cnf -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/ca.der -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/ca.key -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/ca.pem -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.cnf -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.crt -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.csr -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.key -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.p12 -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/client.pem -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/dh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/dh -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/index.txt -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/index.txt.attr.old: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/index.txt.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/index.txt.old -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/passwords.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/passwords.mk -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/serial: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/serial.old: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.cnf -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.crt -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.csr -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.key -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.p12 -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/server.pem -------------------------------------------------------------------------------- /freeradius/config/freeradius/certs/xpextensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/certs/xpextensions -------------------------------------------------------------------------------- /freeradius/config/freeradius/clients.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/clients.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/dictionary -------------------------------------------------------------------------------- /freeradius/config/freeradius/experimental.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/experimental.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/hints: -------------------------------------------------------------------------------- 1 | mods-config/preprocess/hints -------------------------------------------------------------------------------- /freeradius/config/freeradius/huntgroups: -------------------------------------------------------------------------------- 1 | mods-config/preprocess/huntgroups -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/always: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/always -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/cache -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/chap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/chap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/cui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/cui -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/date -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/detail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/detail -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/dhcp -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/digest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/digest -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/eap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/echo -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/exec -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/expr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/expr -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/files -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/idn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/idn -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/ippool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/ippool -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/krb5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/krb5 -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/ldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/ldap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/mac2ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/mac2ip -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/mschap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/mschap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/otp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/otp -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/pam -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/pap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/pap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/passwd -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/perl -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/python -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/realm -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/redis -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/rest -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/smsotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/smsotp -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/soh: -------------------------------------------------------------------------------- 1 | # SoH module 2 | soh { 3 | dhcp = yes 4 | } 5 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/sql -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/unix -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/unpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/unpack -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/utf8 -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-available/wimax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/mods-available/wimax -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-config/unbound/default.conf: -------------------------------------------------------------------------------- 1 | server: 2 | num-threads: 2 3 | -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/always: -------------------------------------------------------------------------------- 1 | ../mods-available/always -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/attr_filter: -------------------------------------------------------------------------------- 1 | ../mods-available/attr_filter -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/cache_eap: -------------------------------------------------------------------------------- 1 | ../mods-available/cache_eap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/chap: -------------------------------------------------------------------------------- 1 | ../mods-available/chap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/date: -------------------------------------------------------------------------------- 1 | ../mods-available/date -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/detail: -------------------------------------------------------------------------------- 1 | ../mods-available/detail -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/detail.log: -------------------------------------------------------------------------------- 1 | ../mods-available/detail.log -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/digest: -------------------------------------------------------------------------------- 1 | ../mods-available/digest -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/dynamic_clients: -------------------------------------------------------------------------------- 1 | ../mods-available/dynamic_clients -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/echo: -------------------------------------------------------------------------------- 1 | ../mods-available/echo -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/exec: -------------------------------------------------------------------------------- 1 | ../mods-available/exec -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/expiration: -------------------------------------------------------------------------------- 1 | ../mods-available/expiration -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/expr: -------------------------------------------------------------------------------- 1 | ../mods-available/expr -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/files: -------------------------------------------------------------------------------- 1 | ../mods-available/files -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/linelog: -------------------------------------------------------------------------------- 1 | ../mods-available/linelog -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/logintime: -------------------------------------------------------------------------------- 1 | ../mods-available/logintime -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/mschap: -------------------------------------------------------------------------------- 1 | ../mods-available/mschap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/ntlm_auth: -------------------------------------------------------------------------------- 1 | ../mods-available/ntlm_auth -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/pap: -------------------------------------------------------------------------------- 1 | ../mods-available/pap -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/passwd: -------------------------------------------------------------------------------- 1 | ../mods-available/passwd -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/preprocess: -------------------------------------------------------------------------------- 1 | ../mods-available/preprocess -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/radutmp: -------------------------------------------------------------------------------- 1 | ../mods-available/radutmp -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/realm: -------------------------------------------------------------------------------- 1 | ../mods-available/realm -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/replicate: -------------------------------------------------------------------------------- 1 | ../mods-available/replicate -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/soh: -------------------------------------------------------------------------------- 1 | ../mods-available/soh -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/sql: -------------------------------------------------------------------------------- 1 | ../mods-available/sql -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/sradutmp: -------------------------------------------------------------------------------- 1 | ../mods-available/sradutmp -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/unix: -------------------------------------------------------------------------------- 1 | ../mods-available/unix -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/unpack: -------------------------------------------------------------------------------- 1 | ../mods-available/unpack -------------------------------------------------------------------------------- /freeradius/config/freeradius/mods-enabled/utf8: -------------------------------------------------------------------------------- 1 | ../mods-available/utf8 -------------------------------------------------------------------------------- /freeradius/config/freeradius/panic.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/panic.gdb -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/abfab-tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/abfab-tr -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/accounting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/accounting -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/control -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/cui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/cui -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/debug -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/dhcp -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/eap -------------------------------------------------------------------------------- /freeradius/config/freeradius/policy.d/filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/policy.d/filter -------------------------------------------------------------------------------- /freeradius/config/freeradius/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/proxy.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/radiusd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/radiusd.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-available/coa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/sites-available/coa -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-available/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/sites-available/dhcp -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-available/soh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/sites-available/soh -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-available/tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/sites-available/tls -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-available/vmps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/sites-available/vmps -------------------------------------------------------------------------------- /freeradius/config/freeradius/sites-enabled/server01: -------------------------------------------------------------------------------- 1 | ../sites-available/server01 -------------------------------------------------------------------------------- /freeradius/config/freeradius/templates.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/templates.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/trigger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/config/freeradius/trigger.conf -------------------------------------------------------------------------------- /freeradius/config/freeradius/users: -------------------------------------------------------------------------------- 1 | mods-config/files/authorize -------------------------------------------------------------------------------- /freeradius/logs/radius.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/logs/radius.log -------------------------------------------------------------------------------- /freeradius/rad_service_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/freeradius/rad_service_start.sh -------------------------------------------------------------------------------- /generate-le.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/generate-le.sh -------------------------------------------------------------------------------- /mysql/schema/radius-2018-10-14-00.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/mysql/schema/radius-2018-10-14-00.sql -------------------------------------------------------------------------------- /mysql/srv/conf.d/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/mysql/srv/conf.d/mysql.cnf -------------------------------------------------------------------------------- /mysql/srv/initdb.d/radius.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/mysql/srv/initdb.d/radius.sql -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.2.10-fpm 2 | RUN docker-php-ext-install -j$(nproc) pdo_mysql 3 | -------------------------------------------------------------------------------- /phpmyadmin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/phpmyadmin/Dockerfile -------------------------------------------------------------------------------- /radtest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/radtest/Dockerfile -------------------------------------------------------------------------------- /web/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/conf.d/default.conf -------------------------------------------------------------------------------- /web/src/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/.env -------------------------------------------------------------------------------- /web/src/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/.env.example -------------------------------------------------------------------------------- /web/src/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Console/Kernel.php -------------------------------------------------------------------------------- /web/src/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /web/src/app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Controllers/AdminController.php -------------------------------------------------------------------------------- /web/src/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /web/src/app/Http/Controllers/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Controllers/LoginController.php -------------------------------------------------------------------------------- /web/src/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Kernel.php -------------------------------------------------------------------------------- /web/src/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /web/src/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /web/src/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /web/src/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /web/src/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /web/src/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /web/src/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /web/src/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /web/src/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /web/src/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/app/User.php -------------------------------------------------------------------------------- /web/src/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/artisan -------------------------------------------------------------------------------- /web/src/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/bootstrap/app.php -------------------------------------------------------------------------------- /web/src/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/composer.json -------------------------------------------------------------------------------- /web/src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/composer.lock -------------------------------------------------------------------------------- /web/src/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/app.php -------------------------------------------------------------------------------- /web/src/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/auth.php -------------------------------------------------------------------------------- /web/src/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/broadcasting.php -------------------------------------------------------------------------------- /web/src/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/cache.php -------------------------------------------------------------------------------- /web/src/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/database.php -------------------------------------------------------------------------------- /web/src/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/filesystems.php -------------------------------------------------------------------------------- /web/src/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/hashing.php -------------------------------------------------------------------------------- /web/src/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/logging.php -------------------------------------------------------------------------------- /web/src/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/mail.php -------------------------------------------------------------------------------- /web/src/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/queue.php -------------------------------------------------------------------------------- /web/src/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/services.php -------------------------------------------------------------------------------- /web/src/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/session.php -------------------------------------------------------------------------------- /web/src/config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/trustedproxy.php -------------------------------------------------------------------------------- /web/src/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/config/view.php -------------------------------------------------------------------------------- /web/src/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /web/src/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/database/factories/UserFactory.php -------------------------------------------------------------------------------- /web/src/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /web/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/package.json -------------------------------------------------------------------------------- /web/src/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/phpunit.xml -------------------------------------------------------------------------------- /web/src/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/.htaccess -------------------------------------------------------------------------------- /web/src/public/css/admins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/admins.css -------------------------------------------------------------------------------- /web/src/public/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/dashboard.css -------------------------------------------------------------------------------- /web/src/public/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/foundation.min.css -------------------------------------------------------------------------------- /web/src/public/css/groups.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/groups.css -------------------------------------------------------------------------------- /web/src/public/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/login.css -------------------------------------------------------------------------------- /web/src/public/css/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/uikit-rtl.css -------------------------------------------------------------------------------- /web/src/public/css/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/uikit-rtl.min.css -------------------------------------------------------------------------------- /web/src/public/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/uikit.css -------------------------------------------------------------------------------- /web/src/public/css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/uikit.min.css -------------------------------------------------------------------------------- /web/src/public/css/users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/css/users.css -------------------------------------------------------------------------------- /web/src/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/public/images/fradmin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/images/fradmin-logo.svg -------------------------------------------------------------------------------- /web/src/public/images/login-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/images/login-background.svg -------------------------------------------------------------------------------- /web/src/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/index.php -------------------------------------------------------------------------------- /web/src/public/js/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/js/foundation.min.js -------------------------------------------------------------------------------- /web/src/public/js/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/js/uikit-icons.js -------------------------------------------------------------------------------- /web/src/public/js/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/js/uikit-icons.min.js -------------------------------------------------------------------------------- /web/src/public/js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/js/uikit.js -------------------------------------------------------------------------------- /web/src/public/js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/public/js/uikit.min.js -------------------------------------------------------------------------------- /web/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /web/src/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/assets/js/app.js -------------------------------------------------------------------------------- /web/src/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /web/src/resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /web/src/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /web/src/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/lang/en/auth.php -------------------------------------------------------------------------------- /web/src/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /web/src/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /web/src/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/lang/en/validation.php -------------------------------------------------------------------------------- /web/src/resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/footer.php -------------------------------------------------------------------------------- /web/src/resources/views/groups.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/groups.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/left-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/left-sidebar.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/login.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/right-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/right-sidebar.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/showAdmins.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/showAdmins.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/userAdd.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/userAdd.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/userDelete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/userDelete.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/userDirectory.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/userDirectory.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/userList.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/userList.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/userModify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/userModify.blade.php -------------------------------------------------------------------------------- /web/src/resources/views/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/resources/views/users.blade.php -------------------------------------------------------------------------------- /web/src/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/routes/api.php -------------------------------------------------------------------------------- /web/src/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/routes/channels.php -------------------------------------------------------------------------------- /web/src/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/routes/console.php -------------------------------------------------------------------------------- /web/src/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/routes/web.php -------------------------------------------------------------------------------- /web/src/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/server.php -------------------------------------------------------------------------------- /web/src/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /web/src/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/storage/framework/.gitignore -------------------------------------------------------------------------------- /web/src/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/src/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/tests/CreatesApplication.php -------------------------------------------------------------------------------- /web/src/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /web/src/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/tests/TestCase.php -------------------------------------------------------------------------------- /web/src/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /web/src/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/autoload.php -------------------------------------------------------------------------------- /web/src/vendor/barryvdh/laravel-debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/barryvdh/laravel-debugbar/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/barryvdh/laravel-debugbar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/barryvdh/laravel-debugbar/readme.md -------------------------------------------------------------------------------- /web/src/vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /web/src/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /web/src/vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /web/src/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /web/src/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /web/src/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /web/src/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/composer/installed.json -------------------------------------------------------------------------------- /web/src/vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /web/src/vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /web/src/vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /web/src/vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /web/src/vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /web/src/vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /web/src/vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /web/src/vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /web/src/vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /web/src/vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /web/src/vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /web/src/vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /web/src/vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /web/src/vendor/fideloper/proxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fideloper/proxy/LICENSE.md -------------------------------------------------------------------------------- /web/src/vendor/fideloper/proxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fideloper/proxy/composer.json -------------------------------------------------------------------------------- /web/src/vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /web/src/vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /web/src/vendor/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /web/src/vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/hamcrest/hamcrest-php/composer.lock -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /web/src/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /web/src/vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /web/src/vendor/laravel/tinker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/tinker/LICENSE.txt -------------------------------------------------------------------------------- /web/src/vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /web/src/vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /web/src/vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /web/src/vendor/laravel/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/laravel/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /web/src/vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /web/src/vendor/maximebf/debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/maximebf/debugbar/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/maximebf/debugbar/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/maximebf/debugbar/composer.json -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/.styleci.yml -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/Makefile -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/library/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/library/helpers.php -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /web/src/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/doc/03-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/doc/03-utilities.md -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/doc/04-extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/doc/04-extending.md -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /web/src/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/.gitattributes -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/.gitignore -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /web/src/vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web/src/vendor/phpunit/phpunit/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/phpunit/phpunit/tests/bootstrap.php -------------------------------------------------------------------------------- /web/src/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /web/src/vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/container/README.md -------------------------------------------------------------------------------- /web/src/vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /web/src/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /web/src/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /web/src/vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /web/src/vendor/psr/log/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /web/src/vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /web/src/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /web/src/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/README.md -------------------------------------------------------------------------------- /web/src/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /web/src/vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /web/src/vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /web/src/vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /web/src/vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.phan/config.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/Makefile -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/bin/build-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/bin/build-stub -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/box.json.dist -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/CodeCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/CodeCleaner.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Command/Command.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/ConfigPaths.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Configuration.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Context.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/ContextAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/ContextAware.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/ExecutionClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/ExecutionClosure.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/ExecutionLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/ExecutionLoop.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Input/ShellInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Input/ShellInput.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Input/SilentInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Input/SilentInput.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/ParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/ParserFactory.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Readline/Libedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Readline/Libedit.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Readline/Readline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Readline/Readline.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Shell.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Sudo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Sudo.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Sudo/SudoVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Sudo/SudoVisitor.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Util/Docblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Util/Docblock.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Util/Json.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Util/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Util/Mirror.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/Util/Str.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/VarDumper/Cloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/VarDumper/Cloner.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/VarDumper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/VarDumper/Dumper.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/src/functions.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/ClassWithSecrets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/ClassWithSecrets.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/CodeCleanerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/CodeCleanerTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/ContextTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/FakeShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/FakeShell.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/ParserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/ParserTestCase.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/ShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/ShellTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/SudoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/SudoTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/Util/MirrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/Util/MirrorTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/Util/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/Util/StrTest.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/fixtures/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/psy/psysh/test/fixtures/config.php -------------------------------------------------------------------------------- /web/src/vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /web/src/vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /web/src/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /web/src/vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /web/src/vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /web/src/vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /web/src/vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/.gitignore -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/.php_cs -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/.travis.yml -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/README.md -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/build.xml -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/composer.json -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/phive.xml -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/phpunit.xml -------------------------------------------------------------------------------- /web/src/vendor/theseer/tokenizer/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/theseer/tokenizer/src/Token.php -------------------------------------------------------------------------------- /web/src/vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /web/src/vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /web/src/vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /web/src/vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /web/src/vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/webmozart/assert/.styleci.yml -------------------------------------------------------------------------------- /web/src/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /web/src/vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /web/src/vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /web/src/vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /web/src/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/webpack.mix.js -------------------------------------------------------------------------------- /web/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junelsolis/freeradius-admin/HEAD/web/src/yarn.lock --------------------------------------------------------------------------------