├── .editorconfig ├── .gitattributes ├── .gitignore ├── .htaccess ├── .idea └── .gitignore ├── DATABASE MYSQL.txt ├── LICENSE ├── README.md ├── bin ├── bash_completion.sh ├── cake ├── cake.bat └── cake.php ├── composer.json ├── composer.lock ├── config ├── .env.example ├── app.php ├── app_local.example.php ├── app_local.php ├── bootstrap.php ├── bootstrap_cli.php ├── paths.php ├── permissions.php ├── requirements.php ├── routes.php └── schema │ ├── i18n.sql │ └── sessions.sql ├── index.php ├── nodeserver ├── .babelrc ├── .commitlintrc.json ├── .dockerignore ├── .eslintrc.json ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── support_question.md │ ├── renovate.json │ └── workflows │ │ ├── build.yml │ │ ├── publish.yml │ │ ├── release.yml │ │ └── update-lock.yml ├── .gitignore ├── .husky │ ├── .gitignore │ ├── commit-msg │ └── pre-commit ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .release-it.yml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── LICENSE.header ├── README.md ├── docker-compose.yml ├── license-checker-config.json ├── nodemon.json ├── nodeserver.zip ├── package.json ├── requests.http ├── src │ ├── config.json │ ├── config │ │ └── upload.js │ ├── controller │ │ ├── deviceController.js │ │ ├── encryptController.js │ │ ├── groupController.js │ │ ├── labelsController.js │ │ ├── messageController.js │ │ ├── orderController.js │ │ ├── sessionController.js │ │ └── statusController.js │ ├── index.js │ ├── mapper │ │ ├── index.js │ │ ├── tagone-chat.js │ │ ├── tagone-device.js │ │ ├── tagone-message-document.js │ │ ├── tagone-message-image.js │ │ ├── tagone-message-location.js │ │ ├── tagone-message-video.js │ │ ├── tagone-message.js │ │ ├── tagone-onack.js │ │ └── tagone-return.js │ ├── middleware │ │ ├── auth.js │ │ ├── healthCheck.js │ │ └── statusConnection.js │ ├── routes │ │ └── index.js │ ├── server.js │ ├── swagger.json │ └── util │ │ ├── chatWootClient.js │ │ ├── createSessionUtil.js │ │ ├── db │ │ ├── mongodb │ │ │ └── db.js │ │ └── redis │ │ │ └── db.js │ │ ├── functions.js │ │ ├── getAllTokens.js │ │ ├── logger.js │ │ ├── sessionUtil.js │ │ └── tokenStore │ │ ├── factory.js │ │ ├── fileTokenStory.js │ │ ├── firebaseTokenStory.js │ │ ├── model │ │ └── token.js │ │ ├── mongodbTokenStory.js │ │ └── redisTokenStory.js └── yarn.lock ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── plugins └── .gitkeep ├── resources └── .gitkeep ├── src ├── Application.php ├── Console │ └── Installer.php ├── Controller │ ├── AppController.php │ ├── Component │ │ ├── .gitkeep │ │ └── ConexaowppComponent.php │ ├── DispUsersController.php │ ├── DispositivosController.php │ ├── ErrorController.php │ ├── PagesController.php │ ├── ServerController.php │ ├── UsersController.php │ └── WebhooksController.php ├── Model │ ├── Behavior │ │ └── .gitkeep │ ├── Entity │ │ ├── DispUser.php │ │ ├── Dispositivo.php │ │ └── User.php │ └── Table │ │ ├── DispUsersTable.php │ │ ├── DispositivosTable.php │ │ └── UsersTable.php └── View │ ├── AjaxView.php │ ├── AppView.php │ ├── Cell │ └── .gitkeep │ └── Helper │ └── .gitkeep ├── templates ├── DispUsers │ ├── add.php │ ├── edit.php │ ├── index.php │ └── view.php ├── Dispositivos │ ├── add.php │ ├── edit.php │ ├── index.php │ ├── scanner.php │ └── view.php ├── Error │ ├── error400.php │ └── error500.php ├── Pages │ └── home.php ├── Server │ ├── index.php │ └── update.php ├── Users │ ├── add.php │ ├── edit.php │ ├── index.php │ └── view.php ├── Webhooks │ ├── exemplos.php │ └── index.php ├── cell │ └── .gitkeep ├── element │ ├── aside │ │ └── main.php │ ├── content │ │ └── header.php │ ├── flash │ │ ├── default.php │ │ ├── error.php │ │ ├── info.php │ │ ├── success.php │ │ └── warning.php │ ├── footer │ │ └── main.php │ ├── header │ │ ├── main.php │ │ ├── menu.php │ │ ├── messages.php │ │ ├── notifications.php │ │ ├── search-block.php │ │ └── search-default.php │ ├── layout │ │ ├── css.php │ │ └── script.php │ └── sidebar │ │ ├── main.php │ │ ├── menu.php │ │ ├── search.php │ │ └── user.php ├── email │ ├── html │ │ └── default.php │ └── text │ │ └── default.php └── layout │ ├── default.php │ ├── login.php │ └── top-nav.php ├── tests ├── Fixture │ ├── DispUsersFixture.php │ ├── DispositivosFixture.php │ └── UsersFixture.php ├── TestCase │ ├── ApplicationTest.php │ ├── Controller │ │ ├── Component │ │ │ └── .gitkeep │ │ ├── DispUsersControllerTest.php │ │ ├── DispositivosControllerTest.php │ │ ├── PagesControllerTest.php │ │ ├── ServerControllerTest.php │ │ ├── UsersControllerTest.php │ │ └── WebhookControllerTest.php │ ├── Model │ │ ├── Behavior │ │ │ └── .gitkeep │ │ └── Table │ │ │ ├── DispUsersTableTest.php │ │ │ ├── DispositivosTableTest.php │ │ │ └── UsersTableTest.php │ └── View │ │ └── Helper │ │ └── .gitkeep ├── bootstrap.php └── schema.sql ├── vendor ├── .gitkeep ├── adbario │ └── php-dot-notation │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ ├── Dot.php │ │ └── helpers.php ├── arodu │ └── cakelte │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── page-debug_default.png │ │ └── page-debug_top-nav.png │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── Controller │ │ │ ├── AppController.php │ │ │ └── PagesController.php │ │ ├── Plugin.php │ │ └── View │ │ │ ├── CakeLteTrait.php │ │ │ ├── CakeLteView.php │ │ │ ├── Helper │ │ │ └── CakeLteHelper.php │ │ │ └── Styles │ │ │ ├── Header.php │ │ │ ├── Sidebar.php │ │ │ └── StylesTrait.php │ │ ├── templates │ │ ├── Pages │ │ │ └── debug.php │ │ └── bake │ │ │ ├── Template │ │ │ ├── add.twig │ │ │ ├── edit.twig │ │ │ ├── index.twig │ │ │ ├── login.twig │ │ │ ├── recovery.twig │ │ │ ├── register.twig │ │ │ └── view.twig │ │ │ └── element │ │ │ └── form.twig │ │ ├── tests │ │ └── bootstrap.php │ │ └── webroot │ │ ├── .gitkeep │ │ ├── AdminLTE │ │ ├── .babelrc.js │ │ ├── .browserslistrc │ │ ├── .bundlewatch.config.json │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report-for-adminlte-v3.1-x.md │ │ │ │ └── feature-request-for-adminlte-v4-x.md │ │ │ ├── codeql │ │ │ │ └── codeql-config.yml │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ ├── ci.yml │ │ │ │ ├── codeql.yml │ │ │ │ ├── docs.yml │ │ │ │ └── lint.yml │ │ ├── .gitignore │ │ ├── .gitpod.yml │ │ ├── .lgtm.yml │ │ ├── .npmignore │ │ ├── .stylelintignore │ │ ├── .stylelintrc │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── config │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── postcss.config.js │ │ │ │ └── rollup.config.js │ │ │ ├── js │ │ │ │ ├── AdminLTE.js │ │ │ │ ├── CardRefresh.js │ │ │ │ ├── CardWidget.js │ │ │ │ ├── ControlSidebar.js │ │ │ │ ├── DirectChat.js │ │ │ │ ├── Dropdown.js │ │ │ │ ├── ExpandableTable.js │ │ │ │ ├── Fullscreen.js │ │ │ │ ├── IFrame.js │ │ │ │ ├── Layout.js │ │ │ │ ├── NavbarSearch.js │ │ │ │ ├── PushMenu.js │ │ │ │ ├── SidebarSearch.js │ │ │ │ ├── Toasts.js │ │ │ │ ├── TodoList.js │ │ │ │ └── Treeview.js │ │ │ ├── npm │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── DocsPlugins.js │ │ │ │ ├── DocsPublish.js │ │ │ │ ├── Plugins.js │ │ │ │ ├── Publish.js │ │ │ │ └── vnu-jar.js │ │ │ └── scss │ │ │ │ ├── _adminlte.raw.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _animation-effects.scss │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _brand.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _callout.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _control-sidebar.scss │ │ │ │ ├── _direct-chat.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _elevation.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _info-box.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _main-header.scss │ │ │ │ ├── _main-sidebar.scss │ │ │ │ ├── _miscellaneous.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _preloader.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _products.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _sidebar-mini.scss │ │ │ │ ├── _small-box.scss │ │ │ │ ├── _social-widgets.scss │ │ │ │ ├── _table.scss │ │ │ │ ├── _text.scss │ │ │ │ ├── _timeline.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _users-list.scss │ │ │ │ ├── _variables-alt.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── adminlte.scss │ │ │ │ ├── mixins │ │ │ │ ├── _accent.scss │ │ │ │ ├── _animations.scss │ │ │ │ ├── _backgrounds.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _direct-chat.scss │ │ │ │ ├── _miscellaneous.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _toasts.scss │ │ │ │ └── _touch-support.scss │ │ │ │ ├── pages │ │ │ │ ├── _404_500_errors.scss │ │ │ │ ├── _e-commerce.scss │ │ │ │ ├── _iframe.scss │ │ │ │ ├── _invoice.scss │ │ │ │ ├── _kanban.scss │ │ │ │ ├── _lockscreen.scss │ │ │ │ ├── _login_and_register.scss │ │ │ │ ├── _mailbox.scss │ │ │ │ ├── _profile.scss │ │ │ │ └── _projects.scss │ │ │ │ ├── parts │ │ │ │ ├── _components.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extra-components.scss │ │ │ │ ├── _miscellaneous.scss │ │ │ │ ├── _pages.scss │ │ │ │ ├── _plugins.scss │ │ │ │ ├── adminlte.components.scss │ │ │ │ ├── adminlte.core.scss │ │ │ │ ├── adminlte.extra-components.scss │ │ │ │ ├── adminlte.pages.scss │ │ │ │ └── adminlte.plugins.scss │ │ │ │ └── plugins │ │ │ │ ├── _bootstrap-slider.scss │ │ │ │ ├── _bootstrap-switch.scss │ │ │ │ ├── _fullcalendar.scss │ │ │ │ ├── _icheck-bootstrap.scss │ │ │ │ ├── _jqvmap.scss │ │ │ │ ├── _mapael.scss │ │ │ │ ├── _miscellaneous.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _pace.scss │ │ │ │ ├── _select2.scss │ │ │ │ ├── _sweetalert2.scss │ │ │ │ └── _toastr.scss │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── adminlte.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css │ │ │ │ ├── adminlte.min.css.map │ │ │ │ └── alt │ │ │ │ │ ├── adminlte.components.css │ │ │ │ │ ├── adminlte.components.css.map │ │ │ │ │ ├── adminlte.components.min.css │ │ │ │ │ ├── adminlte.components.min.css.map │ │ │ │ │ ├── adminlte.core.css │ │ │ │ │ ├── adminlte.core.css.map │ │ │ │ │ ├── adminlte.core.min.css │ │ │ │ │ ├── adminlte.core.min.css.map │ │ │ │ │ ├── adminlte.extra-components.css │ │ │ │ │ ├── adminlte.extra-components.css.map │ │ │ │ │ ├── adminlte.extra-components.min.css │ │ │ │ │ ├── adminlte.extra-components.min.css.map │ │ │ │ │ ├── adminlte.pages.css │ │ │ │ │ ├── adminlte.pages.css.map │ │ │ │ │ ├── adminlte.pages.min.css │ │ │ │ │ ├── adminlte.pages.min.css.map │ │ │ │ │ ├── adminlte.plugins.css │ │ │ │ │ ├── adminlte.plugins.css.map │ │ │ │ │ ├── adminlte.plugins.min.css │ │ │ │ │ └── adminlte.plugins.min.css.map │ │ │ ├── img │ │ │ │ ├── AdminLTELogo.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar4.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-150x150.png │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── prod-1.jpg │ │ │ │ ├── prod-2.jpg │ │ │ │ ├── prod-3.jpg │ │ │ │ ├── prod-4.jpg │ │ │ │ ├── prod-5.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.js.map │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── adminlte.min.js.map │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ ├── dashboard2.js │ │ │ │ └── dashboard3.js │ │ ├── docs │ │ │ ├── 404.html │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── _config.yml │ │ │ ├── _includes │ │ │ │ ├── foot.html │ │ │ │ ├── footer.html │ │ │ │ ├── head.html │ │ │ │ ├── navbar.html │ │ │ │ ├── preloader.html │ │ │ │ └── sidebar.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ └── page.html │ │ │ ├── additional-styles.md │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── adminlte.css │ │ │ │ │ ├── adminlte.css.map │ │ │ │ │ ├── adminlte.min.css │ │ │ │ │ ├── adminlte.min.css.map │ │ │ │ │ ├── alt │ │ │ │ │ │ ├── adminlte.components.css │ │ │ │ │ │ ├── adminlte.components.css.map │ │ │ │ │ │ ├── adminlte.components.min.css │ │ │ │ │ │ ├── adminlte.components.min.css.map │ │ │ │ │ │ ├── adminlte.core.css │ │ │ │ │ │ ├── adminlte.core.css.map │ │ │ │ │ │ ├── adminlte.core.min.css │ │ │ │ │ │ ├── adminlte.core.min.css.map │ │ │ │ │ │ ├── adminlte.extra-components.css │ │ │ │ │ │ ├── adminlte.extra-components.css.map │ │ │ │ │ │ ├── adminlte.extra-components.min.css │ │ │ │ │ │ ├── adminlte.extra-components.min.css.map │ │ │ │ │ │ ├── adminlte.pages.css │ │ │ │ │ │ ├── adminlte.pages.css.map │ │ │ │ │ │ ├── adminlte.pages.min.css │ │ │ │ │ │ ├── adminlte.pages.min.css.map │ │ │ │ │ │ ├── adminlte.plugins.css │ │ │ │ │ │ ├── adminlte.plugins.css.map │ │ │ │ │ │ ├── adminlte.plugins.min.css │ │ │ │ │ │ └── adminlte.plugins.min.css.map │ │ │ │ │ ├── docs.css │ │ │ │ │ └── highlighter.css │ │ │ │ ├── img │ │ │ │ │ ├── AdminLTELogo.png │ │ │ │ │ ├── logo-xl.png │ │ │ │ │ ├── logo-xs.png │ │ │ │ │ ├── user1-128x128.jpg │ │ │ │ │ ├── user3-128x128.jpg │ │ │ │ │ ├── user4-128x128.jpg │ │ │ │ │ ├── user5-128x128.jpg │ │ │ │ │ ├── user6-128x128.jpg │ │ │ │ │ ├── user7-128x128.jpg │ │ │ │ │ └── user8-128x128.jpg │ │ │ │ ├── js │ │ │ │ │ ├── adminlte.js │ │ │ │ │ ├── adminlte.js.map │ │ │ │ │ ├── adminlte.min.js │ │ │ │ │ ├── adminlte.min.js.map │ │ │ │ │ ├── demo.js │ │ │ │ │ └── pages │ │ │ │ │ │ ├── dashboard.js │ │ │ │ │ │ ├── dashboard2.js │ │ │ │ │ │ └── dashboard3.js │ │ │ │ └── plugins │ │ │ │ │ ├── bootstrap │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ ├── fontawesome-free │ │ │ │ │ ├── css │ │ │ │ │ │ ├── all.css │ │ │ │ │ │ ├── all.min.css │ │ │ │ │ │ ├── brands.css │ │ │ │ │ │ ├── brands.min.css │ │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ │ ├── regular.css │ │ │ │ │ │ ├── regular.min.css │ │ │ │ │ │ ├── solid.css │ │ │ │ │ │ ├── solid.min.css │ │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ │ └── v4-shims.min.css │ │ │ │ │ └── webfonts │ │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ │ ├── jquery │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ └── jquery.slim.min.map │ │ │ │ │ ├── overlayScrollbars │ │ │ │ │ ├── css │ │ │ │ │ │ ├── OverlayScrollbars.css │ │ │ │ │ │ └── OverlayScrollbars.min.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── OverlayScrollbars.js │ │ │ │ │ │ ├── OverlayScrollbars.min.js │ │ │ │ │ │ ├── jquery.overlayScrollbars.js │ │ │ │ │ │ └── jquery.overlayScrollbars.min.js │ │ │ │ │ └── popper │ │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ ├── popper.min.js.map │ │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.flow │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ ├── browser-support.md │ │ │ ├── components │ │ │ │ ├── boxes.md │ │ │ │ ├── cards.md │ │ │ │ ├── control-sidebar.md │ │ │ │ ├── direct-chat.md │ │ │ │ ├── main-header.md │ │ │ │ ├── main-sidebar.md │ │ │ │ ├── miscellaneous.md │ │ │ │ ├── plugins.md │ │ │ │ ├── ribbons.md │ │ │ │ └── timeline.md │ │ │ ├── dependencies.md │ │ │ ├── faq.md │ │ │ ├── how-to-contribute.md │ │ │ ├── implementations.md │ │ │ ├── index.md │ │ │ ├── javascript │ │ │ │ ├── card-refresh.md │ │ │ │ ├── card-widget.md │ │ │ │ ├── control-sidebar.md │ │ │ │ ├── direct-chat.md │ │ │ │ ├── expandable-tables.md │ │ │ │ ├── iframe.md │ │ │ │ ├── layout.md │ │ │ │ ├── navbar-search.md │ │ │ │ ├── push-menu.md │ │ │ │ ├── sidebar-search.md │ │ │ │ ├── toasts.md │ │ │ │ ├── todo-list.md │ │ │ │ └── treeview.md │ │ │ ├── layout.md │ │ │ ├── license.md │ │ │ └── upgrade-guide.md │ │ ├── iframe.html │ │ ├── index.html │ │ ├── index2.html │ │ ├── index3.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pages │ │ │ ├── UI │ │ │ │ ├── buttons.html │ │ │ │ ├── general.html │ │ │ │ ├── icons.html │ │ │ │ ├── modals.html │ │ │ │ ├── navbar.html │ │ │ │ ├── ribbons.html │ │ │ │ ├── sliders.html │ │ │ │ └── timeline.html │ │ │ ├── calendar.html │ │ │ ├── charts │ │ │ │ ├── chartjs.html │ │ │ │ ├── flot.html │ │ │ │ ├── inline.html │ │ │ │ └── uplot.html │ │ │ ├── examples │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── blank.html │ │ │ │ ├── contact-us.html │ │ │ │ ├── contacts.html │ │ │ │ ├── e-commerce.html │ │ │ │ ├── faq.html │ │ │ │ ├── forgot-password-v2.html │ │ │ │ ├── forgot-password.html │ │ │ │ ├── invoice-print.html │ │ │ │ ├── invoice.html │ │ │ │ ├── language-menu.html │ │ │ │ ├── legacy-user-menu.html │ │ │ │ ├── lockscreen.html │ │ │ │ ├── login-v2.html │ │ │ │ ├── login.html │ │ │ │ ├── pace.html │ │ │ │ ├── profile.html │ │ │ │ ├── project-add.html │ │ │ │ ├── project-detail.html │ │ │ │ ├── project-edit.html │ │ │ │ ├── projects.html │ │ │ │ ├── recover-password-v2.html │ │ │ │ ├── recover-password.html │ │ │ │ ├── register-v2.html │ │ │ │ └── register.html │ │ │ ├── forms │ │ │ │ ├── advanced.html │ │ │ │ ├── editors.html │ │ │ │ ├── general.html │ │ │ │ └── validation.html │ │ │ ├── gallery.html │ │ │ ├── kanban.html │ │ │ ├── layout │ │ │ │ ├── boxed.html │ │ │ │ ├── collapsed-sidebar.html │ │ │ │ ├── fixed-footer.html │ │ │ │ ├── fixed-sidebar-custom.html │ │ │ │ ├── fixed-sidebar.html │ │ │ │ ├── fixed-topnav.html │ │ │ │ ├── top-nav-sidebar.html │ │ │ │ └── top-nav.html │ │ │ ├── mailbox │ │ │ │ ├── compose.html │ │ │ │ ├── mailbox.html │ │ │ │ └── read-mail.html │ │ │ ├── search │ │ │ │ ├── enhanced-results.html │ │ │ │ ├── enhanced.html │ │ │ │ ├── simple-results.html │ │ │ │ └── simple.html │ │ │ ├── tables │ │ │ │ ├── data.html │ │ │ │ ├── jsgrid.html │ │ │ │ └── simple.html │ │ │ └── widgets.html │ │ ├── plugins │ │ │ ├── bootstrap-colorpicker │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ ├── bootstrap-slider │ │ │ │ ├── bootstrap-slider.js │ │ │ │ ├── bootstrap-slider.min.js │ │ │ │ └── css │ │ │ │ │ ├── bootstrap-slider.css │ │ │ │ │ └── bootstrap-slider.min.css │ │ │ ├── bootstrap-switch │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap2 │ │ │ │ │ │ ├── bootstrap-switch.css │ │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ │ │ └── bootstrap3 │ │ │ │ │ │ ├── bootstrap-switch.css │ │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-switch.js │ │ │ │ │ └── bootstrap-switch.min.js │ │ │ ├── bootstrap │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-duallistbox │ │ │ │ ├── bootstrap-duallistbox.css │ │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ │ ├── jquery.bootstrap-duallistbox.js │ │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ │ ├── bs-custom-file-input │ │ │ │ ├── bs-custom-file-input.js │ │ │ │ ├── bs-custom-file-input.js.map │ │ │ │ ├── bs-custom-file-input.min.js │ │ │ │ └── bs-custom-file-input.min.js.map │ │ │ ├── bs-stepper │ │ │ │ ├── css │ │ │ │ │ ├── bs-stepper.css │ │ │ │ │ ├── bs-stepper.css.map │ │ │ │ │ ├── bs-stepper.min.css │ │ │ │ │ └── bs-stepper.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bs-stepper.js │ │ │ │ │ ├── bs-stepper.js.map │ │ │ │ │ ├── bs-stepper.min.js │ │ │ │ │ └── bs-stepper.min.js.map │ │ │ ├── chart.js │ │ │ │ ├── Chart.bundle.js │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ ├── Chart.css │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart.min.css │ │ │ │ └── Chart.min.js │ │ │ ├── codemirror │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── keymap │ │ │ │ │ ├── emacs.js │ │ │ │ │ ├── sublime.js │ │ │ │ │ └── vim.js │ │ │ │ ├── mode │ │ │ │ │ ├── apl │ │ │ │ │ │ └── apl.js │ │ │ │ │ ├── asciiarmor │ │ │ │ │ │ └── asciiarmor.js │ │ │ │ │ ├── asn.1 │ │ │ │ │ │ └── asn.1.js │ │ │ │ │ ├── asterisk │ │ │ │ │ │ └── asterisk.js │ │ │ │ │ ├── brainfuck │ │ │ │ │ │ └── brainfuck.js │ │ │ │ │ ├── clike │ │ │ │ │ │ └── clike.js │ │ │ │ │ ├── clojure │ │ │ │ │ │ └── clojure.js │ │ │ │ │ ├── cmake │ │ │ │ │ │ └── cmake.js │ │ │ │ │ ├── cobol │ │ │ │ │ │ └── cobol.js │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ └── coffeescript.js │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ └── commonlisp.js │ │ │ │ │ ├── crystal │ │ │ │ │ │ └── crystal.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── css.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ └── cypher.js │ │ │ │ │ ├── d │ │ │ │ │ │ └── d.js │ │ │ │ │ ├── dart │ │ │ │ │ │ └── dart.js │ │ │ │ │ ├── diff │ │ │ │ │ │ └── diff.js │ │ │ │ │ ├── django │ │ │ │ │ │ └── django.js │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ └── dockerfile.js │ │ │ │ │ ├── dtd │ │ │ │ │ │ └── dtd.js │ │ │ │ │ ├── dylan │ │ │ │ │ │ └── dylan.js │ │ │ │ │ ├── ebnf │ │ │ │ │ │ └── ebnf.js │ │ │ │ │ ├── ecl │ │ │ │ │ │ └── ecl.js │ │ │ │ │ ├── eiffel │ │ │ │ │ │ └── eiffel.js │ │ │ │ │ ├── elm │ │ │ │ │ │ └── elm.js │ │ │ │ │ ├── erlang │ │ │ │ │ │ └── erlang.js │ │ │ │ │ ├── factor │ │ │ │ │ │ └── factor.js │ │ │ │ │ ├── fcl │ │ │ │ │ │ └── fcl.js │ │ │ │ │ ├── forth │ │ │ │ │ │ └── forth.js │ │ │ │ │ ├── fortran │ │ │ │ │ │ └── fortran.js │ │ │ │ │ ├── gas │ │ │ │ │ │ └── gas.js │ │ │ │ │ ├── gfm │ │ │ │ │ │ └── gfm.js │ │ │ │ │ ├── gherkin │ │ │ │ │ │ └── gherkin.js │ │ │ │ │ ├── go │ │ │ │ │ │ └── go.js │ │ │ │ │ ├── groovy │ │ │ │ │ │ └── groovy.js │ │ │ │ │ ├── haml │ │ │ │ │ │ └── haml.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ └── handlebars.js │ │ │ │ │ ├── haskell-literate │ │ │ │ │ │ └── haskell-literate.js │ │ │ │ │ ├── haskell │ │ │ │ │ │ └── haskell.js │ │ │ │ │ ├── haxe │ │ │ │ │ │ └── haxe.js │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ └── htmlembedded.js │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ └── htmlmixed.js │ │ │ │ │ ├── http │ │ │ │ │ │ └── http.js │ │ │ │ │ ├── idl │ │ │ │ │ │ └── idl.js │ │ │ │ │ ├── javascript │ │ │ │ │ │ └── javascript.js │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── jsx │ │ │ │ │ │ └── jsx.js │ │ │ │ │ ├── julia │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── livescript │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── mathematica │ │ │ │ │ │ └── mathematica.js │ │ │ │ │ ├── mbox │ │ │ │ │ │ └── mbox.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── mscgen │ │ │ │ │ │ └── mscgen.js │ │ │ │ │ ├── mumps │ │ │ │ │ │ └── mumps.js │ │ │ │ │ ├── nginx │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── nsis │ │ │ │ │ │ └── nsis.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── oz │ │ │ │ │ │ └── oz.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── pig │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── powershell.js │ │ │ │ │ ├── properties │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── protobuf │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ ├── pug │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── puppet │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sas │ │ │ │ │ │ └── sas.js │ │ │ │ │ ├── sass │ │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ └── shell.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ │ └── slim.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── solr │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ └── stex.js │ │ │ │ │ ├── stylus │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── swift │ │ │ │ │ │ └── swift.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── troff │ │ │ │ │ │ └── troff.js │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ ├── ttcn │ │ │ │ │ │ └── ttcn.js │ │ │ │ │ ├── turtle │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── twig │ │ │ │ │ │ └── twig.js │ │ │ │ │ ├── vb │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── vhdl │ │ │ │ │ │ └── vhdl.js │ │ │ │ │ ├── vue │ │ │ │ │ │ └── vue.js │ │ │ │ │ ├── wast │ │ │ │ │ │ └── wast.js │ │ │ │ │ ├── webidl │ │ │ │ │ │ └── webidl.js │ │ │ │ │ ├── xml │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yacas │ │ │ │ │ │ └── yacas.js │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ ├── yaml │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ │ └── z80.js │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── abcdef.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── ayu-dark.css │ │ │ │ │ ├── ayu-mirage.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── bespin.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── darcula.css │ │ │ │ │ ├── dracula.css │ │ │ │ │ ├── duotone-dark.css │ │ │ │ │ ├── duotone-light.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ ├── icecoder.css │ │ │ │ │ ├── idea.css │ │ │ │ │ ├── isotope.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ ├── lucario.css │ │ │ │ │ ├── material-darker.css │ │ │ │ │ ├── material-ocean.css │ │ │ │ │ ├── material-palenight.css │ │ │ │ │ ├── material.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── moxer.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── nord.css │ │ │ │ │ ├── oceanic-next.css │ │ │ │ │ ├── panda-syntax.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── railscasts.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── seti.css │ │ │ │ │ ├── shadowfox.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── ssms.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── ttcn.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ ├── yeti.css │ │ │ │ │ ├── yonce.css │ │ │ │ │ └── zenburn.css │ │ │ ├── datatables-autofill │ │ │ │ ├── css │ │ │ │ │ ├── autoFill.bootstrap4.css │ │ │ │ │ └── autoFill.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── autoFill.bootstrap4.js │ │ │ │ │ ├── autoFill.bootstrap4.min.js │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ ├── datatables-bs4 │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ │ └── dataTables.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ │ └── dataTables.bootstrap4.min.js │ │ │ ├── datatables-buttons │ │ │ │ ├── css │ │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ │ └── buttons.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ │ ├── buttons.colVis.js │ │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ │ ├── buttons.flash.js │ │ │ │ │ ├── buttons.flash.min.js │ │ │ │ │ ├── buttons.html5.js │ │ │ │ │ ├── buttons.html5.min.js │ │ │ │ │ ├── buttons.print.js │ │ │ │ │ ├── buttons.print.min.js │ │ │ │ │ ├── dataTables.buttons.js │ │ │ │ │ └── dataTables.buttons.min.js │ │ │ ├── datatables-colreorder │ │ │ │ ├── css │ │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ │ └── colReorder.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── colReorder.bootstrap4.js │ │ │ │ │ ├── colReorder.bootstrap4.min.js │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── datatables-fixedcolumns │ │ │ │ ├── css │ │ │ │ │ ├── fixedColumns.bootstrap4.css │ │ │ │ │ └── fixedColumns.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ ├── dataTables.fixedColumns.min.js │ │ │ │ │ ├── fixedColumns.bootstrap4.js │ │ │ │ │ └── fixedColumns.bootstrap4.min.js │ │ │ ├── datatables-fixedheader │ │ │ │ ├── css │ │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ │ └── fixedHeader.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ ├── dataTables.fixedHeader.min.js │ │ │ │ │ ├── fixedHeader.bootstrap4.js │ │ │ │ │ └── fixedHeader.bootstrap4.min.js │ │ │ ├── datatables-keytable │ │ │ │ ├── css │ │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ │ └── keyTable.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ ├── dataTables.keyTable.min.js │ │ │ │ │ ├── keyTable.bootstrap4.js │ │ │ │ │ └── keyTable.bootstrap4.min.js │ │ │ ├── datatables-responsive │ │ │ │ ├── css │ │ │ │ │ ├── responsive.bootstrap4.css │ │ │ │ │ └── responsive.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ │ └── responsive.bootstrap4.min.js │ │ │ ├── datatables-rowgroup │ │ │ │ ├── css │ │ │ │ │ ├── rowGroup.bootstrap4.css │ │ │ │ │ └── rowGroup.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.rowGroup.js │ │ │ │ │ ├── dataTables.rowGroup.min.js │ │ │ │ │ ├── rowGroup.bootstrap4.js │ │ │ │ │ └── rowGroup.bootstrap4.min.js │ │ │ ├── datatables-rowreorder │ │ │ │ ├── css │ │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ │ └── rowReorder.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ │ ├── dataTables.rowReorder.min.js │ │ │ │ │ ├── rowReorder.bootstrap4.js │ │ │ │ │ └── rowReorder.bootstrap4.min.js │ │ │ ├── datatables-scroller │ │ │ │ ├── css │ │ │ │ │ ├── scroller.bootstrap4.css │ │ │ │ │ └── scroller.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ ├── scroller.bootstrap4.js │ │ │ │ │ └── scroller.bootstrap4.min.js │ │ │ ├── datatables-searchbuilder │ │ │ │ ├── css │ │ │ │ │ ├── searchBuilder.bootstrap4.css │ │ │ │ │ └── searchBuilder.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.searchBuilder.js │ │ │ │ │ ├── dataTables.searchBuilder.min.js │ │ │ │ │ ├── searchBuilder.bootstrap4.js │ │ │ │ │ └── searchBuilder.bootstrap4.min.js │ │ │ ├── datatables-searchpanes │ │ │ │ ├── css │ │ │ │ │ ├── searchPanes.bootstrap4.css │ │ │ │ │ └── searchPanes.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.searchPanes.js │ │ │ │ │ ├── dataTables.searchPanes.min.js │ │ │ │ │ ├── searchPanes.bootstrap4.js │ │ │ │ │ └── searchPanes.bootstrap4.min.js │ │ │ ├── datatables-select │ │ │ │ ├── css │ │ │ │ │ ├── select.bootstrap4.css │ │ │ │ │ └── select.bootstrap4.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.select.js │ │ │ │ │ ├── dataTables.select.min.js │ │ │ │ │ ├── select.bootstrap4.js │ │ │ │ │ └── select.bootstrap4.min.js │ │ │ ├── datatables │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── daterangepicker │ │ │ │ ├── daterangepicker.css │ │ │ │ └── daterangepicker.js │ │ │ ├── dropzone │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone-amd-module.js │ │ │ │ ├── dropzone.css │ │ │ │ ├── dropzone.js │ │ │ │ ├── dropzone.js.map │ │ │ │ └── min │ │ │ │ │ ├── basic.css │ │ │ │ │ ├── basic.min.css │ │ │ │ │ ├── dropzone-amd-module.min.js │ │ │ │ │ ├── dropzone.css │ │ │ │ │ ├── dropzone.min.css │ │ │ │ │ └── dropzone.min.js │ │ │ ├── ekko-lightbox │ │ │ │ ├── ekko-lightbox.css │ │ │ │ ├── ekko-lightbox.js │ │ │ │ ├── ekko-lightbox.js.map │ │ │ │ ├── ekko-lightbox.min.js │ │ │ │ └── ekko-lightbox.min.js.map │ │ │ ├── fastclick │ │ │ │ └── fastclick.js │ │ │ ├── filterizr │ │ │ │ ├── filterizr.min.js │ │ │ │ ├── jquery.filterizr.min.js │ │ │ │ └── vanilla.filterizr.min.js │ │ │ ├── flag-icon-css │ │ │ │ ├── css │ │ │ │ │ ├── flag-icon.css │ │ │ │ │ └── flag-icon.min.css │ │ │ │ └── flags │ │ │ │ │ ├── 1x1 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ca.svg │ │ │ │ │ ├── es-ga.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── xk.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ │ └── 4x3 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ca.svg │ │ │ │ │ ├── es-ga.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── xk.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── flot │ │ │ │ ├── jquery.flot.js │ │ │ │ └── plugins │ │ │ │ │ ├── jquery.flot.axislabels.js │ │ │ │ │ ├── jquery.flot.browser.js │ │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ │ ├── jquery.flot.composeImages.js │ │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ │ ├── jquery.flot.drawSeries.js │ │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ │ ├── jquery.flot.flatdata.js │ │ │ │ │ ├── jquery.flot.hover.js │ │ │ │ │ ├── jquery.flot.image.js │ │ │ │ │ ├── jquery.flot.legend.js │ │ │ │ │ ├── jquery.flot.logaxis.js │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ │ ├── jquery.flot.saturated.js │ │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ │ ├── jquery.flot.time.js │ │ │ │ │ ├── jquery.flot.touch.js │ │ │ │ │ ├── jquery.flot.touchNavigate.js │ │ │ │ │ └── jquery.flot.uiConstants.js │ │ │ ├── fontawesome-free │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── brands.css │ │ │ │ │ ├── brands.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ ├── regular.css │ │ │ │ │ ├── regular.min.css │ │ │ │ │ ├── solid.css │ │ │ │ │ ├── solid.min.css │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── fullcalendar │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── locales-all.js │ │ │ │ ├── locales-all.min.js │ │ │ │ ├── locales │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── ta-in.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh-tw.js │ │ │ │ ├── main.css │ │ │ │ ├── main.js │ │ │ │ ├── main.min.css │ │ │ │ └── main.min.js │ │ │ ├── icheck-bootstrap │ │ │ │ ├── LICENSE │ │ │ │ ├── icheck-bootstrap.css │ │ │ │ └── icheck-bootstrap.min.css │ │ │ ├── inputmask │ │ │ │ ├── inputmask.js │ │ │ │ ├── inputmask.min.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ └── jquery.inputmask.min.js │ │ │ ├── ion-rangeslider │ │ │ │ ├── css │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ └── ion.rangeSlider.min.css │ │ │ │ └── js │ │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jquery-knob │ │ │ │ └── jquery.knob.min.js │ │ │ ├── jquery-mapael │ │ │ │ ├── jquery.mapael.js │ │ │ │ ├── jquery.mapael.min.js │ │ │ │ └── maps │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── france_departments.js │ │ │ │ │ ├── france_departments.min.js │ │ │ │ │ ├── usa_states.js │ │ │ │ │ ├── usa_states.min.js │ │ │ │ │ ├── world_countries.js │ │ │ │ │ ├── world_countries.min.js │ │ │ │ │ ├── world_countries_mercator.js │ │ │ │ │ ├── world_countries_mercator.min.js │ │ │ │ │ ├── world_countries_miller.js │ │ │ │ │ └── world_countries_miller.min.js │ │ │ ├── jquery-mousewheel │ │ │ │ ├── LICENSE.txt │ │ │ │ └── jquery.mousewheel.js │ │ │ ├── jquery-ui │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ └── jquery-ui.theme.min.css │ │ │ ├── jquery-validation │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── jquery.validate.min.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_ar.min.js │ │ │ │ │ ├── messages_az.js │ │ │ │ │ ├── messages_az.min.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bg.min.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_ca.min.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_cs.min.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_da.min.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_de.min.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_el.min.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es.min.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_et.min.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_eu.min.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fa.min.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fi.min.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_fr.min.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_ge.min.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_gl.min.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_he.min.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hr.min.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hu.min.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_id.min.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_is.min.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_it.min.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ja.min.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_ka.min.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_kk.min.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_ko.min.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lt.min.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_lv.min.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_mk.min.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_my.min.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_nl.min.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_no.min.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pl.min.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ro.min.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_ru.min.js │ │ │ │ │ ├── messages_sd.js │ │ │ │ │ ├── messages_sd.min.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_si.min.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sk.min.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sl.min.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr.min.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_sv.min.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_th.min.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tj.min.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_tr.min.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_uk.min.js │ │ │ │ │ ├── messages_ur.js │ │ │ │ │ ├── messages_ur.min.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_vi.min.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh.min.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_de.min.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_fi.min.js │ │ │ │ │ ├── methods_it.js │ │ │ │ │ ├── methods_it.min.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ ├── methods_nl.min.js │ │ │ │ │ ├── methods_pt.js │ │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── jquery.slim.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── jquery.slim.min.map │ │ │ ├── jqvmap │ │ │ │ ├── jquery.vmap.js │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ ├── jqvmap.css │ │ │ │ ├── jqvmap.min.css │ │ │ │ └── maps │ │ │ │ │ ├── continents │ │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ │ ├── jquery.vmap.croatia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ │ ├── jquery.vmap.indonesia.js │ │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ │ ├── jquery.vmap.new_regions_france.js │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ ├── jquery.vmap.serbia.js │ │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ │ ├── jquery.vmap.ukraine.js │ │ │ │ │ ├── jquery.vmap.usa.counties.js │ │ │ │ │ ├── jquery.vmap.usa.districts.js │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── jsgrid │ │ │ │ ├── i18n │ │ │ │ │ ├── jsgrid-de.js │ │ │ │ │ ├── jsgrid-es.js │ │ │ │ │ ├── jsgrid-fr.js │ │ │ │ │ ├── jsgrid-he.js │ │ │ │ │ ├── jsgrid-ja.js │ │ │ │ │ ├── jsgrid-ka.js │ │ │ │ │ ├── jsgrid-pl.js │ │ │ │ │ ├── jsgrid-pt-br.js │ │ │ │ │ ├── jsgrid-pt.js │ │ │ │ │ ├── jsgrid-ru.js │ │ │ │ │ ├── jsgrid-tr.js │ │ │ │ │ ├── jsgrid-zh-cn.js │ │ │ │ │ └── jsgrid-zh-tw.js │ │ │ │ ├── jsgrid-theme.css │ │ │ │ ├── jsgrid-theme.min.css │ │ │ │ ├── jsgrid.css │ │ │ │ ├── jsgrid.js │ │ │ │ ├── jsgrid.min.css │ │ │ │ └── jsgrid.min.js │ │ │ ├── jszip │ │ │ │ ├── jszip.js │ │ │ │ └── jszip.min.js │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-SG.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fil.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-deva.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-mo.js │ │ │ │ │ └── zh-tw.js │ │ │ │ ├── locales.js │ │ │ │ ├── locales.min.js │ │ │ │ ├── locales.min.js.map │ │ │ │ ├── moment-with-locales.js │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ ├── moment-with-locales.min.js.map │ │ │ │ ├── moment.min.js │ │ │ │ └── moment.min.js.map │ │ │ ├── overlayScrollbars │ │ │ │ ├── css │ │ │ │ │ ├── OverlayScrollbars.css │ │ │ │ │ └── OverlayScrollbars.min.css │ │ │ │ └── js │ │ │ │ │ ├── OverlayScrollbars.js │ │ │ │ │ ├── OverlayScrollbars.min.js │ │ │ │ │ ├── jquery.overlayScrollbars.js │ │ │ │ │ └── jquery.overlayScrollbars.min.js │ │ │ ├── pace-progress │ │ │ │ ├── pace.js │ │ │ │ ├── pace.min.js │ │ │ │ └── themes │ │ │ │ │ ├── black │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── blue │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── green │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── orange │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── pink │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── purple │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── red │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── silver │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── white │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ └── yellow │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── pdfmake │ │ │ │ ├── pdfmake.js │ │ │ │ ├── pdfmake.js.map │ │ │ │ ├── pdfmake.min.js │ │ │ │ ├── pdfmake.min.js.map │ │ │ │ └── vfs_fonts.js │ │ │ ├── popper │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ ├── popper.min.js.map │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.flow │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ ├── raphael │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── license.txt │ │ │ │ ├── raphael.js │ │ │ │ ├── raphael.min.js │ │ │ │ ├── raphael.no-deps.js │ │ │ │ └── raphael.no-deps.min.js │ │ │ ├── select2-bootstrap4-theme │ │ │ │ ├── select2-bootstrap4.css │ │ │ │ └── select2-bootstrap4.min.css │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── build.txt │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ └── select2.min.js │ │ │ ├── sparklines │ │ │ │ ├── sparkline.js │ │ │ │ └── sparkline.mjs │ │ │ ├── summernote │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ ├── summernote.woff │ │ │ │ │ └── summernote.woff2 │ │ │ │ ├── lang │ │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-az-AZ.js │ │ │ │ │ ├── summernote-az-AZ.min.js │ │ │ │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-da-DK.js │ │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-de-DE.js │ │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-el-GR.js │ │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-ES.js │ │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-EU.js │ │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-he-IL.js │ │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-id-ID.js │ │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-it-IT.js │ │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-th-TH.js │ │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ │ ├── summernote-uz-UZ.min.js │ │ │ │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ │ ├── summernote-zh-TW.min.js │ │ │ │ │ └── summernote-zh-TW.min.js.LICENSE.txt │ │ │ │ ├── plugin │ │ │ │ │ ├── databasic │ │ │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ │ │ └── summernote-ext-databasic.js │ │ │ │ │ ├── hello │ │ │ │ │ │ └── summernote-ext-hello.js │ │ │ │ │ └── specialchars │ │ │ │ │ │ └── summernote-ext-specialchars.js │ │ │ │ ├── summernote-bs4.css │ │ │ │ ├── summernote-bs4.js │ │ │ │ ├── summernote-bs4.js.map │ │ │ │ ├── summernote-bs4.min.css │ │ │ │ ├── summernote-bs4.min.js │ │ │ │ ├── summernote-bs4.min.js.LICENSE.txt │ │ │ │ ├── summernote-bs4.min.js.map │ │ │ │ ├── summernote-lite.css │ │ │ │ ├── summernote-lite.js │ │ │ │ ├── summernote-lite.js.map │ │ │ │ ├── summernote-lite.min.css │ │ │ │ ├── summernote-lite.min.js │ │ │ │ ├── summernote-lite.min.js.LICENSE.txt │ │ │ │ ├── summernote-lite.min.js.map │ │ │ │ ├── summernote.css │ │ │ │ ├── summernote.js │ │ │ │ ├── summernote.js.map │ │ │ │ ├── summernote.min.css │ │ │ │ ├── summernote.min.js │ │ │ │ ├── summernote.min.js.LICENSE.txt │ │ │ │ └── summernote.min.js.map │ │ │ ├── sweetalert2-theme-bootstrap-4 │ │ │ │ ├── bootstrap-4.css │ │ │ │ └── bootstrap-4.min.css │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ ├── tempusdominus-bootstrap-4 │ │ │ │ ├── css │ │ │ │ │ ├── tempusdominus-bootstrap-4.css │ │ │ │ │ └── tempusdominus-bootstrap-4.min.css │ │ │ │ └── js │ │ │ │ │ ├── tempusdominus-bootstrap-4.js │ │ │ │ │ └── tempusdominus-bootstrap-4.min.js │ │ │ ├── toastr │ │ │ │ ├── toastr.css │ │ │ │ ├── toastr.js.map │ │ │ │ ├── toastr.min.css │ │ │ │ └── toastr.min.js │ │ │ └── uplot │ │ │ │ ├── uPlot.cjs.js │ │ │ │ ├── uPlot.esm.js │ │ │ │ ├── uPlot.iife.js │ │ │ │ ├── uPlot.iife.min.js │ │ │ │ └── uPlot.min.css │ │ └── starter.html │ │ ├── css │ │ └── style.css │ │ └── img │ │ ├── cake.icon.png │ │ └── cake.icon.svg ├── autoload.php ├── bin │ ├── composer │ ├── composer.bat │ ├── jsonlint │ ├── jsonlint.bat │ ├── phinx │ ├── phinx.bat │ ├── php-parse │ ├── php-parse.bat │ ├── phpcbf │ ├── phpcbf.bat │ ├── phpcs │ ├── phpcs.bat │ ├── phpunit │ ├── phpunit.bat │ ├── validate-json │ └── validate-json.bat ├── brick │ └── varexporter │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── ExportException.php │ │ ├── Internal │ │ ├── GenericExporter.php │ │ ├── ObjectExporter.php │ │ └── ObjectExporter │ │ │ ├── AnyObjectExporter.php │ │ │ ├── ClosureExporter.php │ │ │ ├── ClosureExporter │ │ │ └── PrettyPrinter.php │ │ │ ├── EnumExporter.php │ │ │ ├── InternalClassExporter.php │ │ │ ├── SerializeExporter.php │ │ │ ├── SetStateExporter.php │ │ │ └── StdClassExporter.php │ │ └── VarExporter.php ├── cakedc │ ├── auth │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Docs │ │ │ ├── Documentation │ │ │ │ ├── Authentication.md │ │ │ │ ├── Authorization.md │ │ │ │ ├── MigrationGuide.md │ │ │ │ ├── OwnerRule.md │ │ │ │ ├── Rbac.md │ │ │ │ ├── SimpleRbacAuthorize.md │ │ │ │ ├── Social.md │ │ │ │ ├── SuperuserAuthorize.md │ │ │ │ └── Testing.md │ │ │ └── Home.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── auth.php │ │ │ ├── bootstrap.php │ │ │ └── permissions.php │ │ ├── phpstan.neon │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationService.php │ │ │ │ ├── DefaultOneTimePasswordAuthenticationChecker.php │ │ │ │ ├── DefaultU2fAuthenticationChecker.php │ │ │ │ ├── DefaultWebauthn2fAuthenticationChecker.php │ │ │ │ ├── Failure.php │ │ │ │ ├── FailureInterface.php │ │ │ │ ├── OneTimePasswordAuthenticationCheckerFactory.php │ │ │ │ ├── OneTimePasswordAuthenticationCheckerInterface.php │ │ │ │ ├── U2fAuthenticationCheckerFactory.php │ │ │ │ ├── U2fAuthenticationCheckerInterface.php │ │ │ │ ├── Webauthn2fAuthenticationCheckerFactory.php │ │ │ │ └── Webauthn2fAuthenticationCheckerInterface.php │ │ │ ├── Authenticator │ │ │ │ ├── CookieAuthenticator.php │ │ │ │ ├── FormAuthenticator.php │ │ │ │ ├── SocialAuthenticator.php │ │ │ │ └── TwoFactorAuthenticator.php │ │ │ ├── Controller │ │ │ │ └── Component │ │ │ │ │ └── OneTimePasswordAuthenticatorComponent.php │ │ │ ├── Exception │ │ │ │ ├── InvalidProviderException.php │ │ │ │ └── InvalidSettingsException.php │ │ │ ├── Identifier │ │ │ │ └── SocialIdentifier.php │ │ │ ├── Middleware │ │ │ │ ├── RbacMiddleware.php │ │ │ │ ├── SocialAuthMiddleware.php │ │ │ │ └── TwoFactorMiddleware.php │ │ │ ├── Plugin.php │ │ │ ├── Policy │ │ │ │ ├── CollectionPolicy.php │ │ │ │ ├── PolicyInterface.php │ │ │ │ ├── RbacPolicy.php │ │ │ │ └── SuperuserPolicy.php │ │ │ ├── Rbac │ │ │ │ ├── PermissionMatchResult.php │ │ │ │ ├── Permissions │ │ │ │ │ ├── AbstractProvider.php │ │ │ │ │ └── ConfigProvider.php │ │ │ │ ├── Rbac.php │ │ │ │ ├── RbacInterface.php │ │ │ │ └── Rules │ │ │ │ │ ├── AbstractRule.php │ │ │ │ │ ├── Owner.php │ │ │ │ │ ├── Rule.php │ │ │ │ │ └── RuleRegistry.php │ │ │ ├── Social │ │ │ │ ├── MapUser.php │ │ │ │ ├── Mapper │ │ │ │ │ ├── AbstractMapper.php │ │ │ │ │ ├── Amazon.php │ │ │ │ │ ├── Cognito.php │ │ │ │ │ ├── Facebook.php │ │ │ │ │ ├── Google.php │ │ │ │ │ ├── Instagram.php │ │ │ │ │ ├── LinkedIn.php │ │ │ │ │ ├── Pinterest.php │ │ │ │ │ ├── Tumblr.php │ │ │ │ │ └── Twitter.php │ │ │ │ ├── ProviderConfig.php │ │ │ │ └── Service │ │ │ │ │ ├── OAuth1Service.php │ │ │ │ │ ├── OAuth2Service.php │ │ │ │ │ ├── OAuthServiceAbstract.php │ │ │ │ │ ├── ServiceFactory.php │ │ │ │ │ └── ServiceInterface.php │ │ │ ├── Test │ │ │ │ └── BaseTestTrait.php │ │ │ └── Traits │ │ │ │ ├── IsAuthorizedTrait.php │ │ │ │ └── ReCaptchaTrait.php │ │ └── tests │ │ │ ├── App │ │ │ ├── Auth │ │ │ │ └── Rule │ │ │ │ │ └── SampleRule.php │ │ │ ├── Controller │ │ │ │ └── AppController.php │ │ │ └── Model │ │ │ │ └── Entity │ │ │ │ └── User.php │ │ │ ├── Fixture │ │ │ ├── PostsFixture.php │ │ │ ├── PostsUsersFixture.php │ │ │ ├── SocialAccountsFixture.php │ │ │ └── UsersFixture.php │ │ │ ├── TestApplication.php │ │ │ ├── TestCase │ │ │ ├── Auth │ │ │ │ └── Rbac │ │ │ │ │ └── PermissionMatchResultTest.php │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationServiceTest.php │ │ │ │ ├── DefaultOneTimePasswordAuthenticationCheckerTest.php │ │ │ │ ├── DefaultU2fAuthenticationCheckerTest.php │ │ │ │ ├── DefaultWebauthn2fAuthenticationCheckerTest.php │ │ │ │ ├── FailureTest.php │ │ │ │ ├── OneTimePasswordAuthenticationCheckerFactoryTest.php │ │ │ │ ├── U2fAuthenticationCheckerFactoryTest.php │ │ │ │ └── Webauthn2fAuthenticationCheckerFactoryTest.php │ │ │ ├── Authenticator │ │ │ │ ├── CookieAuthenticatorTest.php │ │ │ │ ├── FormAuthenticatorTest.php │ │ │ │ ├── SocialAuthenticatorTest.php │ │ │ │ └── TwoFactorAuthenticatorTest.php │ │ │ ├── Controller │ │ │ │ └── Component │ │ │ │ │ └── OneTimePasswordAuthenticatorComponentTest.php │ │ │ ├── Exception │ │ │ │ ├── InvalidProviderExceptionTest.php │ │ │ │ └── InvalidSettingsExceptionTest.php │ │ │ ├── Identifier │ │ │ │ └── SocialIdentifierTest.php │ │ │ ├── Middleware │ │ │ │ ├── RbacMiddlewareTest.php │ │ │ │ ├── SocialAuthMiddlewareTest.php │ │ │ │ └── TwoFactorMiddlewareTest.php │ │ │ ├── Policy │ │ │ │ ├── CollectionPolicyTest.php │ │ │ │ ├── RbacPolicyTest.php │ │ │ │ └── SuperuserPolicyTest.php │ │ │ ├── Rbac │ │ │ │ ├── Permissions │ │ │ │ │ └── ConfigProviderTest.php │ │ │ │ ├── RbacTest.php │ │ │ │ └── Rules │ │ │ │ │ ├── OwnerTest.php │ │ │ │ │ └── RuleRegistryTest.php │ │ │ ├── Social │ │ │ │ ├── MapUserTest.php │ │ │ │ ├── Mapper │ │ │ │ │ ├── CognitoTest.php │ │ │ │ │ ├── FacebookTest.php │ │ │ │ │ ├── GoogleTest.php │ │ │ │ │ ├── InstagramTest.php │ │ │ │ │ ├── LinkedInTest.php │ │ │ │ │ └── TwitterTest.php │ │ │ │ ├── ProviderConfigTest.php │ │ │ │ └── Service │ │ │ │ │ ├── OAuth1ServiceTest.php │ │ │ │ │ ├── OAuth2ServiceTest.php │ │ │ │ │ └── ServiceFactoryTest.php │ │ │ └── Traits │ │ │ │ └── IsAuthorizedTraitTest.php │ │ │ ├── bootstrap.php │ │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── existing.php │ │ │ └── routes.php │ │ │ └── schema.php │ └── users │ │ ├── .github │ │ ├── codecov.yml │ │ └── workflows │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── .semver │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Docs │ │ ├── Documentation │ │ │ ├── AuthLinkHelper.md │ │ │ ├── Authentication.md │ │ │ ├── Authorization.md │ │ │ ├── Configuration.md │ │ │ ├── Events.md │ │ │ ├── Extending-the-Plugin.md │ │ │ ├── Installation.md │ │ │ ├── InterceptLoginAction.md │ │ │ ├── Migration │ │ │ │ ├── 4.x-5.0.md │ │ │ │ ├── 6.x-7.0.md │ │ │ │ └── 8.x-9.0.md │ │ │ ├── OneTimePasswordAuthenticator │ │ │ │ ├── App.png │ │ │ │ └── FirstLogin.png │ │ │ ├── Overview.md │ │ │ ├── Permissions.md │ │ │ ├── SocialAuthentication.md │ │ │ ├── Translations.md │ │ │ ├── Two-Factor-Authenticator.md │ │ │ ├── UserHelper.md │ │ │ └── Yubico-U2F.md │ │ └── Home.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ ├── Migrations │ │ │ ├── 20150513201111_initial.php │ │ │ ├── 20161031101316_AddSecretToUsers.php │ │ │ ├── 20190208174112_AddAdditionalDataToUsers.php │ │ │ ├── 20210929202041_AddLastLoginToUsers.php │ │ │ └── schema-dump-default.lock │ │ ├── bootstrap.php │ │ ├── routes.php │ │ └── users.php │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── resources │ │ └── locales │ │ │ ├── ar_OM │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── de_DE │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── es │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── fr_FR │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── hu_HU │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── it_IT │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── pl │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── pt_BR │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── sv │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── tr_TR │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ ├── uk │ │ │ ├── users.mo │ │ │ └── users.po │ │ │ └── users.pot │ │ ├── src │ │ ├── Authenticator │ │ │ ├── SocialAuthTrait.php │ │ │ ├── SocialAuthenticator.php │ │ │ └── SocialPendingEmailAuthenticator.php │ │ ├── Controller │ │ │ ├── AppController.php │ │ │ ├── Component │ │ │ │ ├── LoginComponent.php │ │ │ │ └── SetupComponent.php │ │ │ ├── SocialAccountsController.php │ │ │ ├── Traits │ │ │ │ ├── CustomUsersTableTrait.php │ │ │ │ ├── LinkSocialTrait.php │ │ │ │ ├── LoginTrait.php │ │ │ │ ├── OneTimePasswordVerifyTrait.php │ │ │ │ ├── PasswordManagementTrait.php │ │ │ │ ├── ProfileTrait.php │ │ │ │ ├── ReCaptchaTrait.php │ │ │ │ ├── RegisterTrait.php │ │ │ │ ├── SimpleCrudTrait.php │ │ │ │ ├── SocialTrait.php │ │ │ │ ├── U2fTrait.php │ │ │ │ ├── UserValidationTrait.php │ │ │ │ └── Webauthn2faTrait.php │ │ │ └── UsersController.php │ │ ├── Exception │ │ │ ├── AccountAlreadyActiveException.php │ │ │ ├── AccountNotActiveException.php │ │ │ ├── MissingEmailException.php │ │ │ ├── SocialAuthenticationException.php │ │ │ ├── TokenExpiredException.php │ │ │ ├── UserAlreadyActiveException.php │ │ │ ├── UserNotActiveException.php │ │ │ ├── UserNotFoundException.php │ │ │ └── WrongPasswordException.php │ │ ├── Identifier │ │ │ └── SocialIdentifier.php │ │ ├── Loader │ │ │ ├── AuthenticationServiceLoader.php │ │ │ ├── AuthorizationServiceLoader.php │ │ │ ├── LoginComponentLoader.php │ │ │ └── MiddlewareQueueLoader.php │ │ ├── Mailer │ │ │ └── UsersMailer.php │ │ ├── Middleware │ │ │ ├── SocialAuthMiddleware.php │ │ │ ├── SocialEmailMiddleware.php │ │ │ └── UnauthorizedHandler │ │ │ │ └── DefaultRedirectHandler.php │ │ ├── Model │ │ │ ├── Behavior │ │ │ │ ├── AuthFinderBehavior.php │ │ │ │ ├── BaseTokenBehavior.php │ │ │ │ ├── LinkSocialBehavior.php │ │ │ │ ├── PasswordBehavior.php │ │ │ │ ├── RegisterBehavior.php │ │ │ │ ├── SocialAccountBehavior.php │ │ │ │ └── SocialBehavior.php │ │ │ ├── Entity │ │ │ │ ├── SocialAccount.php │ │ │ │ └── User.php │ │ │ └── Table │ │ │ │ ├── SocialAccountsTable.php │ │ │ │ └── UsersTable.php │ │ ├── Plugin.php │ │ ├── Provider │ │ │ ├── AuthenticationServiceProvider.php │ │ │ ├── AuthorizationServiceProvider.php │ │ │ └── ServiceProviderLoaderTrait.php │ │ ├── Shell │ │ │ └── UsersShell.php │ │ ├── Traits │ │ │ └── RandomStringTrait.php │ │ ├── Utility │ │ │ └── UsersUrl.php │ │ ├── View │ │ │ └── Helper │ │ │ │ ├── AuthLinkHelper.php │ │ │ │ └── UserHelper.php │ │ └── Webauthn │ │ │ ├── AuthenticateAdapter.php │ │ │ ├── BaseAdapter.php │ │ │ ├── RegisterAdapter.php │ │ │ └── Repository │ │ │ └── UserCredentialSourceRepository.php │ │ ├── templates │ │ ├── Users │ │ │ ├── add.php │ │ │ ├── change_password.php │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ ├── login.php │ │ │ ├── profile.php │ │ │ ├── register.php │ │ │ ├── request_reset_password.php │ │ │ ├── resend_token_validation.php │ │ │ ├── social_email.php │ │ │ ├── u2f_authenticate.php │ │ │ ├── u2f_register.php │ │ │ ├── verify.php │ │ │ ├── view.php │ │ │ └── webauthn2fa.php │ │ ├── email │ │ │ ├── html │ │ │ │ ├── reset_password.php │ │ │ │ ├── social_account_validation.php │ │ │ │ └── validation.php │ │ │ └── text │ │ │ │ ├── reset_password.php │ │ │ │ ├── social_account_validation.php │ │ │ │ └── validation.php │ │ └── layout │ │ │ └── email │ │ │ ├── html │ │ │ └── default.php │ │ │ └── text │ │ │ └── default.php │ │ ├── tests │ │ ├── Fixture │ │ │ ├── PostsFixture.php │ │ │ ├── PostsUsersFixture.php │ │ │ ├── SocialAccountsFixture.php │ │ │ └── UsersFixture.php │ │ ├── TestCase │ │ │ ├── Authenticator │ │ │ │ ├── SocialAuthenticatorTest.php │ │ │ │ └── SocialPendingEmailAuthenticatorTest.php │ │ │ ├── Controller │ │ │ │ ├── Component │ │ │ │ │ └── SetupComponentTest.php │ │ │ │ ├── SocialAccountsControllerTest.php │ │ │ │ ├── Traits │ │ │ │ │ ├── BaseTraitTest.php │ │ │ │ │ ├── CustomUsersTableTraitTest.php │ │ │ │ │ ├── Integration │ │ │ │ │ │ ├── LoginTraitIntegrationTest.php │ │ │ │ │ │ ├── PasswordManagementTraitIntegrationTest.php │ │ │ │ │ │ ├── ProfileTraitIntegrationTest.php │ │ │ │ │ │ ├── RegisterTraitIntegrationTest.php │ │ │ │ │ │ └── SimpleCrudTraitIntegrationTest.php │ │ │ │ │ ├── LinkSocialTraitTest.php │ │ │ │ │ ├── LoginTraitTest.php │ │ │ │ │ ├── OneTimePasswordVerifyTraitTest.php │ │ │ │ │ ├── PasswordManagementTraitTest.php │ │ │ │ │ ├── ProfileTraitTest.php │ │ │ │ │ ├── ReCaptchaTraitTest.php │ │ │ │ │ ├── RegisterTraitTest.php │ │ │ │ │ ├── SimpleCrudTraitTest.php │ │ │ │ │ ├── SocialTraitTest.php │ │ │ │ │ ├── U2fTraitTest.php │ │ │ │ │ ├── UserValidationTraitTest.php │ │ │ │ │ └── Webauthn2faTraitTest.php │ │ │ │ └── UsersControllerTest.php │ │ │ ├── Exception │ │ │ │ ├── AccountAlreadyActiveExceptionTest.php │ │ │ │ ├── AccountNotActiveExceptionTest.php │ │ │ │ ├── MissingEmailExceptionTest.php │ │ │ │ ├── TokenExpiredExceptionTest.php │ │ │ │ ├── UserAlreadyActiveExceptionTest.php │ │ │ │ ├── UserNotActiveExceptionTest.php │ │ │ │ ├── UserNotFoundExceptionTest.php │ │ │ │ └── WrongPasswordExceptionTest.php │ │ │ ├── Identifier │ │ │ │ └── SocialIdentifierTest.php │ │ │ ├── Mailer │ │ │ │ └── UsersMailerTest.php │ │ │ ├── Middleware │ │ │ │ ├── SocialAuthMiddlewareTest.php │ │ │ │ └── SocialEmailMiddlewareTest.php │ │ │ ├── Model │ │ │ │ ├── Behavior │ │ │ │ │ ├── AuthFinderBehaviorTest.php │ │ │ │ │ ├── LinkSocialBehaviorTest.php │ │ │ │ │ ├── PasswordBehaviorTest.php │ │ │ │ │ ├── RegisterBehaviorTest.php │ │ │ │ │ ├── SocialAccountBehaviorTest.php │ │ │ │ │ └── SocialBehaviorTest.php │ │ │ │ ├── Entity │ │ │ │ │ └── UserTest.php │ │ │ │ └── Table │ │ │ │ │ ├── SocialAccountsTableTest.php │ │ │ │ │ └── UsersTableTest.php │ │ │ ├── PluginTest.php │ │ │ ├── Provider │ │ │ │ ├── AuthenticationServiceProviderTest.php │ │ │ │ └── AuthorizationServiceProviderTest.php │ │ │ ├── Shell │ │ │ │ └── UsersShellTest.php │ │ │ ├── Traits │ │ │ │ └── RandomStringTraitTest.php │ │ │ ├── Utility │ │ │ │ └── UsersUrlTest.php │ │ │ ├── View │ │ │ │ └── Helper │ │ │ │ │ ├── AuthLinkHelperTest.php │ │ │ │ │ └── UserHelperTest.php │ │ │ └── Webauthn │ │ │ │ ├── AuthenticateAdapterTest.php │ │ │ │ ├── RegisterAdapterTest.php │ │ │ │ └── Repository │ │ │ │ └── UserCredentialSourceRepositoryTest.php │ │ ├── bootstrap.php │ │ ├── schema.php │ │ └── test_app │ │ │ ├── TestApp │ │ │ ├── Application.php │ │ │ ├── Controller │ │ │ │ └── AppController.php │ │ │ ├── Http │ │ │ │ └── TestRequestHandler.php │ │ │ └── Mailer │ │ │ │ └── OverrideMailer.php │ │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ ├── routes.php │ │ │ └── users.php │ │ │ └── templates │ │ │ ├── Error │ │ │ ├── empty │ │ │ ├── error400.php │ │ │ └── error500.php │ │ │ ├── Pages │ │ │ └── home.php │ │ │ ├── element │ │ │ └── flash │ │ │ │ ├── default.php │ │ │ │ └── error.php │ │ │ ├── email │ │ │ ├── html │ │ │ │ └── default.php │ │ │ └── text │ │ │ │ └── default.php │ │ │ └── layout │ │ │ ├── ajax.php │ │ │ ├── default.php │ │ │ ├── email │ │ │ ├── html │ │ │ │ └── default.php │ │ │ └── text │ │ │ │ └── default.php │ │ │ ├── error.php │ │ │ ├── js │ │ │ └── default.php │ │ │ └── rss │ │ │ └── default.php │ │ └── webroot │ │ ├── empty │ │ ├── img │ │ └── avatar_placeholder.png │ │ └── js │ │ ├── u2f-api.js │ │ └── webauthn.js ├── cakephp-plugins.php ├── cakephp │ ├── authentication │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── authentication-component.rst │ │ │ │ ├── authenticators.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── identifiers.rst │ │ │ │ ├── identity-object.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── migration-from-the-authcomponent.rst │ │ │ │ ├── password-hashers.rst │ │ │ │ ├── testing.rst │ │ │ │ ├── url-checkers.rst │ │ │ │ └── view-helper.rst │ │ │ ├── es │ │ │ │ ├── authentication-component.rst │ │ │ │ ├── authenticators.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── identifiers.rst │ │ │ │ ├── identity-object.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ └── password-hashers.rst │ │ │ ├── fr │ │ │ │ ├── authentication-component.rst │ │ │ │ ├── authenticators.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── identifiers.rst │ │ │ │ ├── identity-object.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── migration-from-the-authcomponent.rst │ │ │ │ ├── password-hashers.rst │ │ │ │ ├── testing.rst │ │ │ │ ├── url-checkers.rst │ │ │ │ └── view-helper.rst │ │ │ └── ja │ │ │ │ ├── authentication-component.rst │ │ │ │ ├── authenticators.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── identifiers.rst │ │ │ │ ├── identity-object.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── migration-from-the-authcomponent.rst │ │ │ │ ├── password-hashers.rst │ │ │ │ ├── testing.rst │ │ │ │ ├── url-checkers.rst │ │ │ │ └── view-helper.rst │ │ ├── phpstan.neon │ │ ├── phpunit.xml.dist │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── readme.md │ │ └── src │ │ │ ├── AbstractCollection.php │ │ │ ├── AuthenticationService.php │ │ │ ├── AuthenticationServiceInterface.php │ │ │ ├── AuthenticationServiceProviderInterface.php │ │ │ ├── Authenticator │ │ │ ├── AbstractAuthenticator.php │ │ │ ├── AuthenticationRequiredException.php │ │ │ ├── AuthenticatorCollection.php │ │ │ ├── AuthenticatorInterface.php │ │ │ ├── CookieAuthenticator.php │ │ │ ├── FormAuthenticator.php │ │ │ ├── HttpBasicAuthenticator.php │ │ │ ├── HttpDigestAuthenticator.php │ │ │ ├── JwtAuthenticator.php │ │ │ ├── PersistenceInterface.php │ │ │ ├── Result.php │ │ │ ├── ResultInterface.php │ │ │ ├── SessionAuthenticator.php │ │ │ ├── StatelessInterface.php │ │ │ ├── TokenAuthenticator.php │ │ │ └── UnauthenticatedException.php │ │ │ ├── Controller │ │ │ └── Component │ │ │ │ └── AuthenticationComponent.php │ │ │ ├── Identifier │ │ │ ├── AbstractIdentifier.php │ │ │ ├── CallbackIdentifier.php │ │ │ ├── IdentifierCollection.php │ │ │ ├── IdentifierInterface.php │ │ │ ├── JwtSubjectIdentifier.php │ │ │ ├── Ldap │ │ │ │ ├── AdapterInterface.php │ │ │ │ └── ExtensionAdapter.php │ │ │ ├── LdapIdentifier.php │ │ │ ├── PasswordIdentifier.php │ │ │ ├── Resolver │ │ │ │ ├── OrmResolver.php │ │ │ │ ├── ResolverAwareTrait.php │ │ │ │ └── ResolverInterface.php │ │ │ └── TokenIdentifier.php │ │ │ ├── Identity.php │ │ │ ├── IdentityInterface.php │ │ │ ├── Middleware │ │ │ └── AuthenticationMiddleware.php │ │ │ ├── PasswordHasher │ │ │ ├── AbstractPasswordHasher.php │ │ │ ├── DefaultPasswordHasher.php │ │ │ ├── FallbackPasswordHasher.php │ │ │ ├── LegacyPasswordHasher.php │ │ │ ├── PasswordHasherFactory.php │ │ │ ├── PasswordHasherInterface.php │ │ │ └── PasswordHasherTrait.php │ │ │ ├── Plugin.php │ │ │ ├── UrlChecker │ │ │ ├── CakeRouterUrlChecker.php │ │ │ ├── DefaultUrlChecker.php │ │ │ ├── UrlCheckerInterface.php │ │ │ └── UrlCheckerTrait.php │ │ │ └── View │ │ │ └── Helper │ │ │ └── IdentityHelper.php │ ├── authorization │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── 2-0-migration-guide.rst │ │ │ │ ├── checking-authorization.rst │ │ │ │ ├── component.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── policies.rst │ │ │ │ ├── policy-resolvers.rst │ │ │ │ └── request-authorization-middleware.rst │ │ │ ├── es │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── index.rst │ │ │ │ └── policies.rst │ │ │ └── fr │ │ │ │ ├── 2-0-migration-guide.rst │ │ │ │ ├── checking-authorization.rst │ │ │ │ ├── component.rst │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── index.rst │ │ │ │ ├── middleware.rst │ │ │ │ ├── policies.rst │ │ │ │ ├── policy-resolvers.rst │ │ │ │ └── request-authorization-middleware.rst │ │ ├── phpstan.neon │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── readme.md │ │ ├── run.sh │ │ ├── src │ │ │ ├── AuthorizationService.php │ │ │ ├── AuthorizationServiceInterface.php │ │ │ ├── AuthorizationServiceProviderInterface.php │ │ │ ├── Command │ │ │ │ └── PolicyCommand.php │ │ │ ├── Controller │ │ │ │ └── Component │ │ │ │ │ └── AuthorizationComponent.php │ │ │ ├── Exception │ │ │ │ ├── AuthorizationRequiredException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ForbiddenException.php │ │ │ │ └── MissingIdentityException.php │ │ │ ├── Identity.php │ │ │ ├── IdentityDecorator.php │ │ │ ├── IdentityInterface.php │ │ │ ├── Middleware │ │ │ │ ├── AuthorizationMiddleware.php │ │ │ │ ├── RequestAuthorizationMiddleware.php │ │ │ │ └── UnauthorizedHandler │ │ │ │ │ ├── CakeRedirectHandler.php │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ ├── HandlerFactory.php │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ └── RedirectHandler.php │ │ │ ├── Plugin.php │ │ │ └── Policy │ │ │ │ ├── BeforePolicyInterface.php │ │ │ │ ├── Exception │ │ │ │ ├── MissingMethodException.php │ │ │ │ └── MissingPolicyException.php │ │ │ │ ├── MapResolver.php │ │ │ │ ├── OrmResolver.php │ │ │ │ ├── RequestPolicyInterface.php │ │ │ │ ├── ResolverCollection.php │ │ │ │ ├── ResolverInterface.php │ │ │ │ ├── Result.php │ │ │ │ └── ResultInterface.php │ │ └── templates │ │ │ └── bake │ │ │ ├── element │ │ │ └── entity_methods.twig │ │ │ └── policy.twig │ ├── bake │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs.Dockerfile │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ │ ├── es │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ │ ├── fr │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ │ ├── ja │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ │ ├── pt │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ │ └── ru │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ ├── development.rst │ │ │ │ ├── index.rst │ │ │ │ └── usage.rst │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── CodeGen │ │ │ │ ├── ClassBuilder.php │ │ │ │ ├── CodeParser.php │ │ │ │ ├── FileBuilder.php │ │ │ │ ├── ImportHelper.php │ │ │ │ ├── ParseException.php │ │ │ │ ├── ParsedClass.php │ │ │ │ └── ParsedFile.php │ │ │ ├── Command │ │ │ │ ├── AllCommand.php │ │ │ │ ├── BakeCommand.php │ │ │ │ ├── BehaviorCommand.php │ │ │ │ ├── CellCommand.php │ │ │ │ ├── CommandCommand.php │ │ │ │ ├── CommandHelperCommand.php │ │ │ │ ├── ComponentCommand.php │ │ │ │ ├── ControllerAllCommand.php │ │ │ │ ├── ControllerCommand.php │ │ │ │ ├── EntryCommand.php │ │ │ │ ├── FixtureAllCommand.php │ │ │ │ ├── FixtureCommand.php │ │ │ │ ├── FormCommand.php │ │ │ │ ├── HelperCommand.php │ │ │ │ ├── MailerCommand.php │ │ │ │ ├── MiddlewareCommand.php │ │ │ │ ├── ModelAllCommand.php │ │ │ │ ├── ModelCommand.php │ │ │ │ ├── PluginCommand.php │ │ │ │ ├── ShellHelperCommand.php │ │ │ │ ├── SimpleBakeCommand.php │ │ │ │ ├── TemplateAllCommand.php │ │ │ │ ├── TemplateCommand.php │ │ │ │ └── TestCommand.php │ │ │ ├── Plugin.php │ │ │ ├── Shell │ │ │ │ └── Task │ │ │ │ │ ├── BakeTask.php │ │ │ │ │ └── SimpleBakeTask.php │ │ │ ├── Utility │ │ │ │ ├── CommonOptionsTrait.php │ │ │ │ ├── Model │ │ │ │ │ └── AssociationFilter.php │ │ │ │ ├── Process.php │ │ │ │ ├── SubsetSchemaCollection.php │ │ │ │ ├── TableScanner.php │ │ │ │ └── TemplateRenderer.php │ │ │ └── View │ │ │ │ ├── BakeView.php │ │ │ │ └── Helper │ │ │ │ ├── BakeHelper.php │ │ │ │ └── DocBlockHelper.php │ │ ├── templates │ │ │ └── bake │ │ │ │ ├── Command │ │ │ │ ├── command.twig │ │ │ │ └── helper.twig │ │ │ │ ├── Controller │ │ │ │ ├── component.twig │ │ │ │ └── controller.twig │ │ │ │ ├── Form │ │ │ │ └── form.twig │ │ │ │ ├── Mailer │ │ │ │ └── mailer.twig │ │ │ │ ├── Middleware │ │ │ │ └── middleware.twig │ │ │ │ ├── Model │ │ │ │ ├── behavior.twig │ │ │ │ ├── entity.twig │ │ │ │ └── table.twig │ │ │ │ ├── Plugin │ │ │ │ ├── .gitignore.twig │ │ │ │ ├── README.md.twig │ │ │ │ ├── composer.json.twig │ │ │ │ ├── phpunit.xml.dist.twig │ │ │ │ ├── src │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── AppController.php.twig │ │ │ │ │ └── Plugin.php.twig │ │ │ │ ├── tests │ │ │ │ │ ├── bootstrap.php.twig │ │ │ │ │ └── schema.sql.twig │ │ │ │ └── webroot │ │ │ │ │ └── .gitkeep.twig │ │ │ │ ├── Shell │ │ │ │ └── helper.twig │ │ │ │ ├── Template │ │ │ │ ├── add.twig │ │ │ │ ├── edit.twig │ │ │ │ ├── index.twig │ │ │ │ ├── login.twig │ │ │ │ └── view.twig │ │ │ │ ├── View │ │ │ │ ├── cell.twig │ │ │ │ └── helper.twig │ │ │ │ ├── element │ │ │ │ ├── Controller │ │ │ │ │ ├── add.twig │ │ │ │ │ ├── delete.twig │ │ │ │ │ ├── edit.twig │ │ │ │ │ ├── index.twig │ │ │ │ │ ├── login.twig │ │ │ │ │ ├── logout.twig │ │ │ │ │ └── view.twig │ │ │ │ ├── array_property.twig │ │ │ │ ├── file_header.twig │ │ │ │ └── form.twig │ │ │ │ ├── layout │ │ │ │ └── default.twig │ │ │ │ └── tests │ │ │ │ ├── fixture.twig │ │ │ │ └── test_case.twig │ │ └── tests │ │ │ ├── Fixture │ │ │ ├── ArticlesFixture.php │ │ │ ├── ArticlesTagsFixture.php │ │ │ ├── AuthorsFixture.php │ │ │ ├── BakeArticlesBakeTagsFixture.php │ │ │ ├── BakeArticlesFixture.php │ │ │ ├── BakeCarFixture.php │ │ │ ├── BakeCommentsFixture.php │ │ │ ├── BakeTagsFixture.php │ │ │ ├── BakeTemplateAuthorsFixture.php │ │ │ ├── BakeTemplateProfilesFixture.php │ │ │ ├── BakeTemplateRolesFixture.php │ │ │ ├── BinaryTestsFixture.php │ │ │ ├── CategoriesFixture.php │ │ │ ├── CategoriesProductsFixture.php │ │ │ ├── CategoryThreadsFixture.php │ │ │ ├── CommentsFixture.php │ │ │ ├── DatatypesFixture.php │ │ │ ├── HiddenFieldsFixture.php │ │ │ ├── InvitationsFixture.php │ │ │ ├── NumberTreesFixture.php │ │ │ ├── OldProductsFixture.php │ │ │ ├── PostsFixture.php │ │ │ ├── ProductVersionsFixture.php │ │ │ ├── ProductsFixture.php │ │ │ ├── TagsFixture.php │ │ │ ├── TodoItemsFixture.php │ │ │ ├── TodoItemsTodoLabelsFixture.php │ │ │ ├── TodoLabelsFixture.php │ │ │ ├── TodoTasksFixture.php │ │ │ ├── UniqueFieldsFixture.php │ │ │ └── UsersFixture.php │ │ │ ├── bootstrap.php │ │ │ └── schema.php │ ├── cakephp-codesniffer │ │ ├── .github │ │ │ ├── codecov.yml │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── CakePHP │ │ │ ├── Sniffs │ │ │ │ ├── Classes │ │ │ │ │ └── ReturnTypeHintSniff.php │ │ │ │ ├── Commenting │ │ │ │ │ ├── DocBlockAlignmentSniff.php │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ └── InheritDocSniff.php │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── ControlStructuresSniff.php │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ └── WhileStructuresSniff.php │ │ │ │ ├── Formatting │ │ │ │ │ └── BlankLineBeforeReturnSniff.php │ │ │ │ ├── Functions │ │ │ │ │ └── ClosureDeclarationSniff.php │ │ │ │ ├── NamingConventions │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ └── ValidTraitNameSniff.php │ │ │ │ ├── PHP │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ └── SingleQuoteSniff.php │ │ │ │ └── WhiteSpace │ │ │ │ │ ├── EmptyLinesSniff.php │ │ │ │ │ ├── FunctionCallSpacingSniff.php │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ └── TabAndSpaceSniff.php │ │ │ └── ruleset.xml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── docs │ │ │ ├── README.md │ │ │ └── generate.php │ ├── cakephp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION.txt │ │ ├── composer.json │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ └── config.php │ │ ├── src │ │ │ ├── Auth │ │ │ │ ├── AbstractPasswordHasher.php │ │ │ │ ├── BaseAuthenticate.php │ │ │ │ ├── BaseAuthorize.php │ │ │ │ ├── BasicAuthenticate.php │ │ │ │ ├── ControllerAuthorize.php │ │ │ │ ├── DefaultPasswordHasher.php │ │ │ │ ├── DigestAuthenticate.php │ │ │ │ ├── FallbackPasswordHasher.php │ │ │ │ ├── FormAuthenticate.php │ │ │ │ ├── PasswordHasherFactory.php │ │ │ │ ├── Storage │ │ │ │ │ ├── MemoryStorage.php │ │ │ │ │ ├── SessionStorage.php │ │ │ │ │ └── StorageInterface.php │ │ │ │ └── WeakPasswordHasher.php │ │ │ ├── Cache │ │ │ │ ├── Cache.php │ │ │ │ ├── CacheEngine.php │ │ │ │ ├── CacheEngineInterface.php │ │ │ │ ├── CacheRegistry.php │ │ │ │ ├── Engine │ │ │ │ │ ├── ApcuEngine.php │ │ │ │ │ ├── ArrayEngine.php │ │ │ │ │ ├── FileEngine.php │ │ │ │ │ ├── MemcachedEngine.php │ │ │ │ │ ├── NullEngine.php │ │ │ │ │ ├── RedisEngine.php │ │ │ │ │ └── WincacheEngine.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── Collection │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionInterface.php │ │ │ │ ├── CollectionTrait.php │ │ │ │ ├── ExtractTrait.php │ │ │ │ ├── Iterator │ │ │ │ │ ├── BufferedIterator.php │ │ │ │ │ ├── ExtractIterator.php │ │ │ │ │ ├── FilterIterator.php │ │ │ │ │ ├── InsertIterator.php │ │ │ │ │ ├── MapReduce.php │ │ │ │ │ ├── NestIterator.php │ │ │ │ │ ├── NoChildrenIterator.php │ │ │ │ │ ├── ReplaceIterator.php │ │ │ │ │ ├── SortIterator.php │ │ │ │ │ ├── StoppableIterator.php │ │ │ │ │ ├── TreeIterator.php │ │ │ │ │ ├── TreePrinter.php │ │ │ │ │ ├── UnfoldIterator.php │ │ │ │ │ └── ZipIterator.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Command │ │ │ │ ├── CacheClearCommand.php │ │ │ │ ├── CacheClearallCommand.php │ │ │ │ ├── CacheListCommand.php │ │ │ │ ├── Command.php │ │ │ │ ├── CompletionCommand.php │ │ │ │ ├── I18nCommand.php │ │ │ │ ├── I18nExtractCommand.php │ │ │ │ ├── I18nInitCommand.php │ │ │ │ ├── PluginAssetsCopyCommand.php │ │ │ │ ├── PluginAssetsRemoveCommand.php │ │ │ │ ├── PluginAssetsSymlinkCommand.php │ │ │ │ ├── PluginAssetsTrait.php │ │ │ │ ├── PluginLoadCommand.php │ │ │ │ ├── PluginLoadedCommand.php │ │ │ │ ├── PluginUnloadCommand.php │ │ │ │ ├── RoutesCheckCommand.php │ │ │ │ ├── RoutesCommand.php │ │ │ │ ├── RoutesGenerateCommand.php │ │ │ │ ├── SchemacacheBuildCommand.php │ │ │ │ ├── SchemacacheClearCommand.php │ │ │ │ ├── ServerCommand.php │ │ │ │ └── VersionCommand.php │ │ │ ├── Console │ │ │ │ ├── Arguments.php │ │ │ │ ├── BaseCommand.php │ │ │ │ ├── Command.php │ │ │ │ ├── Command │ │ │ │ │ └── HelpCommand.php │ │ │ │ ├── CommandCollection.php │ │ │ │ ├── CommandCollectionAwareInterface.php │ │ │ │ ├── CommandFactory.php │ │ │ │ ├── CommandFactoryInterface.php │ │ │ │ ├── CommandInterface.php │ │ │ │ ├── CommandRunner.php │ │ │ │ ├── CommandScanner.php │ │ │ │ ├── ConsoleErrorHandler.php │ │ │ │ ├── ConsoleInput.php │ │ │ │ ├── ConsoleInputArgument.php │ │ │ │ ├── ConsoleInputOption.php │ │ │ │ ├── ConsoleInputSubcommand.php │ │ │ │ ├── ConsoleIo.php │ │ │ │ ├── ConsoleOptionParser.php │ │ │ │ ├── ConsoleOutput.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConsoleException.php │ │ │ │ │ ├── MissingHelperException.php │ │ │ │ │ ├── MissingOptionException.php │ │ │ │ │ ├── MissingShellException.php │ │ │ │ │ ├── MissingShellMethodException.php │ │ │ │ │ ├── MissingTaskException.php │ │ │ │ │ └── StopException.php │ │ │ │ ├── HelpFormatter.php │ │ │ │ ├── Helper.php │ │ │ │ ├── HelperRegistry.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── Shell.php │ │ │ │ ├── ShellDispatcher.php │ │ │ │ ├── TaskRegistry.php │ │ │ │ ├── TestSuite │ │ │ │ │ ├── ConsoleIntegrationTestTrait.php │ │ │ │ │ ├── Constraint │ │ │ │ │ │ ├── ContentsBase.php │ │ │ │ │ │ ├── ContentsContain.php │ │ │ │ │ │ ├── ContentsContainRow.php │ │ │ │ │ │ ├── ContentsEmpty.php │ │ │ │ │ │ ├── ContentsNotContain.php │ │ │ │ │ │ ├── ContentsRegExp.php │ │ │ │ │ │ └── ExitCode.php │ │ │ │ │ ├── LegacyCommandRunner.php │ │ │ │ │ ├── LegacyShellDispatcher.php │ │ │ │ │ ├── MissingConsoleInputException.php │ │ │ │ │ ├── StubConsoleInput.php │ │ │ │ │ └── StubConsoleOutput.php │ │ │ │ └── composer.json │ │ │ ├── Controller │ │ │ │ ├── Component.php │ │ │ │ ├── Component │ │ │ │ │ ├── AuthComponent.php │ │ │ │ │ ├── CheckHttpCacheComponent.php │ │ │ │ │ ├── FlashComponent.php │ │ │ │ │ ├── FormProtectionComponent.php │ │ │ │ │ ├── PaginatorComponent.php │ │ │ │ │ ├── RequestHandlerComponent.php │ │ │ │ │ └── SecurityComponent.php │ │ │ │ ├── ComponentRegistry.php │ │ │ │ ├── Controller.php │ │ │ │ ├── ControllerFactory.php │ │ │ │ ├── ErrorController.php │ │ │ │ └── Exception │ │ │ │ │ ├── AuthSecurityException.php │ │ │ │ │ ├── InvalidParameterException.php │ │ │ │ │ ├── MissingActionException.php │ │ │ │ │ ├── MissingComponentException.php │ │ │ │ │ └── SecurityException.php │ │ │ ├── Core │ │ │ │ ├── App.php │ │ │ │ ├── BasePlugin.php │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── Configure.php │ │ │ │ ├── Configure │ │ │ │ │ ├── ConfigEngineInterface.php │ │ │ │ │ ├── Engine │ │ │ │ │ │ ├── IniConfig.php │ │ │ │ │ │ ├── JsonConfig.php │ │ │ │ │ │ └── PhpConfig.php │ │ │ │ │ └── FileConfigTrait.php │ │ │ │ ├── ConsoleApplicationInterface.php │ │ │ │ ├── Container.php │ │ │ │ ├── ContainerApplicationInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ ├── ConventionsTrait.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CakeException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── MissingPluginException.php │ │ │ │ ├── HttpApplicationInterface.php │ │ │ │ ├── InstanceConfigTrait.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── ObjectRegistry.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── PluginApplicationInterface.php │ │ │ │ ├── PluginCollection.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── README.md │ │ │ │ ├── Retry │ │ │ │ │ ├── CommandRetry.php │ │ │ │ │ └── RetryStrategyInterface.php │ │ │ │ ├── ServiceConfig.php │ │ │ │ ├── ServiceProvider.php │ │ │ │ ├── StaticConfigTrait.php │ │ │ │ ├── TestSuite │ │ │ │ │ └── ContainerStubTrait.php │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Database │ │ │ │ ├── Connection.php │ │ │ │ ├── ConstraintsInterface.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ │ ├── Mysql.php │ │ │ │ │ ├── Postgres.php │ │ │ │ │ ├── SqlDialectTrait.php │ │ │ │ │ ├── Sqlite.php │ │ │ │ │ ├── Sqlserver.php │ │ │ │ │ └── TupleComparisonTranslatorTrait.php │ │ │ │ ├── DriverInterface.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── DatabaseException.php │ │ │ │ │ ├── MissingConnectionException.php │ │ │ │ │ ├── MissingDriverException.php │ │ │ │ │ ├── MissingExtensionException.php │ │ │ │ │ └── NestedTransactionRollbackException.php │ │ │ │ ├── Expression │ │ │ │ │ ├── AggregateExpression.php │ │ │ │ │ ├── BetweenExpression.php │ │ │ │ │ ├── CaseExpression.php │ │ │ │ │ ├── CaseExpressionTrait.php │ │ │ │ │ ├── CaseStatementExpression.php │ │ │ │ │ ├── CommonTableExpression.php │ │ │ │ │ ├── Comparison.php │ │ │ │ │ ├── ComparisonExpression.php │ │ │ │ │ ├── FieldInterface.php │ │ │ │ │ ├── FieldTrait.php │ │ │ │ │ ├── FunctionExpression.php │ │ │ │ │ ├── IdentifierExpression.php │ │ │ │ │ ├── OrderByExpression.php │ │ │ │ │ ├── OrderClauseExpression.php │ │ │ │ │ ├── QueryExpression.php │ │ │ │ │ ├── StringExpression.php │ │ │ │ │ ├── TupleComparison.php │ │ │ │ │ ├── UnaryExpression.php │ │ │ │ │ ├── ValuesExpression.php │ │ │ │ │ ├── WhenThenExpression.php │ │ │ │ │ ├── WindowExpression.php │ │ │ │ │ └── WindowInterface.php │ │ │ │ ├── ExpressionInterface.php │ │ │ │ ├── FieldTypeConverter.php │ │ │ │ ├── FunctionsBuilder.php │ │ │ │ ├── IdentifierQuoter.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Log │ │ │ │ │ ├── LoggedQuery.php │ │ │ │ │ ├── LoggingStatement.php │ │ │ │ │ └── QueryLogger.php │ │ │ │ ├── PostgresCompiler.php │ │ │ │ ├── Query.php │ │ │ │ ├── QueryCompiler.php │ │ │ │ ├── README.md │ │ │ │ ├── Retry │ │ │ │ │ ├── ErrorCodeWaitStrategy.php │ │ │ │ │ └── ReconnectStrategy.php │ │ │ │ ├── Schema │ │ │ │ │ ├── BaseSchema.php │ │ │ │ │ ├── CachedCollection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── CollectionInterface.php │ │ │ │ │ ├── MysqlSchema.php │ │ │ │ │ ├── MysqlSchemaDialect.php │ │ │ │ │ ├── PostgresSchema.php │ │ │ │ │ ├── PostgresSchemaDialect.php │ │ │ │ │ ├── SchemaDialect.php │ │ │ │ │ ├── SqlGeneratorInterface.php │ │ │ │ │ ├── SqliteSchema.php │ │ │ │ │ ├── SqliteSchemaDialect.php │ │ │ │ │ ├── SqlserverSchema.php │ │ │ │ │ ├── SqlserverSchemaDialect.php │ │ │ │ │ ├── TableSchema.php │ │ │ │ │ ├── TableSchemaAwareInterface.php │ │ │ │ │ └── TableSchemaInterface.php │ │ │ │ ├── SchemaCache.php │ │ │ │ ├── SqlDialectTrait.php │ │ │ │ ├── SqliteCompiler.php │ │ │ │ ├── SqlserverCompiler.php │ │ │ │ ├── Statement │ │ │ │ │ ├── BufferResultsTrait.php │ │ │ │ │ ├── BufferedStatement.php │ │ │ │ │ ├── CallbackStatement.php │ │ │ │ │ ├── MysqlStatement.php │ │ │ │ │ ├── PDOStatement.php │ │ │ │ │ ├── SqliteStatement.php │ │ │ │ │ ├── SqlserverStatement.php │ │ │ │ │ └── StatementDecorator.php │ │ │ │ ├── StatementInterface.php │ │ │ │ ├── Type.php │ │ │ │ ├── Type │ │ │ │ │ ├── BaseType.php │ │ │ │ │ ├── BatchCastingInterface.php │ │ │ │ │ ├── BinaryType.php │ │ │ │ │ ├── BinaryUuidType.php │ │ │ │ │ ├── BoolType.php │ │ │ │ │ ├── ColumnSchemaAwareInterface.php │ │ │ │ │ ├── DateTimeFractionalType.php │ │ │ │ │ ├── DateTimeTimezoneType.php │ │ │ │ │ ├── DateTimeType.php │ │ │ │ │ ├── DateType.php │ │ │ │ │ ├── DecimalType.php │ │ │ │ │ ├── ExpressionTypeCasterTrait.php │ │ │ │ │ ├── ExpressionTypeInterface.php │ │ │ │ │ ├── FloatType.php │ │ │ │ │ ├── IntegerType.php │ │ │ │ │ ├── JsonType.php │ │ │ │ │ ├── OptionalConvertInterface.php │ │ │ │ │ ├── StringType.php │ │ │ │ │ ├── TimeType.php │ │ │ │ │ └── UuidType.php │ │ │ │ ├── TypeConverterTrait.php │ │ │ │ ├── TypeFactory.php │ │ │ │ ├── TypeInterface.php │ │ │ │ ├── TypeMap.php │ │ │ │ ├── TypeMapTrait.php │ │ │ │ ├── TypedResultInterface.php │ │ │ │ ├── TypedResultTrait.php │ │ │ │ ├── ValueBinder.php │ │ │ │ └── composer.json │ │ │ ├── Datasource │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── ConnectionManager.php │ │ │ │ ├── ConnectionRegistry.php │ │ │ │ ├── EntityInterface.php │ │ │ │ ├── EntityTrait.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidPrimaryKeyException.php │ │ │ │ │ ├── MissingDatasourceConfigException.php │ │ │ │ │ ├── MissingDatasourceException.php │ │ │ │ │ ├── MissingModelException.php │ │ │ │ │ ├── PageOutOfBoundsException.php │ │ │ │ │ └── RecordNotFoundException.php │ │ │ │ ├── FactoryLocator.php │ │ │ │ ├── FixtureInterface.php │ │ │ │ ├── InvalidPropertyInterface.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Locator │ │ │ │ │ ├── AbstractLocator.php │ │ │ │ │ └── LocatorInterface.php │ │ │ │ ├── ModelAwareTrait.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── PaginatorInterface.php │ │ │ │ ├── Paging │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── PageOutOfBoundsException.php │ │ │ │ │ ├── NumericPaginator.php │ │ │ │ │ ├── PaginatorInterface.php │ │ │ │ │ └── SimplePaginator.php │ │ │ │ ├── QueryCacher.php │ │ │ │ ├── QueryInterface.php │ │ │ │ ├── QueryTrait.php │ │ │ │ ├── README.md │ │ │ │ ├── RepositoryInterface.php │ │ │ │ ├── ResultSetDecorator.php │ │ │ │ ├── ResultSetInterface.php │ │ │ │ ├── RuleInvoker.php │ │ │ │ ├── RulesAwareTrait.php │ │ │ │ ├── RulesChecker.php │ │ │ │ ├── SchemaInterface.php │ │ │ │ ├── SimplePaginator.php │ │ │ │ └── composer.json │ │ │ ├── Error │ │ │ │ ├── BaseErrorHandler.php │ │ │ │ ├── ConsoleErrorHandler.php │ │ │ │ ├── Debug │ │ │ │ │ ├── ArrayItemNode.php │ │ │ │ │ ├── ArrayNode.php │ │ │ │ │ ├── ClassNode.php │ │ │ │ │ ├── ConsoleFormatter.php │ │ │ │ │ ├── DebugContext.php │ │ │ │ │ ├── FormatterInterface.php │ │ │ │ │ ├── HtmlFormatter.php │ │ │ │ │ ├── NodeInterface.php │ │ │ │ │ ├── PropertyNode.php │ │ │ │ │ ├── ReferenceNode.php │ │ │ │ │ ├── ScalarNode.php │ │ │ │ │ ├── SpecialNode.php │ │ │ │ │ ├── TextFormatter.php │ │ │ │ │ └── dumpHeader.html │ │ │ │ ├── Debugger.php │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── ErrorLogger.php │ │ │ │ ├── ErrorLoggerInterface.php │ │ │ │ ├── ErrorRendererInterface.php │ │ │ │ ├── ErrorTrap.php │ │ │ │ ├── ExceptionRenderer.php │ │ │ │ ├── ExceptionRendererInterface.php │ │ │ │ ├── ExceptionTrap.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── Middleware │ │ │ │ │ └── ErrorHandlerMiddleware.php │ │ │ │ ├── PhpError.php │ │ │ │ └── Renderer │ │ │ │ │ ├── ConsoleErrorRenderer.php │ │ │ │ │ ├── ConsoleExceptionRenderer.php │ │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ │ ├── TextErrorRenderer.php │ │ │ │ │ ├── TextExceptionRenderer.php │ │ │ │ │ └── WebExceptionRenderer.php │ │ │ ├── Event │ │ │ │ ├── Decorator │ │ │ │ │ ├── AbstractDecorator.php │ │ │ │ │ ├── ConditionDecorator.php │ │ │ │ │ └── SubjectFilterDecorator.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcherInterface.php │ │ │ │ ├── EventDispatcherTrait.php │ │ │ │ ├── EventInterface.php │ │ │ │ ├── EventList.php │ │ │ │ ├── EventListenerInterface.php │ │ │ │ ├── EventManager.php │ │ │ │ ├── EventManagerInterface.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── Filesystem │ │ │ │ ├── File.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── Folder.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── Form │ │ │ │ ├── Form.php │ │ │ │ ├── FormProtector.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── Schema.php │ │ │ │ └── composer.json │ │ │ ├── Http │ │ │ │ ├── BaseApplication.php │ │ │ │ ├── CallbackStream.php │ │ │ │ ├── Client.php │ │ │ │ ├── Client │ │ │ │ │ ├── Adapter │ │ │ │ │ │ ├── Curl.php │ │ │ │ │ │ ├── Mock.php │ │ │ │ │ │ └── Stream.php │ │ │ │ │ ├── AdapterInterface.php │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── Basic.php │ │ │ │ │ │ ├── Digest.php │ │ │ │ │ │ └── Oauth.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ClientException.php │ │ │ │ │ │ ├── MissingResponseException.php │ │ │ │ │ │ ├── NetworkException.php │ │ │ │ │ │ └── RequestException.php │ │ │ │ │ ├── FormData.php │ │ │ │ │ ├── FormDataPart.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── Request.php │ │ │ │ │ └── Response.php │ │ │ │ ├── ContentTypeNegotiation.php │ │ │ │ ├── ControllerFactory.php │ │ │ │ ├── ControllerFactoryInterface.php │ │ │ │ ├── Cookie │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── CookieCollection.php │ │ │ │ │ └── CookieInterface.php │ │ │ │ ├── CorsBuilder.php │ │ │ │ ├── Exception │ │ │ │ │ ├── BadRequestException.php │ │ │ │ │ ├── ConflictException.php │ │ │ │ │ ├── ForbiddenException.php │ │ │ │ │ ├── GoneException.php │ │ │ │ │ ├── HttpException.php │ │ │ │ │ ├── InternalErrorException.php │ │ │ │ │ ├── InvalidCsrfTokenException.php │ │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ │ ├── MissingControllerException.php │ │ │ │ │ ├── NotAcceptableException.php │ │ │ │ │ ├── NotFoundException.php │ │ │ │ │ ├── NotImplementedException.php │ │ │ │ │ ├── RedirectException.php │ │ │ │ │ ├── ServiceUnavailableException.php │ │ │ │ │ ├── UnauthorizedException.php │ │ │ │ │ └── UnavailableForLegalReasonsException.php │ │ │ │ ├── FlashMessage.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Middleware │ │ │ │ │ ├── BodyParserMiddleware.php │ │ │ │ │ ├── ClosureDecoratorMiddleware.php │ │ │ │ │ ├── CspMiddleware.php │ │ │ │ │ ├── CsrfProtectionMiddleware.php │ │ │ │ │ ├── DoublePassDecoratorMiddleware.php │ │ │ │ │ ├── EncryptedCookieMiddleware.php │ │ │ │ │ ├── HttpsEnforcerMiddleware.php │ │ │ │ │ ├── SecurityHeadersMiddleware.php │ │ │ │ │ └── SessionCsrfProtectionMiddleware.php │ │ │ │ ├── MiddlewareApplication.php │ │ │ │ ├── MiddlewareQueue.php │ │ │ │ ├── README.md │ │ │ │ ├── Response.php │ │ │ │ ├── ResponseEmitter.php │ │ │ │ ├── Runner.php │ │ │ │ ├── Server.php │ │ │ │ ├── ServerRequest.php │ │ │ │ ├── ServerRequestFactory.php │ │ │ │ ├── Session.php │ │ │ │ ├── Session │ │ │ │ │ ├── CacheSession.php │ │ │ │ │ └── DatabaseSession.php │ │ │ │ ├── TestSuite │ │ │ │ │ └── HttpClientTrait.php │ │ │ │ ├── Uri.php │ │ │ │ └── composer.json │ │ │ ├── I18n │ │ │ │ ├── ChainMessagesLoader.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateFormatTrait.php │ │ │ │ ├── Exception │ │ │ │ │ └── I18nException.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── IcuFormatter.php │ │ │ │ │ └── SprintfFormatter.php │ │ │ │ ├── FormatterInterface.php │ │ │ │ ├── FormatterLocator.php │ │ │ │ ├── FrozenDate.php │ │ │ │ ├── FrozenTime.php │ │ │ │ ├── I18n.php │ │ │ │ ├── I18nDateTimeInterface.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── MessagesFileLoader.php │ │ │ │ ├── Middleware │ │ │ │ │ └── LocaleSelectorMiddleware.php │ │ │ │ ├── Number.php │ │ │ │ ├── Package.php │ │ │ │ ├── PackageLocator.php │ │ │ │ ├── Parser │ │ │ │ │ ├── MoFileParser.php │ │ │ │ │ └── PoFileParser.php │ │ │ │ ├── PluralRules.php │ │ │ │ ├── README.md │ │ │ │ ├── RelativeTimeFormatter.php │ │ │ │ ├── Time.php │ │ │ │ ├── Translator.php │ │ │ │ ├── TranslatorRegistry.php │ │ │ │ ├── composer.json │ │ │ │ └── functions.php │ │ │ ├── Log │ │ │ │ ├── Engine │ │ │ │ │ ├── ArrayLog.php │ │ │ │ │ ├── BaseLog.php │ │ │ │ │ ├── ConsoleLog.php │ │ │ │ │ ├── FileLog.php │ │ │ │ │ └── SyslogLog.php │ │ │ │ ├── Formatter │ │ │ │ │ ├── AbstractFormatter.php │ │ │ │ │ ├── DefaultFormatter.php │ │ │ │ │ ├── JsonFormatter.php │ │ │ │ │ └── LegacySyslogFormatter.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Log.php │ │ │ │ ├── LogEngineRegistry.php │ │ │ │ ├── LogTrait.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── Mailer │ │ │ │ ├── AbstractTransport.php │ │ │ │ ├── Email.php │ │ │ │ ├── Exception │ │ │ │ │ ├── MissingActionException.php │ │ │ │ │ └── MissingMailerException.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── MailerAwareTrait.php │ │ │ │ ├── Message.php │ │ │ │ ├── Renderer.php │ │ │ │ ├── Transport │ │ │ │ │ ├── DebugTransport.php │ │ │ │ │ ├── MailTransport.php │ │ │ │ │ └── SmtpTransport.php │ │ │ │ ├── TransportFactory.php │ │ │ │ └── TransportRegistry.php │ │ │ ├── Network │ │ │ │ ├── Exception │ │ │ │ │ └── SocketException.php │ │ │ │ └── Socket.php │ │ │ ├── ORM │ │ │ │ ├── Association.php │ │ │ │ ├── Association │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── DependentDeleteHelper.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ └── Loader │ │ │ │ │ │ ├── SelectLoader.php │ │ │ │ │ │ └── SelectWithPivotLoader.php │ │ │ │ ├── AssociationCollection.php │ │ │ │ ├── AssociationsNormalizerTrait.php │ │ │ │ ├── Behavior.php │ │ │ │ ├── Behavior │ │ │ │ │ ├── CounterCacheBehavior.php │ │ │ │ │ ├── TimestampBehavior.php │ │ │ │ │ ├── Translate │ │ │ │ │ │ ├── EavStrategy.php │ │ │ │ │ │ ├── ShadowTableStrategy.php │ │ │ │ │ │ ├── TranslateStrategyInterface.php │ │ │ │ │ │ ├── TranslateStrategyTrait.php │ │ │ │ │ │ └── TranslateTrait.php │ │ │ │ │ ├── TranslateBehavior.php │ │ │ │ │ └── TreeBehavior.php │ │ │ │ ├── BehaviorRegistry.php │ │ │ │ ├── EagerLoadable.php │ │ │ │ ├── EagerLoader.php │ │ │ │ ├── Entity.php │ │ │ │ ├── Exception │ │ │ │ │ ├── MissingBehaviorException.php │ │ │ │ │ ├── MissingEntityException.php │ │ │ │ │ ├── MissingTableClassException.php │ │ │ │ │ ├── PersistenceFailedException.php │ │ │ │ │ └── RolledbackTransactionException.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LazyEagerLoader.php │ │ │ │ ├── Locator │ │ │ │ │ ├── LocatorAwareTrait.php │ │ │ │ │ ├── LocatorInterface.php │ │ │ │ │ └── TableLocator.php │ │ │ │ ├── Marshaller.php │ │ │ │ ├── PropertyMarshalInterface.php │ │ │ │ ├── Query.php │ │ │ │ ├── README.md │ │ │ │ ├── ResultSet.php │ │ │ │ ├── Rule │ │ │ │ │ ├── ExistsIn.php │ │ │ │ │ ├── IsUnique.php │ │ │ │ │ ├── LinkConstraint.php │ │ │ │ │ └── ValidCount.php │ │ │ │ ├── RulesChecker.php │ │ │ │ ├── SaveOptionsBuilder.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableRegistry.php │ │ │ │ └── composer.json │ │ │ ├── Routing │ │ │ │ ├── Asset.php │ │ │ │ ├── Exception │ │ │ │ │ ├── DuplicateNamedRouteException.php │ │ │ │ │ ├── FailedRouteCacheException.php │ │ │ │ │ ├── MissingControllerException.php │ │ │ │ │ ├── MissingDispatcherFilterException.php │ │ │ │ │ ├── MissingRouteException.php │ │ │ │ │ └── RedirectException.php │ │ │ │ ├── Middleware │ │ │ │ │ ├── AssetMiddleware.php │ │ │ │ │ └── RoutingMiddleware.php │ │ │ │ ├── Route │ │ │ │ │ ├── DashedRoute.php │ │ │ │ │ ├── EntityRoute.php │ │ │ │ │ ├── InflectedRoute.php │ │ │ │ │ ├── PluginShortRoute.php │ │ │ │ │ ├── RedirectRoute.php │ │ │ │ │ └── Route.php │ │ │ │ ├── RouteBuilder.php │ │ │ │ ├── RouteCollection.php │ │ │ │ ├── Router.php │ │ │ │ ├── RoutingApplicationInterface.php │ │ │ │ └── functions.php │ │ │ ├── Shell │ │ │ │ ├── Helper │ │ │ │ │ ├── ProgressHelper.php │ │ │ │ │ └── TableHelper.php │ │ │ │ └── Task │ │ │ │ │ └── CommandTask.php │ │ │ ├── TestSuite │ │ │ │ ├── ConnectionHelper.php │ │ │ │ ├── ConsoleIntegrationTestCase.php │ │ │ │ ├── ConsoleIntegrationTestTrait.php │ │ │ │ ├── Constraint │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── ContentsBase.php │ │ │ │ │ │ ├── ContentsContain.php │ │ │ │ │ │ ├── ContentsContainRow.php │ │ │ │ │ │ ├── ContentsEmpty.php │ │ │ │ │ │ ├── ContentsNotContain.php │ │ │ │ │ │ ├── ContentsRegExp.php │ │ │ │ │ │ └── ExitCode.php │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── MailConstraintBase.php │ │ │ │ │ │ ├── MailContains.php │ │ │ │ │ │ ├── MailContainsAttachment.php │ │ │ │ │ │ ├── MailContainsHtml.php │ │ │ │ │ │ ├── MailContainsText.php │ │ │ │ │ │ ├── MailCount.php │ │ │ │ │ │ ├── MailSentFrom.php │ │ │ │ │ │ ├── MailSentTo.php │ │ │ │ │ │ ├── MailSentWith.php │ │ │ │ │ │ ├── MailSubjectContains.php │ │ │ │ │ │ └── NoMailSent.php │ │ │ │ │ ├── EventFired.php │ │ │ │ │ ├── EventFiredWith.php │ │ │ │ │ ├── Response │ │ │ │ │ │ ├── BodyContains.php │ │ │ │ │ │ ├── BodyEmpty.php │ │ │ │ │ │ ├── BodyEquals.php │ │ │ │ │ │ ├── BodyNotContains.php │ │ │ │ │ │ ├── BodyNotEmpty.php │ │ │ │ │ │ ├── BodyNotEquals.php │ │ │ │ │ │ ├── BodyNotRegExp.php │ │ │ │ │ │ ├── BodyRegExp.php │ │ │ │ │ │ ├── ContentType.php │ │ │ │ │ │ ├── CookieEncryptedEquals.php │ │ │ │ │ │ ├── CookieEquals.php │ │ │ │ │ │ ├── CookieNotSet.php │ │ │ │ │ │ ├── CookieSet.php │ │ │ │ │ │ ├── FileSent.php │ │ │ │ │ │ ├── FileSentAs.php │ │ │ │ │ │ ├── HeaderContains.php │ │ │ │ │ │ ├── HeaderEquals.php │ │ │ │ │ │ ├── HeaderNotContains.php │ │ │ │ │ │ ├── HeaderNotSet.php │ │ │ │ │ │ ├── HeaderSet.php │ │ │ │ │ │ ├── ResponseBase.php │ │ │ │ │ │ ├── StatusCode.php │ │ │ │ │ │ ├── StatusCodeBase.php │ │ │ │ │ │ ├── StatusError.php │ │ │ │ │ │ ├── StatusFailure.php │ │ │ │ │ │ ├── StatusOk.php │ │ │ │ │ │ └── StatusSuccess.php │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── FlashParamEquals.php │ │ │ │ │ │ ├── SessionEquals.php │ │ │ │ │ │ └── SessionHasKey.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── LayoutFileEquals.php │ │ │ │ │ │ └── TemplateFileEquals.php │ │ │ │ ├── ContainerStubTrait.php │ │ │ │ ├── EmailTrait.php │ │ │ │ ├── Fixture │ │ │ │ │ ├── FixtureHelper.php │ │ │ │ │ ├── FixtureInjector.php │ │ │ │ │ ├── FixtureManager.php │ │ │ │ │ ├── FixtureStrategyInterface.php │ │ │ │ │ ├── PHPUnitExtension.php │ │ │ │ │ ├── SchemaLoader.php │ │ │ │ │ ├── TestFixture.php │ │ │ │ │ ├── TransactionStrategy.php │ │ │ │ │ └── TruncateStrategy.php │ │ │ │ ├── HttpClientTrait.php │ │ │ │ ├── IntegrationTestCase.php │ │ │ │ ├── IntegrationTestTrait.php │ │ │ │ ├── LegacyCommandRunner.php │ │ │ │ ├── LegacyShellDispatcher.php │ │ │ │ ├── MiddlewareDispatcher.php │ │ │ │ ├── StringCompareTrait.php │ │ │ │ ├── Stub │ │ │ │ │ ├── ConsoleInput.php │ │ │ │ │ ├── ConsoleOutput.php │ │ │ │ │ ├── MissingConsoleInputException.php │ │ │ │ │ └── TestExceptionRenderer.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestEmailTransport.php │ │ │ │ ├── TestListenerTrait.php │ │ │ │ ├── TestSession.php │ │ │ │ └── TestSuite.php │ │ │ ├── Utility │ │ │ │ ├── CookieCryptTrait.php │ │ │ │ ├── Crypto │ │ │ │ │ └── OpenSsl.php │ │ │ │ ├── Exception │ │ │ │ │ └── XmlException.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Inflector.php │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── MergeVariablesTrait.php │ │ │ │ ├── README.md │ │ │ │ ├── Security.php │ │ │ │ ├── Text.php │ │ │ │ ├── Xml.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── composer.json │ │ │ ├── Validation │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── RulesProvider.php │ │ │ │ ├── ValidatableInterface.php │ │ │ │ ├── Validation.php │ │ │ │ ├── ValidationRule.php │ │ │ │ ├── ValidationSet.php │ │ │ │ ├── Validator.php │ │ │ │ ├── ValidatorAwareInterface.php │ │ │ │ ├── ValidatorAwareTrait.php │ │ │ │ └── composer.json │ │ │ ├── View │ │ │ │ ├── AjaxView.php │ │ │ │ ├── Cell.php │ │ │ │ ├── CellTrait.php │ │ │ │ ├── Exception │ │ │ │ │ ├── MissingCellException.php │ │ │ │ │ ├── MissingCellTemplateException.php │ │ │ │ │ ├── MissingElementException.php │ │ │ │ │ ├── MissingHelperException.php │ │ │ │ │ ├── MissingLayoutException.php │ │ │ │ │ ├── MissingTemplateException.php │ │ │ │ │ ├── MissingViewException.php │ │ │ │ │ └── SerializationFailureException.php │ │ │ │ ├── Form │ │ │ │ │ ├── ArrayContext.php │ │ │ │ │ ├── ContextFactory.php │ │ │ │ │ ├── ContextInterface.php │ │ │ │ │ ├── EntityContext.php │ │ │ │ │ ├── FormContext.php │ │ │ │ │ └── NullContext.php │ │ │ │ ├── Helper.php │ │ │ │ ├── Helper │ │ │ │ │ ├── BreadcrumbsHelper.php │ │ │ │ │ ├── FlashHelper.php │ │ │ │ │ ├── FormHelper.php │ │ │ │ │ ├── HtmlHelper.php │ │ │ │ │ ├── IdGeneratorTrait.php │ │ │ │ │ ├── NumberHelper.php │ │ │ │ │ ├── PaginatorHelper.php │ │ │ │ │ ├── TextHelper.php │ │ │ │ │ ├── TimeHelper.php │ │ │ │ │ └── UrlHelper.php │ │ │ │ ├── HelperRegistry.php │ │ │ │ ├── JsonView.php │ │ │ │ ├── NegotiationRequiredView.php │ │ │ │ ├── SerializedView.php │ │ │ │ ├── StringTemplate.php │ │ │ │ ├── StringTemplateTrait.php │ │ │ │ ├── View.php │ │ │ │ ├── ViewBlock.php │ │ │ │ ├── ViewBuilder.php │ │ │ │ ├── ViewVarsTrait.php │ │ │ │ ├── Widget │ │ │ │ │ ├── BasicWidget.php │ │ │ │ │ ├── ButtonWidget.php │ │ │ │ │ ├── CheckboxWidget.php │ │ │ │ │ ├── DateTimeWidget.php │ │ │ │ │ ├── FileWidget.php │ │ │ │ │ ├── LabelWidget.php │ │ │ │ │ ├── MultiCheckboxWidget.php │ │ │ │ │ ├── NestingLabelWidget.php │ │ │ │ │ ├── RadioWidget.php │ │ │ │ │ ├── SelectBoxWidget.php │ │ │ │ │ ├── TextareaWidget.php │ │ │ │ │ ├── WidgetInterface.php │ │ │ │ │ ├── WidgetLocator.php │ │ │ │ │ └── YearWidget.php │ │ │ │ └── XmlView.php │ │ │ └── basics.php │ │ ├── templates │ │ │ ├── Error │ │ │ │ ├── duplicate_named_route.php │ │ │ │ ├── fatal_error.php │ │ │ │ ├── invalid_parameter.php │ │ │ │ ├── missing_action.php │ │ │ │ ├── missing_behavior.php │ │ │ │ ├── missing_cell_template.php │ │ │ │ ├── missing_component.php │ │ │ │ ├── missing_connection.php │ │ │ │ ├── missing_controller.php │ │ │ │ ├── missing_datasource.php │ │ │ │ ├── missing_datasource_config.php │ │ │ │ ├── missing_helper.php │ │ │ │ ├── missing_layout.php │ │ │ │ ├── missing_plugin.php │ │ │ │ ├── missing_route.php │ │ │ │ ├── missing_template.php │ │ │ │ ├── missing_view.php │ │ │ │ └── pdo_error.php │ │ │ ├── element │ │ │ │ ├── auto_table_warning.php │ │ │ │ ├── exception_stack_trace.php │ │ │ │ ├── exception_stack_trace_nav.php │ │ │ │ └── plugin_class_error.php │ │ │ └── layout │ │ │ │ └── dev_error.php │ │ └── tests │ │ │ ├── Fixture │ │ │ ├── ArticlesFixture.php │ │ │ ├── ArticlesMoreTranslationsFixture.php │ │ │ ├── ArticlesTagsBindingKeysFixture.php │ │ │ ├── ArticlesTagsFixture.php │ │ │ ├── ArticlesTranslationsFixture.php │ │ │ ├── AssertIntegrationTestCase.php │ │ │ ├── AttachmentsFixture.php │ │ │ ├── AuthUsersFixture.php │ │ │ ├── AuthorsFixture.php │ │ │ ├── AuthorsTagsFixture.php │ │ │ ├── AuthorsTranslationsFixture.php │ │ │ ├── BinaryUuidItemsBinaryUuidTagsFixture.php │ │ │ ├── BinaryUuidItemsFixture.php │ │ │ ├── BinaryUuidTagsFixture.php │ │ │ ├── CakeSessionsFixture.php │ │ │ ├── CategoriesFixture.php │ │ │ ├── ColumnSchemaAwareTypeValuesFixture.php │ │ │ ├── CommentsFixture.php │ │ │ ├── CommentsTranslationsFixture.php │ │ │ ├── CompositeIncrementsFixture.php │ │ │ ├── CompositeKeyArticlesFixture.php │ │ │ ├── CompositeKeyArticlesTagsFixture.php │ │ │ ├── CounterCacheCategoriesFixture.php │ │ │ ├── CounterCacheCommentsFixture.php │ │ │ ├── CounterCachePostsFixture.php │ │ │ ├── CounterCacheUserCategoryPostsFixture.php │ │ │ ├── CounterCacheUsersFixture.php │ │ │ ├── DatatypesFixture.php │ │ │ ├── DateKeysFixture.php │ │ │ ├── FeaturedTagsFixture.php │ │ │ ├── FixturizedTestCase.php │ │ │ ├── MembersFixture.php │ │ │ ├── MenuLinkTreesFixture.php │ │ │ ├── NullableAuthorsFixture.php │ │ │ ├── NumberTreesArticlesFixture.php │ │ │ ├── NumberTreesFixture.php │ │ │ ├── OrderedUuidItemsFixture.php │ │ │ ├── OrdersFixture.php │ │ │ ├── OtherArticlesFixture.php │ │ │ ├── PolymorphicTaggedFixture.php │ │ │ ├── PostsFixture.php │ │ │ ├── ProductsFixture.php │ │ │ ├── ProfilesFixture.php │ │ │ ├── SectionsFixture.php │ │ │ ├── SectionsMembersFixture.php │ │ │ ├── SectionsTranslationsFixture.php │ │ │ ├── SessionsFixture.php │ │ │ ├── SiteArticlesFixture.php │ │ │ ├── SiteArticlesTagsFixture.php │ │ │ ├── SiteAuthorsFixture.php │ │ │ ├── SiteTagsFixture.php │ │ │ ├── SpecialTagsFixture.php │ │ │ ├── SpecialTagsTranslationsFixture.php │ │ │ ├── TagsFixture.php │ │ │ ├── TagsShadowTranslationsFixture.php │ │ │ ├── TagsTranslationsFixture.php │ │ │ ├── TestPluginCommentsFixture.php │ │ │ ├── ThingsFixture.php │ │ │ ├── TranslatesFixture.php │ │ │ ├── UniqueAuthorsFixture.php │ │ │ ├── UsersFixture.php │ │ │ ├── UuidItemsFixture.php │ │ │ ├── rss.xml │ │ │ ├── sample.a68 │ │ │ ├── sample.html │ │ │ ├── sample.xml │ │ │ ├── soap_request.xml │ │ │ └── soap_response.xml │ │ │ ├── PHPStan │ │ │ ├── AssociationTableMixinClassReflectionExtension.php │ │ │ └── TableFindByPropertyMethodReflection.php │ │ │ ├── bootstrap.php │ │ │ └── schema.php │ ├── chronos │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs.Dockerfile │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── fr │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── ja │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ └── pt │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ └── src │ │ │ ├── Chronos.php │ │ │ ├── ChronosInterface.php │ │ │ ├── ChronosInterval.php │ │ │ ├── Date.php │ │ │ ├── DifferenceFormatter.php │ │ │ ├── DifferenceFormatterInterface.php │ │ │ ├── MutableDate.php │ │ │ ├── MutableDateTime.php │ │ │ ├── Traits │ │ │ ├── ComparisonTrait.php │ │ │ ├── CopyTrait.php │ │ │ ├── DifferenceTrait.php │ │ │ ├── FactoryTrait.php │ │ │ ├── FormattingTrait.php │ │ │ ├── FrozenTimeTrait.php │ │ │ ├── MagicPropertyTrait.php │ │ │ ├── ModifierTrait.php │ │ │ ├── RelativeKeywordTrait.php │ │ │ ├── TestingAidTrait.php │ │ │ └── TimezoneTrait.php │ │ │ ├── Translator.php │ │ │ └── carbon_compat.php │ ├── debug_kit │ │ ├── .eslintrc.json │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ │ ├── bootstrap.php │ │ │ └── routes.php │ │ ├── docs.Dockerfile │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── fr │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── ja │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ └── pt │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ ├── package.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── Cache │ │ │ │ └── Engine │ │ │ │ │ └── DebugEngine.php │ │ │ ├── Command │ │ │ │ └── BenchmarkCommand.php │ │ │ ├── Controller │ │ │ │ ├── ComposerController.php │ │ │ │ ├── DashboardController.php │ │ │ │ ├── DebugKitController.php │ │ │ │ ├── MailPreviewController.php │ │ │ │ ├── PanelsController.php │ │ │ │ ├── RequestsController.php │ │ │ │ └── ToolbarController.php │ │ │ ├── Database │ │ │ │ └── Log │ │ │ │ │ └── DebugLog.php │ │ │ ├── DebugInclude.php │ │ │ ├── DebugMemory.php │ │ │ ├── DebugPanel.php │ │ │ ├── DebugSql.php │ │ │ ├── DebugTimer.php │ │ │ ├── Locale │ │ │ │ ├── debug_kit.pot │ │ │ │ ├── eng │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── debug_kit.po │ │ │ │ ├── fra │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── debug_kit.po │ │ │ │ ├── lim │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── debug_kit.po │ │ │ │ ├── nld │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── debug_kit.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── debug_kit.po │ │ │ │ └── spa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── debug_kit.po │ │ │ ├── Log │ │ │ │ └── Engine │ │ │ │ │ └── DebugKitLog.php │ │ │ ├── Mailer │ │ │ │ ├── AbstractResult.php │ │ │ │ ├── MailPreview.php │ │ │ │ ├── PreviewResult.php │ │ │ │ ├── SentMailResult.php │ │ │ │ └── Transport │ │ │ │ │ └── DebugKitTransport.php │ │ │ ├── Middleware │ │ │ │ └── DebugKitMiddleware.php │ │ │ ├── Model │ │ │ │ ├── Behavior │ │ │ │ │ └── TimedBehavior.php │ │ │ │ ├── Entity │ │ │ │ │ ├── Panel.php │ │ │ │ │ └── Request.php │ │ │ │ └── Table │ │ │ │ │ ├── LazyTableTrait.php │ │ │ │ │ ├── PanelsTable.php │ │ │ │ │ └── RequestsTable.php │ │ │ ├── Panel │ │ │ │ ├── CachePanel.php │ │ │ │ ├── DeprecationsPanel.php │ │ │ │ ├── EnvironmentPanel.php │ │ │ │ ├── HistoryPanel.php │ │ │ │ ├── IncludePanel.php │ │ │ │ ├── LogPanel.php │ │ │ │ ├── MailPanel.php │ │ │ │ ├── PackagesPanel.php │ │ │ │ ├── PanelRegistry.php │ │ │ │ ├── RequestPanel.php │ │ │ │ ├── RoutesPanel.php │ │ │ │ ├── SessionPanel.php │ │ │ │ ├── SqlLogPanel.php │ │ │ │ ├── TimerPanel.php │ │ │ │ └── VariablesPanel.php │ │ │ ├── Plugin.php │ │ │ ├── ToolbarService.php │ │ │ └── View │ │ │ │ ├── AjaxView.php │ │ │ │ └── Helper │ │ │ │ ├── CredentialsHelper.php │ │ │ │ ├── SimpleGraphHelper.php │ │ │ │ └── ToolbarHelper.php │ │ ├── templates │ │ │ ├── Dashboard │ │ │ │ └── index.php │ │ │ ├── MailPreview │ │ │ │ ├── email.php │ │ │ │ └── index.php │ │ │ ├── Panels │ │ │ │ └── view.php │ │ │ ├── Requests │ │ │ │ └── view.php │ │ │ ├── element │ │ │ │ ├── cache_panel.php │ │ │ │ ├── deprecations_panel.php │ │ │ │ ├── environment_panel.php │ │ │ │ ├── history_panel.php │ │ │ │ ├── include_panel.php │ │ │ │ ├── log_panel.php │ │ │ │ ├── mail_panel.php │ │ │ │ ├── packages_panel.php │ │ │ │ ├── preview_header.php │ │ │ │ ├── request_panel.php │ │ │ │ ├── routes_panel.php │ │ │ │ ├── session_panel.php │ │ │ │ ├── sql_log_panel.php │ │ │ │ ├── timer_panel.php │ │ │ │ └── variables_panel.php │ │ │ └── layout │ │ │ │ ├── dashboard.php │ │ │ │ ├── mailer.php │ │ │ │ └── toolbar.php │ │ ├── tests │ │ │ ├── Fixture │ │ │ │ ├── PanelsFixture.php │ │ │ │ └── RequestsFixture.php │ │ │ └── schema.php │ │ └── webroot │ │ │ ├── css │ │ │ ├── raleway-regular.eot │ │ │ ├── raleway-regular.svg │ │ │ ├── raleway-regular.ttf │ │ │ ├── raleway-regular.woff │ │ │ ├── reset.css │ │ │ └── style.css │ │ │ ├── img │ │ │ └── cake.icon.png │ │ │ └── js │ │ │ ├── inject-iframe.js │ │ │ ├── jquery.js │ │ │ ├── main.js │ │ │ └── modules │ │ │ ├── Helper.js │ │ │ ├── Keyboard.js │ │ │ ├── Panels │ │ │ ├── CachePanel.js │ │ │ ├── HistoryPanel.js │ │ │ ├── MailPanel.js │ │ │ ├── PackagesPanel.js │ │ │ ├── RoutesPanel.js │ │ │ └── VariablesPanel.js │ │ │ ├── Start.js │ │ │ └── Toolbar.js │ ├── migrations │ │ ├── Dockerfile │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs.Dockerfile │ │ ├── docs │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── all.py │ │ │ ├── en │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── fr │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── ja │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ ├── pt │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ │ └── ru │ │ │ │ ├── conf.py │ │ │ │ ├── contents.rst │ │ │ │ └── index.rst │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── AbstractMigration.php │ │ │ ├── AbstractSeed.php │ │ │ ├── CakeAdapter.php │ │ │ ├── CakeManager.php │ │ │ ├── Command │ │ │ │ ├── BakeMigrationCommand.php │ │ │ │ ├── BakeMigrationDiffCommand.php │ │ │ │ ├── BakeMigrationSnapshotCommand.php │ │ │ │ ├── BakeSeedCommand.php │ │ │ │ ├── BakeSimpleMigrationCommand.php │ │ │ │ ├── MigrationsCacheBuildCommand.php │ │ │ │ ├── MigrationsCacheClearCommand.php │ │ │ │ ├── MigrationsCommand.php │ │ │ │ ├── MigrationsCreateCommand.php │ │ │ │ ├── MigrationsDumpCommand.php │ │ │ │ ├── MigrationsMarkMigratedCommand.php │ │ │ │ ├── MigrationsMigrateCommand.php │ │ │ │ ├── MigrationsRollbackCommand.php │ │ │ │ ├── MigrationsSeedCommand.php │ │ │ │ ├── MigrationsStatusCommand.php │ │ │ │ ├── Phinx │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── CacheBuild.php │ │ │ │ │ ├── CacheClear.php │ │ │ │ │ ├── CommandTrait.php │ │ │ │ │ ├── Create.php │ │ │ │ │ ├── Dump.php │ │ │ │ │ ├── MarkMigrated.php │ │ │ │ │ ├── Migrate.php │ │ │ │ │ ├── Rollback.php │ │ │ │ │ ├── Seed.php │ │ │ │ │ └── Status.php │ │ │ │ └── SnapshotTrait.php │ │ │ ├── ConfigurationTrait.php │ │ │ ├── Migrations.php │ │ │ ├── MigrationsDispatcher.php │ │ │ ├── Plugin.php │ │ │ ├── Shell │ │ │ │ └── Task │ │ │ │ │ └── SimpleMigrationTask.php │ │ │ ├── Table.php │ │ │ ├── TableFinderTrait.php │ │ │ ├── TestSuite │ │ │ │ └── Migrator.php │ │ │ ├── Util │ │ │ │ ├── ColumnParser.php │ │ │ │ ├── SchemaTrait.php │ │ │ │ └── UtilTrait.php │ │ │ └── View │ │ │ │ └── Helper │ │ │ │ └── MigrationHelper.php │ │ └── templates │ │ │ ├── Phinx │ │ │ └── create.php.template │ │ │ └── bake │ │ │ ├── Seed │ │ │ └── seed.twig │ │ │ ├── config │ │ │ ├── diff.twig │ │ │ ├── skeleton.twig │ │ │ └── snapshot.twig │ │ │ └── element │ │ │ ├── add-columns.twig │ │ │ ├── add-foreign-keys.twig │ │ │ ├── add-indexes.twig │ │ │ └── create-tables.twig │ ├── plugin-installer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ │ ├── Installer │ │ │ │ └── PluginInstaller.php │ │ │ └── Plugin.php │ │ └── tests │ │ │ ├── TestCase │ │ │ ├── Installer │ │ │ │ └── PluginInstallerTest.php │ │ │ └── PluginTest.php │ │ │ └── php56 │ │ │ └── TestCase │ │ │ ├── Installer │ │ │ └── PluginInstallerTest.php │ │ │ ├── PHPUnitAssertionCompatTrait.php │ │ │ └── PluginTest.php │ └── twig-view │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ ├── Command │ │ │ └── CompileCommand.php │ │ ├── Filesystem │ │ │ ├── RelativeScanner.php │ │ │ ├── Scanner.php │ │ │ └── TreeScanner.php │ │ ├── Panel │ │ │ └── TwigPanel.php │ │ ├── Plugin.php │ │ ├── Twig │ │ │ ├── Extension │ │ │ │ ├── ArraysExtension.php │ │ │ │ ├── BasicExtension.php │ │ │ │ ├── ConfigureExtension.php │ │ │ │ ├── I18nExtension.php │ │ │ │ ├── InflectorExtension.php │ │ │ │ ├── NumberExtension.php │ │ │ │ ├── ProfilerExtension.php │ │ │ │ ├── StringsExtension.php │ │ │ │ ├── TimeExtension.php │ │ │ │ ├── UtilsExtension.php │ │ │ │ └── ViewExtension.php │ │ │ ├── FileLoader.php │ │ │ ├── Node │ │ │ │ ├── Cell.php │ │ │ │ ├── Element.php │ │ │ │ └── LayoutNode.php │ │ │ └── TokenParser │ │ │ │ ├── CellParser.php │ │ │ │ ├── ElementParser.php │ │ │ │ └── LayoutParser.php │ │ └── View │ │ │ └── TwigView.php │ │ └── templates │ │ └── element │ │ └── twig_panel.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── ca-bundle │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── res │ │ │ └── cacert.pem │ │ └── src │ │ │ └── CaBundle.php │ ├── class-map-generator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMap.php │ │ │ ├── ClassMapGenerator.php │ │ │ ├── FileList.php │ │ │ ├── PhpFileCleaner.php │ │ │ └── PhpFileParser.php │ ├── composer │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php-cs-fixer.php │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── PORTING_INFO │ │ ├── README.md │ │ ├── UPGRADE-2.0.md │ │ ├── bin │ │ │ ├── compile │ │ │ └── composer │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── doc │ │ │ ├── 00-intro.md │ │ │ ├── 01-basic-usage.md │ │ │ ├── 02-libraries.md │ │ │ ├── 03-cli.md │ │ │ ├── 04-schema.md │ │ │ ├── 05-repositories.md │ │ │ ├── 06-config.md │ │ │ ├── 07-runtime.md │ │ │ ├── 08-community.md │ │ │ ├── articles │ │ │ │ ├── aliases.md │ │ │ │ ├── authentication-for-private-packages.md │ │ │ │ ├── autoloader-optimization.md │ │ │ │ ├── composer-platform-dependencies.md │ │ │ │ ├── custom-installers.md │ │ │ │ ├── handling-private-packages.md │ │ │ │ ├── plugins.md │ │ │ │ ├── repository-priorities.md │ │ │ │ ├── resolving-merge-conflicts.md │ │ │ │ ├── scripts.md │ │ │ │ ├── troubleshooting.md │ │ │ │ ├── vendor-binaries.md │ │ │ │ └── versions.md │ │ │ ├── dev │ │ │ │ └── DefaultPolicy.md │ │ │ ├── faqs │ │ │ │ ├── how-do-i-install-a-package-to-a-custom-path-for-my-framework.md │ │ │ │ ├── how-to-install-composer-programmatically.md │ │ │ │ ├── how-to-install-untrusted-packages-safely.md │ │ │ │ ├── should-i-commit-the-dependencies-in-my-vendor-directory.md │ │ │ │ ├── which-version-numbering-system-does-composer-itself-use.md │ │ │ │ ├── why-are-unbound-version-constraints-a-bad-idea.md │ │ │ │ ├── why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md │ │ │ │ └── why-cant-composer-load-repositories-recursively.md │ │ │ └── fixtures │ │ │ │ ├── fixtures.md │ │ │ │ ├── repo-composer-plain │ │ │ │ └── packages.json │ │ │ │ └── repo-composer-with-providers │ │ │ │ ├── p │ │ │ │ ├── bar │ │ │ │ │ └── baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json │ │ │ │ ├── foo │ │ │ │ │ └── bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json │ │ │ │ ├── gar │ │ │ │ │ └── nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json │ │ │ │ ├── provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json │ │ │ │ └── qux │ │ │ │ │ └── quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json │ │ │ │ └── packages.json │ │ ├── phpstan │ │ │ └── rules.neon │ │ ├── res │ │ │ ├── composer-repository-schema.json │ │ │ └── composer-schema.json │ │ └── src │ │ │ ├── Composer │ │ │ ├── Advisory │ │ │ │ ├── Auditor.php │ │ │ │ ├── PartialSecurityAdvisory.php │ │ │ │ └── SecurityAdvisory.php │ │ │ ├── Autoload │ │ │ │ ├── AutoloadGenerator.php │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── ClassMapGenerator.php │ │ │ │ └── PhpFileCleaner.php │ │ │ ├── Cache.php │ │ │ ├── Command │ │ │ │ ├── AboutCommand.php │ │ │ │ ├── ArchiveCommand.php │ │ │ │ ├── AuditCommand.php │ │ │ │ ├── BaseCommand.php │ │ │ │ ├── BaseDependencyCommand.php │ │ │ │ ├── BumpCommand.php │ │ │ │ ├── CheckPlatformReqsCommand.php │ │ │ │ ├── ClearCacheCommand.php │ │ │ │ ├── CompletionTrait.php │ │ │ │ ├── ConfigCommand.php │ │ │ │ ├── CreateProjectCommand.php │ │ │ │ ├── DependsCommand.php │ │ │ │ ├── DiagnoseCommand.php │ │ │ │ ├── DumpAutoloadCommand.php │ │ │ │ ├── ExecCommand.php │ │ │ │ ├── FundCommand.php │ │ │ │ ├── GlobalCommand.php │ │ │ │ ├── HomeCommand.php │ │ │ │ ├── InitCommand.php │ │ │ │ ├── InstallCommand.php │ │ │ │ ├── LicensesCommand.php │ │ │ │ ├── OutdatedCommand.php │ │ │ │ ├── PackageDiscoveryTrait.php │ │ │ │ ├── ProhibitsCommand.php │ │ │ │ ├── ReinstallCommand.php │ │ │ │ ├── RemoveCommand.php │ │ │ │ ├── RequireCommand.php │ │ │ │ ├── RunScriptCommand.php │ │ │ │ ├── ScriptAliasCommand.php │ │ │ │ ├── SearchCommand.php │ │ │ │ ├── SelfUpdateCommand.php │ │ │ │ ├── ShowCommand.php │ │ │ │ ├── StatusCommand.php │ │ │ │ ├── SuggestsCommand.php │ │ │ │ ├── UpdateCommand.php │ │ │ │ └── ValidateCommand.php │ │ │ ├── Compiler.php │ │ │ ├── Composer.php │ │ │ ├── Config.php │ │ │ ├── Config │ │ │ │ ├── ConfigSourceInterface.php │ │ │ │ └── JsonConfigSource.php │ │ │ ├── Console │ │ │ │ ├── Application.php │ │ │ │ ├── GithubActionError.php │ │ │ │ ├── HtmlOutputFormatter.php │ │ │ │ └── Input │ │ │ │ │ ├── InputArgument.php │ │ │ │ │ └── InputOption.php │ │ │ ├── DependencyResolver │ │ │ │ ├── Decisions.php │ │ │ │ ├── DefaultPolicy.php │ │ │ │ ├── GenericRule.php │ │ │ │ ├── LocalRepoTransaction.php │ │ │ │ ├── LockTransaction.php │ │ │ │ ├── MultiConflictRule.php │ │ │ │ ├── Operation │ │ │ │ │ ├── InstallOperation.php │ │ │ │ │ ├── MarkAliasInstalledOperation.php │ │ │ │ │ ├── MarkAliasUninstalledOperation.php │ │ │ │ │ ├── OperationInterface.php │ │ │ │ │ ├── SolverOperation.php │ │ │ │ │ ├── UninstallOperation.php │ │ │ │ │ └── UpdateOperation.php │ │ │ │ ├── PolicyInterface.php │ │ │ │ ├── Pool.php │ │ │ │ ├── PoolBuilder.php │ │ │ │ ├── PoolOptimizer.php │ │ │ │ ├── Problem.php │ │ │ │ ├── Request.php │ │ │ │ ├── Rule.php │ │ │ │ ├── Rule2Literals.php │ │ │ │ ├── RuleSet.php │ │ │ │ ├── RuleSetGenerator.php │ │ │ │ ├── RuleSetIterator.php │ │ │ │ ├── RuleWatchChain.php │ │ │ │ ├── RuleWatchGraph.php │ │ │ │ ├── RuleWatchNode.php │ │ │ │ ├── Solver.php │ │ │ │ ├── SolverBugException.php │ │ │ │ ├── SolverProblemsException.php │ │ │ │ └── Transaction.php │ │ │ ├── Downloader │ │ │ │ ├── ArchiveDownloader.php │ │ │ │ ├── ChangeReportInterface.php │ │ │ │ ├── DownloadManager.php │ │ │ │ ├── DownloaderInterface.php │ │ │ │ ├── DvcsDownloaderInterface.php │ │ │ │ ├── FileDownloader.php │ │ │ │ ├── FilesystemException.php │ │ │ │ ├── FossilDownloader.php │ │ │ │ ├── GitDownloader.php │ │ │ │ ├── GzipDownloader.php │ │ │ │ ├── HgDownloader.php │ │ │ │ ├── MaxFileSizeExceededException.php │ │ │ │ ├── PathDownloader.php │ │ │ │ ├── PerforceDownloader.php │ │ │ │ ├── PharDownloader.php │ │ │ │ ├── RarDownloader.php │ │ │ │ ├── SvnDownloader.php │ │ │ │ ├── TarDownloader.php │ │ │ │ ├── TransportException.php │ │ │ │ ├── VcsCapableDownloaderInterface.php │ │ │ │ ├── VcsDownloader.php │ │ │ │ ├── XzDownloader.php │ │ │ │ └── ZipDownloader.php │ │ │ ├── EventDispatcher │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── EventSubscriberInterface.php │ │ │ │ └── ScriptExecutionException.php │ │ │ ├── Exception │ │ │ │ ├── IrrecoverableDownloadException.php │ │ │ │ └── NoSslException.php │ │ │ ├── Factory.php │ │ │ ├── Filter │ │ │ │ └── PlatformRequirementFilter │ │ │ │ │ ├── IgnoreAllPlatformRequirementFilter.php │ │ │ │ │ ├── IgnoreListPlatformRequirementFilter.php │ │ │ │ │ ├── IgnoreNothingPlatformRequirementFilter.php │ │ │ │ │ ├── PlatformRequirementFilterFactory.php │ │ │ │ │ └── PlatformRequirementFilterInterface.php │ │ │ ├── IO │ │ │ │ ├── BaseIO.php │ │ │ │ ├── BufferIO.php │ │ │ │ ├── ConsoleIO.php │ │ │ │ ├── IOInterface.php │ │ │ │ └── NullIO.php │ │ │ ├── InstalledVersions.php │ │ │ ├── Installer.php │ │ │ ├── Installer │ │ │ │ ├── BinaryInstaller.php │ │ │ │ ├── BinaryPresenceInterface.php │ │ │ │ ├── InstallationManager.php │ │ │ │ ├── InstallerEvent.php │ │ │ │ ├── InstallerEvents.php │ │ │ │ ├── InstallerInterface.php │ │ │ │ ├── LibraryInstaller.php │ │ │ │ ├── MetapackageInstaller.php │ │ │ │ ├── NoopInstaller.php │ │ │ │ ├── PackageEvent.php │ │ │ │ ├── PackageEvents.php │ │ │ │ ├── PluginInstaller.php │ │ │ │ ├── ProjectInstaller.php │ │ │ │ └── SuggestedPackagesReporter.php │ │ │ ├── Json │ │ │ │ ├── JsonFile.php │ │ │ │ ├── JsonFormatter.php │ │ │ │ ├── JsonManipulator.php │ │ │ │ └── JsonValidationException.php │ │ │ ├── PHPStan │ │ │ │ ├── ConfigReturnTypeExtension.php │ │ │ │ └── RuleReasonDataReturnTypeExtension.php │ │ │ ├── Package │ │ │ │ ├── AliasPackage.php │ │ │ │ ├── Archiver │ │ │ │ │ ├── ArchivableFilesFilter.php │ │ │ │ │ ├── ArchivableFilesFinder.php │ │ │ │ │ ├── ArchiveManager.php │ │ │ │ │ ├── ArchiverInterface.php │ │ │ │ │ ├── BaseExcludeFilter.php │ │ │ │ │ ├── ComposerExcludeFilter.php │ │ │ │ │ ├── GitExcludeFilter.php │ │ │ │ │ ├── PharArchiver.php │ │ │ │ │ └── ZipArchiver.php │ │ │ │ ├── BasePackage.php │ │ │ │ ├── Comparer │ │ │ │ │ └── Comparer.php │ │ │ │ ├── CompleteAliasPackage.php │ │ │ │ ├── CompletePackage.php │ │ │ │ ├── CompletePackageInterface.php │ │ │ │ ├── Dumper │ │ │ │ │ └── ArrayDumper.php │ │ │ │ ├── Link.php │ │ │ │ ├── Loader │ │ │ │ │ ├── ArrayLoader.php │ │ │ │ │ ├── InvalidPackageException.php │ │ │ │ │ ├── JsonLoader.php │ │ │ │ │ ├── LoaderInterface.php │ │ │ │ │ ├── RootPackageLoader.php │ │ │ │ │ └── ValidatingArrayLoader.php │ │ │ │ ├── Locker.php │ │ │ │ ├── Package.php │ │ │ │ ├── PackageInterface.php │ │ │ │ ├── RootAliasPackage.php │ │ │ │ ├── RootPackage.php │ │ │ │ ├── RootPackageInterface.php │ │ │ │ └── Version │ │ │ │ │ ├── StabilityFilter.php │ │ │ │ │ ├── VersionBumper.php │ │ │ │ │ ├── VersionGuesser.php │ │ │ │ │ ├── VersionParser.php │ │ │ │ │ └── VersionSelector.php │ │ │ ├── PartialComposer.php │ │ │ ├── Platform │ │ │ │ ├── HhvmDetector.php │ │ │ │ ├── Runtime.php │ │ │ │ └── Version.php │ │ │ ├── Plugin │ │ │ │ ├── Capability │ │ │ │ │ ├── Capability.php │ │ │ │ │ └── CommandProvider.php │ │ │ │ ├── Capable.php │ │ │ │ ├── CommandEvent.php │ │ │ │ ├── PluginBlockedException.php │ │ │ │ ├── PluginEvents.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── PluginManager.php │ │ │ │ ├── PostFileDownloadEvent.php │ │ │ │ ├── PreCommandRunEvent.php │ │ │ │ ├── PreFileDownloadEvent.php │ │ │ │ └── PrePoolCreateEvent.php │ │ │ ├── Question │ │ │ │ └── StrictConfirmationQuestion.php │ │ │ ├── Repository │ │ │ │ ├── AdvisoryProviderInterface.php │ │ │ │ ├── ArrayRepository.php │ │ │ │ ├── ArtifactRepository.php │ │ │ │ ├── CanonicalPackagesTrait.php │ │ │ │ ├── ComposerRepository.php │ │ │ │ ├── CompositeRepository.php │ │ │ │ ├── ConfigurableRepositoryInterface.php │ │ │ │ ├── FilesystemRepository.php │ │ │ │ ├── FilterRepository.php │ │ │ │ ├── InstalledArrayRepository.php │ │ │ │ ├── InstalledFilesystemRepository.php │ │ │ │ ├── InstalledRepository.php │ │ │ │ ├── InstalledRepositoryInterface.php │ │ │ │ ├── InvalidRepositoryException.php │ │ │ │ ├── LockArrayRepository.php │ │ │ │ ├── PackageRepository.php │ │ │ │ ├── PathRepository.php │ │ │ │ ├── PearRepository.php │ │ │ │ ├── PlatformRepository.php │ │ │ │ ├── RepositoryFactory.php │ │ │ │ ├── RepositoryInterface.php │ │ │ │ ├── RepositoryManager.php │ │ │ │ ├── RepositorySecurityException.php │ │ │ │ ├── RepositorySet.php │ │ │ │ ├── RepositoryUtils.php │ │ │ │ ├── RootPackageRepository.php │ │ │ │ ├── Vcs │ │ │ │ │ ├── FossilDriver.php │ │ │ │ │ ├── GitBitbucketDriver.php │ │ │ │ │ ├── GitDriver.php │ │ │ │ │ ├── GitHubDriver.php │ │ │ │ │ ├── GitLabDriver.php │ │ │ │ │ ├── HgDriver.php │ │ │ │ │ ├── PerforceDriver.php │ │ │ │ │ ├── SvnDriver.php │ │ │ │ │ ├── VcsDriver.php │ │ │ │ │ └── VcsDriverInterface.php │ │ │ │ ├── VcsRepository.php │ │ │ │ ├── VersionCacheInterface.php │ │ │ │ ├── WritableArrayRepository.php │ │ │ │ └── WritableRepositoryInterface.php │ │ │ ├── Script │ │ │ │ ├── Event.php │ │ │ │ └── ScriptEvents.php │ │ │ ├── SelfUpdate │ │ │ │ ├── Keys.php │ │ │ │ └── Versions.php │ │ │ └── Util │ │ │ │ ├── AuthHelper.php │ │ │ │ ├── Bitbucket.php │ │ │ │ ├── ComposerMirror.php │ │ │ │ ├── ConfigValidator.php │ │ │ │ ├── ErrorHandler.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── Git.php │ │ │ │ ├── GitHub.php │ │ │ │ ├── GitLab.php │ │ │ │ ├── Hg.php │ │ │ │ ├── Http │ │ │ │ ├── CurlDownloader.php │ │ │ │ ├── CurlResponse.php │ │ │ │ ├── ProxyHelper.php │ │ │ │ ├── ProxyManager.php │ │ │ │ ├── RequestProxy.php │ │ │ │ └── Response.php │ │ │ │ ├── HttpDownloader.php │ │ │ │ ├── IniHelper.php │ │ │ │ ├── Loop.php │ │ │ │ ├── MetadataMinifier.php │ │ │ │ ├── NoProxyPattern.php │ │ │ │ ├── PackageInfo.php │ │ │ │ ├── PackageSorter.php │ │ │ │ ├── Perforce.php │ │ │ │ ├── Platform.php │ │ │ │ ├── ProcessExecutor.php │ │ │ │ ├── RemoteFilesystem.php │ │ │ │ ├── Silencer.php │ │ │ │ ├── StreamContextFactory.php │ │ │ │ ├── Svn.php │ │ │ │ ├── SyncHelper.php │ │ │ │ ├── Tar.php │ │ │ │ ├── TlsHelper.php │ │ │ │ ├── Url.php │ │ │ │ └── Zip.php │ │ │ └── bootstrap.php │ ├── installed.json │ ├── installed.php │ ├── metadata-minifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ └── src │ │ │ └── MetadataMinifier.php │ ├── pcre │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ └── src │ │ │ ├── MatchAllResult.php │ │ │ ├── MatchAllWithOffsetsResult.php │ │ │ ├── MatchResult.php │ │ │ ├── MatchWithOffsetsResult.php │ │ │ ├── PcreException.php │ │ │ ├── Preg.php │ │ │ ├── Regex.php │ │ │ └── ReplaceResult.php │ ├── platform_check.php │ ├── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Comparator.php │ │ │ ├── CompilingMatcher.php │ │ │ ├── Constraint │ │ │ ├── Bound.php │ │ │ ├── Constraint.php │ │ │ ├── ConstraintInterface.php │ │ │ ├── MatchAllConstraint.php │ │ │ ├── MatchNoneConstraint.php │ │ │ └── MultiConstraint.php │ │ │ ├── Interval.php │ │ │ ├── Intervals.php │ │ │ ├── Semver.php │ │ │ └── VersionParser.php │ ├── spdx-licenses │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── continuous-integration.yml │ │ │ │ ├── lint.yml │ │ │ │ └── phpstan.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ ├── res │ │ │ ├── spdx-exceptions.json │ │ │ └── spdx-licenses.json │ │ └── src │ │ │ └── SpdxLicenses.php │ └── xdebug-handler │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── PhpConfig.php │ │ ├── Process.php │ │ ├── Status.php │ │ └── XdebugHandler.php ├── dealerdirect │ └── phpcodesniffer-composer-installer │ │ ├── .github_changelog_generator │ │ ├── .remarkrc │ │ ├── .yamllint │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ └── generate-changelog.sh │ │ ├── composer.json │ │ └── src │ │ └── Plugin.php ├── doctrine │ └── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── psalm.xml │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php ├── friendsofcake │ └── bootstrap-ui │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── contrib │ │ └── pre-commit │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── phpstan.neon │ │ ├── psalm.xml │ │ ├── src │ │ ├── Command │ │ │ ├── BootstrapCommand.php │ │ │ ├── CopyLayoutsCommand.php │ │ │ ├── InstallCommand.php │ │ │ └── ModifyViewCommand.php │ │ ├── Plugin.php │ │ └── View │ │ │ ├── Helper │ │ │ ├── BreadcrumbsHelper.php │ │ │ ├── FlashHelper.php │ │ │ ├── FormHelper.php │ │ │ ├── HtmlHelper.php │ │ │ ├── OptionsAwareTrait.php │ │ │ ├── PaginatorHelper.php │ │ │ └── Types │ │ │ │ ├── Classes.php │ │ │ │ ├── Element.php │ │ │ │ ├── Type.php │ │ │ │ └── TypeInterface.php │ │ │ ├── UIView.php │ │ │ ├── UIViewTrait.php │ │ │ └── Widget │ │ │ ├── BasicWidget.php │ │ │ ├── ButtonWidget.php │ │ │ ├── DateTimeWidget.php │ │ │ ├── FileWidget.php │ │ │ ├── InputgroupTrait.php │ │ │ ├── SelectBoxWidget.php │ │ │ └── TextareaWidget.php │ │ ├── templates │ │ ├── bake │ │ │ ├── Template │ │ │ │ ├── add.twig │ │ │ │ ├── edit.twig │ │ │ │ ├── index.twig │ │ │ │ ├── login.twig │ │ │ │ └── view.twig │ │ │ └── element │ │ │ │ ├── form.twig │ │ │ │ └── tb_actions.twig │ │ ├── element │ │ │ └── flash │ │ │ │ └── default.php │ │ └── layout │ │ │ ├── default.php │ │ │ └── examples │ │ │ ├── cover.php │ │ │ ├── dashboard.php │ │ │ └── signin.php │ │ └── webroot │ │ ├── css │ │ ├── cover.css │ │ ├── dashboard.css │ │ └── signin.css │ │ └── img │ │ └── baked-with-cakephp.svg ├── google │ └── recaptcha │ │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ARCHITECTURE.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.yaml │ │ ├── composer.json │ │ ├── examples │ │ ├── appengine-https.php │ │ ├── config.php.dist │ │ ├── examples.css │ │ ├── google0afd8760fd68f119.html │ │ ├── index.php │ │ ├── recaptcha-content-security-policy.php │ │ ├── recaptcha-v2-checkbox-explicit.php │ │ ├── recaptcha-v2-checkbox.php │ │ ├── recaptcha-v2-invisible.php │ │ ├── recaptcha-v3-request-scores.php │ │ ├── recaptcha-v3-verify.php │ │ └── robots.txt │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── ReCaptcha │ │ │ ├── ReCaptcha.php │ │ │ ├── RequestMethod.php │ │ │ ├── RequestMethod │ │ │ │ ├── Curl.php │ │ │ │ ├── CurlPost.php │ │ │ │ ├── Post.php │ │ │ │ ├── Socket.php │ │ │ │ └── SocketPost.php │ │ │ ├── RequestParameters.php │ │ │ └── Response.php │ │ └── autoload.php │ │ └── tests │ │ └── ReCaptcha │ │ ├── ReCaptchaTest.php │ │ ├── RequestMethod │ │ ├── CurlPostTest.php │ │ ├── PostTest.php │ │ └── SocketPostTest.php │ │ ├── RequestParametersTest.php │ │ └── ResponseTest.php ├── jasny │ └── twig-extensions │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── ArrayExtension.php │ │ ├── DateExtension.php │ │ ├── PcreExtension.php │ │ └── TextExtension.php │ │ └── tests │ │ ├── ArrayExtensionTest.php │ │ ├── DateExtensionTest.php │ │ ├── PcreExtensionTest.php │ │ ├── TextExtensionTest.php │ │ └── support │ │ └── TestHelper.php ├── jdorn │ └── sql-formatter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── examples │ │ ├── cli.php │ │ └── examples.php │ │ ├── lib │ │ └── SqlFormatter.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── SqlFormatterTest.php │ │ ├── clihighlight.html │ │ ├── compress.html │ │ ├── format-highlight.html │ │ ├── format.html │ │ ├── highlight.html │ │ ├── performance.php │ │ └── sql.sql ├── josegonzalez │ └── dotenv │ │ ├── .editorconfig │ │ ├── CONTRIBUTING.markdown │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── composer.json │ │ └── src │ │ └── josegonzalez │ │ └── Dotenv │ │ ├── Expect.php │ │ ├── Filter │ │ ├── CallableFilter.php │ │ ├── LowercaseKeyFilter.php │ │ ├── NullFilter.php │ │ ├── RemapKeysFilter.php │ │ ├── UnderscoreArrayFilter.php │ │ ├── UppercaseFirstKeyFilter.php │ │ └── UrlParseFilter.php │ │ └── Loader.php ├── justinrainbow │ └── json-schema │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── validate-json │ │ ├── composer.json │ │ ├── dist │ │ └── schema │ │ │ ├── json-schema-draft-03.json │ │ │ └── json-schema-draft-04.json │ │ └── src │ │ └── JsonSchema │ │ ├── Constraints │ │ ├── BaseConstraint.php │ │ ├── CollectionConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EnumConstraint.php │ │ ├── Factory.php │ │ ├── FormatConstraint.php │ │ ├── NumberConstraint.php │ │ ├── ObjectConstraint.php │ │ ├── SchemaConstraint.php │ │ ├── StringConstraint.php │ │ ├── TypeCheck │ │ │ ├── LooseTypeCheck.php │ │ │ ├── StrictTypeCheck.php │ │ │ └── TypeCheckInterface.php │ │ ├── TypeConstraint.php │ │ └── UndefinedConstraint.php │ │ ├── Entity │ │ └── JsonPointer.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidConfigException.php │ │ ├── InvalidSchemaException.php │ │ ├── InvalidSchemaMediaTypeException.php │ │ ├── InvalidSourceUriException.php │ │ ├── JsonDecodingException.php │ │ ├── ResourceNotFoundException.php │ │ ├── RuntimeException.php │ │ ├── UnresolvableJsonPointerException.php │ │ ├── UriResolverException.php │ │ └── ValidationException.php │ │ ├── Iterator │ │ └── ObjectIterator.php │ │ ├── Rfc3339.php │ │ ├── SchemaStorage.php │ │ ├── SchemaStorageInterface.php │ │ ├── Uri │ │ ├── Retrievers │ │ │ ├── AbstractRetriever.php │ │ │ ├── Curl.php │ │ │ ├── FileGetContents.php │ │ │ ├── PredefinedArray.php │ │ │ └── UriRetrieverInterface.php │ │ ├── UriResolver.php │ │ └── UriRetriever.php │ │ ├── UriResolverInterface.php │ │ ├── UriRetrieverInterface.php │ │ └── Validator.php ├── laminas │ ├── laminas-diactoros │ │ ├── COPYRIGHT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml.dist │ │ └── src │ │ │ ├── AbstractSerializer.php │ │ │ ├── CallbackStream.php │ │ │ ├── ConfigProvider.php │ │ │ ├── Exception │ │ │ ├── DeserializationException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidForwardedHeaderNameException.php │ │ │ ├── InvalidProxyAddressException.php │ │ │ ├── InvalidStreamPointerPositionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SerializationException.php │ │ │ ├── UnreadableStreamException.php │ │ │ ├── UnrecognizedProtocolVersionException.php │ │ │ ├── UnrewindableStreamException.php │ │ │ ├── UnseekableStreamException.php │ │ │ ├── UntellableStreamException.php │ │ │ ├── UnwritableStreamException.php │ │ │ ├── UploadedFileAlreadyMovedException.php │ │ │ └── UploadedFileErrorException.php │ │ │ ├── HeaderSecurity.php │ │ │ ├── MessageTrait.php │ │ │ ├── Module.php │ │ │ ├── PhpInputStream.php │ │ │ ├── RelativeStream.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ ├── ArraySerializer.php │ │ │ └── Serializer.php │ │ │ ├── RequestFactory.php │ │ │ ├── RequestTrait.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ ├── ArraySerializer.php │ │ │ ├── EmptyResponse.php │ │ │ ├── HtmlResponse.php │ │ │ ├── InjectContentTypeTrait.php │ │ │ ├── JsonResponse.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Serializer.php │ │ │ ├── TextResponse.php │ │ │ └── XmlResponse.php │ │ │ ├── ResponseFactory.php │ │ │ ├── ServerRequest.php │ │ │ ├── ServerRequestFactory.php │ │ │ ├── ServerRequestFilter │ │ │ ├── DoNotFilter.php │ │ │ ├── FilterServerRequestInterface.php │ │ │ ├── FilterUsingXForwardedHeaders.php │ │ │ └── IPRange.php │ │ │ ├── Stream.php │ │ │ ├── StreamFactory.php │ │ │ ├── UploadedFile.php │ │ │ ├── UploadedFileFactory.php │ │ │ ├── Uri.php │ │ │ ├── UriFactory.php │ │ │ └── functions │ │ │ ├── create_uploaded_file.legacy.php │ │ │ ├── create_uploaded_file.php │ │ │ ├── marshal_headers_from_sapi.legacy.php │ │ │ ├── marshal_headers_from_sapi.php │ │ │ ├── marshal_method_from_sapi.legacy.php │ │ │ ├── marshal_method_from_sapi.php │ │ │ ├── marshal_protocol_version_from_sapi.legacy.php │ │ │ ├── marshal_protocol_version_from_sapi.php │ │ │ ├── marshal_uri_from_sapi.legacy.php │ │ │ ├── marshal_uri_from_sapi.php │ │ │ ├── normalize_server.legacy.php │ │ │ ├── normalize_server.php │ │ │ ├── normalize_uploaded_files.legacy.php │ │ │ ├── normalize_uploaded_files.php │ │ │ ├── parse_cookie_header.legacy.php │ │ │ └── parse_cookie_header.php │ └── laminas-httphandlerrunner │ │ ├── COPYRIGHT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── renovate.json │ │ └── src │ │ ├── ConfigProvider.php │ │ ├── Emitter │ │ ├── EmitterInterface.php │ │ ├── EmitterStack.php │ │ ├── SapiEmitter.php │ │ ├── SapiEmitterTrait.php │ │ └── SapiStreamEmitter.php │ │ ├── Exception │ │ ├── EmitterException.php │ │ ├── ExceptionInterface.php │ │ └── InvalidEmitterException.php │ │ ├── RequestHandlerRunner.php │ │ └── RequestHandlerRunnerInterface.php ├── league │ └── container │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Argument │ │ ├── ArgumentInterface.php │ │ ├── ArgumentResolverInterface.php │ │ ├── ArgumentResolverTrait.php │ │ ├── DefaultValueArgument.php │ │ ├── DefaultValueInterface.php │ │ ├── Literal │ │ │ ├── ArrayArgument.php │ │ │ ├── BooleanArgument.php │ │ │ ├── CallableArgument.php │ │ │ ├── FloatArgument.php │ │ │ ├── IntegerArgument.php │ │ │ ├── ObjectArgument.php │ │ │ └── StringArgument.php │ │ ├── LiteralArgument.php │ │ ├── LiteralArgumentInterface.php │ │ ├── ResolvableArgument.php │ │ └── ResolvableArgumentInterface.php │ │ ├── Container.php │ │ ├── ContainerAwareInterface.php │ │ ├── ContainerAwareTrait.php │ │ ├── Definition │ │ ├── Definition.php │ │ ├── DefinitionAggregate.php │ │ ├── DefinitionAggregateInterface.php │ │ └── DefinitionInterface.php │ │ ├── DefinitionContainerInterface.php │ │ ├── Exception │ │ ├── ContainerException.php │ │ └── NotFoundException.php │ │ ├── Inflector │ │ ├── Inflector.php │ │ ├── InflectorAggregate.php │ │ ├── InflectorAggregateInterface.php │ │ └── InflectorInterface.php │ │ ├── ReflectionContainer.php │ │ └── ServiceProvider │ │ ├── AbstractServiceProvider.php │ │ ├── BootableServiceProviderInterface.php │ │ ├── ServiceProviderAggregate.php │ │ ├── ServiceProviderAggregateInterface.php │ │ └── ServiceProviderInterface.php ├── liqueurdetoile │ └── cakephp-orm-json │ │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── .htaccess │ │ ├── classes │ │ │ ├── Lqdt.Coj.Model.Behavior.JsonBehavior.html │ │ │ ├── Lqdt.Coj.Model.Entity.JsonTrait.html │ │ │ ├── Lqdt.Coj.ORM.JsonQuery.html │ │ │ ├── Lqdt.Coj.Plugin.html │ │ │ ├── Lqdt.OrmJson.DatField.Compat3x.html │ │ │ ├── Lqdt.OrmJson.DatField.Exception.MissingPathInDataDatFieldException.html │ │ │ ├── Lqdt.OrmJson.DatField.Exception.UnparsableDatFieldException.html │ │ │ ├── Lqdt.OrmJson.Database.DatFieldDriverInterface.html │ │ │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlJoinTrait.html │ │ │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlOrderTrait.html │ │ │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlSelectTrait.html │ │ │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlWhereTrait.html │ │ │ ├── Lqdt.OrmJson.Database.Driver.DatFieldMysql.html │ │ │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchema.html │ │ │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaInterface.html │ │ │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaTrait.html │ │ │ ├── Lqdt.OrmJson.Model.Behavior.JsonBehavior.html │ │ │ ├── Lqdt.OrmJson.Model.Entity.DatFieldTrait.html │ │ │ ├── Lqdt.OrmJson.Model.Entity.JsonTrait.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.DatFieldBelongsTo.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.DatFieldBelongsToMany.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.DatFieldHasMany.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.DatFieldHasOne.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectLoader.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectWithPivotLoader.html │ │ │ ├── Lqdt.OrmJson.ORM.JsonQuery.html │ │ │ ├── Lqdt.OrmJson.PHPStan.CurlyDatFieldNotation.html │ │ │ └── Lqdt.OrmJson.Plugin.html │ │ ├── css │ │ │ ├── bootstrap-combined.no-icons.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── jquery.iviewer.css │ │ │ ├── phpdocumentor-clean-icons │ │ │ │ ├── Read Me.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── phpdocumentor-clean-icons.dev.svg │ │ │ │ │ ├── phpdocumentor-clean-icons.eot │ │ │ │ │ ├── phpdocumentor-clean-icons.svg │ │ │ │ │ ├── phpdocumentor-clean-icons.ttf │ │ │ │ │ └── phpdocumentor-clean-icons.woff │ │ │ │ ├── lte-ie7.js │ │ │ │ └── style.css │ │ │ ├── prism.css │ │ │ └── template.css │ │ ├── files │ │ │ ├── DatField.Compat3x.html │ │ │ ├── DatField.DatFieldParserTrait.html │ │ │ ├── DatField.Exception.MissingPathInDataDatFieldException.html │ │ │ ├── DatField.Exception.UnparsableDatFieldException.html │ │ │ ├── DatField │ │ │ │ ├── Compat3x.php.txt │ │ │ │ ├── DatFieldParserTrait.php.txt │ │ │ │ └── Exception │ │ │ │ │ ├── MissingPathInDataDatFieldException.php.txt │ │ │ │ │ └── UnparsableDatFieldException.php.txt │ │ │ ├── Database.DatFieldDriverInterface.html │ │ │ ├── Database.Dialect.DatFieldMysqlJoinTrait.html │ │ │ ├── Database.Dialect.DatFieldMysqlOrderTrait.html │ │ │ ├── Database.Dialect.DatFieldMysqlSelectTrait.html │ │ │ ├── Database.Dialect.DatFieldMysqlWhereTrait.html │ │ │ ├── Database.Driver.DatFieldMysql.html │ │ │ ├── Database.Driver.DatFieldSqlDialectTrait.html │ │ │ ├── Database.Expression.DatFieldExpression.html │ │ │ ├── Database.JsonTypeMap.html │ │ │ ├── Database.Schema.DatFieldTableSchema.html │ │ │ ├── Database.Schema.DatFieldTableSchemaInterface.html │ │ │ ├── Database.Schema.DatFieldTableSchemaTrait.html │ │ │ ├── Database │ │ │ │ ├── DatFieldDriverInterface.php.txt │ │ │ │ ├── Dialect │ │ │ │ │ ├── DatFieldMysqlJoinTrait.php.txt │ │ │ │ │ ├── DatFieldMysqlOrderTrait.php.txt │ │ │ │ │ ├── DatFieldMysqlSelectTrait.php.txt │ │ │ │ │ └── DatFieldMysqlWhereTrait.php.txt │ │ │ │ ├── Driver │ │ │ │ │ ├── DatFieldMysql.php.txt │ │ │ │ │ └── DatFieldSqlDialectTrait.php.txt │ │ │ │ ├── Expression │ │ │ │ │ └── DatFieldExpression.php.txt │ │ │ │ ├── JsonTypeMap.php.txt │ │ │ │ └── Schema │ │ │ │ │ ├── DatFieldTableSchema.php.txt │ │ │ │ │ ├── DatFieldTableSchemaInterface.php.txt │ │ │ │ │ └── DatFieldTableSchemaTrait.php.txt │ │ │ ├── Model.Behavior.DatFieldBehavior.html │ │ │ ├── Model.Behavior.JsonBehavior.html │ │ │ ├── Model.Entity.DatFieldTrait.html │ │ │ ├── Model.Entity.JsonTrait.html │ │ │ ├── Model │ │ │ │ ├── Behavior │ │ │ │ │ ├── DatFieldBehavior.php.txt │ │ │ │ │ └── JsonBehavior.php.txt │ │ │ │ └── Entity │ │ │ │ │ ├── DatFieldTrait.php.txt │ │ │ │ │ └── JsonTrait.php.txt │ │ │ ├── ORM.Association.DatFieldBelongsTo.html │ │ │ ├── ORM.Association.DatFieldBelongsToMany.html │ │ │ ├── ORM.Association.DatFieldHasMany.html │ │ │ ├── ORM.Association.DatFieldHasOne.html │ │ │ ├── ORM.Association.Loader.DatFieldSelectLoader.html │ │ │ ├── ORM.Association.Loader.DatFieldSelectWithPivotLoader.html │ │ │ ├── ORM.DatFieldAwareTrait.html │ │ │ ├── ORM.JsonQuery.html │ │ │ ├── ORM │ │ │ │ ├── Association │ │ │ │ │ ├── DatFieldBelongsTo.php.txt │ │ │ │ │ ├── DatFieldBelongsToMany.php.txt │ │ │ │ │ ├── DatFieldHasMany.php.txt │ │ │ │ │ ├── DatFieldHasOne.php.txt │ │ │ │ │ └── Loader │ │ │ │ │ │ ├── DatFieldSelectLoader.php.txt │ │ │ │ │ │ └── DatFieldSelectWithPivotLoader.php.txt │ │ │ │ ├── DatFieldAwareTrait.php.txt │ │ │ │ └── JsonQuery.php.txt │ │ │ ├── PHPStan.CurlyDatFieldNotation.html │ │ │ ├── PHPStan.DatFieldProperty.html │ │ │ ├── PHPStan │ │ │ │ ├── CurlyDatFieldNotation.php.txt │ │ │ │ └── DatFieldProperty.php.txt │ │ │ ├── Plugin.html │ │ │ ├── Plugin.php.txt │ │ │ ├── Utility.DatField.html │ │ │ └── Utility │ │ │ │ └── DatField.php.txt │ │ ├── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── graphs │ │ │ └── class.html │ │ ├── images │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── custom-icons.svg │ │ │ ├── favicon.ico │ │ │ ├── hierarchy-item.png │ │ │ ├── icon-class-13x13.png │ │ │ ├── icon-class.svg │ │ │ ├── icon-interface-13x13.png │ │ │ ├── icon-interface.svg │ │ │ ├── icon-trait-13x13.png │ │ │ ├── icon-trait.svg │ │ │ └── iviewer │ │ │ │ ├── grab.cur │ │ │ │ ├── hand.cur │ │ │ │ ├── iviewer.rotate_left.png │ │ │ │ ├── iviewer.rotate_right.png │ │ │ │ ├── iviewer.zoom_fit.png │ │ │ │ ├── iviewer.zoom_in.png │ │ │ │ ├── iviewer.zoom_out.png │ │ │ │ └── iviewer.zoom_zero.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5.js │ │ │ ├── jquery-1.11.0.min.js │ │ │ ├── jquery.dotdotdot-1.5.9.js │ │ │ ├── jquery.dotdotdot-1.5.9.min.js │ │ │ ├── jquery.iviewer.js │ │ │ ├── jquery.iviewer.min.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── jquery.smooth-scroll.js │ │ │ ├── prism.min.js │ │ │ └── ui │ │ │ │ └── 1.10.4 │ │ │ │ └── jquery-ui.min.js │ │ ├── namespaces │ │ │ ├── Lqdt.Coj.Model.Behavior.html │ │ │ ├── Lqdt.Coj.Model.Entity.html │ │ │ ├── Lqdt.Coj.Model.html │ │ │ ├── Lqdt.Coj.ORM.html │ │ │ ├── Lqdt.Coj.html │ │ │ ├── Lqdt.OrmJson.DatField.Exception.html │ │ │ ├── Lqdt.OrmJson.DatField.html │ │ │ ├── Lqdt.OrmJson.Database.Dialect.html │ │ │ ├── Lqdt.OrmJson.Database.Driver.html │ │ │ ├── Lqdt.OrmJson.Database.Schema.html │ │ │ ├── Lqdt.OrmJson.Database.html │ │ │ ├── Lqdt.OrmJson.Model.Behavior.html │ │ │ ├── Lqdt.OrmJson.Model.Entity.html │ │ │ ├── Lqdt.OrmJson.Model.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.Loader.html │ │ │ ├── Lqdt.OrmJson.ORM.Association.html │ │ │ ├── Lqdt.OrmJson.ORM.html │ │ │ ├── Lqdt.OrmJson.PHPStan.html │ │ │ ├── Lqdt.OrmJson.html │ │ │ ├── Lqdt.html │ │ │ └── default.html │ │ ├── phpdoc-cache-06 │ │ │ └── phpdoc-cache-file_2d6443d56e20bfa1edb0c581067dee0e.dat │ │ ├── phpdoc-cache-1e │ │ │ └── phpdoc-cache-file_6081ea489963a260141016d07dac721f.dat │ │ ├── phpdoc-cache-2e │ │ │ └── phpdoc-cache-settings.dat │ │ ├── phpdoc-cache-37 │ │ │ └── phpdoc-cache-file_21bd20a182301fd24eb66dcd173ef906.dat │ │ ├── phpdoc-cache-3a │ │ │ └── phpdoc-cache-file_00c0e72557a35c8fa1c205e6d170833e.dat │ │ ├── phpdoc-cache-3f │ │ │ └── phpdoc-cache-file_46eed913e2bf77c8e04a611ad4799635.dat │ │ ├── phpdoc-cache-47 │ │ │ └── phpdoc-cache-file_b15a7989a134b7cfaee83e83a80791a4.dat │ │ ├── phpdoc-cache-4d │ │ │ └── phpdoc-cache-file_f72e9e5996bcb1406ebc264d9afd4de2.dat │ │ ├── phpdoc-cache-54 │ │ │ └── phpdoc-cache-file_f991a07b6172e9843e855dcc0f238625.dat │ │ ├── phpdoc-cache-59 │ │ │ └── phpdoc-cache-file_ff747fc988f6f6b4d34746990f3ec7f7.dat │ │ ├── phpdoc-cache-5d │ │ │ └── phpdoc-cache-file_037df2decc9fa16fd6c809d58596a12a.dat │ │ ├── phpdoc-cache-63 │ │ │ └── phpdoc-cache-file_2e22c00487baa1bfbeb88650f6dd70b1.dat │ │ ├── phpdoc-cache-7a │ │ │ └── phpdoc-cache-file_57591cb5dab34f85fc4ada753f5fd7f2.dat │ │ ├── phpdoc-cache-8d │ │ │ └── phpdoc-cache-file_42d612f600d1a4ea4e4a6e5e26b3c753.dat │ │ ├── phpdoc-cache-98 │ │ │ └── phpdoc-cache-file_85c12ddd0d166198a29ca7cb59e3846c.dat │ │ ├── phpdoc-cache-a1 │ │ │ └── phpdoc-cache-file_99ed7baf06abe9501dc5953649ff3370.dat │ │ ├── phpdoc-cache-a3 │ │ │ └── phpdoc-cache-file_d213d482564b6755dded1b9c4a996b13.dat │ │ ├── phpdoc-cache-a9 │ │ │ └── phpdoc-cache-file_e27f4a749b2ca71529ce9e6f4582868c.dat │ │ ├── phpdoc-cache-b2 │ │ │ └── phpdoc-cache-file_7005b80973e0623d5dd8859e5e3b6cf4.dat │ │ ├── phpdoc-cache-bf │ │ │ └── phpdoc-cache-file_eabba0f10285cf3550eca80f8bb95615.dat │ │ ├── phpdoc-cache-c7 │ │ │ └── phpdoc-cache-file_6089e35b66825b439f18ff2c8f680cd8.dat │ │ ├── phpdoc-cache-c8 │ │ │ └── phpdoc-cache-file_b48696c39c4c91a2fd3e93213ca642e0.dat │ │ ├── phpdoc-cache-e0 │ │ │ ├── phpdoc-cache-file_49f062a40ccec9f8b0daa6987d73fa31.dat │ │ │ └── phpdoc-cache-file_5e736f0fbd210fdd5102d7f2cafdfc7a.dat │ │ ├── phpdoc-cache-f2 │ │ │ └── phpdoc-cache-file_99114ccc5dac599619d838cf8b492e2f.dat │ │ └── reports │ │ │ ├── deprecated.html │ │ │ ├── errors.html │ │ │ └── markers.html │ │ ├── phpcs.xml │ │ ├── phpstan.neon.dist │ │ ├── phpunit.compat.xml.dist │ │ ├── phpunit.coverage.xml.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── DatField │ │ │ ├── Compat3x.php │ │ │ ├── DatFieldParserTrait.php │ │ │ └── Exception │ │ │ │ ├── MissingPathInDataDatFieldException.php │ │ │ │ └── UnparsableDatFieldException.php │ │ ├── Database │ │ │ ├── DatFieldDriverInterface.php │ │ │ ├── Driver │ │ │ │ ├── DatFieldMysql.php │ │ │ │ └── DatFieldSqlDialectTrait.php │ │ │ ├── Expression │ │ │ │ └── DatFieldExpression.php │ │ │ ├── JsonTypeMap.php │ │ │ └── Schema │ │ │ │ ├── DatFieldTableSchema.php │ │ │ │ ├── DatFieldTableSchemaInterface.php │ │ │ │ └── DatFieldTableSchemaTrait.php │ │ ├── Model │ │ │ ├── Behavior │ │ │ │ └── DatFieldBehavior.php │ │ │ └── Entity │ │ │ │ └── DatFieldTrait.php │ │ ├── ORM │ │ │ ├── Association │ │ │ │ ├── DatFieldBelongsTo.php │ │ │ │ ├── DatFieldBelongsToMany.php │ │ │ │ ├── DatFieldHasMany.php │ │ │ │ ├── DatFieldHasOne.php │ │ │ │ └── Loader │ │ │ │ │ ├── DatFieldSelectLoader.php │ │ │ │ │ └── DatFieldSelectWithPivotLoader.php │ │ │ └── DatFieldAwareTrait.php │ │ ├── PHPStan │ │ │ ├── CurlyDatFieldNotation.php │ │ │ └── DatFieldProperty.php │ │ └── Plugin.php │ │ └── tests │ │ ├── Fixture │ │ ├── DataGenerator.php │ │ └── geolocation_data.sql │ │ ├── Model │ │ ├── DatFieldAware.php │ │ ├── DatFieldParser.php │ │ ├── Entity │ │ │ ├── Agent.php │ │ │ ├── Client.php │ │ │ ├── Contact.php │ │ │ ├── DatFieldEntity.php │ │ │ └── Relation.php │ │ └── Table │ │ │ ├── AgentsTable.php │ │ │ ├── AssignmentsTable.php │ │ │ ├── ClientsTable.php │ │ │ ├── ContactsTable.php │ │ │ ├── DatfieldBehaviorTable.php │ │ │ ├── DatfieldsTable.php │ │ │ ├── DriversTable.php │ │ │ ├── LocationsTable.php │ │ │ ├── ObjectsTable.php │ │ │ ├── RelationsTable.php │ │ │ └── VehiclesTable.php │ │ ├── StubTruncateDirtyTables.php │ │ ├── TestCase │ │ ├── Database │ │ │ ├── DatField │ │ │ │ └── DatFieldParserTraitTest.php │ │ │ └── Driver │ │ │ │ ├── BasicFilterTest.php │ │ │ │ ├── BasicInsertAndUpdateTest.php │ │ │ │ ├── BasicSelectTest.php │ │ │ │ ├── QuoteIdentifiersTest.php │ │ │ │ ├── TableAggregationsTest.php │ │ │ │ ├── TableFilterTest.php │ │ │ │ ├── TableFunctionsTest.php │ │ │ │ ├── TableOrderTableTest.php │ │ │ │ ├── TableSelectTest.php │ │ │ │ ├── TestCase.php │ │ │ │ └── TranslateDatFieldTest.php │ │ ├── Model │ │ │ ├── Behavior │ │ │ │ └── DatFieldBehaviorTest.php │ │ │ └── Entity │ │ │ │ └── DatFieldTraitTest.php │ │ ├── ORM │ │ │ ├── Association │ │ │ │ ├── BelongsToManyTest.php │ │ │ │ ├── BelongsToTest.php │ │ │ │ ├── HasManyTest.php │ │ │ │ └── HasOneTest.php │ │ │ └── DatFieldAwareTraitTest.php │ │ ├── PHPStan │ │ │ └── CurlyDatFieldNotationTest.php │ │ └── RealCase │ │ │ └── GeolocationTest.php │ │ ├── bootstrap.compat.php │ │ ├── bootstrap.php │ │ └── config │ │ ├── Migrations │ │ └── 0_DatabaseSetup.php │ │ └── common.php ├── m1 │ └── env │ │ ├── .editorconfig │ │ ├── CHANGELOG.md │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Exception │ │ └── ParseException.php │ │ ├── Helper │ │ └── StringHelper.php │ │ ├── Parser.php │ │ └── Parser │ │ ├── AbstractParser.php │ │ ├── KeyParser.php │ │ ├── ValueParser.php │ │ └── VariableParser.php ├── mobiledetect │ └── mobiledetectlib │ │ ├── LICENSE │ │ ├── Mobile_Detect.json │ │ ├── Mobile_Detect.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── docs │ │ ├── CONTRIBUTING.md │ │ ├── HISTORY.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── KNOWN_LIMITATIONS.md │ │ ├── export │ │ └── exportToJSON.php │ │ ├── namespaced │ │ └── Detection │ │ │ └── MobileDetect.php │ │ └── phpcs.xml ├── mustache │ └── mustache │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── build_bootstrap.php │ │ ├── composer.json │ │ └── src │ │ └── Mustache │ │ ├── Autoloader.php │ │ ├── Cache.php │ │ ├── Cache │ │ ├── AbstractCache.php │ │ ├── FilesystemCache.php │ │ └── NoopCache.php │ │ ├── Compiler.php │ │ ├── Context.php │ │ ├── Engine.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── RuntimeException.php │ │ ├── SyntaxException.php │ │ ├── UnknownFilterException.php │ │ ├── UnknownHelperException.php │ │ └── UnknownTemplateException.php │ │ ├── HelperCollection.php │ │ ├── LambdaHelper.php │ │ ├── Loader.php │ │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CascadingLoader.php │ │ ├── FilesystemLoader.php │ │ ├── InlineLoader.php │ │ ├── MutableLoader.php │ │ ├── ProductionFilesystemLoader.php │ │ └── StringLoader.php │ │ ├── Logger.php │ │ ├── Logger │ │ ├── AbstractLogger.php │ │ └── StreamLogger.php │ │ ├── Parser.php │ │ ├── Source.php │ │ ├── Source │ │ └── FilesystemSource.php │ │ ├── Template.php │ │ └── Tokenizer.php ├── myclabs │ └── deep-copy │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php ├── nikic │ └── php-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── phpyLang.php │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ └── lib │ │ └── PhpParser │ │ ├── Builder.php │ │ ├── Builder │ │ ├── ClassConst.php │ │ ├── Class_.php │ │ ├── Declaration.php │ │ ├── EnumCase.php │ │ ├── Enum_.php │ │ ├── FunctionLike.php │ │ ├── Function_.php │ │ ├── Interface_.php │ │ ├── Method.php │ │ ├── Namespace_.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── Trait_.php │ │ └── Use_.php │ │ ├── BuilderFactory.php │ │ ├── BuilderHelpers.php │ │ ├── Comment.php │ │ ├── Comment │ │ └── Doc.php │ │ ├── ConstExprEvaluationException.php │ │ ├── ConstExprEvaluator.php │ │ ├── Error.php │ │ ├── ErrorHandler.php │ │ ├── ErrorHandler │ │ ├── Collecting.php │ │ └── Throwing.php │ │ ├── Internal │ │ ├── DiffElem.php │ │ ├── Differ.php │ │ ├── PrintableNewAnonClassNode.php │ │ └── TokenStream.php │ │ ├── JsonDecoder.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── Emulative.php │ │ └── TokenEmulator │ │ │ ├── AttributeEmulator.php │ │ │ ├── CoaleseEqualTokenEmulator.php │ │ │ ├── EnumTokenEmulator.php │ │ │ ├── ExplicitOctalEmulator.php │ │ │ ├── FlexibleDocStringEmulator.php │ │ │ ├── FnTokenEmulator.php │ │ │ ├── KeywordEmulator.php │ │ │ ├── MatchTokenEmulator.php │ │ │ ├── NullsafeTokenEmulator.php │ │ │ ├── NumericLiteralSeparatorEmulator.php │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ ├── ReverseEmulator.php │ │ │ └── TokenEmulator.php │ │ ├── NameContext.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Arg.php │ │ ├── Attribute.php │ │ ├── AttributeGroup.php │ │ ├── ComplexType.php │ │ ├── Const_.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Array_.php │ │ │ ├── ArrowFunction.php │ │ │ ├── Assign.php │ │ │ ├── AssignOp.php │ │ │ ├── AssignOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── AssignRef.php │ │ │ ├── BinaryOp.php │ │ │ ├── BinaryOp │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Coalesce.php │ │ │ │ ├── Concat.php │ │ │ │ ├── Div.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Plus.php │ │ │ │ ├── Pow.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ └── Spaceship.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BooleanNot.php │ │ │ ├── CallLike.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 │ │ │ ├── Match_.php │ │ │ ├── MethodCall.php │ │ │ ├── New_.php │ │ │ ├── NullsafeMethodCall.php │ │ │ ├── NullsafePropertyFetch.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print_.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── Throw_.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ ├── YieldFrom.php │ │ │ └── Yield_.php │ │ ├── FunctionLike.php │ │ ├── Identifier.php │ │ ├── IntersectionType.php │ │ ├── MatchArm.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 │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── Expression.php │ │ │ ├── Finally_.php │ │ │ ├── For_.php │ │ │ ├── Foreach_.php │ │ │ ├── Function_.php │ │ │ ├── Global_.php │ │ │ ├── Goto_.php │ │ │ ├── GroupUse.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If_.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface_.php │ │ │ ├── Label.php │ │ │ ├── Namespace_.php │ │ │ ├── Nop.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return_.php │ │ │ ├── StaticVar.php │ │ │ ├── Static_.php │ │ │ ├── Switch_.php │ │ │ ├── Throw_.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ ├── Trait_.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset_.php │ │ │ ├── UseUse.php │ │ │ ├── Use_.php │ │ │ └── While_.php │ │ ├── UnionType.php │ │ ├── VarLikeIdentifier.php │ │ └── VariadicPlaceholder.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeFinder.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ ├── CloningVisitor.php │ │ ├── FindingVisitor.php │ │ ├── FirstFindingVisitor.php │ │ ├── NameResolver.php │ │ ├── NodeConnectingVisitor.php │ │ └── ParentConnectingVisitor.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ ├── Multiple.php │ │ ├── Php5.php │ │ ├── Php7.php │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ └── Standard.php │ │ └── PrettyPrinterAbstract.php ├── phar-io │ ├── manifest │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ ├── ElementCollectionException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidApplicationNameException.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── ManifestDocumentException.php │ │ │ ├── ManifestDocumentLoadingException.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 │ │ │ ├── ManifestElement.php │ │ │ ├── PhpElement.php │ │ │ └── RequiresElement.php │ └── version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php ├── phpstan │ └── phpdoc-parser │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Ast │ │ ├── ConstExpr │ │ │ ├── ConstExprArrayItemNode.php │ │ │ ├── ConstExprArrayNode.php │ │ │ ├── ConstExprFalseNode.php │ │ │ ├── ConstExprFloatNode.php │ │ │ ├── ConstExprIntegerNode.php │ │ │ ├── ConstExprNode.php │ │ │ ├── ConstExprNullNode.php │ │ │ ├── ConstExprStringNode.php │ │ │ ├── ConstExprTrueNode.php │ │ │ └── ConstFetchNode.php │ │ ├── Node.php │ │ ├── NodeAttributes.php │ │ ├── PhpDoc │ │ │ ├── DeprecatedTagValueNode.php │ │ │ ├── ExtendsTagValueNode.php │ │ │ ├── GenericTagValueNode.php │ │ │ ├── ImplementsTagValueNode.php │ │ │ ├── InvalidTagValueNode.php │ │ │ ├── MethodTagValueNode.php │ │ │ ├── MethodTagValueParameterNode.php │ │ │ ├── MixinTagValueNode.php │ │ │ ├── ParamTagValueNode.php │ │ │ ├── PhpDocChildNode.php │ │ │ ├── PhpDocNode.php │ │ │ ├── PhpDocTagNode.php │ │ │ ├── PhpDocTagValueNode.php │ │ │ ├── PhpDocTextNode.php │ │ │ ├── PropertyTagValueNode.php │ │ │ ├── ReturnTagValueNode.php │ │ │ ├── TemplateTagValueNode.php │ │ │ ├── ThrowsTagValueNode.php │ │ │ ├── TypeAliasImportTagValueNode.php │ │ │ ├── TypeAliasTagValueNode.php │ │ │ ├── UsesTagValueNode.php │ │ │ └── VarTagValueNode.php │ │ └── Type │ │ │ ├── ArrayShapeItemNode.php │ │ │ ├── ArrayShapeNode.php │ │ │ ├── ArrayTypeNode.php │ │ │ ├── CallableTypeNode.php │ │ │ ├── CallableTypeParameterNode.php │ │ │ ├── ConstTypeNode.php │ │ │ ├── GenericTypeNode.php │ │ │ ├── IdentifierTypeNode.php │ │ │ ├── IntersectionTypeNode.php │ │ │ ├── NullableTypeNode.php │ │ │ ├── ThisTypeNode.php │ │ │ ├── TypeNode.php │ │ │ └── UnionTypeNode.php │ │ ├── Lexer │ │ └── Lexer.php │ │ └── Parser │ │ ├── ConstExprParser.php │ │ ├── ParserException.php │ │ ├── PhpDocParser.php │ │ ├── TokenIterator.php │ │ └── TypeParser.php ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── PhpdbgDriver.php │ │ │ ├── Selector.php │ │ │ ├── Xdebug2Driver.php │ │ │ └── Xdebug3Driver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── PhpdbgNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── WrongXdebugVersionException.php │ │ │ ├── Xdebug2NotEnabledException.php │ │ │ ├── Xdebug3NotEnabledException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ ├── RawCodeCoverageData.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.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 │ │ │ ├── StaticAnalysis │ │ │ ├── CacheWarmer.php │ │ │ ├── CachingFileAnalyser.php │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ ├── FileAnalyser.php │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-8.5.md │ │ ├── ChangeLog-9.5.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 8.5.xsd │ │ └── 9.2.xsd │ │ └── src │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Constraint │ │ │ ├── Boolean │ │ │ │ ├── IsFalse.php │ │ │ │ └── IsTrue.php │ │ │ ├── Callback.php │ │ │ ├── Cardinality │ │ │ │ ├── Count.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── LessThan.php │ │ │ │ └── SameSize.php │ │ │ ├── Constraint.php │ │ │ ├── Equality │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ └── IsEqualWithDelta.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ └── ExceptionMessageRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasAttribute.php │ │ │ ├── Operator │ │ │ │ ├── BinaryOperator.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Operator.php │ │ │ │ └── UnaryOperator.php │ │ │ ├── String │ │ │ │ ├── IsJson.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── ErrorTestCase.php │ │ ├── Exception │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ ├── ComparisonMethodDoesNotExistException.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── OutputError.php │ │ │ ├── PHPTAssertionFailedError.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── SyntheticSkippedError.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ └── Warning.php │ │ ├── ExceptionWrapper.php │ │ ├── ExecutionOrderDependency.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── InvalidParameterGroupException.php │ │ ├── MockObject │ │ │ ├── Api │ │ │ │ ├── Api.php │ │ │ │ └── Method.php │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ ├── UnknownClassException.php │ │ │ │ ├── UnknownTraitException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── intersection.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── mocked_method.tpl │ │ │ │ ├── mocked_method_never_or_void.tpl │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── proxied_method_never_or_void.tpl │ │ │ │ ├── trait_class.tpl │ │ │ │ ├── wsdl_class.tpl │ │ │ │ └── wsdl_method.tpl │ │ │ ├── Invocation.php │ │ │ ├── InvocationHandler.php │ │ │ ├── Matcher.php │ │ │ ├── MethodNameConstraint.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockClass.php │ │ │ ├── MockMethod.php │ │ │ ├── MockMethodSet.php │ │ │ ├── MockObject.php │ │ │ ├── MockTrait.php │ │ │ ├── MockType.php │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ │ └── Verifiable.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestListenerDefaultImplementation.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuiteIterator.php │ │ └── WarningTestCase.php │ │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── DefaultTestResultCache.php │ │ ├── Exception.php │ │ ├── Extension │ │ │ ├── ExtensionHandler.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ └── NameFilterIterator.php │ │ ├── Hook │ │ │ ├── AfterIncompleteTestHook.php │ │ │ ├── AfterLastTestHook.php │ │ │ ├── AfterRiskyTestHook.php │ │ │ ├── AfterSkippedTestHook.php │ │ │ ├── AfterSuccessfulTestHook.php │ │ │ ├── AfterTestErrorHook.php │ │ │ ├── AfterTestFailureHook.php │ │ │ ├── AfterTestHook.php │ │ │ ├── AfterTestWarningHook.php │ │ │ ├── BeforeFirstTestHook.php │ │ │ ├── BeforeTestHook.php │ │ │ ├── Hook.php │ │ │ ├── TestHook.php │ │ │ └── TestListenerAdapter.php │ │ ├── NullTestResultCache.php │ │ ├── PhptTestCase.php │ │ ├── ResultCacheExtension.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestResultCache.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── CliArguments │ │ │ ├── Builder.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ └── Mapper.php │ │ ├── Command.php │ │ ├── DefaultResultPrinter.php │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── ResultPrinter.php │ │ ├── TestRunner.php │ │ ├── TestSuiteMapper.php │ │ └── XmlConfiguration │ │ │ ├── CodeCoverage │ │ │ ├── CodeCoverage.php │ │ │ ├── Filter │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ └── DirectoryCollectionIterator.php │ │ │ ├── FilterMapper.php │ │ │ └── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html.php │ │ │ │ ├── Php.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ ├── Configuration.php │ │ │ ├── Exception.php │ │ │ ├── Filesystem │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ ├── DirectoryCollectionIterator.php │ │ │ ├── File.php │ │ │ ├── FileCollection.php │ │ │ └── FileCollectionIterator.php │ │ │ ├── Generator.php │ │ │ ├── Group │ │ │ ├── Group.php │ │ │ ├── GroupCollection.php │ │ │ ├── GroupCollectionIterator.php │ │ │ └── Groups.php │ │ │ ├── Loader.php │ │ │ ├── Logging │ │ │ ├── Junit.php │ │ │ ├── Logging.php │ │ │ ├── TeamCity.php │ │ │ ├── TestDox │ │ │ │ ├── Html.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml.php │ │ │ └── Text.php │ │ │ ├── Migration │ │ │ ├── MigrationBuilder.php │ │ │ ├── MigrationBuilderException.php │ │ │ ├── MigrationException.php │ │ │ ├── Migrations │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ ├── LogToReportMigration.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ ├── MoveWhitelistDirectoriesToCoverage.php │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ └── UpdateSchemaLocationTo93.php │ │ │ └── Migrator.php │ │ │ ├── PHP │ │ │ ├── Constant.php │ │ │ ├── ConstantCollection.php │ │ │ ├── ConstantCollectionIterator.php │ │ │ ├── IniSetting.php │ │ │ ├── IniSettingCollection.php │ │ │ ├── IniSettingCollectionIterator.php │ │ │ ├── Php.php │ │ │ ├── PhpHandler.php │ │ │ ├── Variable.php │ │ │ ├── VariableCollection.php │ │ │ └── VariableCollectionIterator.php │ │ │ ├── PHPUnit │ │ │ ├── Extension.php │ │ │ ├── ExtensionCollection.php │ │ │ ├── ExtensionCollectionIterator.php │ │ │ └── PHPUnit.php │ │ │ └── TestSuite │ │ │ ├── TestDirectory.php │ │ │ ├── TestDirectoryCollection.php │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ ├── TestFile.php │ │ │ ├── TestFileCollection.php │ │ │ ├── TestFileCollectionIterator.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteCollection.php │ │ │ └── TestSuiteCollectionIterator.php │ │ └── Util │ │ ├── Annotation │ │ ├── DocBlock.php │ │ └── Registry.php │ │ ├── Blacklist.php │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── ErrorHandler.php │ │ ├── Exception.php │ │ ├── ExcludeList.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── InvalidDataSetException.php │ │ ├── Json.php │ │ ├── Log │ │ ├── JUnit.php │ │ └── TeamCity.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Printer.php │ │ ├── Reflection.php │ │ ├── RegularExpression.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── CliTestDoxPrinter.php │ │ ├── HtmlResultPrinter.php │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ ├── TestDoxPrinter.php │ │ ├── TextResultPrinter.php │ │ └── XmlResultPrinter.php │ │ ├── TextTestListRenderer.php │ │ ├── Type.php │ │ ├── VersionComparisonOperator.php │ │ ├── XdebugFilterScriptGenerator.php │ │ ├── Xml.php │ │ ├── Xml │ │ ├── Exception.php │ │ ├── FailedSchemaDetectionResult.php │ │ ├── Loader.php │ │ ├── SchemaDetectionResult.php │ │ ├── SchemaDetector.php │ │ ├── SchemaFinder.php │ │ ├── SnapshotNodeList.php │ │ ├── SuccessfulSchemaDetectionResult.php │ │ ├── ValidationResult.php │ │ └── Validator.php │ │ └── XmlTestListRenderer.php ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── http-server-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── RequestHandlerInterface.php │ ├── http-server-middleware │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── MiddlewareInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ └── NullLogger.php │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── react │ └── promise │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CancellablePromiseInterface.php │ │ ├── CancellationQueue.php │ │ ├── Deferred.php │ │ ├── Exception │ │ └── LengthException.php │ │ ├── ExtendedPromiseInterface.php │ │ ├── FulfilledPromise.php │ │ ├── LazyPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── UnhandledRejectionException.php │ │ ├── functions.php │ │ └── functions_include.php ├── robmorgan │ └── phinx │ │ ├── .stickler.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ ├── phinx.php │ │ └── web.php │ │ ├── bin │ │ ├── phinx │ │ └── phinx.bat │ │ ├── composer.json │ │ ├── data │ │ ├── phinx.json.dist │ │ ├── phinx.php.dist │ │ └── phinx.yml.dist │ │ ├── docs │ │ ├── config │ │ │ ├── __init__.py │ │ │ └── all.py │ │ └── en │ │ │ ├── commands.rst │ │ │ ├── conf.py │ │ │ ├── configuration.rst │ │ │ ├── contents.rst │ │ │ ├── copyright.rst │ │ │ ├── goals.rst │ │ │ ├── index.rst │ │ │ ├── install.rst │ │ │ ├── intro.rst │ │ │ ├── migrations.rst │ │ │ ├── namespaces.rst │ │ │ └── seeding.rst │ │ ├── phpstan-baseline.neon │ │ └── src │ │ ├── Phinx │ │ ├── Config │ │ │ ├── Config.php │ │ │ ├── ConfigInterface.php │ │ │ ├── NamespaceAwareInterface.php │ │ │ └── NamespaceAwareTrait.php │ │ ├── Console │ │ │ ├── Command │ │ │ │ ├── AbstractCommand.php │ │ │ │ ├── Breakpoint.php │ │ │ │ ├── Create.php │ │ │ │ ├── Init.php │ │ │ │ ├── ListAliases.php │ │ │ │ ├── Migrate.php │ │ │ │ ├── Rollback.php │ │ │ │ ├── SeedCreate.php │ │ │ │ ├── SeedRun.php │ │ │ │ ├── Status.php │ │ │ │ └── Test.php │ │ │ └── PhinxApplication.php │ │ ├── Db │ │ │ ├── Action │ │ │ │ ├── Action.php │ │ │ │ ├── AddColumn.php │ │ │ │ ├── AddForeignKey.php │ │ │ │ ├── AddIndex.php │ │ │ │ ├── ChangeColumn.php │ │ │ │ ├── ChangeComment.php │ │ │ │ ├── ChangePrimaryKey.php │ │ │ │ ├── CreateTable.php │ │ │ │ ├── DropForeignKey.php │ │ │ │ ├── DropIndex.php │ │ │ │ ├── DropTable.php │ │ │ │ ├── RemoveColumn.php │ │ │ │ ├── RenameColumn.php │ │ │ │ └── RenameTable.php │ │ │ ├── Adapter │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AdapterFactory.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── AdapterWrapper.php │ │ │ │ ├── DirectActionInterface.php │ │ │ │ ├── MysqlAdapter.php │ │ │ │ ├── PdoAdapter.php │ │ │ │ ├── PostgresAdapter.php │ │ │ │ ├── ProxyAdapter.php │ │ │ │ ├── SQLiteAdapter.php │ │ │ │ ├── SqlServerAdapter.php │ │ │ │ ├── TablePrefixAdapter.php │ │ │ │ ├── TimedOutputAdapter.php │ │ │ │ ├── UnsupportedColumnTypeException.php │ │ │ │ └── WrapperInterface.php │ │ │ ├── Plan │ │ │ │ ├── AlterTable.php │ │ │ │ ├── Intent.php │ │ │ │ ├── NewTable.php │ │ │ │ ├── Plan.php │ │ │ │ └── Solver │ │ │ │ │ └── ActionSplitter.php │ │ │ ├── Table.php │ │ │ ├── Table │ │ │ │ ├── Column.php │ │ │ │ ├── ForeignKey.php │ │ │ │ ├── Index.php │ │ │ │ └── Table.php │ │ │ └── Util │ │ │ │ └── AlterInstructions.php │ │ ├── Migration │ │ │ ├── AbstractMigration.php │ │ │ ├── AbstractTemplateCreation.php │ │ │ ├── CreationInterface.php │ │ │ ├── IrreversibleMigrationException.php │ │ │ ├── Manager.php │ │ │ ├── Manager │ │ │ │ └── Environment.php │ │ │ ├── Migration.template.php.dist │ │ │ └── MigrationInterface.php │ │ ├── Seed │ │ │ ├── AbstractSeed.php │ │ │ ├── Seed.template.php.dist │ │ │ └── SeedInterface.php │ │ ├── Util │ │ │ ├── Expression.php │ │ │ ├── Literal.php │ │ │ └── Util.php │ │ └── Wrapper │ │ │ └── TextWrapper.php │ │ └── composer_autoloader.php ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── 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 │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── complexity │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Complexity │ │ │ ├── Complexity.php │ │ │ ├── ComplexityCollection.php │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── Visitor │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ ├── diff │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── 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 │ ├── environment │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── object-reflector │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ ├── resource-operations │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── type │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── seld │ ├── jsonlint │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── jsonlint │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ └── src │ │ │ └── Seld │ │ │ └── JsonLint │ │ │ ├── DuplicateKeyException.php │ │ │ ├── JsonParser.php │ │ │ ├── Lexer.php │ │ │ ├── ParsingException.php │ │ │ └── Undefined.php │ ├── phar-utils │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── Linter.php │ │ │ └── Timestamps.php │ └── signal-handler │ │ ├── .github │ │ └── workflows │ │ │ ├── continuous-integration.yml │ │ │ ├── lint.yml │ │ │ └── phpstan.yml │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── CHANGELOG.mdown │ │ ├── LICENSE │ │ ├── README.mdown │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── SignalHandler.php │ │ └── tests │ │ └── SignalHandlerTest.php ├── slevomat │ └── coding-standard │ │ ├── .editorconfig │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SlevomatCodingStandard │ │ ├── Helpers │ │ │ ├── Annotation │ │ │ │ ├── Annotation.php │ │ │ │ ├── ExtendsAnnotation.php │ │ │ │ ├── GenericAnnotation.php │ │ │ │ ├── ImplementsAnnotation.php │ │ │ │ ├── MethodAnnotation.php │ │ │ │ ├── MixinAnnotation.php │ │ │ │ ├── ParameterAnnotation.php │ │ │ │ ├── PropertyAnnotation.php │ │ │ │ ├── ReturnAnnotation.php │ │ │ │ ├── TemplateAnnotation.php │ │ │ │ ├── ThrowsAnnotation.php │ │ │ │ ├── TypeAliasAnnotation.php │ │ │ │ ├── TypeImportAnnotation.php │ │ │ │ ├── UseAnnotation.php │ │ │ │ └── VariableAnnotation.php │ │ │ ├── AnnotationConstantExpressionHelper.php │ │ │ ├── AnnotationHelper.php │ │ │ ├── AnnotationTypeHelper.php │ │ │ ├── CatchHelper.php │ │ │ ├── ClassHelper.php │ │ │ ├── Comment.php │ │ │ ├── CommentHelper.php │ │ │ ├── ConditionHelper.php │ │ │ ├── ConstantHelper.php │ │ │ ├── DocCommentHelper.php │ │ │ ├── EmptyFileException.php │ │ │ ├── FixerHelper.php │ │ │ ├── FunctionHelper.php │ │ │ ├── IdentificatorHelper.php │ │ │ ├── IndentationHelper.php │ │ │ ├── NamespaceHelper.php │ │ │ ├── ParameterHelper.php │ │ │ ├── PropertyHelper.php │ │ │ ├── ReferencedName.php │ │ │ ├── ReferencedNameHelper.php │ │ │ ├── ScopeHelper.php │ │ │ ├── SniffLocalCache.php │ │ │ ├── SniffSettingsHelper.php │ │ │ ├── StringHelper.php │ │ │ ├── SuppressHelper.php │ │ │ ├── TernaryOperatorHelper.php │ │ │ ├── TokenHelper.php │ │ │ ├── TokenPointerOutOfBoundsException.php │ │ │ ├── TypeHelper.php │ │ │ ├── TypeHint.php │ │ │ ├── TypeHintHelper.php │ │ │ ├── UseStatement.php │ │ │ ├── UseStatementHelper.php │ │ │ ├── VariableHelper.php │ │ │ └── YodaHelper.php │ │ ├── Sniffs │ │ │ ├── Arrays │ │ │ │ ├── DisallowImplicitArrayCreationSniff.php │ │ │ │ ├── MultiLineArrayEndBracketPlacementSniff.php │ │ │ │ ├── SingleLineArrayWhitespaceSniff.php │ │ │ │ └── TrailingArrayCommaSniff.php │ │ │ ├── Classes │ │ │ │ ├── AbstractMethodSignature.php │ │ │ │ ├── AbstractPropertyAndConstantSpacing.php │ │ │ │ ├── ClassConstantVisibilitySniff.php │ │ │ │ ├── ClassMemberSpacingSniff.php │ │ │ │ ├── ClassStructureSniff.php │ │ │ │ ├── ConstantSpacingSniff.php │ │ │ │ ├── DisallowConstructorPropertyPromotionSniff.php │ │ │ │ ├── DisallowLateStaticBindingForConstantsSniff.php │ │ │ │ ├── DisallowMultiConstantDefinitionSniff.php │ │ │ │ ├── DisallowMultiPropertyDefinitionSniff.php │ │ │ │ ├── EmptyLinesAroundClassBracesSniff.php │ │ │ │ ├── ForbiddenPublicPropertySniff.php │ │ │ │ ├── MethodSpacingSniff.php │ │ │ │ ├── MissingClassGroupsException.php │ │ │ │ ├── ModernClassNameReferenceSniff.php │ │ │ │ ├── ParentCallSpacingSniff.php │ │ │ │ ├── PropertySpacingSniff.php │ │ │ │ ├── RequireConstructorPropertyPromotionSniff.php │ │ │ │ ├── RequireMultiLineMethodSignatureSniff.php │ │ │ │ ├── RequireSingleLineMethodSignatureSniff.php │ │ │ │ ├── SuperfluousAbstractClassNamingSniff.php │ │ │ │ ├── SuperfluousErrorNamingSniff.php │ │ │ │ ├── SuperfluousExceptionNamingSniff.php │ │ │ │ ├── SuperfluousInterfaceNamingSniff.php │ │ │ │ ├── SuperfluousTraitNamingSniff.php │ │ │ │ ├── TraitUseDeclarationSniff.php │ │ │ │ ├── TraitUseSpacingSniff.php │ │ │ │ ├── UnsupportedClassGroupException.php │ │ │ │ └── UselessLateStaticBindingSniff.php │ │ │ ├── Commenting │ │ │ │ ├── AbstractRequireOneLineDocComment.php │ │ │ │ ├── DeprecatedAnnotationDeclarationSniff.php │ │ │ │ ├── DisallowCommentAfterCodeSniff.php │ │ │ │ ├── DisallowOneLinePropertyDocCommentSniff.php │ │ │ │ ├── DocCommentSpacingSniff.php │ │ │ │ ├── EmptyCommentSniff.php │ │ │ │ ├── ForbiddenAnnotationsSniff.php │ │ │ │ ├── ForbiddenCommentsSniff.php │ │ │ │ ├── InlineDocCommentDeclarationSniff.php │ │ │ │ ├── RequireOneLineDocCommentSniff.php │ │ │ │ ├── RequireOneLinePropertyDocCommentSniff.php │ │ │ │ ├── UselessFunctionDocCommentSniff.php │ │ │ │ └── UselessInheritDocCommentSniff.php │ │ │ ├── ControlStructures │ │ │ │ ├── AbstractControlStructureSpacing.php │ │ │ │ ├── AbstractLineCondition.php │ │ │ │ ├── AssignmentInConditionSniff.php │ │ │ │ ├── BlockControlStructureSpacingSniff.php │ │ │ │ ├── DisallowContinueWithoutIntegerOperandInSwitchSniff.php │ │ │ │ ├── DisallowEmptySniff.php │ │ │ │ ├── DisallowNullSafeObjectOperatorSniff.php │ │ │ │ ├── DisallowShortTernaryOperatorSniff.php │ │ │ │ ├── DisallowYodaComparisonSniff.php │ │ │ │ ├── EarlyExitSniff.php │ │ │ │ ├── JumpStatementsSpacingSniff.php │ │ │ │ ├── LanguageConstructWithParenthesesSniff.php │ │ │ │ ├── NewWithParenthesesSniff.php │ │ │ │ ├── NewWithoutParenthesesSniff.php │ │ │ │ ├── RequireMultiLineConditionSniff.php │ │ │ │ ├── RequireMultiLineTernaryOperatorSniff.php │ │ │ │ ├── RequireNullCoalesceEqualOperatorSniff.php │ │ │ │ ├── RequireNullCoalesceOperatorSniff.php │ │ │ │ ├── RequireNullSafeObjectOperatorSniff.php │ │ │ │ ├── RequireShortTernaryOperatorSniff.php │ │ │ │ ├── RequireSingleLineConditionSniff.php │ │ │ │ ├── RequireTernaryOperatorSniff.php │ │ │ │ ├── RequireYodaComparisonSniff.php │ │ │ │ ├── UnsupportedKeywordException.php │ │ │ │ ├── UselessIfConditionWithReturnSniff.php │ │ │ │ └── UselessTernaryOperatorSniff.php │ │ │ ├── Exceptions │ │ │ │ ├── DeadCatchSniff.php │ │ │ │ ├── ReferenceThrowableOnlySniff.php │ │ │ │ └── RequireNonCapturingCatchSniff.php │ │ │ ├── Files │ │ │ │ ├── FilepathNamespaceExtractor.php │ │ │ │ ├── FunctionLengthSniff.php │ │ │ │ ├── LineLengthSniff.php │ │ │ │ └── TypeNameMatchesFileNameSniff.php │ │ │ ├── Functions │ │ │ │ ├── AbstractLineCall.php │ │ │ │ ├── ArrowFunctionDeclarationSniff.php │ │ │ │ ├── DisallowArrowFunctionSniff.php │ │ │ │ ├── DisallowEmptyFunctionSniff.php │ │ │ │ ├── DisallowNamedArgumentsSniff.php │ │ │ │ ├── DisallowTrailingCommaInCallSniff.php │ │ │ │ ├── DisallowTrailingCommaInDeclarationSniff.php │ │ │ │ ├── FunctionLengthSniff.php │ │ │ │ ├── RequireArrowFunctionSniff.php │ │ │ │ ├── RequireMultiLineCallSniff.php │ │ │ │ ├── RequireSingleLineCallSniff.php │ │ │ │ ├── RequireTrailingCommaInCallSniff.php │ │ │ │ ├── RequireTrailingCommaInDeclarationSniff.php │ │ │ │ ├── StaticClosureSniff.php │ │ │ │ ├── StrictCallSniff.php │ │ │ │ ├── UnusedInheritedVariablePassedToClosureSniff.php │ │ │ │ ├── UnusedParameterSniff.php │ │ │ │ └── UselessParameterDefaultValueSniff.php │ │ │ ├── Namespaces │ │ │ │ ├── AbstractFullyQualifiedGlobalReference.php │ │ │ │ ├── AlphabeticallySortedUsesSniff.php │ │ │ │ ├── DisallowGroupUseSniff.php │ │ │ │ ├── FullyQualifiedClassNameInAnnotationSniff.php │ │ │ │ ├── FullyQualifiedExceptionsSniff.php │ │ │ │ ├── FullyQualifiedGlobalConstantsSniff.php │ │ │ │ ├── FullyQualifiedGlobalFunctionsSniff.php │ │ │ │ ├── MultipleUsesPerLineSniff.php │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ ├── NamespaceSpacingSniff.php │ │ │ │ ├── ReferenceUsedNamesOnlySniff.php │ │ │ │ ├── RequireOneNamespaceInFileSniff.php │ │ │ │ ├── UnusedUsesSniff.php │ │ │ │ ├── UseDoesNotStartWithBackslashSniff.php │ │ │ │ ├── UseFromSameNamespaceSniff.php │ │ │ │ ├── UseOnlyWhitelistedNamespacesSniff.php │ │ │ │ ├── UseSpacingSniff.php │ │ │ │ └── UselessAliasSniff.php │ │ │ ├── Numbers │ │ │ │ ├── DisallowNumericLiteralSeparatorSniff.php │ │ │ │ └── RequireNumericLiteralSeparatorSniff.php │ │ │ ├── Operators │ │ │ │ ├── DisallowEqualOperatorsSniff.php │ │ │ │ ├── DisallowIncrementAndDecrementOperatorsSniff.php │ │ │ │ ├── NegationOperatorSpacingSniff.php │ │ │ │ ├── RequireCombinedAssignmentOperatorSniff.php │ │ │ │ ├── RequireOnlyStandaloneIncrementAndDecrementOperatorsSniff.php │ │ │ │ └── SpreadOperatorSpacingSniff.php │ │ │ ├── PHP │ │ │ │ ├── DisallowDirectMagicInvokeCallSniff.php │ │ │ │ ├── DisallowReferenceSniff.php │ │ │ │ ├── ForbiddenClassesSniff.php │ │ │ │ ├── OptimizedFunctionsWithoutUnpackingSniff.php │ │ │ │ ├── ReferenceSpacingSniff.php │ │ │ │ ├── RequireExplicitAssertionSniff.php │ │ │ │ ├── RequireNowdocSniff.php │ │ │ │ ├── ShortListSniff.php │ │ │ │ ├── TypeCastSniff.php │ │ │ │ ├── UselessParenthesesSniff.php │ │ │ │ └── UselessSemicolonSniff.php │ │ │ ├── TestCase.php │ │ │ ├── TypeHints │ │ │ │ ├── DeclareStrictTypesSniff.php │ │ │ │ ├── DisallowArrayTypeHintSyntaxSniff.php │ │ │ │ ├── DisallowMixedTypeHintSniff.php │ │ │ │ ├── LongTypeHintsSniff.php │ │ │ │ ├── NullTypeHintOnLastPositionSniff.php │ │ │ │ ├── NullableTypeForNullDefaultValueSniff.php │ │ │ │ ├── ParameterTypeHintSniff.php │ │ │ │ ├── ParameterTypeHintSpacingSniff.php │ │ │ │ ├── PropertyTypeHintSniff.php │ │ │ │ ├── PropertyTypeHintSpacingSniff.php │ │ │ │ ├── ReturnTypeHintSniff.php │ │ │ │ ├── ReturnTypeHintSpacingSniff.php │ │ │ │ ├── UnionTypeHintFormatSniff.php │ │ │ │ └── UselessConstantTypeHintSniff.php │ │ │ ├── Variables │ │ │ │ ├── DisallowSuperGlobalVariableSniff.php │ │ │ │ ├── DuplicateAssignmentToVariableSniff.php │ │ │ │ ├── UnusedVariableSniff.php │ │ │ │ └── UselessVariableSniff.php │ │ │ └── Whitespaces │ │ │ │ └── DuplicateSpacesSniff.php │ │ └── ruleset.xml │ │ ├── autoload-bootstrap.php │ │ └── composer.json ├── squizlabs │ └── php_codesniffer │ │ ├── CONTRIBUTING.md │ │ ├── CodeSniffer.conf │ │ ├── CodeSniffer.conf.dist │ │ ├── README.md │ │ ├── autoload.php │ │ ├── bin │ │ ├── phpcbf │ │ ├── phpcbf.bat │ │ ├── phpcs │ │ └── phpcs.bat │ │ ├── composer.json │ │ ├── licence.txt │ │ ├── phpcs.xsd │ │ ├── src │ │ ├── Config.php │ │ ├── Exceptions │ │ │ ├── DeepExitException.php │ │ │ ├── RuntimeException.php │ │ │ └── TokenizerException.php │ │ ├── Files │ │ │ ├── DummyFile.php │ │ │ ├── File.php │ │ │ ├── FileList.php │ │ │ └── LocalFile.php │ │ ├── Filters │ │ │ ├── ExactMatch.php │ │ │ ├── Filter.php │ │ │ ├── GitModified.php │ │ │ └── GitStaged.php │ │ ├── Fixer.php │ │ ├── Generators │ │ │ ├── Generator.php │ │ │ ├── HTML.php │ │ │ ├── Markdown.php │ │ │ └── Text.php │ │ ├── Reporter.php │ │ ├── Reports │ │ │ ├── Cbf.php │ │ │ ├── Checkstyle.php │ │ │ ├── Code.php │ │ │ ├── Csv.php │ │ │ ├── Diff.php │ │ │ ├── Emacs.php │ │ │ ├── Full.php │ │ │ ├── Gitblame.php │ │ │ ├── Hgblame.php │ │ │ ├── Info.php │ │ │ ├── Json.php │ │ │ ├── Junit.php │ │ │ ├── Notifysend.php │ │ │ ├── Report.php │ │ │ ├── Source.php │ │ │ ├── Summary.php │ │ │ ├── Svnblame.php │ │ │ ├── VersionControl.php │ │ │ └── Xml.php │ │ ├── Ruleset.php │ │ ├── Runner.php │ │ ├── Sniffs │ │ │ ├── AbstractArraySniff.php │ │ │ ├── AbstractPatternSniff.php │ │ │ ├── AbstractScopeSniff.php │ │ │ ├── AbstractVariableSniff.php │ │ │ └── Sniff.php │ │ ├── Standards │ │ │ ├── Generic │ │ │ │ ├── Docs │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── DisallowLongArraySyntaxStandard.xml │ │ │ │ │ │ └── DisallowShortArraySyntaxStandard.xml │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── DuplicateClassNameStandard.xml │ │ │ │ │ │ └── OpeningBraceSameLineStandard.xml │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ ├── AssignmentInConditionStandard.xml │ │ │ │ │ │ ├── EmptyStatementStandard.xml │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopStandard.xml │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallStandard.xml │ │ │ │ │ │ ├── JumbledIncrementerStandard.xml │ │ │ │ │ │ ├── UnconditionalIfStatementStandard.xml │ │ │ │ │ │ ├── UnnecessaryFinalModifierStandard.xml │ │ │ │ │ │ ├── UnusedFunctionParameterStandard.xml │ │ │ │ │ │ └── UselessOverridingMethodStandard.xml │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── FixmeStandard.xml │ │ │ │ │ │ └── TodoStandard.xml │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── DisallowYodaConditionsStandard.xml │ │ │ │ │ │ └── InlineControlStructureStandard.xml │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSSLintStandard.xml │ │ │ │ │ │ ├── ClosureLinterStandard.xml │ │ │ │ │ │ └── JSHintStandard.xml │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ByteOrderMarkStandard.xml │ │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ │ ├── ExecutableFileStandard.xml │ │ │ │ │ │ ├── InlineHTMLStandard.xml │ │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ │ ├── OneClassPerFileStandard.xml │ │ │ │ │ │ ├── OneInterfacePerFileStandard.xml │ │ │ │ │ │ ├── OneObjectStructurePerFileStandard.xml │ │ │ │ │ │ └── OneTraitPerFileStandard.xml │ │ │ │ │ ├── Formatting │ │ │ │ │ │ ├── DisallowMultipleStatementsStandard.xml │ │ │ │ │ │ ├── MultipleStatementAlignmentStandard.xml │ │ │ │ │ │ ├── NoSpaceAfterCastStandard.xml │ │ │ │ │ │ ├── SpaceAfterCastStandard.xml │ │ │ │ │ │ └── SpaceAfterNotStandard.xml │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── CallTimePassByReferenceStandard.xml │ │ │ │ │ │ ├── FunctionCallArgumentSpacingStandard.xml │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanStandard.xml │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieStandard.xml │ │ │ │ │ ├── Metrics │ │ │ │ │ │ ├── CyclomaticComplexityStandard.xml │ │ │ │ │ │ └── NestingLevelStandard.xml │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── AbstractClassNamePrefixStandard.xml │ │ │ │ │ │ ├── CamelCapsFunctionNameStandard.xml │ │ │ │ │ │ ├── ConstructorNameStandard.xml │ │ │ │ │ │ ├── InterfaceNameSuffixStandard.xml │ │ │ │ │ │ ├── TraitNameSuffixStandard.xml │ │ │ │ │ │ └── UpperCaseConstantNameStandard.xml │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagStandard.xml │ │ │ │ │ │ ├── ClosingPHPTagStandard.xml │ │ │ │ │ │ ├── DeprecatedFunctionsStandard.xml │ │ │ │ │ │ ├── DisallowAlternativePHPTagsStandard.xml │ │ │ │ │ │ ├── DisallowRequestSuperglobalStandard.xml │ │ │ │ │ │ ├── DisallowShortOpenTagStandard.xml │ │ │ │ │ │ ├── DiscourageGotoStandard.xml │ │ │ │ │ │ ├── ForbiddenFunctionsStandard.xml │ │ │ │ │ │ ├── LowerCaseConstantStandard.xml │ │ │ │ │ │ ├── LowerCaseKeywordStandard.xml │ │ │ │ │ │ ├── LowerCaseTypeStandard.xml │ │ │ │ │ │ ├── NoSilencedErrorsStandard.xml │ │ │ │ │ │ ├── SAPIUsageStandard.xml │ │ │ │ │ │ └── UpperCaseConstantStandard.xml │ │ │ │ │ ├── Strings │ │ │ │ │ │ └── UnnecessaryStringConcatStandard.xml │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingStandard.xml │ │ │ │ │ │ ├── DisallowSpaceIndentStandard.xml │ │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ │ ├── ScopeIndentStandard.xml │ │ │ │ │ │ └── SpreadOperatorSpacingAfterStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── ArrayIndentSniff.php │ │ │ │ │ │ ├── DisallowLongArraySyntaxSniff.php │ │ │ │ │ │ └── DisallowShortArraySyntaxSniff.php │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── DuplicateClassNameSniff.php │ │ │ │ │ │ └── OpeningBraceSameLineSniff.php │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ ├── AssignmentInConditionSniff.php │ │ │ │ │ │ ├── EmptyPHPStatementSniff.php │ │ │ │ │ │ ├── EmptyStatementSniff.php │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopSniff.php │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallSniff.php │ │ │ │ │ │ ├── JumbledIncrementerSniff.php │ │ │ │ │ │ ├── UnconditionalIfStatementSniff.php │ │ │ │ │ │ ├── UnnecessaryFinalModifierSniff.php │ │ │ │ │ │ ├── UnusedFunctionParameterSniff.php │ │ │ │ │ │ └── UselessOverridingMethodSniff.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── DocCommentSniff.php │ │ │ │ │ │ ├── FixmeSniff.php │ │ │ │ │ │ └── TodoSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── DisallowYodaConditionsSniff.php │ │ │ │ │ │ └── InlineControlStructureSniff.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSSLintSniff.php │ │ │ │ │ │ ├── ClosureLinterSniff.php │ │ │ │ │ │ ├── ESLintSniff.php │ │ │ │ │ │ └── JSHintSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ByteOrderMarkSniff.php │ │ │ │ │ │ ├── EndFileNewlineSniff.php │ │ │ │ │ │ ├── EndFileNoNewlineSniff.php │ │ │ │ │ │ ├── ExecutableFileSniff.php │ │ │ │ │ │ ├── InlineHTMLSniff.php │ │ │ │ │ │ ├── LineEndingsSniff.php │ │ │ │ │ │ ├── LineLengthSniff.php │ │ │ │ │ │ ├── LowercasedFilenameSniff.php │ │ │ │ │ │ ├── OneClassPerFileSniff.php │ │ │ │ │ │ ├── OneInterfacePerFileSniff.php │ │ │ │ │ │ ├── OneObjectStructurePerFileSniff.php │ │ │ │ │ │ └── OneTraitPerFileSniff.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ ├── DisallowMultipleStatementsSniff.php │ │ │ │ │ │ ├── MultipleStatementAlignmentSniff.php │ │ │ │ │ │ ├── NoSpaceAfterCastSniff.php │ │ │ │ │ │ ├── SpaceAfterCastSniff.php │ │ │ │ │ │ ├── SpaceAfterNotSniff.php │ │ │ │ │ │ └── SpaceBeforeCastSniff.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── CallTimePassByReferenceSniff.php │ │ │ │ │ │ ├── FunctionCallArgumentSpacingSniff.php │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanSniff.php │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieSniff.php │ │ │ │ │ ├── Metrics │ │ │ │ │ │ ├── CyclomaticComplexitySniff.php │ │ │ │ │ │ └── NestingLevelSniff.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── AbstractClassNamePrefixSniff.php │ │ │ │ │ │ ├── CamelCapsFunctionNameSniff.php │ │ │ │ │ │ ├── ConstructorNameSniff.php │ │ │ │ │ │ ├── InterfaceNameSuffixSniff.php │ │ │ │ │ │ ├── TraitNameSuffixSniff.php │ │ │ │ │ │ └── UpperCaseConstantNameSniff.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── BacktickOperatorSniff.php │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagSniff.php │ │ │ │ │ │ ├── ClosingPHPTagSniff.php │ │ │ │ │ │ ├── DeprecatedFunctionsSniff.php │ │ │ │ │ │ ├── DisallowAlternativePHPTagsSniff.php │ │ │ │ │ │ ├── DisallowRequestSuperglobalSniff.php │ │ │ │ │ │ ├── DisallowShortOpenTagSniff.php │ │ │ │ │ │ ├── DiscourageGotoSniff.php │ │ │ │ │ │ ├── ForbiddenFunctionsSniff.php │ │ │ │ │ │ ├── LowerCaseConstantSniff.php │ │ │ │ │ │ ├── LowerCaseKeywordSniff.php │ │ │ │ │ │ ├── LowerCaseTypeSniff.php │ │ │ │ │ │ ├── NoSilencedErrorsSniff.php │ │ │ │ │ │ ├── RequireStrictTypesSniff.php │ │ │ │ │ │ ├── SAPIUsageSniff.php │ │ │ │ │ │ ├── SyntaxSniff.php │ │ │ │ │ │ └── UpperCaseConstantSniff.php │ │ │ │ │ ├── Strings │ │ │ │ │ │ └── UnnecessaryStringConcatSniff.php │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ ├── GitMergeConflictSniff.php │ │ │ │ │ │ └── SubversionPropertiesSniff.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingSniff.php │ │ │ │ │ │ ├── DisallowSpaceIndentSniff.php │ │ │ │ │ │ ├── DisallowTabIndentSniff.php │ │ │ │ │ │ ├── IncrementDecrementSpacingSniff.php │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ ├── ScopeIndentSniff.php │ │ │ │ │ │ └── SpreadOperatorSpacingAfterSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── ArrayIndentUnitTest.inc │ │ │ │ │ │ ├── ArrayIndentUnitTest.inc.fixed │ │ │ │ │ │ ├── ArrayIndentUnitTest.php │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowLongArraySyntaxUnitTest.php │ │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc │ │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc.fixed │ │ │ │ │ │ └── DisallowShortArraySyntaxUnitTest.php │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.1.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.2.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.3.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.4.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.5.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.6.inc │ │ │ │ │ │ ├── DuplicateClassNameUnitTest.php │ │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc │ │ │ │ │ │ ├── OpeningBraceSameLineUnitTest.inc.fixed │ │ │ │ │ │ └── OpeningBraceSameLineUnitTest.php │ │ │ │ │ ├── CodeAnalysis │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.inc │ │ │ │ │ │ ├── AssignmentInConditionUnitTest.php │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.inc │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.inc.fixed │ │ │ │ │ │ ├── EmptyPHPStatementUnitTest.php │ │ │ │ │ │ ├── EmptyStatementUnitTest.inc │ │ │ │ │ │ ├── EmptyStatementUnitTest.php │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.inc │ │ │ │ │ │ ├── ForLoopShouldBeWhileLoopUnitTest.php │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.inc │ │ │ │ │ │ ├── ForLoopWithTestFunctionCallUnitTest.php │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.inc │ │ │ │ │ │ ├── JumbledIncrementerUnitTest.php │ │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.inc │ │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.php │ │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.inc │ │ │ │ │ │ ├── UnnecessaryFinalModifierUnitTest.php │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.inc │ │ │ │ │ │ ├── UnusedFunctionParameterUnitTest.php │ │ │ │ │ │ ├── UselessOverridingMethodUnitTest.inc │ │ │ │ │ │ └── UselessOverridingMethodUnitTest.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── DocCommentUnitTest.inc │ │ │ │ │ │ ├── DocCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── DocCommentUnitTest.js │ │ │ │ │ │ ├── DocCommentUnitTest.js.fixed │ │ │ │ │ │ ├── DocCommentUnitTest.php │ │ │ │ │ │ ├── FixmeUnitTest.inc │ │ │ │ │ │ ├── FixmeUnitTest.js │ │ │ │ │ │ ├── FixmeUnitTest.php │ │ │ │ │ │ ├── TodoUnitTest.inc │ │ │ │ │ │ ├── TodoUnitTest.js │ │ │ │ │ │ └── TodoUnitTest.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.inc │ │ │ │ │ │ ├── DisallowYodaConditionsUnitTest.php │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.1.inc.fixed │ │ │ │ │ │ ├── InlineControlStructureUnitTest.2.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.3.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.4.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.5.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.6.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.7.inc │ │ │ │ │ │ ├── InlineControlStructureUnitTest.js │ │ │ │ │ │ ├── InlineControlStructureUnitTest.js.fixed │ │ │ │ │ │ └── InlineControlStructureUnitTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSSLintUnitTest.css │ │ │ │ │ │ ├── CSSLintUnitTest.php │ │ │ │ │ │ ├── ClosureLinterUnitTest.js │ │ │ │ │ │ ├── ClosureLinterUnitTest.php │ │ │ │ │ │ ├── ESLintUnitTest.js │ │ │ │ │ │ ├── ESLintUnitTest.php │ │ │ │ │ │ ├── JSHintUnitTest.js │ │ │ │ │ │ └── JSHintUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.inc │ │ │ │ │ │ ├── ByteOrderMarkUnitTest.php │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.css │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.js │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.css │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.js │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.php │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.css │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.js │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.4.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.5.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc.fixed │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.7.inc │ │ │ │ │ │ ├── EndFileNoNewlineUnitTest.php │ │ │ │ │ │ ├── ExecutableFileUnitTest.1.inc │ │ │ │ │ │ ├── ExecutableFileUnitTest.2.inc │ │ │ │ │ │ ├── ExecutableFileUnitTest.php │ │ │ │ │ │ ├── InlineHTMLUnitTest.1.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.2.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.3.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.4.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.5.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.6.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.7.inc │ │ │ │ │ │ ├── InlineHTMLUnitTest.php │ │ │ │ │ │ ├── LineEndingsUnitTest.css │ │ │ │ │ │ ├── LineEndingsUnitTest.css.fixed │ │ │ │ │ │ ├── LineEndingsUnitTest.inc │ │ │ │ │ │ ├── LineEndingsUnitTest.inc.fixed │ │ │ │ │ │ ├── LineEndingsUnitTest.js │ │ │ │ │ │ ├── LineEndingsUnitTest.js.fixed │ │ │ │ │ │ ├── LineEndingsUnitTest.php │ │ │ │ │ │ ├── LineLengthUnitTest.1.inc │ │ │ │ │ │ ├── LineLengthUnitTest.2.inc │ │ │ │ │ │ ├── LineLengthUnitTest.3.inc │ │ │ │ │ │ ├── LineLengthUnitTest.4.inc │ │ │ │ │ │ ├── LineLengthUnitTest.php │ │ │ │ │ │ ├── LowercasedFilenameUnitTest.inc │ │ │ │ │ │ ├── LowercasedFilenameUnitTest.php │ │ │ │ │ │ ├── OneClassPerFileUnitTest.inc │ │ │ │ │ │ ├── OneClassPerFileUnitTest.php │ │ │ │ │ │ ├── OneInterfacePerFileUnitTest.inc │ │ │ │ │ │ ├── OneInterfacePerFileUnitTest.php │ │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.inc │ │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.php │ │ │ │ │ │ ├── OneTraitPerFileUnitTest.inc │ │ │ │ │ │ └── OneTraitPerFileUnitTest.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.inc.fixed │ │ │ │ │ │ ├── DisallowMultipleStatementsUnitTest.php │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.inc.fixed │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.js.fixed │ │ │ │ │ │ ├── MultipleStatementAlignmentUnitTest.php │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.inc.fixed │ │ │ │ │ │ ├── NoSpaceAfterCastUnitTest.php │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.inc │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.inc.fixed │ │ │ │ │ │ ├── SpaceAfterCastUnitTest.php │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.inc │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.inc.fixed │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.js │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.js.fixed │ │ │ │ │ │ ├── SpaceAfterNotUnitTest.php │ │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc │ │ │ │ │ │ ├── SpaceBeforeCastUnitTest.inc.fixed │ │ │ │ │ │ └── SpaceBeforeCastUnitTest.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.inc │ │ │ │ │ │ ├── CallTimePassByReferenceUnitTest.php │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.inc │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionCallArgumentSpacingUnitTest.php │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed │ │ │ │ │ │ ├── OpeningFunctionBraceBsdAllmanUnitTest.php │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.inc │ │ │ │ │ │ ├── OpeningFunctionBraceKernighanRitchieUnitTest.inc.fixed │ │ │ │ │ │ └── OpeningFunctionBraceKernighanRitchieUnitTest.php │ │ │ │ │ ├── Metrics │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.inc │ │ │ │ │ │ ├── CyclomaticComplexityUnitTest.php │ │ │ │ │ │ ├── NestingLevelUnitTest.inc │ │ │ │ │ │ └── NestingLevelUnitTest.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.inc │ │ │ │ │ │ ├── AbstractClassNamePrefixUnitTest.php │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.inc │ │ │ │ │ │ ├── CamelCapsFunctionNameUnitTest.php │ │ │ │ │ │ ├── ConstructorNameUnitTest.inc │ │ │ │ │ │ ├── ConstructorNameUnitTest.php │ │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.inc │ │ │ │ │ │ ├── InterfaceNameSuffixUnitTest.php │ │ │ │ │ │ ├── TraitNameSuffixUnitTest.inc │ │ │ │ │ │ ├── TraitNameSuffixUnitTest.php │ │ │ │ │ │ ├── UpperCaseConstantNameUnitTest.inc │ │ │ │ │ │ └── UpperCaseConstantNameUnitTest.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── BacktickOperatorUnitTest.inc │ │ │ │ │ │ ├── BacktickOperatorUnitTest.php │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.1.inc │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.2.inc │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.3.inc │ │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.php │ │ │ │ │ │ ├── ClosingPHPTagUnitTest.inc │ │ │ │ │ │ ├── ClosingPHPTagUnitTest.php │ │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.php │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.3.inc │ │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.php │ │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.inc │ │ │ │ │ │ ├── DisallowRequestSuperglobalUnitTest.php │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.3.inc │ │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.php │ │ │ │ │ │ ├── DiscourageGotoUnitTest.inc │ │ │ │ │ │ ├── DiscourageGotoUnitTest.php │ │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.inc │ │ │ │ │ │ ├── ForbiddenFunctionsUnitTest.php │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.inc │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.inc.fixed │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.js │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.js.fixed │ │ │ │ │ │ ├── LowerCaseConstantUnitTest.php │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.inc.fixed │ │ │ │ │ │ ├── LowerCaseKeywordUnitTest.php │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.inc.fixed │ │ │ │ │ │ ├── LowerCaseTypeUnitTest.php │ │ │ │ │ │ ├── NoSilencedErrorsUnitTest.inc │ │ │ │ │ │ ├── NoSilencedErrorsUnitTest.php │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.1.inc │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.2.inc │ │ │ │ │ │ ├── RequireStrictTypesUnitTest.php │ │ │ │ │ │ ├── SAPIUsageUnitTest.inc │ │ │ │ │ │ ├── SAPIUsageUnitTest.php │ │ │ │ │ │ ├── SyntaxUnitTest.inc │ │ │ │ │ │ ├── SyntaxUnitTest.php │ │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc │ │ │ │ │ │ ├── UpperCaseConstantUnitTest.inc.fixed │ │ │ │ │ │ └── UpperCaseConstantUnitTest.php │ │ │ │ │ ├── Strings │ │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.inc │ │ │ │ │ │ ├── UnnecessaryStringConcatUnitTest.js │ │ │ │ │ │ └── UnnecessaryStringConcatUnitTest.php │ │ │ │ │ ├── VersionControl │ │ │ │ │ │ ├── GitMergeConflictUnitTest.1.css │ │ │ │ │ │ ├── GitMergeConflictUnitTest.1.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.2.css │ │ │ │ │ │ ├── GitMergeConflictUnitTest.2.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.3.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.4.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.5.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.6.inc │ │ │ │ │ │ ├── GitMergeConflictUnitTest.js │ │ │ │ │ │ ├── GitMergeConflictUnitTest.php │ │ │ │ │ │ ├── SubversionPropertiesUnitTest.inc │ │ │ │ │ │ └── SubversionPropertiesUnitTest.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.inc │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ArbitraryParenthesesSpacingUnitTest.php │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.2.inc.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js.fixed │ │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.php │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.css │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.css.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.inc │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.inc.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.js │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.js.fixed │ │ │ │ │ │ ├── DisallowTabIndentUnitTest.php │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.php │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.js │ │ │ │ │ │ ├── ScopeIndentUnitTest.1.js.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.2.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.3.inc.fixed │ │ │ │ │ │ ├── ScopeIndentUnitTest.4.inc │ │ │ │ │ │ ├── ScopeIndentUnitTest.php │ │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.inc │ │ │ │ │ │ ├── SpreadOperatorSpacingAfterUnitTest.inc.fixed │ │ │ │ │ │ └── SpreadOperatorSpacingAfterUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── MySource │ │ │ │ ├── Sniffs │ │ │ │ │ ├── CSS │ │ │ │ │ │ └── BrowserSpecificStylesSniff.php │ │ │ │ │ ├── Channels │ │ │ │ │ │ ├── DisallowSelfActionsSniff.php │ │ │ │ │ │ ├── IncludeOwnSystemSniff.php │ │ │ │ │ │ ├── IncludeSystemSniff.php │ │ │ │ │ │ └── UnusedSystemSniff.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ └── FunctionCommentSniff.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── DebugCodeSniff.php │ │ │ │ │ │ └── FirebugConsoleSniff.php │ │ │ │ │ ├── Objects │ │ │ │ │ │ ├── AssignThisSniff.php │ │ │ │ │ │ ├── CreateWidgetTypeCallbackSniff.php │ │ │ │ │ │ └── DisallowNewWidgetSniff.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── AjaxNullComparisonSniff.php │ │ │ │ │ │ ├── EvalObjectFactorySniff.php │ │ │ │ │ │ ├── GetRequestDataSniff.php │ │ │ │ │ │ └── ReturnFunctionValueSniff.php │ │ │ │ │ └── Strings │ │ │ │ │ │ └── JoinStringsSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── CSS │ │ │ │ │ │ ├── BrowserSpecificStylesUnitTest.css │ │ │ │ │ │ └── BrowserSpecificStylesUnitTest.php │ │ │ │ │ ├── Channels │ │ │ │ │ │ ├── DisallowSelfActionsUnitTest.inc │ │ │ │ │ │ ├── DisallowSelfActionsUnitTest.php │ │ │ │ │ │ ├── IncludeSystemUnitTest.inc │ │ │ │ │ │ ├── IncludeSystemUnitTest.php │ │ │ │ │ │ ├── UnusedSystemUnitTest.inc │ │ │ │ │ │ └── UnusedSystemUnitTest.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ └── FunctionCommentUnitTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── DebugCodeUnitTest.inc │ │ │ │ │ │ ├── DebugCodeUnitTest.php │ │ │ │ │ │ ├── FirebugConsoleUnitTest.js │ │ │ │ │ │ └── FirebugConsoleUnitTest.php │ │ │ │ │ ├── Objects │ │ │ │ │ │ ├── AssignThisUnitTest.js │ │ │ │ │ │ ├── AssignThisUnitTest.php │ │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.js │ │ │ │ │ │ ├── CreateWidgetTypeCallbackUnitTest.php │ │ │ │ │ │ ├── DisallowNewWidgetUnitTest.inc │ │ │ │ │ │ └── DisallowNewWidgetUnitTest.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── AjaxNullComparisonUnitTest.inc │ │ │ │ │ │ ├── AjaxNullComparisonUnitTest.php │ │ │ │ │ │ ├── EvalObjectFactoryUnitTest.inc │ │ │ │ │ │ ├── EvalObjectFactoryUnitTest.php │ │ │ │ │ │ ├── GetRequestDataUnitTest.inc │ │ │ │ │ │ ├── GetRequestDataUnitTest.php │ │ │ │ │ │ ├── ReturnFunctionValueUnitTest.inc │ │ │ │ │ │ └── ReturnFunctionValueUnitTest.php │ │ │ │ │ └── Strings │ │ │ │ │ │ ├── JoinStringsUnitTest.js │ │ │ │ │ │ └── JoinStringsUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── PEAR │ │ │ │ ├── Docs │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── ClassCommentStandard.xml │ │ │ │ │ │ ├── FileCommentStandard.xml │ │ │ │ │ │ ├── FunctionCommentStandard.xml │ │ │ │ │ │ └── InlineCommentStandard.xml │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlSignatureStandard.xml │ │ │ │ │ │ └── MultiLineConditionStandard.xml │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── IncludingFileStandard.xml │ │ │ │ │ │ └── LineLengthStandard.xml │ │ │ │ │ ├── Formatting │ │ │ │ │ │ └── MultiLineAssignmentStandard.xml │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionCallSignatureStandard.xml │ │ │ │ │ │ ├── FunctionDeclarationStandard.xml │ │ │ │ │ │ └── ValidDefaultValueStandard.xml │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── ValidClassNameStandard.xml │ │ │ │ │ │ ├── ValidFunctionNameStandard.xml │ │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ObjectOperatorIndentStandard.xml │ │ │ │ │ │ ├── ScopeClosingBraceStandard.xml │ │ │ │ │ │ └── ScopeIndentStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ └── InlineCommentSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ └── MultiLineConditionSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ └── IncludingFileSniff.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ └── MultiLineAssignmentSniff.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ └── ValidDefaultValueSniff.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── ValidClassNameSniff.php │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ObjectOperatorIndentSniff.php │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ └── ScopeIndentSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ │ └── InlineCommentUnitTest.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ │ ├── MultiLineConditionUnitTest.inc │ │ │ │ │ │ ├── MultiLineConditionUnitTest.inc.fixed │ │ │ │ │ │ ├── MultiLineConditionUnitTest.js │ │ │ │ │ │ ├── MultiLineConditionUnitTest.js.fixed │ │ │ │ │ │ └── MultiLineConditionUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── IncludingFileUnitTest.inc │ │ │ │ │ │ ├── IncludingFileUnitTest.inc.fixed │ │ │ │ │ │ └── IncludingFileUnitTest.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ ├── MultiLineAssignmentUnitTest.inc │ │ │ │ │ │ └── MultiLineAssignmentUnitTest.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.inc │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.js │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ │ ├── ValidDefaultValueUnitTest.inc │ │ │ │ │ │ └── ValidDefaultValueUnitTest.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ │ ├── ValidClassNameUnitTest.php │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.inc.fixed │ │ │ │ │ │ ├── ObjectOperatorIndentUnitTest.php │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ │ ├── ScopeIndentUnitTest.inc │ │ │ │ │ │ └── ScopeIndentUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── PSR1 │ │ │ │ ├── Docs │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── ClassDeclarationStandard.xml │ │ │ │ │ ├── Files │ │ │ │ │ │ └── SideEffectsStandard.xml │ │ │ │ │ └── Methods │ │ │ │ │ │ └── CamelCapsMethodNameStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── ClassDeclarationSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ └── SideEffectsSniff.php │ │ │ │ │ └── Methods │ │ │ │ │ │ └── CamelCapsMethodNameSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ │ │ ├── ClassDeclarationUnitTest.2.inc │ │ │ │ │ │ └── ClassDeclarationUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── SideEffectsUnitTest.1.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.10.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.11.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.12.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.13.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.14.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.15.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.16.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.2.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.3.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.4.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.5.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.6.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.7.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.8.inc │ │ │ │ │ │ ├── SideEffectsUnitTest.9.inc │ │ │ │ │ │ └── SideEffectsUnitTest.php │ │ │ │ │ └── Methods │ │ │ │ │ │ ├── CamelCapsMethodNameUnitTest.inc │ │ │ │ │ │ └── CamelCapsMethodNameUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── PSR12 │ │ │ │ ├── Docs │ │ │ │ │ ├── Classes │ │ │ │ │ │ └── ClassInstantiationStandard.xml │ │ │ │ │ ├── Functions │ │ │ │ │ │ └── NullableTypeDeclarationStandard.xml │ │ │ │ │ ├── Keywords │ │ │ │ │ │ └── ShortFormTypeKeywordsStandard.xml │ │ │ │ │ ├── Namespaces │ │ │ │ │ │ └── CompoundNamespaceDepthStandard.xml │ │ │ │ │ └── Operators │ │ │ │ │ │ └── OperatorSpacingStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── AnonClassDeclarationSniff.php │ │ │ │ │ │ ├── ClassInstantiationSniff.php │ │ │ │ │ │ └── ClosingBraceSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── BooleanOperatorPlacementSniff.php │ │ │ │ │ │ └── ControlStructureSpacingSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── DeclareStatementSniff.php │ │ │ │ │ │ ├── FileHeaderSniff.php │ │ │ │ │ │ ├── ImportStatementSniff.php │ │ │ │ │ │ └── OpenTagSniff.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── NullableTypeDeclarationSniff.php │ │ │ │ │ │ └── ReturnTypeDeclarationSniff.php │ │ │ │ │ ├── Keywords │ │ │ │ │ │ └── ShortFormTypeKeywordsSniff.php │ │ │ │ │ ├── Namespaces │ │ │ │ │ │ └── CompoundNamespaceDepthSniff.php │ │ │ │ │ ├── Operators │ │ │ │ │ │ └── OperatorSpacingSniff.php │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── ConstantVisibilitySniff.php │ │ │ │ │ └── Traits │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── AnonClassDeclarationUnitTest.php │ │ │ │ │ │ ├── ClassInstantiationUnitTest.inc │ │ │ │ │ │ ├── ClassInstantiationUnitTest.inc.fixed │ │ │ │ │ │ ├── ClassInstantiationUnitTest.php │ │ │ │ │ │ ├── ClosingBraceUnitTest.inc │ │ │ │ │ │ └── ClosingBraceUnitTest.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.inc.fixed │ │ │ │ │ │ ├── BooleanOperatorPlacementUnitTest.php │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ └── ControlStructureSpacingUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── DeclareStatementUnitTest.inc │ │ │ │ │ │ ├── DeclareStatementUnitTest.inc.fixed │ │ │ │ │ │ ├── DeclareStatementUnitTest.php │ │ │ │ │ │ ├── FileHeaderUnitTest.1.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.10.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.10.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.11.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.11.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.12.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.12.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.13.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.14.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.15.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.16.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.17.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.2.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.2.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.3.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.4.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.4.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.5.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.6.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.7.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.7.inc.fixed │ │ │ │ │ │ ├── FileHeaderUnitTest.8.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.9.inc │ │ │ │ │ │ ├── FileHeaderUnitTest.php │ │ │ │ │ │ ├── ImportStatementUnitTest.inc │ │ │ │ │ │ ├── ImportStatementUnitTest.inc.fixed │ │ │ │ │ │ ├── ImportStatementUnitTest.php │ │ │ │ │ │ ├── OpenTagUnitTest.1.inc │ │ │ │ │ │ ├── OpenTagUnitTest.2.inc │ │ │ │ │ │ ├── OpenTagUnitTest.2.inc.fixed │ │ │ │ │ │ ├── OpenTagUnitTest.3.inc │ │ │ │ │ │ ├── OpenTagUnitTest.4.inc │ │ │ │ │ │ ├── OpenTagUnitTest.5.inc │ │ │ │ │ │ └── OpenTagUnitTest.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── NullableTypeDeclarationUnitTest.php │ │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc │ │ │ │ │ │ ├── ReturnTypeDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── ReturnTypeDeclarationUnitTest.php │ │ │ │ │ ├── Keywords │ │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc │ │ │ │ │ │ ├── ShortFormTypeKeywordsUnitTest.inc.fixed │ │ │ │ │ │ └── ShortFormTypeKeywordsUnitTest.php │ │ │ │ │ ├── Namespaces │ │ │ │ │ │ ├── CompoundNamespaceDepthUnitTest.inc │ │ │ │ │ │ └── CompoundNamespaceDepthUnitTest.php │ │ │ │ │ ├── Operators │ │ │ │ │ │ ├── OperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── OperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ └── OperatorSpacingUnitTest.php │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── ConstantVisibilityUnitTest.inc │ │ │ │ │ │ └── ConstantVisibilityUnitTest.php │ │ │ │ │ └── Traits │ │ │ │ │ │ ├── UseDeclarationUnitTest.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── PSR2 │ │ │ │ ├── Docs │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationStandard.xml │ │ │ │ │ │ └── PropertyDeclarationStandard.xml │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlStructureSpacingStandard.xml │ │ │ │ │ │ ├── ElseIfDeclarationStandard.xml │ │ │ │ │ │ └── SwitchDeclarationStandard.xml │ │ │ │ │ ├── Files │ │ │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ │ │ ├── Methods │ │ │ │ │ │ └── MethodDeclarationStandard.xml │ │ │ │ │ └── Namespaces │ │ │ │ │ │ ├── NamespaceDeclarationStandard.xml │ │ │ │ │ │ └── UseDeclarationStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ └── PropertyDeclarationSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ClosingTagSniff.php │ │ │ │ │ │ └── EndFileNewlineSniff.php │ │ │ │ │ ├── Methods │ │ │ │ │ │ ├── FunctionCallSignatureSniff.php │ │ │ │ │ │ ├── FunctionClosingBraceSniff.php │ │ │ │ │ │ └── MethodDeclarationSniff.php │ │ │ │ │ └── Namespaces │ │ │ │ │ │ ├── NamespaceDeclarationSniff.php │ │ │ │ │ │ └── UseDeclarationSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc │ │ │ │ │ │ ├── PropertyDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── PropertyDeclarationUnitTest.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ │ │ ├── ClosingTagUnitTest.php │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc │ │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc.fixed │ │ │ │ │ │ └── EndFileNewlineUnitTest.php │ │ │ │ │ ├── Methods │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionCallSignatureUnitTest.php │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionClosingBraceUnitTest.php │ │ │ │ │ │ ├── MethodDeclarationUnitTest.inc │ │ │ │ │ │ ├── MethodDeclarationUnitTest.inc.fixed │ │ │ │ │ │ └── MethodDeclarationUnitTest.php │ │ │ │ │ └── Namespaces │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── NamespaceDeclarationUnitTest.php │ │ │ │ │ │ ├── UseDeclarationUnitTest.1.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.15.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.17.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.2.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.4.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.5.inc.fixed │ │ │ │ │ │ ├── UseDeclarationUnitTest.6.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.7.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.8.inc │ │ │ │ │ │ ├── UseDeclarationUnitTest.9.inc │ │ │ │ │ │ └── UseDeclarationUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ ├── Squiz │ │ │ │ ├── Docs │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── ArrayBracketSpacingStandard.xml │ │ │ │ │ │ └── ArrayDeclarationStandard.xml │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── LowercaseClassKeywordsStandard.xml │ │ │ │ │ │ └── SelfMemberReferenceStandard.xml │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── DocCommentAlignmentStandard.xml │ │ │ │ │ │ └── FunctionCommentThrowTagStandard.xml │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ForEachLoopDeclarationStandard.xml │ │ │ │ │ │ ├── ForLoopDeclarationStandard.xml │ │ │ │ │ │ └── LowercaseDeclarationStandard.xml │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionDuplicateArgumentStandard.xml │ │ │ │ │ │ └── LowercaseFunctionKeywordsStandard.xml │ │ │ │ │ ├── Scope │ │ │ │ │ │ └── StaticThisUsageStandard.xml │ │ │ │ │ ├── Strings │ │ │ │ │ │ └── EchoedStringsStandard.xml │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── CastSpacingStandard.xml │ │ │ │ │ │ ├── FunctionOpeningBraceStandard.xml │ │ │ │ │ │ ├── LanguageConstructSpacingStandard.xml │ │ │ │ │ │ ├── ObjectOperatorSpacingStandard.xml │ │ │ │ │ │ ├── ScopeKeywordSpacingStandard.xml │ │ │ │ │ │ └── SemicolonSpacingStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── ArrayBracketSpacingSniff.php │ │ │ │ │ │ └── ArrayDeclarationSniff.php │ │ │ │ │ ├── CSS │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceSniff.php │ │ │ │ │ │ ├── ClassDefinitionNameSpacingSniff.php │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceSniff.php │ │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsSniff.php │ │ │ │ │ │ ├── DuplicateClassDefinitionSniff.php │ │ │ │ │ │ ├── DuplicateStyleDefinitionSniff.php │ │ │ │ │ │ ├── EmptyClassDefinitionSniff.php │ │ │ │ │ │ ├── EmptyStyleDefinitionSniff.php │ │ │ │ │ │ ├── ForbiddenStylesSniff.php │ │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ │ ├── LowercaseStyleDefinitionSniff.php │ │ │ │ │ │ ├── MissingColonSniff.php │ │ │ │ │ │ ├── NamedColoursSniff.php │ │ │ │ │ │ ├── OpacitySniff.php │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ └── ShorthandSizeSniff.php │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationSniff.php │ │ │ │ │ │ ├── ClassFileNameSniff.php │ │ │ │ │ │ ├── DuplicatePropertySniff.php │ │ │ │ │ │ ├── LowercaseClassKeywordsSniff.php │ │ │ │ │ │ ├── SelfMemberReferenceSniff.php │ │ │ │ │ │ └── ValidClassNameSniff.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── BlockCommentSniff.php │ │ │ │ │ │ ├── ClassCommentSniff.php │ │ │ │ │ │ ├── ClosingDeclarationCommentSniff.php │ │ │ │ │ │ ├── DocCommentAlignmentSniff.php │ │ │ │ │ │ ├── EmptyCatchCommentSniff.php │ │ │ │ │ │ ├── FileCommentSniff.php │ │ │ │ │ │ ├── FunctionCommentSniff.php │ │ │ │ │ │ ├── FunctionCommentThrowTagSniff.php │ │ │ │ │ │ ├── InlineCommentSniff.php │ │ │ │ │ │ ├── LongConditionClosingCommentSniff.php │ │ │ │ │ │ ├── PostStatementCommentSniff.php │ │ │ │ │ │ └── VariableCommentSniff.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlSignatureSniff.php │ │ │ │ │ │ ├── ElseIfDeclarationSniff.php │ │ │ │ │ │ ├── ForEachLoopDeclarationSniff.php │ │ │ │ │ │ ├── ForLoopDeclarationSniff.php │ │ │ │ │ │ ├── InlineIfDeclarationSniff.php │ │ │ │ │ │ ├── LowercaseDeclarationSniff.php │ │ │ │ │ │ └── SwitchDeclarationSniff.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── JSLintSniff.php │ │ │ │ │ │ └── JavaScriptLintSniff.php │ │ │ │ │ ├── Files │ │ │ │ │ │ └── FileExtensionSniff.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ └── OperatorBracketSniff.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingSniff.php │ │ │ │ │ │ ├── FunctionDeclarationSniff.php │ │ │ │ │ │ ├── FunctionDuplicateArgumentSniff.php │ │ │ │ │ │ ├── GlobalFunctionSniff.php │ │ │ │ │ │ ├── LowercaseFunctionKeywordsSniff.php │ │ │ │ │ │ └── MultiLineFunctionDeclarationSniff.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── ValidFunctionNameSniff.php │ │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ │ ├── Objects │ │ │ │ │ │ ├── DisallowObjectStringIndexSniff.php │ │ │ │ │ │ ├── ObjectInstantiationSniff.php │ │ │ │ │ │ └── ObjectMemberCommaSniff.php │ │ │ │ │ ├── Operators │ │ │ │ │ │ ├── ComparisonOperatorUsageSniff.php │ │ │ │ │ │ ├── IncrementDecrementUsageSniff.php │ │ │ │ │ │ └── ValidLogicalOperatorsSniff.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── CommentedOutCodeSniff.php │ │ │ │ │ │ ├── DisallowBooleanStatementSniff.php │ │ │ │ │ │ ├── DisallowComparisonAssignmentSniff.php │ │ │ │ │ │ ├── DisallowInlineIfSniff.php │ │ │ │ │ │ ├── DisallowMultipleAssignmentsSniff.php │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsSniff.php │ │ │ │ │ │ ├── DiscouragedFunctionsSniff.php │ │ │ │ │ │ ├── EmbeddedPhpSniff.php │ │ │ │ │ │ ├── EvalSniff.php │ │ │ │ │ │ ├── GlobalKeywordSniff.php │ │ │ │ │ │ ├── HeredocSniff.php │ │ │ │ │ │ ├── InnerFunctionsSniff.php │ │ │ │ │ │ ├── LowercasePHPFunctionsSniff.php │ │ │ │ │ │ └── NonExecutableCodeSniff.php │ │ │ │ │ ├── Scope │ │ │ │ │ │ ├── MemberVarScopeSniff.php │ │ │ │ │ │ ├── MethodScopeSniff.php │ │ │ │ │ │ └── StaticThisUsageSniff.php │ │ │ │ │ ├── Strings │ │ │ │ │ │ ├── ConcatenationSpacingSniff.php │ │ │ │ │ │ ├── DoubleQuoteUsageSniff.php │ │ │ │ │ │ └── EchoedStringsSniff.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── CastSpacingSniff.php │ │ │ │ │ │ ├── ControlStructureSpacingSniff.php │ │ │ │ │ │ ├── FunctionClosingBraceSpaceSniff.php │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceSniff.php │ │ │ │ │ │ ├── FunctionSpacingSniff.php │ │ │ │ │ │ ├── LanguageConstructSpacingSniff.php │ │ │ │ │ │ ├── LogicalOperatorSpacingSniff.php │ │ │ │ │ │ ├── MemberVarSpacingSniff.php │ │ │ │ │ │ ├── ObjectOperatorSpacingSniff.php │ │ │ │ │ │ ├── OperatorSpacingSniff.php │ │ │ │ │ │ ├── PropertyLabelSpacingSniff.php │ │ │ │ │ │ ├── ScopeClosingBraceSniff.php │ │ │ │ │ │ ├── ScopeKeywordSpacingSniff.php │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ └── SuperfluousWhitespaceSniff.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Arrays │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ArrayBracketSpacingUnitTest.php │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.1.inc.fixed │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc │ │ │ │ │ │ ├── ArrayDeclarationUnitTest.2.inc.fixed │ │ │ │ │ │ └── ArrayDeclarationUnitTest.php │ │ │ │ │ ├── CSS │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.css.fixed │ │ │ │ │ │ ├── ClassDefinitionClosingBraceSpaceUnitTest.php │ │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.css │ │ │ │ │ │ ├── ClassDefinitionNameSpacingUnitTest.php │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed │ │ │ │ │ │ ├── ClassDefinitionOpeningBraceSpaceUnitTest.php │ │ │ │ │ │ ├── ColonSpacingUnitTest.css │ │ │ │ │ │ ├── ColonSpacingUnitTest.css.fixed │ │ │ │ │ │ ├── ColonSpacingUnitTest.php │ │ │ │ │ │ ├── ColourDefinitionUnitTest.css │ │ │ │ │ │ ├── ColourDefinitionUnitTest.css.fixed │ │ │ │ │ │ ├── ColourDefinitionUnitTest.php │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.css.fixed │ │ │ │ │ │ ├── DisallowMultipleStyleDefinitionsUnitTest.php │ │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.css │ │ │ │ │ │ ├── DuplicateClassDefinitionUnitTest.php │ │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.css │ │ │ │ │ │ ├── DuplicateStyleDefinitionUnitTest.php │ │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.css │ │ │ │ │ │ ├── EmptyClassDefinitionUnitTest.php │ │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.css │ │ │ │ │ │ ├── EmptyStyleDefinitionUnitTest.php │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.css │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.css.fixed │ │ │ │ │ │ ├── ForbiddenStylesUnitTest.php │ │ │ │ │ │ ├── IndentationUnitTest.1.css │ │ │ │ │ │ ├── IndentationUnitTest.1.css.fixed │ │ │ │ │ │ ├── IndentationUnitTest.2.css │ │ │ │ │ │ ├── IndentationUnitTest.php │ │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.css │ │ │ │ │ │ ├── LowercaseStyleDefinitionUnitTest.php │ │ │ │ │ │ ├── MissingColonUnitTest.css │ │ │ │ │ │ ├── MissingColonUnitTest.php │ │ │ │ │ │ ├── NamedColoursUnitTest.css │ │ │ │ │ │ ├── NamedColoursUnitTest.php │ │ │ │ │ │ ├── OpacityUnitTest.css │ │ │ │ │ │ ├── OpacityUnitTest.css.fixed │ │ │ │ │ │ ├── OpacityUnitTest.php │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.css │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.css.fixed │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ │ ├── ShorthandSizeUnitTest.css │ │ │ │ │ │ ├── ShorthandSizeUnitTest.css.fixed │ │ │ │ │ │ └── ShorthandSizeUnitTest.php │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc │ │ │ │ │ │ ├── ClassDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ClassDeclarationUnitTest.php │ │ │ │ │ │ ├── ClassFileNameUnitTest.inc │ │ │ │ │ │ ├── ClassFileNameUnitTest.php │ │ │ │ │ │ ├── DuplicatePropertyUnitTest.js │ │ │ │ │ │ ├── DuplicatePropertyUnitTest.php │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc.fixed │ │ │ │ │ │ ├── LowercaseClassKeywordsUnitTest.php │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.inc.fixed │ │ │ │ │ │ ├── SelfMemberReferenceUnitTest.php │ │ │ │ │ │ ├── ValidClassNameUnitTest.inc │ │ │ │ │ │ └── ValidClassNameUnitTest.php │ │ │ │ │ ├── Commenting │ │ │ │ │ │ ├── BlockCommentUnitTest.inc │ │ │ │ │ │ ├── BlockCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── BlockCommentUnitTest.php │ │ │ │ │ │ ├── ClassCommentUnitTest.inc │ │ │ │ │ │ ├── ClassCommentUnitTest.php │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.inc │ │ │ │ │ │ ├── ClosingDeclarationCommentUnitTest.php │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.inc.fixed │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.js.fixed │ │ │ │ │ │ ├── DocCommentAlignmentUnitTest.php │ │ │ │ │ │ ├── EmptyCatchCommentUnitTest.inc │ │ │ │ │ │ ├── EmptyCatchCommentUnitTest.php │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc │ │ │ │ │ │ ├── FileCommentUnitTest.1.inc.fixed │ │ │ │ │ │ ├── FileCommentUnitTest.1.js │ │ │ │ │ │ ├── FileCommentUnitTest.1.js.fixed │ │ │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ │ │ ├── FileCommentUnitTest.2.js │ │ │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ │ │ ├── FileCommentUnitTest.5.inc │ │ │ │ │ │ ├── FileCommentUnitTest.6.inc │ │ │ │ │ │ ├── FileCommentUnitTest.7.inc │ │ │ │ │ │ ├── FileCommentUnitTest.php │ │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.inc │ │ │ │ │ │ ├── FunctionCommentThrowTagUnitTest.php │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc │ │ │ │ │ │ ├── FunctionCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionCommentUnitTest.php │ │ │ │ │ │ ├── InlineCommentUnitTest.inc │ │ │ │ │ │ ├── InlineCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── InlineCommentUnitTest.js │ │ │ │ │ │ ├── InlineCommentUnitTest.js.fixed │ │ │ │ │ │ ├── InlineCommentUnitTest.php │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.js.fixed │ │ │ │ │ │ ├── LongConditionClosingCommentUnitTest.php │ │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js │ │ │ │ │ │ ├── PostStatementCommentUnitTest.1.js.fixed │ │ │ │ │ │ ├── PostStatementCommentUnitTest.2.js │ │ │ │ │ │ ├── PostStatementCommentUnitTest.inc │ │ │ │ │ │ ├── PostStatementCommentUnitTest.inc.fixed │ │ │ │ │ │ ├── PostStatementCommentUnitTest.php │ │ │ │ │ │ ├── VariableCommentUnitTest.inc │ │ │ │ │ │ ├── VariableCommentUnitTest.inc.fixed │ │ │ │ │ │ └── VariableCommentUnitTest.php │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ ├── ControlSignatureUnitTest.inc │ │ │ │ │ │ ├── ControlSignatureUnitTest.inc.fixed │ │ │ │ │ │ ├── ControlSignatureUnitTest.js │ │ │ │ │ │ ├── ControlSignatureUnitTest.js.fixed │ │ │ │ │ │ ├── ControlSignatureUnitTest.php │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ElseIfDeclarationUnitTest.php │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ForEachLoopDeclarationUnitTest.php │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.inc │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.js │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.js.fixed │ │ │ │ │ │ ├── ForLoopDeclarationUnitTest.php │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── InlineIfDeclarationUnitTest.php │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── LowercaseDeclarationUnitTest.php │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── SwitchDeclarationUnitTest.js │ │ │ │ │ │ └── SwitchDeclarationUnitTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── JSLintUnitTest.js │ │ │ │ │ │ ├── JSLintUnitTest.php │ │ │ │ │ │ ├── JavaScriptLintUnitTest.js │ │ │ │ │ │ └── JavaScriptLintUnitTest.php │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── FileExtensionUnitTest.1.inc │ │ │ │ │ │ ├── FileExtensionUnitTest.2.inc │ │ │ │ │ │ ├── FileExtensionUnitTest.3.inc │ │ │ │ │ │ ├── FileExtensionUnitTest.4.inc │ │ │ │ │ │ └── FileExtensionUnitTest.php │ │ │ │ │ ├── Formatting │ │ │ │ │ │ ├── OperatorBracketUnitTest.inc │ │ │ │ │ │ ├── OperatorBracketUnitTest.inc.fixed │ │ │ │ │ │ ├── OperatorBracketUnitTest.js │ │ │ │ │ │ ├── OperatorBracketUnitTest.js.fixed │ │ │ │ │ │ └── OperatorBracketUnitTest.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.inc │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionDeclarationArgumentSpacingUnitTest.php │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.inc │ │ │ │ │ │ ├── FunctionDeclarationUnitTest.php │ │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.inc │ │ │ │ │ │ ├── FunctionDuplicateArgumentUnitTest.php │ │ │ │ │ │ ├── GlobalFunctionUnitTest.inc │ │ │ │ │ │ ├── GlobalFunctionUnitTest.php │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.inc.fixed │ │ │ │ │ │ ├── LowercaseFunctionKeywordsUnitTest.php │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.inc.fixed │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js │ │ │ │ │ │ ├── MultiLineFunctionDeclarationUnitTest.js.fixed │ │ │ │ │ │ └── MultiLineFunctionDeclarationUnitTest.php │ │ │ │ │ ├── NamingConventions │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.inc │ │ │ │ │ │ ├── ValidFunctionNameUnitTest.php │ │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ │ ├── Objects │ │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.js │ │ │ │ │ │ ├── DisallowObjectStringIndexUnitTest.php │ │ │ │ │ │ ├── ObjectInstantiationUnitTest.inc │ │ │ │ │ │ ├── ObjectInstantiationUnitTest.php │ │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js │ │ │ │ │ │ ├── ObjectMemberCommaUnitTest.js.fixed │ │ │ │ │ │ └── ObjectMemberCommaUnitTest.php │ │ │ │ │ ├── Operators │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.inc │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.js │ │ │ │ │ │ ├── ComparisonOperatorUsageUnitTest.php │ │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.inc │ │ │ │ │ │ ├── IncrementDecrementUsageUnitTest.php │ │ │ │ │ │ ├── ValidLogicalOperatorsUnitTest.inc │ │ │ │ │ │ └── ValidLogicalOperatorsUnitTest.php │ │ │ │ │ ├── PHP │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.css │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.inc │ │ │ │ │ │ ├── CommentedOutCodeUnitTest.php │ │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.inc │ │ │ │ │ │ ├── DisallowBooleanStatementUnitTest.php │ │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.inc │ │ │ │ │ │ ├── DisallowComparisonAssignmentUnitTest.php │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.inc │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.js │ │ │ │ │ │ ├── DisallowInlineIfUnitTest.php │ │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.inc │ │ │ │ │ │ ├── DisallowMultipleAssignmentsUnitTest.php │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.inc │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.js │ │ │ │ │ │ ├── DisallowSizeFunctionsInLoopsUnitTest.php │ │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ │ │ ├── DiscouragedFunctionsUnitTest.php │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.inc │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.inc.fixed │ │ │ │ │ │ ├── EmbeddedPhpUnitTest.php │ │ │ │ │ │ ├── EvalUnitTest.inc │ │ │ │ │ │ ├── EvalUnitTest.php │ │ │ │ │ │ ├── GlobalKeywordUnitTest.inc │ │ │ │ │ │ ├── GlobalKeywordUnitTest.php │ │ │ │ │ │ ├── HeredocUnitTest.inc │ │ │ │ │ │ ├── HeredocUnitTest.php │ │ │ │ │ │ ├── InnerFunctionsUnitTest.inc │ │ │ │ │ │ ├── InnerFunctionsUnitTest.php │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.inc.fixed │ │ │ │ │ │ ├── LowercasePHPFunctionsUnitTest.php │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.1.inc │ │ │ │ │ │ ├── NonExecutableCodeUnitTest.2.inc │ │ │ │ │ │ └── NonExecutableCodeUnitTest.php │ │ │ │ │ ├── Scope │ │ │ │ │ │ ├── MemberVarScopeUnitTest.inc │ │ │ │ │ │ ├── MemberVarScopeUnitTest.php │ │ │ │ │ │ ├── MethodScopeUnitTest.inc │ │ │ │ │ │ ├── MethodScopeUnitTest.php │ │ │ │ │ │ ├── StaticThisUsageUnitTest.inc │ │ │ │ │ │ └── StaticThisUsageUnitTest.php │ │ │ │ │ ├── Strings │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ConcatenationSpacingUnitTest.php │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.inc.fixed │ │ │ │ │ │ ├── DoubleQuoteUsageUnitTest.php │ │ │ │ │ │ ├── EchoedStringsUnitTest.inc │ │ │ │ │ │ ├── EchoedStringsUnitTest.inc.fixed │ │ │ │ │ │ └── EchoedStringsUnitTest.php │ │ │ │ │ └── WhiteSpace │ │ │ │ │ │ ├── CastSpacingUnitTest.inc │ │ │ │ │ │ ├── CastSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── CastSpacingUnitTest.php │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── ControlStructureSpacingUnitTest.php │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionClosingBraceSpaceUnitTest.php │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.inc.fixed │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.js.fixed │ │ │ │ │ │ ├── FunctionOpeningBraceSpaceUnitTest.php │ │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.1.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.2.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.3.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.4.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.5.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.6.inc.fixed │ │ │ │ │ │ ├── FunctionSpacingUnitTest.7.inc │ │ │ │ │ │ ├── FunctionSpacingUnitTest.php │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── LanguageConstructSpacingUnitTest.php │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── LogicalOperatorSpacingUnitTest.php │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.inc │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── MemberVarSpacingUnitTest.php │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ObjectOperatorSpacingUnitTest.php │ │ │ │ │ │ ├── OperatorSpacingUnitTest.inc │ │ │ │ │ │ ├── OperatorSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── OperatorSpacingUnitTest.js │ │ │ │ │ │ ├── OperatorSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── OperatorSpacingUnitTest.php │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── PropertyLabelSpacingUnitTest.php │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.inc.fixed │ │ │ │ │ │ ├── ScopeClosingBraceUnitTest.php │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.inc │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── ScopeKeywordSpacingUnitTest.php │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.inc.fixed │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.js │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.js.fixed │ │ │ │ │ │ ├── SemicolonSpacingUnitTest.php │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.1.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc.fixed │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc │ │ │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc.fixed │ │ │ │ │ │ └── SuperfluousWhitespaceUnitTest.php │ │ │ │ └── ruleset.xml │ │ │ └── Zend │ │ │ │ ├── Docs │ │ │ │ ├── Debug │ │ │ │ │ └── CodeAnalyzerStandard.xml │ │ │ │ ├── Files │ │ │ │ │ └── ClosingTagStandard.xml │ │ │ │ └── NamingConventions │ │ │ │ │ └── ValidVariableNameStandard.xml │ │ │ │ ├── Sniffs │ │ │ │ ├── Debug │ │ │ │ │ └── CodeAnalyzerSniff.php │ │ │ │ ├── Files │ │ │ │ │ └── ClosingTagSniff.php │ │ │ │ └── NamingConventions │ │ │ │ │ └── ValidVariableNameSniff.php │ │ │ │ ├── Tests │ │ │ │ ├── Debug │ │ │ │ │ ├── CodeAnalyzerUnitTest.inc │ │ │ │ │ └── CodeAnalyzerUnitTest.php │ │ │ │ ├── Files │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ ├── ClosingTagUnitTest.3.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ │ └── ClosingTagUnitTest.php │ │ │ │ └── NamingConventions │ │ │ │ │ ├── ValidVariableNameUnitTest.inc │ │ │ │ │ └── ValidVariableNameUnitTest.php │ │ │ │ └── ruleset.xml │ │ ├── Tokenizers │ │ │ ├── CSS.php │ │ │ ├── Comment.php │ │ │ ├── JS.php │ │ │ ├── PHP.php │ │ │ └── Tokenizer.php │ │ └── Util │ │ │ ├── Cache.php │ │ │ ├── Common.php │ │ │ ├── Standards.php │ │ │ ├── Timing.php │ │ │ └── Tokens.php │ │ └── tests │ │ ├── AllTests.php │ │ ├── Core │ │ ├── AbstractMethodUnitTest.php │ │ ├── AllTests.php │ │ ├── Autoloader │ │ │ ├── DetermineLoadedClassTest.php │ │ │ └── TestFiles │ │ │ │ ├── A.inc │ │ │ │ ├── B.inc │ │ │ │ ├── C.inc │ │ │ │ └── Sub │ │ │ │ └── C.inc │ │ ├── ErrorSuppressionTest.php │ │ ├── File │ │ │ ├── FindEndOfStatementTest.inc │ │ │ ├── FindEndOfStatementTest.php │ │ │ ├── FindExtendedClassNameTest.inc │ │ │ ├── FindExtendedClassNameTest.php │ │ │ ├── FindImplementedInterfaceNamesTest.inc │ │ │ ├── FindImplementedInterfaceNamesTest.php │ │ │ ├── FindStartOfStatementTest.inc │ │ │ ├── FindStartOfStatementTest.php │ │ │ ├── GetMemberPropertiesTest.inc │ │ │ ├── GetMemberPropertiesTest.php │ │ │ ├── GetMethodParametersTest.inc │ │ │ ├── GetMethodParametersTest.php │ │ │ ├── GetMethodPropertiesTest.inc │ │ │ ├── GetMethodPropertiesTest.php │ │ │ ├── IsReferenceTest.inc │ │ │ └── IsReferenceTest.php │ │ ├── Filters │ │ │ └── Filter │ │ │ │ ├── AcceptTest.php │ │ │ │ └── AcceptTest.xml │ │ ├── IsCamelCapsTest.php │ │ ├── Ruleset │ │ │ ├── RuleInclusionAbsoluteLinuxTest.php │ │ │ ├── RuleInclusionAbsoluteLinuxTest.xml │ │ │ ├── RuleInclusionAbsoluteWindowsTest.php │ │ │ ├── RuleInclusionAbsoluteWindowsTest.xml │ │ │ ├── RuleInclusionTest-include.xml │ │ │ ├── RuleInclusionTest.php │ │ │ └── RuleInclusionTest.xml │ │ ├── Sniffs │ │ │ ├── AbstractArraySniffTest.inc │ │ │ ├── AbstractArraySniffTest.php │ │ │ └── AbstractArraySniffTestable.php │ │ └── Tokenizer │ │ │ ├── AnonClassParenthesisOwnerTest.inc │ │ │ ├── AnonClassParenthesisOwnerTest.php │ │ │ ├── AttributesTest.inc │ │ │ ├── AttributesTest.php │ │ │ ├── BackfillFnTokenTest.inc │ │ │ ├── BackfillFnTokenTest.php │ │ │ ├── BackfillMatchTokenTest.inc │ │ │ ├── BackfillMatchTokenTest.php │ │ │ ├── BackfillNumericSeparatorTest.inc │ │ │ ├── BackfillNumericSeparatorTest.php │ │ │ ├── BitwiseOrTest.inc │ │ │ ├── BitwiseOrTest.php │ │ │ ├── DefaultKeywordTest.inc │ │ │ ├── DefaultKeywordTest.php │ │ │ ├── DoubleArrowTest.inc │ │ │ ├── DoubleArrowTest.php │ │ │ ├── GotoLabelTest.inc │ │ │ ├── GotoLabelTest.php │ │ │ ├── NamedFunctionCallArgumentsTest.inc │ │ │ ├── NamedFunctionCallArgumentsTest.php │ │ │ ├── NullsafeObjectOperatorTest.inc │ │ │ ├── NullsafeObjectOperatorTest.php │ │ │ ├── ScopeSettingWithNamespaceOperatorTest.inc │ │ │ ├── ScopeSettingWithNamespaceOperatorTest.php │ │ │ ├── ShortArrayTest.inc │ │ │ ├── ShortArrayTest.php │ │ │ ├── StableCommentWhitespaceTest.inc │ │ │ ├── StableCommentWhitespaceTest.php │ │ │ ├── StableCommentWhitespaceWinTest.inc │ │ │ ├── StableCommentWhitespaceWinTest.php │ │ │ ├── UndoNamespacedNameSingleTokenTest.inc │ │ │ └── UndoNamespacedNameSingleTokenTest.php │ │ ├── FileList.php │ │ ├── Standards │ │ ├── AbstractSniffUnitTest.php │ │ └── AllSniffs.php │ │ ├── TestSuite.php │ │ ├── TestSuite7.php │ │ └── bootstrap.php ├── symfony │ ├── config │ │ ├── Builder │ │ │ ├── ClassBuilder.php │ │ │ ├── ConfigBuilderGenerator.php │ │ │ ├── ConfigBuilderGeneratorInterface.php │ │ │ ├── ConfigBuilderInterface.php │ │ │ ├── Method.php │ │ │ └── Property.php │ │ ├── CHANGELOG.md │ │ ├── ConfigCache.php │ │ ├── ConfigCacheFactory.php │ │ ├── ConfigCacheFactoryInterface.php │ │ ├── ConfigCacheInterface.php │ │ ├── Definition │ │ │ ├── ArrayNode.php │ │ │ ├── BaseNode.php │ │ │ ├── BooleanNode.php │ │ │ ├── Builder │ │ │ │ ├── ArrayNodeDefinition.php │ │ │ │ ├── BooleanNodeDefinition.php │ │ │ │ ├── BuilderAwareInterface.php │ │ │ │ ├── EnumNodeDefinition.php │ │ │ │ ├── ExprBuilder.php │ │ │ │ ├── FloatNodeDefinition.php │ │ │ │ ├── IntegerNodeDefinition.php │ │ │ │ ├── MergeBuilder.php │ │ │ │ ├── NodeBuilder.php │ │ │ │ ├── NodeDefinition.php │ │ │ │ ├── NodeParentInterface.php │ │ │ │ ├── NormalizationBuilder.php │ │ │ │ ├── NumericNodeDefinition.php │ │ │ │ ├── ParentNodeDefinitionInterface.php │ │ │ │ ├── ScalarNodeDefinition.php │ │ │ │ ├── TreeBuilder.php │ │ │ │ ├── ValidationBuilder.php │ │ │ │ └── VariableNodeDefinition.php │ │ │ ├── ConfigurationInterface.php │ │ │ ├── Dumper │ │ │ │ ├── XmlReferenceDumper.php │ │ │ │ └── YamlReferenceDumper.php │ │ │ ├── EnumNode.php │ │ │ ├── Exception │ │ │ │ ├── DuplicateKeyException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ForbiddenOverwriteException.php │ │ │ │ ├── InvalidConfigurationException.php │ │ │ │ ├── InvalidDefinitionException.php │ │ │ │ ├── InvalidTypeException.php │ │ │ │ └── UnsetKeyException.php │ │ │ ├── FloatNode.php │ │ │ ├── IntegerNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── NumericNode.php │ │ │ ├── Processor.php │ │ │ ├── PrototypeNodeInterface.php │ │ │ ├── PrototypedArrayNode.php │ │ │ ├── ScalarNode.php │ │ │ └── VariableNode.php │ │ ├── Exception │ │ │ ├── FileLoaderImportCircularReferenceException.php │ │ │ ├── FileLocatorFileNotFoundException.php │ │ │ └── LoaderLoadException.php │ │ ├── FileLocator.php │ │ ├── FileLocatorInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ ├── DelegatingLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── Loader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── LoaderResolver.php │ │ │ ├── LoaderResolverInterface.php │ │ │ └── ParamConfigurator.php │ │ ├── README.md │ │ ├── Resource │ │ │ ├── ClassExistenceResource.php │ │ │ ├── ComposerResource.php │ │ │ ├── DirectoryResource.php │ │ │ ├── FileExistenceResource.php │ │ │ ├── FileResource.php │ │ │ ├── GlobResource.php │ │ │ ├── ReflectionClassResource.php │ │ │ ├── ResourceInterface.php │ │ │ ├── SelfCheckingResourceChecker.php │ │ │ └── SelfCheckingResourceInterface.php │ │ ├── ResourceCheckerConfigCache.php │ │ ├── ResourceCheckerConfigCacheFactory.php │ │ ├── ResourceCheckerInterface.php │ │ ├── Util │ │ │ ├── Exception │ │ │ │ ├── InvalidXmlException.php │ │ │ │ └── XmlParsingException.php │ │ │ └── XmlUtils.php │ │ └── composer.json │ ├── console │ │ ├── Application.php │ │ ├── Attribute │ │ │ └── AsCommand.php │ │ ├── CHANGELOG.md │ │ ├── CI │ │ │ └── GithubActionReporter.php │ │ ├── Color.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CompleteCommand.php │ │ │ ├── DumpCompletionCommand.php │ │ │ ├── HelpCommand.php │ │ │ ├── LazyCommand.php │ │ │ ├── ListCommand.php │ │ │ ├── LockableTrait.php │ │ │ └── SignalableCommandInterface.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── Completion │ │ │ ├── CompletionInput.php │ │ │ ├── CompletionSuggestions.php │ │ │ ├── Output │ │ │ │ ├── BashCompletionOutput.php │ │ │ │ └── CompletionOutputInterface.php │ │ │ └── Suggestion.php │ │ ├── ConsoleEvents.php │ │ ├── Cursor.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleSignalEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingInputException.php │ │ │ ├── NamespaceNotFoundException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── NullOutputFormatter.php │ │ │ ├── NullOutputFormatterStyle.php │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ ├── OutputFormatterStyleStack.php │ │ │ └── WrappableOutputFormatterInterface.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── Dumper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableCellStyle.php │ │ │ ├── TableRows.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── ConsoleSectionOutput.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ ├── StreamOutput.php │ │ │ └── TrimmedBufferOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── hiddeninput.exe │ │ │ └── completion.bash │ │ ├── SignalRegistry │ │ │ └── SignalRegistry.php │ │ ├── SingleCommandApplication.php │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ ├── CommandCompletionTester.php │ │ │ ├── CommandTester.php │ │ │ ├── Constraint │ │ │ │ └── CommandIsSuccessful.php │ │ │ └── TesterTrait.php │ │ └── composer.json │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── filesystem │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── IOException.php │ │ │ ├── IOExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ ├── Filesystem.php │ │ ├── LICENSE │ │ ├── Path.php │ │ ├── README.md │ │ └── composer.json │ ├── finder │ │ ├── CHANGELOG.md │ │ ├── Comparator │ │ │ ├── Comparator.php │ │ │ ├── DateComparator.php │ │ │ └── NumberComparator.php │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ └── DirectoryNotFoundException.php │ │ ├── Finder.php │ │ ├── Gitignore.php │ │ ├── Glob.php │ │ ├── Iterator │ │ │ ├── CustomFilterIterator.php │ │ │ ├── DateRangeFilterIterator.php │ │ │ ├── DepthRangeFilterIterator.php │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ ├── FileTypeFilterIterator.php │ │ │ ├── FilecontentFilterIterator.php │ │ │ ├── FilenameFilterIterator.php │ │ │ ├── LazyIterator.php │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ ├── PathFilterIterator.php │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ ├── SizeRangeFilterIterator.php │ │ │ ├── SortableIterator.php │ │ │ └── VcsIgnoredFilterIterator.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SplFileInfo.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-grapheme │ │ ├── Grapheme.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-intl-normalizer │ │ ├── LICENSE │ │ ├── Normalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ ├── stubs │ │ │ │ └── Normalizer.php │ │ │ └── unidata │ │ │ │ ├── canonicalComposition.php │ │ │ │ ├── canonicalDecomposition.php │ │ │ │ ├── combiningClass.php │ │ │ │ └── compatibilityDecomposition.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php73 │ │ ├── LICENSE │ │ ├── Php73.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── JsonException.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php81 │ │ ├── LICENSE │ │ ├── Php81.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ └── ReturnTypeWillChange.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── process │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessSignaledException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── service-contracts │ │ ├── .gitignore │ │ ├── Attribute │ │ │ ├── Required.php │ │ │ └── SubscribedService.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ResetInterface.php │ │ ├── ServiceLocatorTrait.php │ │ ├── ServiceProviderInterface.php │ │ ├── ServiceSubscriberInterface.php │ │ ├── ServiceSubscriberTrait.php │ │ ├── Test │ │ │ └── ServiceLocatorTest.php │ │ └── composer.json │ └── string │ │ ├── AbstractString.php │ │ ├── AbstractUnicodeString.php │ │ ├── ByteString.php │ │ ├── CHANGELOG.md │ │ ├── CodePointString.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ │ ├── Inflector │ │ ├── EnglishInflector.php │ │ ├── FrenchInflector.php │ │ └── InflectorInterface.php │ │ ├── LICENSE │ │ ├── LazyString.php │ │ ├── README.md │ │ ├── Resources │ │ ├── data │ │ │ ├── wcswidth_table_wide.php │ │ │ └── wcswidth_table_zero.php │ │ └── functions.php │ │ ├── Slugger │ │ ├── AsciiSlugger.php │ │ └── SluggerInterface.php │ │ ├── UnicodeString.php │ │ └── composer.json ├── theseer │ └── tokenizer │ │ ├── .php_cs.dist │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php ├── twig │ ├── markdown-extra │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── DefaultMarkdown.php │ │ ├── ErusevMarkdown.php │ │ ├── LICENSE │ │ ├── LeagueMarkdown.php │ │ ├── MarkdownExtension.php │ │ ├── MarkdownInterface.php │ │ ├── MarkdownRuntime.php │ │ ├── MichelfMarkdown.php │ │ ├── README.md │ │ └── composer.json │ └── twig │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── documentation.yml │ │ ├── .gitignore │ │ ├── .php-cs-fixer.dist.php │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ └── src │ │ ├── Cache │ │ ├── CacheInterface.php │ │ ├── FilesystemCache.php │ │ └── NullCache.php │ │ ├── Compiler.php │ │ ├── Environment.php │ │ ├── Error │ │ ├── Error.php │ │ ├── LoaderError.php │ │ ├── RuntimeError.php │ │ └── SyntaxError.php │ │ ├── ExpressionParser.php │ │ ├── Extension │ │ ├── AbstractExtension.php │ │ ├── CoreExtension.php │ │ ├── DebugExtension.php │ │ ├── EscaperExtension.php │ │ ├── ExtensionInterface.php │ │ ├── GlobalsInterface.php │ │ ├── OptimizerExtension.php │ │ ├── ProfilerExtension.php │ │ ├── RuntimeExtensionInterface.php │ │ ├── SandboxExtension.php │ │ ├── StagingExtension.php │ │ └── StringLoaderExtension.php │ │ ├── ExtensionSet.php │ │ ├── FileExtensionEscapingStrategy.php │ │ ├── Lexer.php │ │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── ChainLoader.php │ │ ├── FilesystemLoader.php │ │ └── LoaderInterface.php │ │ ├── Markup.php │ │ ├── Node │ │ ├── AutoEscapeNode.php │ │ ├── BlockNode.php │ │ ├── BlockReferenceNode.php │ │ ├── BodyNode.php │ │ ├── CheckSecurityCallNode.php │ │ ├── CheckSecurityNode.php │ │ ├── CheckToStringNode.php │ │ ├── DeprecatedNode.php │ │ ├── DoNode.php │ │ ├── EmbedNode.php │ │ ├── Expression │ │ │ ├── AbstractExpression.php │ │ │ ├── ArrayExpression.php │ │ │ ├── ArrowFunctionExpression.php │ │ │ ├── AssignNameExpression.php │ │ │ ├── Binary │ │ │ │ ├── AbstractBinary.php │ │ │ │ ├── AddBinary.php │ │ │ │ ├── AndBinary.php │ │ │ │ ├── BitwiseAndBinary.php │ │ │ │ ├── BitwiseOrBinary.php │ │ │ │ ├── BitwiseXorBinary.php │ │ │ │ ├── ConcatBinary.php │ │ │ │ ├── DivBinary.php │ │ │ │ ├── EndsWithBinary.php │ │ │ │ ├── EqualBinary.php │ │ │ │ ├── FloorDivBinary.php │ │ │ │ ├── GreaterBinary.php │ │ │ │ ├── GreaterEqualBinary.php │ │ │ │ ├── InBinary.php │ │ │ │ ├── LessBinary.php │ │ │ │ ├── LessEqualBinary.php │ │ │ │ ├── MatchesBinary.php │ │ │ │ ├── ModBinary.php │ │ │ │ ├── MulBinary.php │ │ │ │ ├── NotEqualBinary.php │ │ │ │ ├── NotInBinary.php │ │ │ │ ├── OrBinary.php │ │ │ │ ├── PowerBinary.php │ │ │ │ ├── RangeBinary.php │ │ │ │ ├── SpaceshipBinary.php │ │ │ │ ├── StartsWithBinary.php │ │ │ │ └── SubBinary.php │ │ │ ├── BlockReferenceExpression.php │ │ │ ├── CallExpression.php │ │ │ ├── ConditionalExpression.php │ │ │ ├── ConstantExpression.php │ │ │ ├── Filter │ │ │ │ └── DefaultFilter.php │ │ │ ├── FilterExpression.php │ │ │ ├── FunctionExpression.php │ │ │ ├── GetAttrExpression.php │ │ │ ├── InlinePrint.php │ │ │ ├── MethodCallExpression.php │ │ │ ├── NameExpression.php │ │ │ ├── NullCoalesceExpression.php │ │ │ ├── ParentExpression.php │ │ │ ├── TempNameExpression.php │ │ │ ├── Test │ │ │ │ ├── ConstantTest.php │ │ │ │ ├── DefinedTest.php │ │ │ │ ├── DivisiblebyTest.php │ │ │ │ ├── EvenTest.php │ │ │ │ ├── NullTest.php │ │ │ │ ├── OddTest.php │ │ │ │ └── SameasTest.php │ │ │ ├── TestExpression.php │ │ │ ├── Unary │ │ │ │ ├── AbstractUnary.php │ │ │ │ ├── NegUnary.php │ │ │ │ ├── NotUnary.php │ │ │ │ └── PosUnary.php │ │ │ └── VariadicExpression.php │ │ ├── FlushNode.php │ │ ├── ForLoopNode.php │ │ ├── ForNode.php │ │ ├── IfNode.php │ │ ├── ImportNode.php │ │ ├── IncludeNode.php │ │ ├── MacroNode.php │ │ ├── ModuleNode.php │ │ ├── Node.php │ │ ├── NodeCaptureInterface.php │ │ ├── NodeOutputInterface.php │ │ ├── PrintNode.php │ │ ├── SandboxNode.php │ │ ├── SetNode.php │ │ ├── TextNode.php │ │ └── WithNode.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor │ │ ├── AbstractNodeVisitor.php │ │ ├── EscaperNodeVisitor.php │ │ ├── MacroAutoImportNodeVisitor.php │ │ ├── NodeVisitorInterface.php │ │ ├── OptimizerNodeVisitor.php │ │ ├── SafeAnalysisNodeVisitor.php │ │ └── SandboxNodeVisitor.php │ │ ├── Parser.php │ │ ├── Profiler │ │ ├── Dumper │ │ │ ├── BaseDumper.php │ │ │ ├── BlackfireDumper.php │ │ │ ├── HtmlDumper.php │ │ │ └── TextDumper.php │ │ ├── Node │ │ │ ├── EnterProfileNode.php │ │ │ └── LeaveProfileNode.php │ │ ├── NodeVisitor │ │ │ └── ProfilerNodeVisitor.php │ │ └── Profile.php │ │ ├── RuntimeLoader │ │ ├── ContainerRuntimeLoader.php │ │ ├── FactoryRuntimeLoader.php │ │ └── RuntimeLoaderInterface.php │ │ ├── Sandbox │ │ ├── SecurityError.php │ │ ├── SecurityNotAllowedFilterError.php │ │ ├── SecurityNotAllowedFunctionError.php │ │ ├── SecurityNotAllowedMethodError.php │ │ ├── SecurityNotAllowedPropertyError.php │ │ ├── SecurityNotAllowedTagError.php │ │ ├── SecurityPolicy.php │ │ └── SecurityPolicyInterface.php │ │ ├── Source.php │ │ ├── Template.php │ │ ├── TemplateWrapper.php │ │ ├── Test │ │ ├── IntegrationTestCase.php │ │ └── NodeTestCase.php │ │ ├── Token.php │ │ ├── TokenParser │ │ ├── AbstractTokenParser.php │ │ ├── ApplyTokenParser.php │ │ ├── AutoEscapeTokenParser.php │ │ ├── BlockTokenParser.php │ │ ├── DeprecatedTokenParser.php │ │ ├── DoTokenParser.php │ │ ├── EmbedTokenParser.php │ │ ├── ExtendsTokenParser.php │ │ ├── FlushTokenParser.php │ │ ├── ForTokenParser.php │ │ ├── FromTokenParser.php │ │ ├── IfTokenParser.php │ │ ├── ImportTokenParser.php │ │ ├── IncludeTokenParser.php │ │ ├── MacroTokenParser.php │ │ ├── SandboxTokenParser.php │ │ ├── SetTokenParser.php │ │ ├── TokenParserInterface.php │ │ ├── UseTokenParser.php │ │ └── WithTokenParser.php │ │ ├── TokenStream.php │ │ ├── TwigFilter.php │ │ ├── TwigFunction.php │ │ ├── TwigTest.php │ │ └── Util │ │ ├── DeprecationCollector.php │ │ └── TemplateDirIterator.php └── wppconnect-team │ └── wppconnect-php-client │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── examples │ ├── config │ │ └── config.php │ ├── databases │ │ ├── crud.php │ │ └── db │ │ │ └── .gitignore │ ├── docker7 │ │ └── html │ │ │ ├── config │ │ │ └── config.php │ │ │ ├── index.php │ │ │ ├── webhook │ │ │ └── index.php │ │ │ └── wppconnect.jpeg │ ├── request │ │ ├── message.php │ │ └── wppconnect.jpeg │ └── response │ │ ├── files │ │ └── .gitignore │ │ └── webhook.php │ ├── package-lock.json │ ├── package.json │ └── src │ ├── Db │ ├── Adapter.php │ └── Exception.php │ ├── Helpers │ └── Util.php │ └── Http │ ├── Request.php │ └── Response.php └── webroot ├── .htaccess ├── css ├── cake.css ├── home.css ├── milligram.min.css └── normalize.min.css ├── favicon.ico ├── font ├── cakedingbats-webfont.eot ├── cakedingbats-webfont.svg ├── cakedingbats-webfont.ttf ├── cakedingbats-webfont.woff └── cakedingbats-webfont.woff2 ├── img ├── cake-logo.png ├── cake.icon.png ├── cake.logo.svg └── cake.power.gif ├── index.php └── js └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /DATABASE MYSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/DATABASE MYSQL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/README.md -------------------------------------------------------------------------------- /bin/bash_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/bin/bash_completion.sh -------------------------------------------------------------------------------- /bin/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/bin/cake -------------------------------------------------------------------------------- /bin/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/bin/cake.bat -------------------------------------------------------------------------------- /bin/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/bin/cake.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/.env.example -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/app.php -------------------------------------------------------------------------------- /config/app_local.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/app_local.example.php -------------------------------------------------------------------------------- /config/app_local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/app_local.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/bootstrap_cli.php -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/paths.php -------------------------------------------------------------------------------- /config/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/permissions.php -------------------------------------------------------------------------------- /config/requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/requirements.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/schema/i18n.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/schema/i18n.sql -------------------------------------------------------------------------------- /config/schema/sessions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/config/schema/sessions.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/index.php -------------------------------------------------------------------------------- /nodeserver/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.babelrc -------------------------------------------------------------------------------- /nodeserver/.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.commitlintrc.json -------------------------------------------------------------------------------- /nodeserver/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.dockerignore -------------------------------------------------------------------------------- /nodeserver/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.eslintrc.json -------------------------------------------------------------------------------- /nodeserver/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.github/FUNDING.yml -------------------------------------------------------------------------------- /nodeserver/.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.github/renovate.json -------------------------------------------------------------------------------- /nodeserver/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.github/workflows/build.yml -------------------------------------------------------------------------------- /nodeserver/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.github/workflows/publish.yml -------------------------------------------------------------------------------- /nodeserver/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.github/workflows/release.yml -------------------------------------------------------------------------------- /nodeserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.gitignore -------------------------------------------------------------------------------- /nodeserver/.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /nodeserver/.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.husky/commit-msg -------------------------------------------------------------------------------- /nodeserver/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.husky/pre-commit -------------------------------------------------------------------------------- /nodeserver/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.npmignore -------------------------------------------------------------------------------- /nodeserver/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true -------------------------------------------------------------------------------- /nodeserver/.prettierignore: -------------------------------------------------------------------------------- 1 | docs 2 | dist -------------------------------------------------------------------------------- /nodeserver/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.prettierrc -------------------------------------------------------------------------------- /nodeserver/.release-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/.release-it.yml -------------------------------------------------------------------------------- /nodeserver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/CHANGELOG.md -------------------------------------------------------------------------------- /nodeserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/Dockerfile -------------------------------------------------------------------------------- /nodeserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/LICENSE -------------------------------------------------------------------------------- /nodeserver/LICENSE.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/LICENSE.header -------------------------------------------------------------------------------- /nodeserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/README.md -------------------------------------------------------------------------------- /nodeserver/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/docker-compose.yml -------------------------------------------------------------------------------- /nodeserver/license-checker-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/license-checker-config.json -------------------------------------------------------------------------------- /nodeserver/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/nodemon.json -------------------------------------------------------------------------------- /nodeserver/nodeserver.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/nodeserver.zip -------------------------------------------------------------------------------- /nodeserver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/package.json -------------------------------------------------------------------------------- /nodeserver/requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/requests.http -------------------------------------------------------------------------------- /nodeserver/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/config.json -------------------------------------------------------------------------------- /nodeserver/src/config/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/config/upload.js -------------------------------------------------------------------------------- /nodeserver/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/index.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/index.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/tagone-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/tagone-chat.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/tagone-device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/tagone-device.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/tagone-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/tagone-message.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/tagone-onack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/tagone-onack.js -------------------------------------------------------------------------------- /nodeserver/src/mapper/tagone-return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/mapper/tagone-return.js -------------------------------------------------------------------------------- /nodeserver/src/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/middleware/auth.js -------------------------------------------------------------------------------- /nodeserver/src/middleware/healthCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/middleware/healthCheck.js -------------------------------------------------------------------------------- /nodeserver/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/routes/index.js -------------------------------------------------------------------------------- /nodeserver/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/server.js -------------------------------------------------------------------------------- /nodeserver/src/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/swagger.json -------------------------------------------------------------------------------- /nodeserver/src/util/chatWootClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/chatWootClient.js -------------------------------------------------------------------------------- /nodeserver/src/util/createSessionUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/createSessionUtil.js -------------------------------------------------------------------------------- /nodeserver/src/util/db/mongodb/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/db/mongodb/db.js -------------------------------------------------------------------------------- /nodeserver/src/util/db/redis/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/db/redis/db.js -------------------------------------------------------------------------------- /nodeserver/src/util/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/functions.js -------------------------------------------------------------------------------- /nodeserver/src/util/getAllTokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/getAllTokens.js -------------------------------------------------------------------------------- /nodeserver/src/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/logger.js -------------------------------------------------------------------------------- /nodeserver/src/util/sessionUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/sessionUtil.js -------------------------------------------------------------------------------- /nodeserver/src/util/tokenStore/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/src/util/tokenStore/factory.js -------------------------------------------------------------------------------- /nodeserver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/nodeserver/yarn.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Console/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Console/Installer.php -------------------------------------------------------------------------------- /src/Controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/AppController.php -------------------------------------------------------------------------------- /src/Controller/Component/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/DispUsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/DispUsersController.php -------------------------------------------------------------------------------- /src/Controller/DispositivosController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/DispositivosController.php -------------------------------------------------------------------------------- /src/Controller/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/ErrorController.php -------------------------------------------------------------------------------- /src/Controller/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/PagesController.php -------------------------------------------------------------------------------- /src/Controller/ServerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/ServerController.php -------------------------------------------------------------------------------- /src/Controller/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/UsersController.php -------------------------------------------------------------------------------- /src/Controller/WebhooksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Controller/WebhooksController.php -------------------------------------------------------------------------------- /src/Model/Behavior/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Model/Entity/DispUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Entity/DispUser.php -------------------------------------------------------------------------------- /src/Model/Entity/Dispositivo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Entity/Dispositivo.php -------------------------------------------------------------------------------- /src/Model/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Entity/User.php -------------------------------------------------------------------------------- /src/Model/Table/DispUsersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Table/DispUsersTable.php -------------------------------------------------------------------------------- /src/Model/Table/DispositivosTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Table/DispositivosTable.php -------------------------------------------------------------------------------- /src/Model/Table/UsersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/Model/Table/UsersTable.php -------------------------------------------------------------------------------- /src/View/AjaxView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/View/AjaxView.php -------------------------------------------------------------------------------- /src/View/AppView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/src/View/AppView.php -------------------------------------------------------------------------------- /src/View/Cell/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/View/Helper/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/DispUsers/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/DispUsers/add.php -------------------------------------------------------------------------------- /templates/DispUsers/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/DispUsers/edit.php -------------------------------------------------------------------------------- /templates/DispUsers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/DispUsers/index.php -------------------------------------------------------------------------------- /templates/DispUsers/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/DispUsers/view.php -------------------------------------------------------------------------------- /templates/Dispositivos/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Dispositivos/add.php -------------------------------------------------------------------------------- /templates/Dispositivos/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Dispositivos/edit.php -------------------------------------------------------------------------------- /templates/Dispositivos/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Dispositivos/index.php -------------------------------------------------------------------------------- /templates/Dispositivos/scanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Dispositivos/scanner.php -------------------------------------------------------------------------------- /templates/Dispositivos/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Dispositivos/view.php -------------------------------------------------------------------------------- /templates/Error/error400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Error/error400.php -------------------------------------------------------------------------------- /templates/Error/error500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Error/error500.php -------------------------------------------------------------------------------- /templates/Pages/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Pages/home.php -------------------------------------------------------------------------------- /templates/Server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Server/index.php -------------------------------------------------------------------------------- /templates/Server/update.php: -------------------------------------------------------------------------------- 1 | Flash->render(); ?> 2 | -------------------------------------------------------------------------------- /templates/Users/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Users/add.php -------------------------------------------------------------------------------- /templates/Users/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Users/edit.php -------------------------------------------------------------------------------- /templates/Users/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Users/index.php -------------------------------------------------------------------------------- /templates/Users/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Users/view.php -------------------------------------------------------------------------------- /templates/Webhooks/exemplos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/Webhooks/exemplos.php -------------------------------------------------------------------------------- /templates/Webhooks/index.php: -------------------------------------------------------------------------------- 1 | disableAutoLayout(); ?> 2 | 3 | -------------------------------------------------------------------------------- /templates/cell/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/element/aside/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/aside/main.php -------------------------------------------------------------------------------- /templates/element/content/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/content/header.php -------------------------------------------------------------------------------- /templates/element/flash/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/flash/default.php -------------------------------------------------------------------------------- /templates/element/flash/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/flash/error.php -------------------------------------------------------------------------------- /templates/element/flash/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/flash/info.php -------------------------------------------------------------------------------- /templates/element/flash/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/flash/success.php -------------------------------------------------------------------------------- /templates/element/flash/warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/flash/warning.php -------------------------------------------------------------------------------- /templates/element/footer/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/footer/main.php -------------------------------------------------------------------------------- /templates/element/header/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/header/main.php -------------------------------------------------------------------------------- /templates/element/header/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/header/menu.php -------------------------------------------------------------------------------- /templates/element/header/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/header/messages.php -------------------------------------------------------------------------------- /templates/element/header/search-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/header/search-block.php -------------------------------------------------------------------------------- /templates/element/layout/css.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/element/layout/script.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/element/sidebar/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/sidebar/main.php -------------------------------------------------------------------------------- /templates/element/sidebar/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/sidebar/menu.php -------------------------------------------------------------------------------- /templates/element/sidebar/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/sidebar/search.php -------------------------------------------------------------------------------- /templates/element/sidebar/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/element/sidebar/user.php -------------------------------------------------------------------------------- /templates/email/html/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/email/html/default.php -------------------------------------------------------------------------------- /templates/email/text/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/email/text/default.php -------------------------------------------------------------------------------- /templates/layout/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/layout/default.php -------------------------------------------------------------------------------- /templates/layout/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/layout/login.php -------------------------------------------------------------------------------- /templates/layout/top-nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/templates/layout/top-nav.php -------------------------------------------------------------------------------- /tests/Fixture/DispUsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/Fixture/DispUsersFixture.php -------------------------------------------------------------------------------- /tests/Fixture/DispositivosFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/Fixture/DispositivosFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/Fixture/UsersFixture.php -------------------------------------------------------------------------------- /tests/TestCase/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/TestCase/ApplicationTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/tests/schema.sql -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/arodu/cakelte/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/.editorconfig -------------------------------------------------------------------------------- /vendor/arodu/cakelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/.gitignore -------------------------------------------------------------------------------- /vendor/arodu/cakelte/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/LICENSE -------------------------------------------------------------------------------- /vendor/arodu/cakelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/README.md -------------------------------------------------------------------------------- /vendor/arodu/cakelte/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/composer.json -------------------------------------------------------------------------------- /vendor/arodu/cakelte/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/arodu/cakelte/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/src/Plugin.php -------------------------------------------------------------------------------- /vendor/arodu/cakelte/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/arodu/cakelte/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/arodu/cakelte/webroot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/composer -------------------------------------------------------------------------------- /vendor/bin/composer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/composer.bat -------------------------------------------------------------------------------- /vendor/bin/jsonlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/jsonlint -------------------------------------------------------------------------------- /vendor/bin/jsonlint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/jsonlint.bat -------------------------------------------------------------------------------- /vendor/bin/phinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phinx -------------------------------------------------------------------------------- /vendor/bin/phinx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phinx.bat -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /vendor/bin/phpcbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpcbf -------------------------------------------------------------------------------- /vendor/bin/phpcbf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpcbf.bat -------------------------------------------------------------------------------- /vendor/bin/phpcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpcs -------------------------------------------------------------------------------- /vendor/bin/phpcs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpcs.bat -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /vendor/bin/validate-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/validate-json -------------------------------------------------------------------------------- /vendor/bin/validate-json.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/bin/validate-json.bat -------------------------------------------------------------------------------- /vendor/brick/varexporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/brick/varexporter/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/brick/varexporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/brick/varexporter/LICENSE -------------------------------------------------------------------------------- /vendor/brick/varexporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/brick/varexporter/composer.json -------------------------------------------------------------------------------- /vendor/cakedc/auth/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | /vendor 3 | /.idea 4 | composer.lock 5 | .php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/cakedc/auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/cakedc/auth/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cakedc/auth/Docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/Docs/Home.md -------------------------------------------------------------------------------- /vendor/cakedc/auth/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakedc/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/README.md -------------------------------------------------------------------------------- /vendor/cakedc/auth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/composer.json -------------------------------------------------------------------------------- /vendor/cakedc/auth/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/config/auth.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/config/bootstrap.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/config/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/config/permissions.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/phpstan.neon -------------------------------------------------------------------------------- /vendor/cakedc/auth/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/psalm.xml -------------------------------------------------------------------------------- /vendor/cakedc/auth/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/src/Plugin.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/src/Rbac/Rbac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/src/Rbac/Rbac.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/src/Social/MapUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/src/Social/MapUser.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/cakedc/auth/tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/auth/tests/schema.php -------------------------------------------------------------------------------- /vendor/cakedc/users/.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/.github/codecov.yml -------------------------------------------------------------------------------- /vendor/cakedc/users/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/.gitignore -------------------------------------------------------------------------------- /vendor/cakedc/users/.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/.semver -------------------------------------------------------------------------------- /vendor/cakedc/users/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/cakedc/users/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/cakedc/users/Docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/Docs/Home.md -------------------------------------------------------------------------------- /vendor/cakedc/users/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakedc/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/README.md -------------------------------------------------------------------------------- /vendor/cakedc/users/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/composer.json -------------------------------------------------------------------------------- /vendor/cakedc/users/config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/config/bootstrap.php -------------------------------------------------------------------------------- /vendor/cakedc/users/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/config/routes.php -------------------------------------------------------------------------------- /vendor/cakedc/users/config/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/config/users.php -------------------------------------------------------------------------------- /vendor/cakedc/users/phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/phpstan-baseline.neon -------------------------------------------------------------------------------- /vendor/cakedc/users/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/phpstan.neon -------------------------------------------------------------------------------- /vendor/cakedc/users/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/psalm-baseline.xml -------------------------------------------------------------------------------- /vendor/cakedc/users/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/psalm.xml -------------------------------------------------------------------------------- /vendor/cakedc/users/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/src/Plugin.php -------------------------------------------------------------------------------- /vendor/cakedc/users/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/cakedc/users/tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/tests/schema.php -------------------------------------------------------------------------------- /vendor/cakedc/users/tests/test_app/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakedc/users/tests/test_app/templates/layout/ajax.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/cakedc/users/tests/test_app/templates/layout/error.php: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /vendor/cakedc/users/webroot/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakedc/users/webroot/js/u2f-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakedc/users/webroot/js/u2f-api.js -------------------------------------------------------------------------------- /vendor/cakephp-plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp-plugins.php -------------------------------------------------------------------------------- /vendor/cakephp/authentication/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authentication/Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/authentication/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authentication/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakephp/authentication/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/authentication/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authentication/psalm.xml -------------------------------------------------------------------------------- /vendor/cakephp/authentication/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authentication/readme.md -------------------------------------------------------------------------------- /vendor/cakephp/authorization/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authorization/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakephp/authorization/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/authorization/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authorization/phpstan.neon -------------------------------------------------------------------------------- /vendor/cakephp/authorization/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authorization/psalm.xml -------------------------------------------------------------------------------- /vendor/cakephp/authorization/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authorization/readme.md -------------------------------------------------------------------------------- /vendor/cakephp/authorization/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/authorization/run.sh -------------------------------------------------------------------------------- /vendor/cakephp/bake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/bake/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakephp/bake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/README.md -------------------------------------------------------------------------------- /vendor/cakephp/bake/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs.Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/config/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/config/all.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/en/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/en/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/en/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/en/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/es/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/es/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/es/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/es/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/es/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/es/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/es/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/es/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/fr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/fr/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/fr/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/fr/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/fr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/fr/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/fr/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/fr/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ja/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ja/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ja/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ja/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ja/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ja/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ja/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ja/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/pt/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/pt/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/pt/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/pt/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/pt/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/pt/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/pt/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/pt/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ru/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ru/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ru/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ru/contents.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ru/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ru/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/docs/ru/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/docs/ru/usage.rst -------------------------------------------------------------------------------- /vendor/cakephp/bake/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/phpcs.xml.dist -------------------------------------------------------------------------------- /vendor/cakephp/bake/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/phpstan.neon -------------------------------------------------------------------------------- /vendor/cakephp/bake/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/psalm-baseline.xml -------------------------------------------------------------------------------- /vendor/cakephp/bake/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/psalm.xml -------------------------------------------------------------------------------- /vendor/cakephp/bake/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/src/Plugin.php -------------------------------------------------------------------------------- /vendor/cakephp/bake/src/View/BakeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/src/View/BakeView.php -------------------------------------------------------------------------------- /vendor/cakephp/bake/templates/bake/Plugin/tests/schema.sql.twig: -------------------------------------------------------------------------------- 1 | -- Test database schema for {{ plugin }} 2 | -------------------------------------------------------------------------------- /vendor/cakephp/bake/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/cakephp/bake/tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/bake/tests/schema.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/LICENSE -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/VERSION.txt -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/config/config.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Core/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Core/App.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Core/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Form/Form.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Form/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Http/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Http/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Http/Uri.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/I18n/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/I18n/Date.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/I18n/I18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/I18n/I18n.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/I18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/I18n/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/I18n/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/I18n/Time.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Log/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Log/Log.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/Log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/Log/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/ORM/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/ORM/Entity.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/ORM/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/ORM/Query.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/ORM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/ORM/README.md -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/ORM/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/ORM/Table.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/View/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/View/Cell.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/View/View.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/src/basics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/src/basics.php -------------------------------------------------------------------------------- /vendor/cakephp/cakephp/tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/cakephp/tests/schema.php -------------------------------------------------------------------------------- /vendor/cakephp/chronos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/chronos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/LICENSE -------------------------------------------------------------------------------- /vendor/cakephp/chronos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/README.md -------------------------------------------------------------------------------- /vendor/cakephp/chronos/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs.Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/config/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/config/all.py -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/fr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/fr/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/fr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/fr/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/ja/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/ja/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/ja/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/ja/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/pt/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/pt/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/chronos/docs/pt/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/docs/pt/index.rst -------------------------------------------------------------------------------- /vendor/cakephp/chronos/src/Chronos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/src/Chronos.php -------------------------------------------------------------------------------- /vendor/cakephp/chronos/src/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/src/Date.php -------------------------------------------------------------------------------- /vendor/cakephp/chronos/src/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/chronos/src/Translator.php -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/.eslintrc.json -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/README.md -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/docs.Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs/fr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/docs/fr/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs/ja/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/docs/ja/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/docs/pt/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/docs/pt/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/package.json -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/phpstan.neon -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/psalm.xml -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/src/DebugSql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/src/DebugSql.php -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/src/Plugin.php -------------------------------------------------------------------------------- /vendor/cakephp/debug_kit/tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/debug_kit/tests/schema.php -------------------------------------------------------------------------------- /vendor/cakephp/migrations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/migrations/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/LICENSE.txt -------------------------------------------------------------------------------- /vendor/cakephp/migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/README.md -------------------------------------------------------------------------------- /vendor/cakephp/migrations/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs.Dockerfile -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/fr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs/fr/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/ja/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs/ja/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/pt/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs/pt/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/migrations/docs/ru/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/docs/ru/conf.py -------------------------------------------------------------------------------- /vendor/cakephp/migrations/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/psalm.xml -------------------------------------------------------------------------------- /vendor/cakephp/migrations/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/src/Plugin.php -------------------------------------------------------------------------------- /vendor/cakephp/migrations/src/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/migrations/src/Table.php -------------------------------------------------------------------------------- /vendor/cakephp/plugin-installer/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | .phpunit.result.cache 4 | -------------------------------------------------------------------------------- /vendor/cakephp/plugin-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/plugin-installer/README.md -------------------------------------------------------------------------------- /vendor/cakephp/twig-view/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/twig-view/LICENSE -------------------------------------------------------------------------------- /vendor/cakephp/twig-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/twig-view/README.md -------------------------------------------------------------------------------- /vendor/cakephp/twig-view/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/twig-view/composer.json -------------------------------------------------------------------------------- /vendor/cakephp/twig-view/src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/cakephp/twig-view/src/Plugin.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/ca-bundle/LICENSE -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/ca-bundle/README.md -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/ca-bundle/composer.json -------------------------------------------------------------------------------- /vendor/composer/ca-bundle/res/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/ca-bundle/res/cacert.pem -------------------------------------------------------------------------------- /vendor/composer/composer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/.editorconfig -------------------------------------------------------------------------------- /vendor/composer/composer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/.gitattributes -------------------------------------------------------------------------------- /vendor/composer/composer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/.gitignore -------------------------------------------------------------------------------- /vendor/composer/composer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/composer/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/composer/PORTING_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/PORTING_INFO -------------------------------------------------------------------------------- /vendor/composer/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/README.md -------------------------------------------------------------------------------- /vendor/composer/composer/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/UPGRADE-2.0.md -------------------------------------------------------------------------------- /vendor/composer/composer/bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/bin/compile -------------------------------------------------------------------------------- /vendor/composer/composer/bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/bin/composer -------------------------------------------------------------------------------- /vendor/composer/composer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/composer.json -------------------------------------------------------------------------------- /vendor/composer/composer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/composer.lock -------------------------------------------------------------------------------- /vendor/composer/composer/doc/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/doc/00-intro.md -------------------------------------------------------------------------------- /vendor/composer/composer/doc/03-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/doc/03-cli.md -------------------------------------------------------------------------------- /vendor/composer/composer/doc/04-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/doc/04-schema.md -------------------------------------------------------------------------------- /vendor/composer/composer/doc/06-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/composer/doc/06-config.md -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/metadata-minifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/metadata-minifier/LICENSE -------------------------------------------------------------------------------- /vendor/composer/pcre/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/LICENSE -------------------------------------------------------------------------------- /vendor/composer/pcre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/README.md -------------------------------------------------------------------------------- /vendor/composer/pcre/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/composer.json -------------------------------------------------------------------------------- /vendor/composer/pcre/src/MatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/src/MatchResult.php -------------------------------------------------------------------------------- /vendor/composer/pcre/src/Preg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/src/Preg.php -------------------------------------------------------------------------------- /vendor/composer/pcre/src/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/pcre/src/Regex.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/composer/semver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/composer/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/LICENSE -------------------------------------------------------------------------------- /vendor/composer/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/README.md -------------------------------------------------------------------------------- /vendor/composer/semver/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/composer.json -------------------------------------------------------------------------------- /vendor/composer/semver/src/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/src/Comparator.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/src/Interval.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Intervals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/src/Intervals.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Semver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/semver/src/Semver.php -------------------------------------------------------------------------------- /vendor/composer/spdx-licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/spdx-licenses/LICENSE -------------------------------------------------------------------------------- /vendor/composer/spdx-licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/spdx-licenses/README.md -------------------------------------------------------------------------------- /vendor/composer/xdebug-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/xdebug-handler/LICENSE -------------------------------------------------------------------------------- /vendor/composer/xdebug-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/composer/xdebug-handler/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/doctrine/instantiator/psalm.xml -------------------------------------------------------------------------------- /vendor/google/recaptcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/.gitignore -------------------------------------------------------------------------------- /vendor/google/recaptcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/.travis.yml -------------------------------------------------------------------------------- /vendor/google/recaptcha/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/ARCHITECTURE.md -------------------------------------------------------------------------------- /vendor/google/recaptcha/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/google/recaptcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/LICENSE -------------------------------------------------------------------------------- /vendor/google/recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/README.md -------------------------------------------------------------------------------- /vendor/google/recaptcha/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/app.yaml -------------------------------------------------------------------------------- /vendor/google/recaptcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/composer.json -------------------------------------------------------------------------------- /vendor/google/recaptcha/examples/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /vendor/google/recaptcha/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/google/recaptcha/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/google/recaptcha/src/autoload.php -------------------------------------------------------------------------------- /vendor/jasny/twig-extensions/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | .phpunit.result.cache 4 | -------------------------------------------------------------------------------- /vendor/jasny/twig-extensions/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jasny/twig-extensions/.travis.yml -------------------------------------------------------------------------------- /vendor/jasny/twig-extensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jasny/twig-extensions/LICENSE -------------------------------------------------------------------------------- /vendor/jasny/twig-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jasny/twig-extensions/README.md -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/.travis.yml -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/LICENSE.txt -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/README.md -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/composer.json -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/composer.lock -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/tests/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/jdorn/sql-formatter/tests/sql.sql -------------------------------------------------------------------------------- /vendor/josegonzalez/dotenv/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/josegonzalez/dotenv/.editorconfig -------------------------------------------------------------------------------- /vendor/josegonzalez/dotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/josegonzalez/dotenv/LICENSE -------------------------------------------------------------------------------- /vendor/josegonzalez/dotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/josegonzalez/dotenv/composer.json -------------------------------------------------------------------------------- /vendor/justinrainbow/json-schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/justinrainbow/json-schema/LICENSE -------------------------------------------------------------------------------- /vendor/league/container/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/league/container/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/league/container/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/LICENSE.md -------------------------------------------------------------------------------- /vendor/league/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/README.md -------------------------------------------------------------------------------- /vendor/league/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/composer.json -------------------------------------------------------------------------------- /vendor/league/container/src/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/league/container/src/Container.php -------------------------------------------------------------------------------- /vendor/m1/env/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/.editorconfig -------------------------------------------------------------------------------- /vendor/m1/env/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/m1/env/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/CONDUCT.md -------------------------------------------------------------------------------- /vendor/m1/env/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/m1/env/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/LICENSE.md -------------------------------------------------------------------------------- /vendor/m1/env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/README.md -------------------------------------------------------------------------------- /vendor/m1/env/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/composer.json -------------------------------------------------------------------------------- /vendor/m1/env/src/Helper/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/src/Helper/StringHelper.php -------------------------------------------------------------------------------- /vendor/m1/env/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/src/Parser.php -------------------------------------------------------------------------------- /vendor/m1/env/src/Parser/KeyParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/src/Parser/KeyParser.php -------------------------------------------------------------------------------- /vendor/m1/env/src/Parser/ValueParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/m1/env/src/Parser/ValueParser.php -------------------------------------------------------------------------------- /vendor/mustache/mustache/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/mustache/mustache/.gitattributes -------------------------------------------------------------------------------- /vendor/mustache/mustache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/mustache/mustache/LICENSE -------------------------------------------------------------------------------- /vendor/mustache/mustache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/mustache/mustache/README.md -------------------------------------------------------------------------------- /vendor/mustache/mustache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/mustache/mustache/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/grammar/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/grammar/php5.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/grammar/php7.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/tokens.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/nikic/php-parser/grammar/tokens.y -------------------------------------------------------------------------------- /vendor/phar-io/manifest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/manifest/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phar-io/manifest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/manifest/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/manifest/README.md -------------------------------------------------------------------------------- /vendor/phar-io/manifest/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/manifest/composer.json -------------------------------------------------------------------------------- /vendor/phar-io/manifest/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/manifest/composer.lock -------------------------------------------------------------------------------- /vendor/phar-io/version/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/version/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/phar-io/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/version/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/version/README.md -------------------------------------------------------------------------------- /vendor/phar-io/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/version/composer.json -------------------------------------------------------------------------------- /vendor/phar-io/version/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phar-io/version/src/Version.php -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpstan/phpdoc-parser/LICENSE -------------------------------------------------------------------------------- /vendor/phpstan/phpdoc-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpstan/phpdoc-parser/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-file-iterator/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-invoker/ChangeLog.md -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-invoker/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-invoker/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-invoker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-invoker/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-text-template/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/ChangeLog.md -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/src/Duration.php -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/src/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/php-timer/src/Timer.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/.phpstorm.meta.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/ChangeLog-8.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/ChangeLog-8.5.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/ChangeLog-9.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/ChangeLog-9.5.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/README.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/SECURITY.md -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpunit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/phpunit.xsd -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/schema/8.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/schema/8.5.xsd -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/schema/9.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/schema/9.2.xsd -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Exception.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Util/Color.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Util/Json.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Util/Test.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Util/Type.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/phpunit/phpunit/src/Util/Xml.php -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/container/README.md -------------------------------------------------------------------------------- /vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-client/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-client/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-client/README.md -------------------------------------------------------------------------------- /vendor/psr/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-client/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-factory/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /vendor/psr/http-factory/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-factory/.pullapprove.yml -------------------------------------------------------------------------------- /vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-server-handler/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-server-handler/README.md -------------------------------------------------------------------------------- /vendor/psr/http-server-middleware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/http-server-middleware/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psr/log/src/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/AbstractLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/LoggerAwareTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/LoggerInterface.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/src/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/log/src/NullLogger.php -------------------------------------------------------------------------------- /vendor/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /vendor/react/promise/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/react/promise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/LICENSE -------------------------------------------------------------------------------- /vendor/react/promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/README.md -------------------------------------------------------------------------------- /vendor/react/promise/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/composer.json -------------------------------------------------------------------------------- /vendor/react/promise/src/Deferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/src/Deferred.php -------------------------------------------------------------------------------- /vendor/react/promise/src/LazyPromise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/src/LazyPromise.php -------------------------------------------------------------------------------- /vendor/react/promise/src/Promise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/src/Promise.php -------------------------------------------------------------------------------- /vendor/react/promise/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/react/promise/src/functions.php -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/.stickler.yml -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/LICENSE -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/README.md -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/app/phinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/app/phinx.php -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/app/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/app/web.php -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/bin/phinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/bin/phinx -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/bin/phinx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/bin/phinx.bat -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/composer.json -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/config/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/docs/config/all.py -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/en/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/docs/en/goals.rst -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/robmorgan/phinx/docs/en/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/robmorgan/phinx/docs/en/intro.rst -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/cli-parser/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/cli-parser/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/cli-parser/README.md -------------------------------------------------------------------------------- /vendor/sebastian/cli-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/cli-parser/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/code-unit/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/code-unit/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/code-unit/README.md -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/code-unit/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/code-unit/src/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/code-unit/src/Mapper.php -------------------------------------------------------------------------------- /vendor/sebastian/comparator/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/comparator/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/comparator/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/comparator/README.md -------------------------------------------------------------------------------- /vendor/sebastian/comparator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/comparator/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/complexity/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/complexity/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/complexity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/complexity/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/complexity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/complexity/README.md -------------------------------------------------------------------------------- /vendor/sebastian/complexity/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/complexity/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /vendor/sebastian/diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Chunk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/src/Chunk.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Differ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/src/Differ.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /vendor/sebastian/diff/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/diff/src/Parser.php -------------------------------------------------------------------------------- /vendor/sebastian/environment/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/environment/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/environment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/environment/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/environment/README.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/exporter/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/exporter/README.md -------------------------------------------------------------------------------- /vendor/sebastian/exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/exporter/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/global-state/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/global-state/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/global-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/global-state/README.md -------------------------------------------------------------------------------- /vendor/sebastian/lines-of-code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/lines-of-code/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/lines-of-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/lines-of-code/README.md -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/object-reflector/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/type/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/type/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/type/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/type/README.md -------------------------------------------------------------------------------- /vendor/sebastian/type/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/type/composer.json -------------------------------------------------------------------------------- /vendor/sebastian/type/src/TypeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/type/src/TypeName.php -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.php_cs.cache 2 | /.idea 3 | -------------------------------------------------------------------------------- /vendor/sebastian/version/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/version/ChangeLog.md -------------------------------------------------------------------------------- /vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /vendor/sebastian/version/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/sebastian/version/composer.json -------------------------------------------------------------------------------- /vendor/seld/jsonlint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/seld/jsonlint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/LICENSE -------------------------------------------------------------------------------- /vendor/seld/jsonlint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/README.md -------------------------------------------------------------------------------- /vendor/seld/jsonlint/bin/jsonlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/bin/jsonlint -------------------------------------------------------------------------------- /vendor/seld/jsonlint/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/composer.json -------------------------------------------------------------------------------- /vendor/seld/jsonlint/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/jsonlint/phpstan.neon.dist -------------------------------------------------------------------------------- /vendor/seld/phar-utils/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ -------------------------------------------------------------------------------- /vendor/seld/phar-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/phar-utils/LICENSE -------------------------------------------------------------------------------- /vendor/seld/phar-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/phar-utils/README.md -------------------------------------------------------------------------------- /vendor/seld/phar-utils/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/phar-utils/composer.json -------------------------------------------------------------------------------- /vendor/seld/phar-utils/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/phar-utils/composer.lock -------------------------------------------------------------------------------- /vendor/seld/phar-utils/src/Linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/phar-utils/src/Linter.php -------------------------------------------------------------------------------- /vendor/seld/signal-handler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/signal-handler/.gitignore -------------------------------------------------------------------------------- /vendor/seld/signal-handler/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/signal-handler/.php_cs -------------------------------------------------------------------------------- /vendor/seld/signal-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspiretony/MDcWPPManagementPHP/HEAD/vendor/seld/signal-handler/LICENSE -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.js: -------------------------------------------------------------------------------- 1 | var foo = bar; 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} 3 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js.fixed: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.css: -------------------------------------------------------------------------------- 1 | 2 | #login-container {} -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 3 | hi 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc.fixed: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | add('arg'))?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | add('arg')) /* comment */ ?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc.fixed: -------------------------------------------------------------------------------- 1 |