gitextract_rfq8vaue/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── LICENSE ├── README.md ├── app/ │ ├── Admin/ │ │ ├── Actions/ │ │ │ └── Post/ │ │ │ └── GoArticle.php │ │ ├── Controllers/ │ │ │ ├── AuthController.php │ │ │ ├── BlogAboutArticleController.php │ │ │ ├── BlogAboutCardOneController.php │ │ │ ├── BlogAboutCardTwoController.php │ │ │ ├── BlogAboutController.php │ │ │ ├── BlogFriendsController.php │ │ │ ├── BlogMessageController.php │ │ │ ├── BlogNavArticleController.php │ │ │ ├── BlogNavController.php │ │ │ ├── BlogNavMusicController.php │ │ │ ├── BlogNavPhotoController.php │ │ │ ├── BlogNavShareOneController.php │ │ │ ├── BlogNavShareTwoController.php │ │ │ ├── BlogNavVideoController.php │ │ │ ├── BlogNoticeController.php │ │ │ ├── BlogSubscribeController.php │ │ │ ├── BlogUploadFileController.php │ │ │ ├── ExampleController.php │ │ │ └── HomeController.php │ │ ├── bootstrap.php │ │ └── routes.php │ ├── Console/ │ │ └── Kernel.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ └── Home/ │ │ │ ├── AboutController.php │ │ │ ├── ArticleController.php │ │ │ ├── ArticleDetailController.php │ │ │ ├── CardOneController.php │ │ │ ├── CardTwoController.php │ │ │ ├── FriendsController.php │ │ │ ├── IndexController.php │ │ │ ├── MessageController.php │ │ │ ├── MusicController.php │ │ │ ├── PhotoController.php │ │ │ └── VideoController.php │ │ ├── Kernel.php │ │ ├── Middleware/ │ │ │ ├── AetherUploadCORS.php │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ │ └── Requests/ │ │ ├── StoreArticleMsgPost.php │ │ ├── StoreBlogFriendsPost.php │ │ └── StoreBlogSubscribePost.php │ ├── Jobs/ │ │ ├── ProcessPodcast.php │ │ └── SendReminderEmail.php │ ├── Mail/ │ │ └── ArticleMail.php │ ├── Models/ │ │ ├── BlogAbout.php │ │ ├── BlogAboutArticle.php │ │ ├── BlogAboutCardOne.php │ │ ├── BlogAboutCardTwo.php │ │ ├── BlogFriends.php │ │ ├── BlogMessage.php │ │ ├── BlogNav.php │ │ ├── BlogNavArticle.php │ │ ├── BlogNavMusic.php │ │ ├── BlogNavPhoto.php │ │ ├── BlogNavShareOne.php │ │ ├── BlogNavShareTwo.php │ │ ├── BlogNavVideo.php │ │ ├── BlogNotice.php │ │ ├── BlogSubscribe.php │ │ ├── BlogTag.php │ │ └── BlogUploadFile.php │ ├── Observers/ │ │ ├── BlogAboutCardTwoObserver.php │ │ ├── BlogConfigObserver.php │ │ ├── BlogFriendsObserver.php │ │ ├── BlogNavArticleObserver.php │ │ ├── BlogNavMusicObserver.php │ │ ├── BlogNavObserver.php │ │ ├── BlogNavPhotoObserver.php │ │ ├── BlogNavShareOneObserver.php │ │ ├── BlogNavShareTwoObserver.php │ │ └── BlogNavVideoObserver.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── cache/ │ │ └── .gitignore │ └── common.php ├── composer.json ├── config/ │ ├── admin.php │ ├── aetherupload.php │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ ├── static.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 2019_08_24_022201_create_blog_nav_table.php │ │ ├── 2019_08_24_025115_create_blog_nav_article_table.php │ │ ├── 2019_08_24_025134_create_blog_nav_photo_table.php │ │ ├── 2019_08_24_025151_create_blog_nav_music_table.php │ │ ├── 2019_08_24_025209_create_blog_nav_video_table.php │ │ ├── 2019_08_24_025230_create_blog_nav_share1_table.php │ │ ├── 2019_08_24_025240_create_blog_nav_share2_table.php │ │ ├── 2019_08_25_102118_create_blog_message_table.php │ │ ├── 2019_08_25_131502_create_blog_friends_table.php │ │ ├── 2019_08_26_021306_create_blog_apply_table.php │ │ ├── 2019_08_26_021945_create_blog_about_table.php │ │ ├── 2019_08_26_104822_create_blog_upload_files_table.php │ │ ├── 2019_08_29_042857_create_blog_notices_table.php │ │ ├── 2019_08_29_140729_create_blog_about_articles_table.php │ │ ├── 2019_08_29_140755_create_blog_about_card_ones_table.php │ │ ├── 2019_08_29_140807_create_blog_about_card_twos_table.php │ │ ├── 2019_09_15_132631_create_blog_subscribes_table.php │ │ ├── 2019_09_27_084944_create_blog_tags_table.php │ │ ├── 2019_10_07_060955_create_jobs_table.php │ │ └── 2019_10_07_071533_create_failed_jobs_table.php │ └── seeds/ │ ├── BlogArticleTableSeeder.php │ ├── BlogSubscribeSeeder.php │ └── DatabaseSeeder.php ├── package.json ├── php ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── css/ │ │ └── app.css │ ├── index.php │ ├── js/ │ │ └── app.js │ ├── robots.txt │ ├── static/ │ │ └── home/ │ │ ├── assets/ │ │ │ ├── clipboard/ │ │ │ │ └── clipboard.js │ │ │ ├── cplayer/ │ │ │ │ └── cplayer.js │ │ │ ├── css/ │ │ │ │ ├── editormd.css │ │ │ │ ├── fonts-googleapis.css │ │ │ │ ├── google-fonts/ │ │ │ │ │ └── fonts-googleapis.css │ │ │ │ ├── my_settings.css │ │ │ │ └── paper-kit.css │ │ │ ├── demo/ │ │ │ │ └── demo.css │ │ │ ├── fancybox/ │ │ │ │ └── fancybox-master/ │ │ │ │ ├── .github/ │ │ │ │ │ └── ISSUE_TEMPLATE/ │ │ │ │ │ ├── bug_report.md │ │ │ │ │ ├── feature_request.md │ │ │ │ │ └── question.md │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dist/ │ │ │ │ │ ├── jquery.fancybox.css │ │ │ │ │ └── jquery.fancybox.js │ │ │ │ ├── docs/ │ │ │ │ │ └── index.html │ │ │ │ ├── gulpfile.js │ │ │ │ ├── package.json │ │ │ │ └── src/ │ │ │ │ ├── css/ │ │ │ │ │ ├── core.css │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── share.css │ │ │ │ │ ├── slideshow.css │ │ │ │ │ └── thumbs.css │ │ │ │ └── js/ │ │ │ │ ├── core.js │ │ │ │ ├── fullscreen.js │ │ │ │ ├── guestures.js │ │ │ │ ├── hash.js │ │ │ │ ├── media.js │ │ │ │ ├── share.js │ │ │ │ ├── slideshow.js │ │ │ │ ├── thumbs.js │ │ │ │ └── wheel.js │ │ │ ├── fonts/ │ │ │ │ ├── font_back.css │ │ │ │ └── font_css_back.css │ │ │ ├── img/ │ │ │ │ └── img.lnk │ │ │ ├── js/ │ │ │ │ ├── iconfont.js │ │ │ │ ├── paper-kit.js │ │ │ │ └── plugins/ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── bootstrap-switch.js │ │ │ ├── layer/ │ │ │ │ ├── layer.js │ │ │ │ ├── mobile/ │ │ │ │ │ ├── layer.js │ │ │ │ │ └── need/ │ │ │ │ │ └── layer.css │ │ │ │ └── theme/ │ │ │ │ └── default/ │ │ │ │ └── layer.css │ │ │ ├── pjax/ │ │ │ │ └── jquery.pjax.js │ │ │ ├── rotating-card/ │ │ │ │ ├── README.md │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── pe-icon-7-stroke.css │ │ │ │ │ └── rotating-card.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── jquery-1.10.2.js │ │ │ │ └── rotating-card.html │ │ │ └── scss/ │ │ │ ├── paper-kit/ │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _checkbox-radio.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _examples.scss │ │ │ │ ├── _footers.scss │ │ │ │ ├── _headers.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _nucleo-icons.scss │ │ │ │ ├── _nucleo-outline.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _responsive.scss │ │ │ │ ├── _sections.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _sliders.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ ├── _switch.scss │ │ │ │ ├── _tabs-navs.scss │ │ │ │ ├── _tags.scss │ │ │ │ ├── _tooltips-and-popovers.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── cards/ │ │ │ │ │ ├── _card-plain.scss │ │ │ │ │ ├── _card-profile.scss │ │ │ │ │ └── _card-register.scss │ │ │ │ ├── mixins/ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _inputs.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _navbars.scss │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _transparency.scss │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ └── plugins/ │ │ │ │ ├── _plugin-bootstrap-switch.scss │ │ │ │ ├── _plugin-datepicker.scss │ │ │ │ ├── _plugin-nouislider.scss │ │ │ │ └── _plugin-perfect-scrollbar.scss │ │ │ └── paper-kit.scss │ │ ├── docs/ │ │ │ └── documentation.html │ │ ├── editormd/ │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── BUGS.md │ │ │ ├── CHANGE.md │ │ │ ├── Gulpfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css/ │ │ │ │ ├── editormd.css │ │ │ │ ├── editormd.logo.css │ │ │ │ └── editormd.preview.css │ │ │ ├── docs/ │ │ │ │ ├── editormd.js.html │ │ │ │ ├── index.html │ │ │ │ ├── scripts/ │ │ │ │ │ ├── linenumber.js │ │ │ │ │ └── prettify/ │ │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ │ ├── lang-css.js │ │ │ │ │ └── prettify.js │ │ │ │ └── styles/ │ │ │ │ ├── jsdoc-default.css │ │ │ │ ├── prettify-jsdoc.css │ │ │ │ └── prettify-tomorrow.css │ │ │ ├── editormd.amd.js │ │ │ ├── editormd.js │ │ │ ├── examples/ │ │ │ │ ├── @links.html │ │ │ │ ├── auto-height.html │ │ │ │ ├── change-mode.html │ │ │ │ ├── code-fold.html │ │ │ │ ├── css/ │ │ │ │ │ └── style.css │ │ │ │ ├── custom-keyboard-shortcuts.html │ │ │ │ ├── custom-toolbar.html │ │ │ │ ├── define-plugin.html │ │ │ │ ├── delay-renderer-preview.html │ │ │ │ ├── dynamic-create-editormd.html │ │ │ │ ├── emoji.html │ │ │ │ ├── extends.html │ │ │ │ ├── external-use.html │ │ │ │ ├── flowchart.html │ │ │ │ ├── form-get-value.html │ │ │ │ ├── full.html │ │ │ │ ├── goto-line.html │ │ │ │ ├── html-preview-markdown-to-html-custom-toc-container.html │ │ │ │ ├── html-preview-markdown-to-html.html │ │ │ │ ├── html-tags-decode.html │ │ │ │ ├── image-cross-domain-upload.html │ │ │ │ ├── image-upload.html │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ ├── sea.js │ │ │ │ │ └── seajs-main.js │ │ │ │ ├── katex.html │ │ │ │ ├── manually-load-modules.html │ │ │ │ ├── multi-editormd.html │ │ │ │ ├── multi-languages.html │ │ │ │ ├── on-off.html │ │ │ │ ├── onchange.html │ │ │ │ ├── onfullscreen.html │ │ │ │ ├── onload.html │ │ │ │ ├── onpreviewing-onpreviewed.html │ │ │ │ ├── onresize.html │ │ │ │ ├── onscroll-onpreviewscroll.html │ │ │ │ ├── onwatch-onunwatch.html │ │ │ │ ├── page-break.html │ │ │ │ ├── php/ │ │ │ │ │ ├── cross-domain-upload.php │ │ │ │ │ ├── editormd.uploader.class.php │ │ │ │ │ ├── post.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── upload_callback.html │ │ │ │ ├── readonly.html │ │ │ │ ├── resettings.html │ │ │ │ ├── search-replace.html │ │ │ │ ├── sequence-diagram.html │ │ │ │ ├── set-get-replace-selection.html │ │ │ │ ├── simple.html │ │ │ │ ├── sync-scrolling.html │ │ │ │ ├── task-lists.html │ │ │ │ ├── test.md │ │ │ │ ├── themes.html │ │ │ │ ├── toc.html │ │ │ │ ├── toolbar-auto-fixed.html │ │ │ │ ├── use-requirejs.html │ │ │ │ ├── use-seajs.html │ │ │ │ └── use-zepto.html │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── languages/ │ │ │ │ ├── en.js │ │ │ │ └── zh-tw.js │ │ │ ├── lib/ │ │ │ │ └── codemirror/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon/ │ │ │ │ │ ├── comment/ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display/ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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/ │ │ │ │ │ │ ├── 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 │ │ │ │ ├── bower.json │ │ │ │ ├── lib/ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode/ │ │ │ │ │ ├── apl/ │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk/ │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike/ │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure/ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol/ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript/ │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp/ │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher/ │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── d/ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dart/ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff/ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django/ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile/ │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd/ │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan/ │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ebnf/ │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl/ │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel/ │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang/ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth/ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran/ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas/ │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm/ │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin/ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go/ │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy/ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml/ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell/ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe/ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded/ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed/ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http/ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl/ │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── q/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm/ │ │ │ │ │ │ ├── changes/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── tcl/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ │ ├── package.json │ │ │ │ └── theme/ │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ └── zenburn.css │ │ │ ├── package.json │ │ │ ├── plugins/ │ │ │ │ ├── code-block-dialog/ │ │ │ │ │ └── code-block-dialog.js │ │ │ │ ├── emoji-dialog/ │ │ │ │ │ ├── emoji-dialog.js │ │ │ │ │ └── emoji.json │ │ │ │ ├── goto-line-dialog/ │ │ │ │ │ └── goto-line-dialog.js │ │ │ │ ├── help-dialog/ │ │ │ │ │ ├── help-dialog.js │ │ │ │ │ └── help.md │ │ │ │ ├── html-entities-dialog/ │ │ │ │ │ ├── html-entities-dialog.js │ │ │ │ │ └── html-entities.json │ │ │ │ ├── image-dialog/ │ │ │ │ │ └── image-dialog.js │ │ │ │ ├── link-dialog/ │ │ │ │ │ └── link-dialog.js │ │ │ │ ├── plugin-template.js │ │ │ │ ├── preformatted-text-dialog/ │ │ │ │ │ └── preformatted-text-dialog.js │ │ │ │ ├── reference-link-dialog/ │ │ │ │ │ └── reference-link-dialog.js │ │ │ │ ├── table-dialog/ │ │ │ │ │ └── table-dialog.js │ │ │ │ └── test-plugin/ │ │ │ │ └── test-plugin.js │ │ │ ├── scss/ │ │ │ │ ├── editormd.codemirror.scss │ │ │ │ ├── editormd.dialog.scss │ │ │ │ ├── editormd.form.scss │ │ │ │ ├── editormd.grid.scss │ │ │ │ ├── editormd.logo.scss │ │ │ │ ├── editormd.menu.scss │ │ │ │ ├── editormd.preview.scss │ │ │ │ ├── editormd.preview.themes.scss │ │ │ │ ├── editormd.scss │ │ │ │ ├── editormd.tab.scss │ │ │ │ ├── editormd.themes.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ ├── github-markdown.scss │ │ │ │ ├── lib/ │ │ │ │ │ ├── prefixes.scss │ │ │ │ │ └── variables.scss │ │ │ │ └── prettify.scss │ │ │ ├── src/ │ │ │ │ └── editormd.js │ │ │ └── tests/ │ │ │ ├── bootstrap-test.html │ │ │ ├── codemirror-searchbox-test.html │ │ │ ├── codemirror-test.html │ │ │ ├── js/ │ │ │ │ └── searchbox.js │ │ │ ├── katex-tests.html │ │ │ ├── marked-@at-test.html │ │ │ ├── marked-emoji-test.html │ │ │ ├── marked-heading-link-test.html │ │ │ ├── marked-todo-list-test.html │ │ │ └── qunit/ │ │ │ ├── qunit-1.16.0.css │ │ │ └── qunit-1.16.0.js │ │ ├── examples/ │ │ │ ├── landing-page.html │ │ │ ├── profile-page.html │ │ │ └── register-page.html │ │ ├── font-awesome4.7/ │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css/ │ │ │ │ └── font-awesome.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── less/ │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fontawesome-free-5.10.1-web/ │ │ │ ├── LICENSE.txt │ │ │ ├── css/ │ │ │ │ ├── all.css │ │ │ │ ├── brands.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── regular.css │ │ │ │ ├── solid.css │ │ │ │ ├── svg-with-js.css │ │ │ │ └── v4-shims.css │ │ │ ├── js/ │ │ │ │ ├── all.js │ │ │ │ ├── brands.js │ │ │ │ ├── conflict-detection.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── regular.js │ │ │ │ ├── solid.js │ │ │ │ └── v4-shims.js │ │ │ ├── less/ │ │ │ │ ├── _animated.less │ │ │ │ ├── _bordered-pulled.less │ │ │ │ ├── _core.less │ │ │ │ ├── _fixed-width.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _larger.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── metadata/ │ │ │ │ ├── categories.yml │ │ │ │ ├── icons.json │ │ │ │ ├── icons.yml │ │ │ │ ├── shims.json │ │ │ │ ├── shims.yml │ │ │ │ └── sponsors.yml │ │ │ └── scss/ │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── live2d/ │ │ │ ├── assets/ │ │ │ │ ├── live2d.js │ │ │ │ ├── waifu-tips.js │ │ │ │ ├── waifu-tips.json │ │ │ │ └── waifu.css │ │ │ └── demo.html │ │ ├── live2d_api/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── add/ │ │ │ │ └── index.php │ │ │ ├── get/ │ │ │ │ └── index.php │ │ │ ├── model/ │ │ │ │ ├── HyperdimensionNeptunia/ │ │ │ │ │ ├── blanc_classic/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── blanc_normal/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── blanc_swimwear/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── general/ │ │ │ │ │ │ ├── mtn/ │ │ │ │ │ │ │ ├── idle_00.mtn │ │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ │ └── idle_02.mtn │ │ │ │ │ │ └── pose.json │ │ │ │ │ ├── histoire/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── histoirenohover/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ ├── physics.json │ │ │ │ │ │ └── textures.cache │ │ │ │ │ ├── nepgear/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── nepgear_extra/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── nepgearswim/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── nepmaid/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── nepnep/ │ │ │ │ │ │ ├── general/ │ │ │ │ │ │ │ ├── exp/ │ │ │ │ │ │ │ │ ├── deformed.json │ │ │ │ │ │ │ │ ├── enjoy.json │ │ │ │ │ │ │ │ ├── happy.json │ │ │ │ │ │ │ │ ├── kira.json │ │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ │ └── unhappy.json │ │ │ │ │ │ │ ├── mtn/ │ │ │ │ │ │ │ │ ├── idle_00.mtn │ │ │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ │ │ ├── idle_02.mtn │ │ │ │ │ │ │ │ ├── nep_slide_head_2.mtn │ │ │ │ │ │ │ │ ├── nep_touch_belly_1.mtn │ │ │ │ │ │ │ │ ├── nep_touch_belly_2.mtn │ │ │ │ │ │ │ │ ├── nep_touch_boobs_1.mtn │ │ │ │ │ │ │ │ ├── nep_touch_head_1.mtn │ │ │ │ │ │ │ │ ├── refuse.mtn │ │ │ │ │ │ │ │ ├── shake.mtn │ │ │ │ │ │ │ │ ├── smile.mtn │ │ │ │ │ │ │ │ └── tilt_head.mtn │ │ │ │ │ │ │ └── snd/ │ │ │ │ │ │ │ ├── 001.ogg │ │ │ │ │ │ │ ├── 007.ogg │ │ │ │ │ │ │ ├── 013.ogg │ │ │ │ │ │ │ ├── 014.ogg │ │ │ │ │ │ │ └── 101.ogg │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── nepswim/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ ├── physics.json │ │ │ │ │ │ └── textures.cache │ │ │ │ │ ├── neptune_classic/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── model.moc │ │ │ │ │ ├── neptune_santa/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── model.moc │ │ │ │ │ ├── noir/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── noir_classic/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── noir_santa/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── noireswim/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── vert_classic/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ ├── vert_normal/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ └── physics.json │ │ │ │ │ └── vert_swimwear/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── model.moc │ │ │ │ │ └── physics.json │ │ │ │ ├── KantaiCollection/ │ │ │ │ │ └── murakumo/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ └── f04.exp.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── murakumo_idle_01.mtn │ │ │ │ │ │ ├── murakumo_idle_02.mtn │ │ │ │ │ │ ├── murakumo_idle_03.mtn │ │ │ │ │ │ ├── murakumo_m_01.mtn │ │ │ │ │ │ ├── murakumo_m_02.mtn │ │ │ │ │ │ ├── murakumo_tap_bust_01.mtn │ │ │ │ │ │ ├── murakumo_tap_bust_02.mtn │ │ │ │ │ │ └── murakumo_tap_ear_01.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── Potion-Maker/ │ │ │ │ │ ├── Pio/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ ├── motions/ │ │ │ │ │ │ │ ├── Breath Dere1.mtn │ │ │ │ │ │ │ ├── Breath Dere2.mtn │ │ │ │ │ │ │ ├── Breath Dere3.mtn │ │ │ │ │ │ │ ├── Breath1.mtn │ │ │ │ │ │ │ ├── Breath2.mtn │ │ │ │ │ │ │ ├── Breath3.mtn │ │ │ │ │ │ │ ├── Breath4.mtn │ │ │ │ │ │ │ ├── Breath5.mtn │ │ │ │ │ │ │ ├── Breath6.mtn │ │ │ │ │ │ │ ├── Breath7.mtn │ │ │ │ │ │ │ ├── Breath8.mtn │ │ │ │ │ │ │ ├── Fail.mtn │ │ │ │ │ │ │ ├── Sleeping.mtn │ │ │ │ │ │ │ ├── Success.mtn │ │ │ │ │ │ │ ├── Sukebei1.mtn │ │ │ │ │ │ │ ├── Sukebei2.mtn │ │ │ │ │ │ │ ├── Sukebei3.mtn │ │ │ │ │ │ │ ├── Touch Dere1.mtn │ │ │ │ │ │ │ ├── Touch Dere2.mtn │ │ │ │ │ │ │ ├── Touch Dere3.mtn │ │ │ │ │ │ │ ├── Touch Dere4.mtn │ │ │ │ │ │ │ ├── Touch Dere5.mtn │ │ │ │ │ │ │ ├── Touch Dere6.mtn │ │ │ │ │ │ │ ├── Touch1.mtn │ │ │ │ │ │ │ ├── Touch2.mtn │ │ │ │ │ │ │ ├── Touch3.mtn │ │ │ │ │ │ │ ├── Touch4.mtn │ │ │ │ │ │ │ ├── Touch5.mtn │ │ │ │ │ │ │ ├── Touch6.mtn │ │ │ │ │ │ │ └── WakeUp.mtn │ │ │ │ │ │ └── textures.cache │ │ │ │ │ └── Tia/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── Breath Dere1.mtn │ │ │ │ │ │ ├── Breath Dere2.mtn │ │ │ │ │ │ ├── Breath Dere3.mtn │ │ │ │ │ │ ├── Breath1.mtn │ │ │ │ │ │ ├── Breath2.mtn │ │ │ │ │ │ ├── Breath3.mtn │ │ │ │ │ │ ├── Breath4.mtn │ │ │ │ │ │ ├── Breath5.mtn │ │ │ │ │ │ ├── Breath6.mtn │ │ │ │ │ │ ├── Breath7.mtn │ │ │ │ │ │ ├── Breath8.mtn │ │ │ │ │ │ ├── Breath9.mtn │ │ │ │ │ │ ├── Fail.mtn │ │ │ │ │ │ ├── Sleeping.mtn │ │ │ │ │ │ ├── Success.mtn │ │ │ │ │ │ ├── Sukebei1.mtn │ │ │ │ │ │ ├── Sukebei2.mtn │ │ │ │ │ │ ├── Sukebei3.mtn │ │ │ │ │ │ ├── Touch Dere1.mtn │ │ │ │ │ │ ├── Touch Dere2.mtn │ │ │ │ │ │ ├── Touch Dere3.mtn │ │ │ │ │ │ ├── Touch Dere4.mtn │ │ │ │ │ │ ├── Touch Dere5.mtn │ │ │ │ │ │ ├── Touch Dere6.mtn │ │ │ │ │ │ ├── Touch1.mtn │ │ │ │ │ │ ├── Touch2.mtn │ │ │ │ │ │ ├── Touch3.mtn │ │ │ │ │ │ ├── Touch4.mtn │ │ │ │ │ │ ├── Touch5.mtn │ │ │ │ │ │ ├── Touch6.mtn │ │ │ │ │ │ └── WakeUp.mtn │ │ │ │ │ └── textures.cache │ │ │ │ ├── ShizukuTalk/ │ │ │ │ │ ├── shizuku-48/ │ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ │ └── f04.exp.json │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ ├── motions/ │ │ │ │ │ │ │ ├── double_tap1.mtn │ │ │ │ │ │ │ ├── double_tap2.mtn │ │ │ │ │ │ │ ├── double_tap3.mtn │ │ │ │ │ │ │ ├── double_tap4.mtn │ │ │ │ │ │ │ ├── idl_00.mtn │ │ │ │ │ │ │ ├── idl_01.mtn │ │ │ │ │ │ │ ├── idl_02.mtn │ │ │ │ │ │ │ ├── idl_03.mtn │ │ │ │ │ │ │ ├── idl_04.mtn │ │ │ │ │ │ │ ├── idl_05.mtn │ │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ │ ├── idle_02.mtn │ │ │ │ │ │ │ ├── idle_03.mtn │ │ │ │ │ │ │ ├── idle_04.mtn │ │ │ │ │ │ │ ├── idle_05.mtn │ │ │ │ │ │ │ ├── idle_06.mtn │ │ │ │ │ │ │ ├── idle_07.mtn │ │ │ │ │ │ │ ├── idle_08.mtn │ │ │ │ │ │ │ ├── idle_09.mtn │ │ │ │ │ │ │ ├── idle_A.mtn │ │ │ │ │ │ │ ├── idle_A2.mtn │ │ │ │ │ │ │ ├── idle_B.mtn │ │ │ │ │ │ │ ├── idle_B2.mtn │ │ │ │ │ │ │ ├── idle_C.mtn │ │ │ │ │ │ │ ├── idle_C2.mtn │ │ │ │ │ │ │ ├── idle_C2_copy.mtn │ │ │ │ │ │ │ ├── kurakura1.mtn │ │ │ │ │ │ │ ├── kurakura2.mtn │ │ │ │ │ │ │ ├── kurakura3.mtn │ │ │ │ │ │ │ ├── touch1.mtn │ │ │ │ │ │ │ ├── touch2.mtn │ │ │ │ │ │ │ ├── touch3.mtn │ │ │ │ │ │ │ ├── touch4.mtn │ │ │ │ │ │ │ ├── wait_01.mtn │ │ │ │ │ │ │ ├── wait_02.mtn │ │ │ │ │ │ │ ├── wait_03.mtn │ │ │ │ │ │ │ ├── wait_04.mtn │ │ │ │ │ │ │ └── wait_05.mtn │ │ │ │ │ │ ├── physics.json │ │ │ │ │ │ ├── pose.json │ │ │ │ │ │ └── textures.cache │ │ │ │ │ └── shizuku-pajama/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ └── f04.exp.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── double_tap1.mtn │ │ │ │ │ │ ├── double_tap2.mtn │ │ │ │ │ │ ├── double_tap3.mtn │ │ │ │ │ │ ├── double_tap4.mtn │ │ │ │ │ │ ├── idl_00.mtn │ │ │ │ │ │ ├── idl_01.mtn │ │ │ │ │ │ ├── idl_02.mtn │ │ │ │ │ │ ├── idl_03.mtn │ │ │ │ │ │ ├── idl_04.mtn │ │ │ │ │ │ ├── idl_05.mtn │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ ├── idle_02.mtn │ │ │ │ │ │ ├── idle_03.mtn │ │ │ │ │ │ ├── idle_04.mtn │ │ │ │ │ │ ├── idle_05.mtn │ │ │ │ │ │ ├── idle_06.mtn │ │ │ │ │ │ ├── idle_07.mtn │ │ │ │ │ │ ├── idle_08.mtn │ │ │ │ │ │ ├── idle_09.mtn │ │ │ │ │ │ ├── idle_A.mtn │ │ │ │ │ │ ├── idle_A2.mtn │ │ │ │ │ │ ├── idle_B.mtn │ │ │ │ │ │ ├── idle_B2.mtn │ │ │ │ │ │ ├── idle_C.mtn │ │ │ │ │ │ ├── idle_C2.mtn │ │ │ │ │ │ ├── idle_C2_copy.mtn │ │ │ │ │ │ ├── kurakura1.mtn │ │ │ │ │ │ ├── kurakura2.mtn │ │ │ │ │ │ ├── kurakura3.mtn │ │ │ │ │ │ ├── touch1.mtn │ │ │ │ │ │ ├── touch2.mtn │ │ │ │ │ │ ├── touch3.mtn │ │ │ │ │ │ ├── touch4.mtn │ │ │ │ │ │ ├── wait_01.mtn │ │ │ │ │ │ ├── wait_02.mtn │ │ │ │ │ │ ├── wait_03.mtn │ │ │ │ │ │ ├── wait_04.mtn │ │ │ │ │ │ └── wait_05.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ ├── pose.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── bilibili-live/ │ │ │ │ │ ├── 22/ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── model.moc │ │ │ │ │ │ ├── motions/ │ │ │ │ │ │ │ ├── idle-01.mtn │ │ │ │ │ │ │ ├── idle-02.mtn │ │ │ │ │ │ │ ├── idle-03.mtn │ │ │ │ │ │ │ ├── thanking.mtn │ │ │ │ │ │ │ └── touch.mtn │ │ │ │ │ │ ├── textures.cache │ │ │ │ │ │ └── textures_order.json │ │ │ │ │ └── 33/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── idle-01.mtn │ │ │ │ │ │ ├── idle-02.mtn │ │ │ │ │ │ ├── idle-03.mtn │ │ │ │ │ │ ├── thanking.mtn │ │ │ │ │ │ └── touch.mtn │ │ │ │ │ ├── textures.cache │ │ │ │ │ └── textures_order.json │ │ │ │ └── live2d-add/ │ │ │ │ ├── blacktom/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── hijiki.moc │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── 00_idle.mtn │ │ │ │ │ │ ├── 01.mtn │ │ │ │ │ │ ├── 02.mtn │ │ │ │ │ │ ├── 03.mtn │ │ │ │ │ │ ├── 04.mtn │ │ │ │ │ │ ├── 05.mtn │ │ │ │ │ │ ├── 06.mtn │ │ │ │ │ │ ├── 07.mtn │ │ │ │ │ │ └── 08.mtn │ │ │ │ │ ├── pose.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── epsilon/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ ├── f04.exp.json │ │ │ │ │ │ ├── f05.exp.json │ │ │ │ │ │ ├── f06.exp.json │ │ │ │ │ │ ├── f07.exp.json │ │ │ │ │ │ └── f08.exp.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── Epsilon2.1.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── Epsilon2.1_idle_01.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_01.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_02.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_03.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_04.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_05.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_06.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_07.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_08.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_sp_01.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_sp_02.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_sp_03.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_sp_04.mtn │ │ │ │ │ │ ├── Epsilon2.1_m_sp_05.mtn │ │ │ │ │ │ └── Epsilon2.1_shake_01.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── haru/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ ├── f04.exp.json │ │ │ │ │ │ ├── f05.exp.json │ │ │ │ │ │ ├── f06.exp.json │ │ │ │ │ │ ├── f07.exp.json │ │ │ │ │ │ └── f08.exp.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── haru02.moc │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── flickHead_00.mtn │ │ │ │ │ │ ├── idle_00.mtn │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ ├── idle_02.mtn │ │ │ │ │ │ ├── pinchIn_00.mtn │ │ │ │ │ │ ├── pinchOut_00.mtn │ │ │ │ │ │ ├── shake_00.mtn │ │ │ │ │ │ ├── tapBody_00.mtn │ │ │ │ │ │ ├── tapBody_01.mtn │ │ │ │ │ │ ├── tapBody_02.mtn │ │ │ │ │ │ ├── tapBody_03.mtn │ │ │ │ │ │ ├── tapBody_04.mtn │ │ │ │ │ │ ├── tapBody_05.mtn │ │ │ │ │ │ ├── tapBody_06.mtn │ │ │ │ │ │ ├── tapBody_07.mtn │ │ │ │ │ │ ├── tapBody_08.mtn │ │ │ │ │ │ └── tapBody_09.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ ├── pose.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── haru2/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── f01.exp.json │ │ │ │ │ │ ├── f02.exp.json │ │ │ │ │ │ ├── f03.exp.json │ │ │ │ │ │ ├── f04.exp.json │ │ │ │ │ │ ├── f05.exp.json │ │ │ │ │ │ ├── f06.exp.json │ │ │ │ │ │ ├── f07.exp.json │ │ │ │ │ │ └── f08.exp.json │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── haru01.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── flickHead_00.mtn │ │ │ │ │ │ ├── idle_00.mtn │ │ │ │ │ │ ├── idle_01.mtn │ │ │ │ │ │ ├── idle_02.mtn │ │ │ │ │ │ ├── pinchIn_00.mtn │ │ │ │ │ │ ├── pinchOut_00.mtn │ │ │ │ │ │ ├── shake_00.mtn │ │ │ │ │ │ ├── tapBody_00.mtn │ │ │ │ │ │ ├── tapBody_01.mtn │ │ │ │ │ │ ├── tapBody_02.mtn │ │ │ │ │ │ ├── tapBody_03.mtn │ │ │ │ │ │ ├── tapBody_04.mtn │ │ │ │ │ │ ├── tapBody_05.mtn │ │ │ │ │ │ ├── tapBody_06.mtn │ │ │ │ │ │ ├── tapBody_07.mtn │ │ │ │ │ │ ├── tapBody_08.mtn │ │ │ │ │ │ └── tapBody_09.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ └── pose.json │ │ │ │ ├── miku/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── miku.moc │ │ │ │ │ ├── model.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── miku_idle_01.mtn │ │ │ │ │ │ ├── miku_m_01.mtn │ │ │ │ │ │ ├── miku_m_02.mtn │ │ │ │ │ │ ├── miku_m_03.mtn │ │ │ │ │ │ ├── miku_m_04.mtn │ │ │ │ │ │ ├── miku_m_05.mtn │ │ │ │ │ │ ├── miku_m_06.mtn │ │ │ │ │ │ └── miku_shake_01.mtn │ │ │ │ │ ├── physics.json │ │ │ │ │ └── textures.cache │ │ │ │ ├── rem/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── Live2D_remu01.mtn │ │ │ │ │ │ ├── Live2D_remu02.mtn │ │ │ │ │ │ ├── Live2D_remu03.mtn │ │ │ │ │ │ ├── Live2D_remu04.mtn │ │ │ │ │ │ ├── Live2D_remu05.mtn │ │ │ │ │ │ ├── Live2D_remu06.mtn │ │ │ │ │ │ ├── Live2D_remu07.mtn │ │ │ │ │ │ ├── Live2D_remu08.mtn │ │ │ │ │ │ ├── Live2D_remu09.mtn │ │ │ │ │ │ ├── Live2D_remu10.mtn │ │ │ │ │ │ ├── Live2D_remu11.mtn │ │ │ │ │ │ ├── Live2D_remu12.mtn │ │ │ │ │ │ ├── Live2D_remu13.mtn │ │ │ │ │ │ ├── Live2D_remu14.mtn │ │ │ │ │ │ ├── Live2D_remu15.mtn │ │ │ │ │ │ ├── Live2D_remu16.mtn │ │ │ │ │ │ ├── Live2D_remu17.mtn │ │ │ │ │ │ ├── Live2D_remu18.mtn │ │ │ │ │ │ ├── Live2D_remu19.mtn │ │ │ │ │ │ ├── Live2D_remu20.mtn │ │ │ │ │ │ ├── Live2D_remu21.mtn │ │ │ │ │ │ ├── Live2D_remu22.mtn │ │ │ │ │ │ ├── Live2D_remu23.mtn │ │ │ │ │ │ ├── Live2D_remu24.mtn │ │ │ │ │ │ ├── Live2D_remu25.mtn │ │ │ │ │ │ ├── Live2D_remu26.mtn │ │ │ │ │ │ ├── Live2D_remu27.mtn │ │ │ │ │ │ ├── Live2D_remu28.mtn │ │ │ │ │ │ ├── Live2D_remu29.mtn │ │ │ │ │ │ ├── Live2D_remu30.mtn │ │ │ │ │ │ ├── Live2D_remu31.mtn │ │ │ │ │ │ ├── Live2D_remu32.mtn │ │ │ │ │ │ ├── Live2D_remu33.mtn │ │ │ │ │ │ ├── Live2D_remu34.mtn │ │ │ │ │ │ └── Live2D_remu_idle.mtn │ │ │ │ │ ├── remu.moc │ │ │ │ │ ├── remu.physics.json │ │ │ │ │ └── remu.pose.json │ │ │ │ ├── tom/ │ │ │ │ │ ├── index.json │ │ │ │ │ ├── moc/ │ │ │ │ │ │ └── tororo.moc │ │ │ │ │ ├── motions/ │ │ │ │ │ │ ├── 00_idle.mtn │ │ │ │ │ │ ├── 01.mtn │ │ │ │ │ │ ├── 02.mtn │ │ │ │ │ │ ├── 03.mtn │ │ │ │ │ │ ├── 04.mtn │ │ │ │ │ │ ├── 05.mtn │ │ │ │ │ │ ├── 06.mtn │ │ │ │ │ │ ├── 07.mtn │ │ │ │ │ │ └── 08.mtn │ │ │ │ │ └── tororo.pose.json │ │ │ │ └── xiaoban/ │ │ │ │ ├── index.json │ │ │ │ ├── model.moc │ │ │ │ ├── motions/ │ │ │ │ │ ├── Anone_Synced.mtn │ │ │ │ │ ├── Dance.mtn │ │ │ │ │ ├── Idle.mtn │ │ │ │ │ └── Nemui.mtn │ │ │ │ └── textures.cache │ │ │ ├── model_list.json │ │ │ ├── rand/ │ │ │ │ └── index.php │ │ │ ├── rand_textures/ │ │ │ │ └── index.php │ │ │ ├── switch/ │ │ │ │ └── index.php │ │ │ ├── switch_textures/ │ │ │ │ └── index.php │ │ │ └── tools/ │ │ │ ├── modelList.php │ │ │ ├── modelTextures.php │ │ │ └── name-to-lower.php │ │ ├── pjax/ │ │ │ └── jquery.pjax.js │ │ ├── toc-helper/ │ │ │ ├── css/ │ │ │ │ └── toc-helper.css │ │ │ └── js/ │ │ │ └── toc-helper.js │ │ └── tool/ │ │ └── toc-helper-master/ │ │ ├── .babelrc.js │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css/ │ │ │ └── toc-helper.css │ │ ├── gulpfile.js │ │ ├── js/ │ │ │ └── toc-helper.js │ │ ├── lib/ │ │ │ ├── prism.css │ │ │ └── prism.js │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── toc-helper.html │ └── vendor/ │ ├── aetherupload/ │ │ └── js/ │ │ └── aetherupload.js │ ├── laravel-admin/ │ │ ├── AdminLTE/ │ │ │ └── plugins/ │ │ │ ├── bootstrap-slider/ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ └── slider.css │ │ │ ├── iCheck/ │ │ │ │ ├── all.css │ │ │ │ ├── flat/ │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── flat.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── futurico/ │ │ │ │ │ └── futurico.css │ │ │ │ ├── line/ │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── line.css │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── minimal/ │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── minimal.css │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── polaris/ │ │ │ │ │ └── polaris.css │ │ │ │ └── square/ │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ ├── square.css │ │ │ │ └── yellow.css │ │ │ ├── input-mask/ │ │ │ │ └── phone-codes/ │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ │ ├── ionslider/ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ └── select2/ │ │ │ ├── i18n/ │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── 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 │ │ │ ├── old_i18n/ │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.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 │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ └── select2.full.js │ │ ├── bootstrap-fileinput/ │ │ │ └── js/ │ │ │ └── plugins/ │ │ │ ├── canvas-to-blob.js │ │ │ ├── piexif.js │ │ │ ├── purify.js │ │ │ └── sortable.js │ │ ├── bootstrap3-editable/ │ │ │ └── css/ │ │ │ └── bootstrap-editable.css │ │ ├── font-awesome/ │ │ │ └── fonts/ │ │ │ └── FontAwesome.otf │ │ ├── google-fonts/ │ │ │ └── fonts.css │ │ ├── jquery-pjax/ │ │ │ └── jquery.pjax.js │ │ ├── laravel-admin/ │ │ │ ├── laravel-admin.css │ │ │ └── laravel-admin.js │ │ ├── nestable/ │ │ │ ├── jquery.nestable.js │ │ │ └── nestable.css │ │ ├── nprogress/ │ │ │ ├── nprogress.css │ │ │ └── nprogress.js │ │ ├── number-input/ │ │ │ └── bootstrap-number-input.js │ │ └── sweetalert2/ │ │ └── dist/ │ │ └── sweetalert2.css │ ├── laravel-admin-ext/ │ │ ├── editormd/ │ │ │ └── editormd-1.5.0/ │ │ │ ├── css/ │ │ │ │ ├── editormd.css │ │ │ │ ├── editormd.logo.css │ │ │ │ └── editormd.preview.css │ │ │ ├── fonts/ │ │ │ │ └── FontAwesome.otf │ │ │ ├── js/ │ │ │ │ └── editormd.js │ │ │ ├── languages/ │ │ │ │ ├── en.js │ │ │ │ └── zh-tw.js │ │ │ ├── lib/ │ │ │ │ └── codemirror/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon/ │ │ │ │ │ ├── comment/ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog/ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display/ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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/ │ │ │ │ │ │ ├── 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 │ │ │ │ ├── bower.json │ │ │ │ ├── lib/ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode/ │ │ │ │ │ ├── apl/ │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk/ │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike/ │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure/ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol/ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript/ │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp/ │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher/ │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── d/ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dart/ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff/ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django/ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile/ │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd/ │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan/ │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ebnf/ │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl/ │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel/ │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang/ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth/ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran/ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas/ │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm/ │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin/ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go/ │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy/ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml/ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell/ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe/ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded/ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed/ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http/ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl/ │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── q/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm/ │ │ │ │ │ │ ├── changes/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── tcl/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ │ ├── package.json │ │ │ │ └── theme/ │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ └── zenburn.css │ │ │ ├── plugins/ │ │ │ │ ├── code-block-dialog/ │ │ │ │ │ └── code-block-dialog.js │ │ │ │ ├── emoji-dialog/ │ │ │ │ │ ├── emoji-dialog.js │ │ │ │ │ └── emoji.json │ │ │ │ ├── goto-line-dialog/ │ │ │ │ │ └── goto-line-dialog.js │ │ │ │ ├── help-dialog/ │ │ │ │ │ ├── help-dialog.js │ │ │ │ │ └── help.md │ │ │ │ ├── html-entities-dialog/ │ │ │ │ │ ├── html-entities-dialog.js │ │ │ │ │ └── html-entities.json │ │ │ │ ├── image-dialog/ │ │ │ │ │ └── image-dialog.js │ │ │ │ ├── link-dialog/ │ │ │ │ │ └── link-dialog.js │ │ │ │ ├── plugin-template.js │ │ │ │ ├── preformatted-text-dialog/ │ │ │ │ │ └── preformatted-text-dialog.js │ │ │ │ ├── reference-link-dialog/ │ │ │ │ │ └── reference-link-dialog.js │ │ │ │ ├── table-dialog/ │ │ │ │ │ └── table-dialog.js │ │ │ │ └── test-plugin/ │ │ │ │ └── test-plugin.js │ │ │ └── scss/ │ │ │ ├── editormd.codemirror.scss │ │ │ ├── editormd.dialog.scss │ │ │ ├── editormd.form.scss │ │ │ ├── editormd.grid.scss │ │ │ ├── editormd.logo.scss │ │ │ ├── editormd.menu.scss │ │ │ ├── editormd.preview.scss │ │ │ ├── editormd.preview.themes.scss │ │ │ ├── editormd.scss │ │ │ ├── editormd.tab.scss │ │ │ ├── editormd.themes.scss │ │ │ ├── font-awesome.scss │ │ │ ├── github-markdown.scss │ │ │ ├── lib/ │ │ │ │ ├── prefixes.scss │ │ │ │ └── variables.scss │ │ │ └── prettify.scss │ │ ├── large-file-upload/ │ │ │ └── js/ │ │ │ ├── aetherupload.admin.js │ │ │ └── bootstrap.file-input.js │ │ ├── material-ui/ │ │ │ └── MaterialAdminLTE/ │ │ │ └── dist/ │ │ │ └── css/ │ │ │ └── custom.css │ │ ├── row-table/ │ │ │ └── table.css │ │ └── simditor/ │ │ └── simditor-2.3.25/ │ │ ├── scripts/ │ │ │ ├── dompurify.js │ │ │ ├── hotkeys.js │ │ │ ├── module.js │ │ │ ├── simditor.js │ │ │ └── uploader.js │ │ └── styles/ │ │ └── simditor.css │ └── wenxuanjun/ │ └── laravel-adminlte3/ │ ├── dist/ │ │ ├── css/ │ │ │ ├── adminlte.css │ │ │ └── app.css │ │ └── js/ │ │ ├── adminlte.js │ │ ├── app.js │ │ ├── demo.js │ │ └── pages/ │ │ ├── dashboard.js │ │ ├── dashboard2.js │ │ └── dashboard3.js │ └── plugins/ │ ├── bootstrap/ │ │ ├── css/ │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap.css │ │ └── js/ │ │ ├── bootstrap.bundle.js │ │ └── bootstrap.js │ ├── fastclick/ │ │ └── fastclick.js │ ├── font-awesome/ │ │ ├── css/ │ │ │ └── font-awesome.css │ │ └── fonts/ │ │ └── FontAwesome.otf │ ├── glyphicons/ │ │ └── css/ │ │ └── glyphicons.css │ ├── jquery/ │ │ ├── core.js │ │ ├── jquery.js │ │ └── jquery.slim.js │ └── slimScroll/ │ └── jquery.slimscroll.js ├── resources/ │ ├── js/ │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components/ │ │ └── ExampleComponent.vue │ ├── lang/ │ │ ├── ar/ │ │ │ └── admin.php │ │ ├── az/ │ │ │ └── admin.php │ │ ├── en/ │ │ │ ├── admin.php │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── es/ │ │ │ └── admin.php │ │ ├── fa/ │ │ │ └── admin.php │ │ ├── fr/ │ │ │ └── admin.php │ │ ├── he/ │ │ │ └── admin.php │ │ ├── id/ │ │ │ └── admin.php │ │ ├── ja/ │ │ │ └── admin.php │ │ ├── ko/ │ │ │ └── admin.php │ │ ├── ms/ │ │ │ └── admin.php │ │ ├── nl/ │ │ │ └── admin.php │ │ ├── pl/ │ │ │ └── admin.php │ │ ├── pt/ │ │ │ └── admin.php │ │ ├── pt-BR/ │ │ │ └── admin.php │ │ ├── ru/ │ │ │ └── admin.php │ │ ├── tr/ │ │ │ └── admin.php │ │ ├── uk/ │ │ │ └── admin.php │ │ ├── vendor/ │ │ │ └── aetherupload/ │ │ │ ├── en/ │ │ │ │ └── messages.php │ │ │ └── zh/ │ │ │ └── messages.php │ │ ├── zh-CN/ │ │ │ ├── admin.php │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ └── zh-TW/ │ │ └── admin.php │ ├── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── home/ │ │ ├── about/ │ │ │ └── index.blade.php │ │ ├── article/ │ │ │ └── index.blade.php │ │ ├── article_details/ │ │ │ └── index.blade.php │ │ ├── card1/ │ │ │ └── index.blade.php │ │ ├── card2/ │ │ │ └── index.blade.php │ │ ├── friends/ │ │ │ └── index.blade.php │ │ ├── index/ │ │ │ └── index.blade.php │ │ ├── main.blade.php │ │ ├── message/ │ │ │ └── index.blade.php │ │ ├── music/ │ │ │ ├── index.blade.php │ │ │ └── music_details.blade.php │ │ ├── photo/ │ │ │ ├── index.blade.php │ │ │ └── photo_details.blade.php │ │ └── video/ │ │ ├── index.blade.php │ │ └── video_details.blade.php │ ├── mail/ │ │ └── index.blade.php │ ├── vendor/ │ │ └── pagination/ │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── sql/ │ └── qqphp.sql ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php ├── vendor/ │ ├── autoload.php │ ├── beyondcode/ │ │ └── laravel-dump-server/ │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── config/ │ │ │ └── config.php │ │ ├── helpers.php │ │ └── src/ │ │ ├── DumpServerCommand.php │ │ ├── DumpServerServiceProvider.php │ │ ├── Dumper.php │ │ └── RequestContextProvider.php │ ├── composer/ │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── doctrine/ │ │ ├── cache/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── composer.json │ │ │ ├── docs/ │ │ │ │ └── en/ │ │ │ │ └── index.rst │ │ │ └── lib/ │ │ │ └── Doctrine/ │ │ │ └── Common/ │ │ │ └── Cache/ │ │ │ ├── ApcCache.php │ │ │ ├── ApcuCache.php │ │ │ ├── ArrayCache.php │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ChainCache.php │ │ │ ├── ClearableCache.php │ │ │ ├── CouchbaseBucketCache.php │ │ │ ├── CouchbaseCache.php │ │ │ ├── ExtMongoDBCache.php │ │ │ ├── FileCache.php │ │ │ ├── FilesystemCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── LegacyMongoDBCache.php │ │ │ ├── MemcacheCache.php │ │ │ ├── MemcachedCache.php │ │ │ ├── MongoDBCache.php │ │ │ ├── MultiDeleteCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiOperationCache.php │ │ │ ├── MultiPutCache.php │ │ │ ├── PhpFileCache.php │ │ │ ├── PredisCache.php │ │ │ ├── RedisCache.php │ │ │ ├── RiakCache.php │ │ │ ├── SQLite3Cache.php │ │ │ ├── Version.php │ │ │ ├── VoidCache.php │ │ │ ├── WinCacheCache.php │ │ │ ├── XcacheCache.php │ │ │ └── ZendDataCache.php │ │ ├── dbal/ │ │ │ ├── .doctrine-project.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── UPGRADE.md │ │ │ ├── bin/ │ │ │ │ ├── doctrine-dbal │ │ │ │ └── doctrine-dbal.php │ │ │ ├── composer.json │ │ │ └── lib/ │ │ │ └── Doctrine/ │ │ │ └── DBAL/ │ │ │ ├── Cache/ │ │ │ │ ├── ArrayStatement.php │ │ │ │ ├── CacheException.php │ │ │ │ ├── QueryCacheProfile.php │ │ │ │ └── ResultCacheStatement.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections/ │ │ │ │ └── MasterSlaveConnection.php │ │ │ ├── DBALException.php │ │ │ ├── Driver/ │ │ │ │ ├── AbstractDB2Driver.php │ │ │ │ ├── AbstractDriverException.php │ │ │ │ ├── AbstractMySQLDriver.php │ │ │ │ ├── AbstractOracleDriver/ │ │ │ │ │ └── EasyConnectString.php │ │ │ │ ├── AbstractOracleDriver.php │ │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ │ ├── AbstractSQLAnywhereDriver.php │ │ │ │ ├── AbstractSQLServerDriver.php │ │ │ │ ├── AbstractSQLiteDriver.php │ │ │ │ ├── Connection.php │ │ │ │ ├── DriverException.php │ │ │ │ ├── DrizzlePDOMySql/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ └── Driver.php │ │ │ │ ├── ExceptionConverterDriver.php │ │ │ │ ├── IBMDB2/ │ │ │ │ │ ├── DB2Connection.php │ │ │ │ │ ├── DB2Driver.php │ │ │ │ │ ├── DB2Exception.php │ │ │ │ │ └── DB2Statement.php │ │ │ │ ├── Mysqli/ │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── MysqliConnection.php │ │ │ │ │ ├── MysqliException.php │ │ │ │ │ └── MysqliStatement.php │ │ │ │ ├── OCI8/ │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── OCI8Connection.php │ │ │ │ │ ├── OCI8Exception.php │ │ │ │ │ └── OCI8Statement.php │ │ │ │ ├── PDOConnection.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── PDOIbm/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOMySql/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOOracle/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOPgSql/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOSqlite/ │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOSqlsrv/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── PDOStatement.php │ │ │ │ ├── PingableConnection.php │ │ │ │ ├── ResultStatement.php │ │ │ │ ├── SQLAnywhere/ │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── SQLAnywhereConnection.php │ │ │ │ │ ├── SQLAnywhereException.php │ │ │ │ │ └── SQLAnywhereStatement.php │ │ │ │ ├── SQLSrv/ │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── LastInsertId.php │ │ │ │ │ ├── SQLSrvConnection.php │ │ │ │ │ ├── SQLSrvException.php │ │ │ │ │ └── SQLSrvStatement.php │ │ │ │ ├── ServerInfoAwareConnection.php │ │ │ │ ├── Statement.php │ │ │ │ └── StatementIterator.php │ │ │ ├── Driver.php │ │ │ ├── DriverManager.php │ │ │ ├── Event/ │ │ │ │ ├── ConnectionEventArgs.php │ │ │ │ ├── Listeners/ │ │ │ │ │ ├── MysqlSessionInit.php │ │ │ │ │ ├── OracleSessionInit.php │ │ │ │ │ └── SQLSessionInit.php │ │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ │ ├── SchemaEventArgs.php │ │ │ │ └── SchemaIndexDefinitionEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception/ │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── ConstraintViolationException.php │ │ │ │ ├── DatabaseObjectExistsException.php │ │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ │ ├── DeadlockException.php │ │ │ │ ├── DriverException.php │ │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidFieldNameException.php │ │ │ │ ├── LockWaitTimeoutException.php │ │ │ │ ├── NonUniqueFieldNameException.php │ │ │ │ ├── NotNullConstraintViolationException.php │ │ │ │ ├── ReadOnlyException.php │ │ │ │ ├── RetryableException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── SyntaxErrorException.php │ │ │ │ ├── TableExistsException.php │ │ │ │ ├── TableNotFoundException.php │ │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── FetchMode.php │ │ │ ├── Id/ │ │ │ │ ├── TableGenerator.php │ │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging/ │ │ │ │ ├── DebugStack.php │ │ │ │ ├── EchoSQLLogger.php │ │ │ │ ├── LoggerChain.php │ │ │ │ └── SQLLogger.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms/ │ │ │ │ ├── AbstractPlatform.php │ │ │ │ ├── DB2Platform.php │ │ │ │ ├── DateIntervalUnit.php │ │ │ │ ├── DrizzlePlatform.php │ │ │ │ ├── Keywords/ │ │ │ │ │ ├── DB2Keywords.php │ │ │ │ │ ├── DrizzleKeywords.php │ │ │ │ │ ├── KeywordList.php │ │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ │ ├── MsSQLKeywords.php │ │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ │ ├── MySQLKeywords.php │ │ │ │ │ ├── OracleKeywords.php │ │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ │ ├── PostgreSQL91Keywords.php │ │ │ │ │ ├── PostgreSQL92Keywords.php │ │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ │ ├── SQLAnywhere11Keywords.php │ │ │ │ │ ├── SQLAnywhere12Keywords.php │ │ │ │ │ ├── SQLAnywhere16Keywords.php │ │ │ │ │ ├── SQLAnywhereKeywords.php │ │ │ │ │ ├── SQLServer2005Keywords.php │ │ │ │ │ ├── SQLServer2008Keywords.php │ │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ │ └── SQLiteKeywords.php │ │ │ │ ├── MariaDb1027Platform.php │ │ │ │ ├── MySQL57Platform.php │ │ │ │ ├── MySQL80Platform.php │ │ │ │ ├── MySqlPlatform.php │ │ │ │ ├── OraclePlatform.php │ │ │ │ ├── PostgreSQL100Platform.php │ │ │ │ ├── PostgreSQL91Platform.php │ │ │ │ ├── PostgreSQL92Platform.php │ │ │ │ ├── PostgreSQL94Platform.php │ │ │ │ ├── PostgreSqlPlatform.php │ │ │ │ ├── SQLAnywhere11Platform.php │ │ │ │ ├── SQLAnywhere12Platform.php │ │ │ │ ├── SQLAnywhere16Platform.php │ │ │ │ ├── SQLAnywherePlatform.php │ │ │ │ ├── SQLAzurePlatform.php │ │ │ │ ├── SQLServer2005Platform.php │ │ │ │ ├── SQLServer2008Platform.php │ │ │ │ ├── SQLServer2012Platform.php │ │ │ │ ├── SQLServerPlatform.php │ │ │ │ ├── SqlitePlatform.php │ │ │ │ └── TrimMode.php │ │ │ ├── Portability/ │ │ │ │ ├── Connection.php │ │ │ │ └── Statement.php │ │ │ ├── Query/ │ │ │ │ ├── Expression/ │ │ │ │ │ ├── CompositeExpression.php │ │ │ │ │ └── ExpressionBuilder.php │ │ │ │ ├── QueryBuilder.php │ │ │ │ └── QueryException.php │ │ │ ├── SQLParserUtils.php │ │ │ ├── SQLParserUtilsException.php │ │ │ ├── Schema/ │ │ │ │ ├── AbstractAsset.php │ │ │ │ ├── AbstractSchemaManager.php │ │ │ │ ├── Column.php │ │ │ │ ├── ColumnDiff.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── DB2SchemaManager.php │ │ │ │ ├── DrizzleSchemaManager.php │ │ │ │ ├── ForeignKeyConstraint.php │ │ │ │ ├── Identifier.php │ │ │ │ ├── Index.php │ │ │ │ ├── MySqlSchemaManager.php │ │ │ │ ├── OracleSchemaManager.php │ │ │ │ ├── PostgreSqlSchemaManager.php │ │ │ │ ├── SQLAnywhereSchemaManager.php │ │ │ │ ├── SQLServerSchemaManager.php │ │ │ │ ├── Schema.php │ │ │ │ ├── SchemaConfig.php │ │ │ │ ├── SchemaDiff.php │ │ │ │ ├── SchemaException.php │ │ │ │ ├── Sequence.php │ │ │ │ ├── SqliteSchemaManager.php │ │ │ │ ├── Synchronizer/ │ │ │ │ │ ├── AbstractSchemaSynchronizer.php │ │ │ │ │ ├── SchemaSynchronizer.php │ │ │ │ │ └── SingleDatabaseSynchronizer.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableDiff.php │ │ │ │ ├── View.php │ │ │ │ └── Visitor/ │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ ├── SchemaDiffVisitor.php │ │ │ │ └── Visitor.php │ │ │ ├── Sharding/ │ │ │ │ ├── PoolingShardConnection.php │ │ │ │ ├── PoolingShardManager.php │ │ │ │ ├── SQLAzure/ │ │ │ │ │ ├── SQLAzureFederationsSynchronizer.php │ │ │ │ │ ├── SQLAzureShardManager.php │ │ │ │ │ └── Schema/ │ │ │ │ │ └── MultiTenantVisitor.php │ │ │ │ ├── ShardChoser/ │ │ │ │ │ ├── MultiTenantShardChoser.php │ │ │ │ │ └── ShardChoser.php │ │ │ │ ├── ShardManager.php │ │ │ │ └── ShardingException.php │ │ │ ├── Statement.php │ │ │ ├── Tools/ │ │ │ │ ├── Console/ │ │ │ │ │ ├── Command/ │ │ │ │ │ │ ├── ImportCommand.php │ │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ │ ├── ConsoleRunner.php │ │ │ │ │ └── Helper/ │ │ │ │ │ └── ConnectionHelper.php │ │ │ │ └── Dumper.php │ │ │ ├── TransactionIsolationLevel.php │ │ │ ├── Types/ │ │ │ │ ├── ArrayType.php │ │ │ │ ├── BigIntType.php │ │ │ │ ├── BinaryType.php │ │ │ │ ├── BlobType.php │ │ │ │ ├── BooleanType.php │ │ │ │ ├── ConversionException.php │ │ │ │ ├── DateImmutableType.php │ │ │ │ ├── DateIntervalType.php │ │ │ │ ├── DateTimeImmutableType.php │ │ │ │ ├── DateTimeType.php │ │ │ │ ├── DateTimeTzImmutableType.php │ │ │ │ ├── DateTimeTzType.php │ │ │ │ ├── DateType.php │ │ │ │ ├── DecimalType.php │ │ │ │ ├── FloatType.php │ │ │ │ ├── GuidType.php │ │ │ │ ├── IntegerType.php │ │ │ │ ├── JsonArrayType.php │ │ │ │ ├── JsonType.php │ │ │ │ ├── ObjectType.php │ │ │ │ ├── PhpDateTimeMappingType.php │ │ │ │ ├── PhpIntegerMappingType.php │ │ │ │ ├── SimpleArrayType.php │ │ │ │ ├── SmallIntType.php │ │ │ │ ├── StringType.php │ │ │ │ ├── TextType.php │ │ │ │ ├── TimeImmutableType.php │ │ │ │ ├── TimeType.php │ │ │ │ ├── Type.php │ │ │ │ ├── VarDateTimeImmutableType.php │ │ │ │ └── VarDateTimeType.php │ │ │ ├── Version.php │ │ │ └── VersionAwarePlatformDriver.php │ │ ├── event-manager/ │ │ │ ├── .scrutinizer.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs/ │ │ │ │ └── en/ │ │ │ │ ├── index.rst │ │ │ │ ├── reference/ │ │ │ │ │ └── index.rst │ │ │ │ └── sidebar.rst │ │ │ └── lib/ │ │ │ └── Doctrine/ │ │ │ └── Common/ │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ │ ├── inflector/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── lib/ │ │ │ └── Doctrine/ │ │ │ └── Common/ │ │ │ └── Inflector/ │ │ │ └── Inflector.php │ │ └── instantiator/ │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs/ │ │ │ └── en/ │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src/ │ │ └── Doctrine/ │ │ └── Instantiator/ │ │ ├── Exception/ │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php │ ├── dragonmantank/ │ │ └── cron-expression/ │ │ ├── .editorconfig │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── src/ │ │ │ └── Cron/ │ │ │ ├── AbstractField.php │ │ │ ├── CronExpression.php │ │ │ ├── DayOfMonthField.php │ │ │ ├── DayOfWeekField.php │ │ │ ├── FieldFactory.php │ │ │ ├── FieldInterface.php │ │ │ ├── HoursField.php │ │ │ ├── MinutesField.php │ │ │ └── MonthField.php │ │ └── tests/ │ │ └── Cron/ │ │ ├── AbstractFieldTest.php │ │ ├── CronExpressionTest.php │ │ ├── DayOfMonthFieldTest.php │ │ ├── DayOfWeekFieldTest.php │ │ ├── FieldFactoryTest.php │ │ ├── HoursFieldTest.php │ │ ├── MinutesFieldTest.php │ │ └── MonthFieldTest.php │ ├── egulias/ │ │ └── email-validator/ │ │ ├── EmailValidator/ │ │ │ ├── EmailLexer.php │ │ │ ├── EmailParser.php │ │ │ ├── EmailValidator.php │ │ │ ├── Exception/ │ │ │ │ ├── AtextAfterCFWS.php │ │ │ │ ├── CRLFAtTheEnd.php │ │ │ │ ├── CRLFX2.php │ │ │ │ ├── CRNoLF.php │ │ │ │ ├── CharNotAllowed.php │ │ │ │ ├── CommaInDomain.php │ │ │ │ ├── ConsecutiveAt.php │ │ │ │ ├── ConsecutiveDot.php │ │ │ │ ├── DomainHyphened.php │ │ │ │ ├── DotAtEnd.php │ │ │ │ ├── DotAtStart.php │ │ │ │ ├── ExpectingAT.php │ │ │ │ ├── ExpectingATEXT.php │ │ │ │ ├── ExpectingCTEXT.php │ │ │ │ ├── ExpectingDTEXT.php │ │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ │ ├── ExpectingQPair.php │ │ │ │ ├── InvalidEmail.php │ │ │ │ ├── NoDNSRecord.php │ │ │ │ ├── NoDomainPart.php │ │ │ │ ├── NoLocalPart.php │ │ │ │ ├── UnclosedComment.php │ │ │ │ ├── UnclosedQuotedString.php │ │ │ │ └── UnopenedComment.php │ │ │ ├── Parser/ │ │ │ │ ├── DomainPart.php │ │ │ │ ├── LocalPart.php │ │ │ │ └── Parser.php │ │ │ ├── Validation/ │ │ │ │ ├── DNSCheckValidation.php │ │ │ │ ├── EmailValidation.php │ │ │ │ ├── Error/ │ │ │ │ │ ├── RFCWarnings.php │ │ │ │ │ └── SpoofEmail.php │ │ │ │ ├── Exception/ │ │ │ │ │ └── EmptyValidationList.php │ │ │ │ ├── MultipleErrors.php │ │ │ │ ├── MultipleValidationWithAnd.php │ │ │ │ ├── NoRFCWarningsValidation.php │ │ │ │ ├── RFCValidation.php │ │ │ │ └── SpoofCheckValidation.php │ │ │ └── Warning/ │ │ │ ├── AddressLiteral.php │ │ │ ├── CFWSNearAt.php │ │ │ ├── CFWSWithFWS.php │ │ │ ├── Comment.php │ │ │ ├── DeprecatedComment.php │ │ │ ├── DomainLiteral.php │ │ │ ├── DomainTooLong.php │ │ │ ├── EmailTooLong.php │ │ │ ├── IPV6BadChar.php │ │ │ ├── IPV6ColonEnd.php │ │ │ ├── IPV6ColonStart.php │ │ │ ├── IPV6Deprecated.php │ │ │ ├── IPV6DoubleColon.php │ │ │ ├── IPV6GroupCount.php │ │ │ ├── IPV6MaxGroups.php │ │ │ ├── LabelTooLong.php │ │ │ ├── LocalTooLong.php │ │ │ ├── NoDNSMXRecord.php │ │ │ ├── ObsoleteDTEXT.php │ │ │ ├── QuotedPart.php │ │ │ ├── QuotedString.php │ │ │ ├── TLD.php │ │ │ └── Warning.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── erusev/ │ │ └── parsedown/ │ │ ├── LICENSE.txt │ │ ├── Parsedown.php │ │ ├── README.md │ │ └── composer.json │ ├── fideloper/ │ │ └── proxy/ │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── config/ │ │ │ └── trustedproxy.php │ │ └── src/ │ │ ├── TrustProxies.php │ │ └── TrustedProxyServiceProvider.php │ ├── filp/ │ │ └── whoops/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src/ │ │ └── Whoops/ │ │ ├── Exception/ │ │ │ ├── ErrorException.php │ │ │ ├── Formatter.php │ │ │ ├── Frame.php │ │ │ ├── FrameCollection.php │ │ │ └── Inspector.php │ │ ├── Handler/ │ │ │ ├── CallbackHandler.php │ │ │ ├── Handler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── JsonResponseHandler.php │ │ │ ├── PlainTextHandler.php │ │ │ ├── PrettyPageHandler.php │ │ │ └── XmlResponseHandler.php │ │ ├── Resources/ │ │ │ ├── css/ │ │ │ │ └── whoops.base.css │ │ │ ├── js/ │ │ │ │ └── whoops.base.js │ │ │ └── views/ │ │ │ ├── env_details.html.php │ │ │ ├── frame_code.html.php │ │ │ ├── frame_list.html.php │ │ │ ├── frames_container.html.php │ │ │ ├── frames_description.html.php │ │ │ ├── header.html.php │ │ │ ├── header_outer.html.php │ │ │ ├── layout.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ └── panel_left_outer.html.php │ │ ├── Run.php │ │ ├── RunInterface.php │ │ └── Util/ │ │ ├── HtmlDumperOutput.php │ │ ├── Misc.php │ │ ├── SystemFacade.php │ │ └── TemplateHelper.php │ ├── laravel/ │ │ ├── framework/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ └── Illuminate/ │ │ │ ├── Auth/ │ │ │ │ ├── Access/ │ │ │ │ │ ├── AuthorizationException.php │ │ │ │ │ ├── Gate.php │ │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ │ └── Response.php │ │ │ │ ├── AuthManager.php │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── AuthenticationException.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── AuthMakeCommand.php │ │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── make/ │ │ │ │ │ ├── controllers/ │ │ │ │ │ │ └── HomeController.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ └── views/ │ │ │ │ │ ├── auth/ │ │ │ │ │ │ ├── login.stub │ │ │ │ │ │ ├── passwords/ │ │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ │ └── reset.stub │ │ │ │ │ │ ├── register.stub │ │ │ │ │ │ └── verify.stub │ │ │ │ │ ├── home.stub │ │ │ │ │ └── layouts/ │ │ │ │ │ └── app.stub │ │ │ │ ├── CreatesUserProviders.php │ │ │ │ ├── DatabaseUserProvider.php │ │ │ │ ├── EloquentUserProvider.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── Attempting.php │ │ │ │ │ ├── Authenticated.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── Lockout.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── Logout.php │ │ │ │ │ ├── OtherDeviceLogout.php │ │ │ │ │ ├── PasswordReset.php │ │ │ │ │ ├── Registered.php │ │ │ │ │ └── Verified.php │ │ │ │ ├── GenericUser.php │ │ │ │ ├── GuardHelpers.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Listeners/ │ │ │ │ │ └── SendEmailVerificationNotification.php │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ │ ├── Authorize.php │ │ │ │ │ └── EnsureEmailIsVerified.php │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ ├── Notifications/ │ │ │ │ │ ├── ResetPassword.php │ │ │ │ │ └── VerifyEmail.php │ │ │ │ ├── Passwords/ │ │ │ │ │ ├── CanResetPassword.php │ │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ │ ├── PasswordBroker.php │ │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ │ └── TokenRepositoryInterface.php │ │ │ │ ├── Recaller.php │ │ │ │ ├── RequestGuard.php │ │ │ │ ├── SessionGuard.php │ │ │ │ ├── TokenGuard.php │ │ │ │ └── composer.json │ │ │ ├── Broadcasting/ │ │ │ │ ├── BroadcastController.php │ │ │ │ ├── BroadcastEvent.php │ │ │ │ ├── BroadcastException.php │ │ │ │ ├── BroadcastManager.php │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── Broadcasters/ │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── LogBroadcaster.php │ │ │ │ │ ├── NullBroadcaster.php │ │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ │ ├── RedisBroadcaster.php │ │ │ │ │ └── UsePusherChannelConventions.php │ │ │ │ ├── Channel.php │ │ │ │ ├── InteractsWithSockets.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── PendingBroadcast.php │ │ │ │ ├── PresenceChannel.php │ │ │ │ ├── PrivateChannel.php │ │ │ │ └── composer.json │ │ │ ├── Bus/ │ │ │ │ ├── BusServiceProvider.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Queueable.php │ │ │ │ └── composer.json │ │ │ ├── Cache/ │ │ │ │ ├── ApcStore.php │ │ │ │ ├── ApcWrapper.php │ │ │ │ ├── ArrayStore.php │ │ │ │ ├── CacheManager.php │ │ │ │ ├── CacheServiceProvider.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── CacheTableCommand.php │ │ │ │ │ ├── ClearCommand.php │ │ │ │ │ ├── ForgetCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── cache.stub │ │ │ │ ├── DatabaseStore.php │ │ │ │ ├── DynamoDbLock.php │ │ │ │ ├── DynamoDbStore.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── CacheEvent.php │ │ │ │ │ ├── CacheHit.php │ │ │ │ │ ├── CacheMissed.php │ │ │ │ │ ├── KeyForgotten.php │ │ │ │ │ └── KeyWritten.php │ │ │ │ ├── FileStore.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Lock.php │ │ │ │ ├── LuaScripts.php │ │ │ │ ├── MemcachedConnector.php │ │ │ │ ├── MemcachedLock.php │ │ │ │ ├── MemcachedStore.php │ │ │ │ ├── NullStore.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── RedisLock.php │ │ │ │ ├── RedisStore.php │ │ │ │ ├── RedisTaggedCache.php │ │ │ │ ├── Repository.php │ │ │ │ ├── RetrievesMultipleKeys.php │ │ │ │ ├── TagSet.php │ │ │ │ ├── TaggableStore.php │ │ │ │ ├── TaggedCache.php │ │ │ │ └── composer.json │ │ │ ├── Config/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Repository.php │ │ │ │ └── composer.json │ │ │ ├── Console/ │ │ │ │ ├── Application.php │ │ │ │ ├── Command.php │ │ │ │ ├── ConfirmableTrait.php │ │ │ │ ├── DetectsApplicationNamespace.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── ArtisanStarting.php │ │ │ │ │ ├── CommandFinished.php │ │ │ │ │ └── CommandStarting.php │ │ │ │ ├── GeneratorCommand.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Scheduling/ │ │ │ │ │ ├── CacheEventMutex.php │ │ │ │ │ ├── CacheSchedulingMutex.php │ │ │ │ │ ├── CallbackEvent.php │ │ │ │ │ ├── CommandBuilder.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventMutex.php │ │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ │ ├── Schedule.php │ │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ │ ├── ScheduleRunCommand.php │ │ │ │ │ └── SchedulingMutex.php │ │ │ │ └── composer.json │ │ │ ├── Container/ │ │ │ │ ├── BoundMethod.php │ │ │ │ ├── Container.php │ │ │ │ ├── ContextualBindingBuilder.php │ │ │ │ ├── EntryNotFoundException.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── RewindableGenerator.php │ │ │ │ └── composer.json │ │ │ ├── Contracts/ │ │ │ │ ├── Auth/ │ │ │ │ │ ├── Access/ │ │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ │ └── Gate.php │ │ │ │ │ ├── Authenticatable.php │ │ │ │ │ ├── CanResetPassword.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Guard.php │ │ │ │ │ ├── MustVerifyEmail.php │ │ │ │ │ ├── PasswordBroker.php │ │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ │ ├── StatefulGuard.php │ │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ │ └── UserProvider.php │ │ │ │ ├── Broadcasting/ │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ │ └── ShouldBroadcastNow.php │ │ │ │ ├── Bus/ │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── QueueingDispatcher.php │ │ │ │ ├── Cache/ │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Lock.php │ │ │ │ │ ├── LockProvider.php │ │ │ │ │ ├── LockTimeoutException.php │ │ │ │ │ ├── Repository.php │ │ │ │ │ └── Store.php │ │ │ │ ├── Config/ │ │ │ │ │ └── Repository.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── Application.php │ │ │ │ │ └── Kernel.php │ │ │ │ ├── Container/ │ │ │ │ │ ├── BindingResolutionException.php │ │ │ │ │ ├── Container.php │ │ │ │ │ └── ContextualBindingBuilder.php │ │ │ │ ├── Cookie/ │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── QueueingFactory.php │ │ │ │ ├── Database/ │ │ │ │ │ ├── Events/ │ │ │ │ │ │ └── MigrationEvent.php │ │ │ │ │ └── ModelIdentifier.php │ │ │ │ ├── Debug/ │ │ │ │ │ └── ExceptionHandler.php │ │ │ │ ├── Encryption/ │ │ │ │ │ ├── DecryptException.php │ │ │ │ │ ├── EncryptException.php │ │ │ │ │ └── Encrypter.php │ │ │ │ ├── Events/ │ │ │ │ │ └── Dispatcher.php │ │ │ │ ├── Filesystem/ │ │ │ │ │ ├── Cloud.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FileExistsException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ └── Filesystem.php │ │ │ │ ├── Foundation/ │ │ │ │ │ └── Application.php │ │ │ │ ├── Hashing/ │ │ │ │ │ └── Hasher.php │ │ │ │ ├── Http/ │ │ │ │ │ └── Kernel.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Mail/ │ │ │ │ │ ├── MailQueue.php │ │ │ │ │ ├── Mailable.php │ │ │ │ │ └── Mailer.php │ │ │ │ ├── Notifications/ │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── Factory.php │ │ │ │ ├── Pagination/ │ │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ │ └── Paginator.php │ │ │ │ ├── Pipeline/ │ │ │ │ │ ├── Hub.php │ │ │ │ │ └── Pipeline.php │ │ │ │ ├── Queue/ │ │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ │ ├── EntityResolver.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Job.php │ │ │ │ │ ├── Monitor.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── QueueableCollection.php │ │ │ │ │ ├── QueueableEntity.php │ │ │ │ │ └── ShouldQueue.php │ │ │ │ ├── Redis/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── LimiterTimeoutException.php │ │ │ │ ├── Routing/ │ │ │ │ │ ├── BindingRegistrar.php │ │ │ │ │ ├── Registrar.php │ │ │ │ │ ├── ResponseFactory.php │ │ │ │ │ ├── UrlGenerator.php │ │ │ │ │ └── UrlRoutable.php │ │ │ │ ├── Session/ │ │ │ │ │ └── Session.php │ │ │ │ ├── Support/ │ │ │ │ │ ├── Arrayable.php │ │ │ │ │ ├── DeferrableProvider.php │ │ │ │ │ ├── Htmlable.php │ │ │ │ │ ├── Jsonable.php │ │ │ │ │ ├── MessageBag.php │ │ │ │ │ ├── MessageProvider.php │ │ │ │ │ ├── Renderable.php │ │ │ │ │ └── Responsable.php │ │ │ │ ├── Translation/ │ │ │ │ │ ├── HasLocalePreference.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ └── Translator.php │ │ │ │ ├── Validation/ │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ImplicitRule.php │ │ │ │ │ ├── Rule.php │ │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ │ └── Validator.php │ │ │ │ ├── View/ │ │ │ │ │ ├── Engine.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── View.php │ │ │ │ └── composer.json │ │ │ ├── Cookie/ │ │ │ │ ├── CookieJar.php │ │ │ │ ├── CookieServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ │ │ └── EncryptCookies.php │ │ │ │ └── composer.json │ │ │ ├── Database/ │ │ │ │ ├── Capsule/ │ │ │ │ │ └── Manager.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── BuildsQueries.php │ │ │ │ │ └── ManagesTransactions.php │ │ │ │ ├── ConfigurationUrlParser.php │ │ │ │ ├── Connection.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── ConnectionResolver.php │ │ │ │ ├── ConnectionResolverInterface.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── ConnectionFactory.php │ │ │ │ │ ├── Connector.php │ │ │ │ │ ├── ConnectorInterface.php │ │ │ │ │ ├── MySqlConnector.php │ │ │ │ │ ├── PostgresConnector.php │ │ │ │ │ ├── SQLiteConnector.php │ │ │ │ │ └── SqlServerConnector.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── Factories/ │ │ │ │ │ │ ├── FactoryMakeCommand.php │ │ │ │ │ │ └── stubs/ │ │ │ │ │ │ └── factory.stub │ │ │ │ │ ├── Migrations/ │ │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ │ ├── FreshCommand.php │ │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ │ └── TableGuesser.php │ │ │ │ │ └── Seeds/ │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── seeder.stub │ │ │ │ ├── DatabaseManager.php │ │ │ │ ├── DatabaseServiceProvider.php │ │ │ │ ├── DetectsDeadlocks.php │ │ │ │ ├── DetectsLostConnections.php │ │ │ │ ├── Eloquent/ │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FactoryBuilder.php │ │ │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ │ │ ├── JsonEncodingException.php │ │ │ │ │ ├── MassAssignmentException.php │ │ │ │ │ ├── Model.php │ │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ │ ├── Relations/ │ │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ │ ├── AsPivot.php │ │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ │ └── SupportsDefaultModels.php │ │ │ │ │ │ ├── HasMany.php │ │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ │ ├── HasOne.php │ │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ │ ├── HasOneThrough.php │ │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ │ ├── Pivot.php │ │ │ │ │ │ └── Relation.php │ │ │ │ │ ├── Scope.php │ │ │ │ │ ├── SoftDeletes.php │ │ │ │ │ └── SoftDeletingScope.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── ConnectionEvent.php │ │ │ │ │ ├── MigrationEnded.php │ │ │ │ │ ├── MigrationEvent.php │ │ │ │ │ ├── MigrationStarted.php │ │ │ │ │ ├── MigrationsEnded.php │ │ │ │ │ ├── MigrationsStarted.php │ │ │ │ │ ├── QueryExecuted.php │ │ │ │ │ ├── StatementPrepared.php │ │ │ │ │ ├── TransactionBeginning.php │ │ │ │ │ ├── TransactionCommitted.php │ │ │ │ │ └── TransactionRolledBack.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MigrationServiceProvider.php │ │ │ │ ├── Migrations/ │ │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MigrationCreator.php │ │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ │ ├── Migrator.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── update.stub │ │ │ │ ├── MySqlConnection.php │ │ │ │ ├── PostgresConnection.php │ │ │ │ ├── Query/ │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Expression.php │ │ │ │ │ ├── Grammars/ │ │ │ │ │ │ ├── Grammar.php │ │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ │ ├── JoinClause.php │ │ │ │ │ ├── JsonExpression.php │ │ │ │ │ └── Processors/ │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ │ ├── QueryException.php │ │ │ │ ├── README.md │ │ │ │ ├── SQLiteConnection.php │ │ │ │ ├── Schema/ │ │ │ │ │ ├── Blueprint.php │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── ColumnDefinition.php │ │ │ │ │ ├── ForeignKeyDefinition.php │ │ │ │ │ ├── Grammars/ │ │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ │ ├── Grammar.php │ │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ │ ├── MySqlBuilder.php │ │ │ │ │ ├── PostgresBuilder.php │ │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ │ └── SqlServerBuilder.php │ │ │ │ ├── Seeder.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ └── composer.json │ │ │ ├── Encryption/ │ │ │ │ ├── Encrypter.php │ │ │ │ ├── EncryptionServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ └── composer.json │ │ │ ├── Events/ │ │ │ │ ├── CallQueuedListener.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ └── composer.json │ │ │ ├── Filesystem/ │ │ │ │ ├── Cache.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemAdapter.php │ │ │ │ ├── FilesystemManager.php │ │ │ │ ├── FilesystemServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ └── composer.json │ │ │ ├── Foundation/ │ │ │ │ ├── AliasLoader.php │ │ │ │ ├── Application.php │ │ │ │ ├── Auth/ │ │ │ │ │ ├── Access/ │ │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ │ └── AuthorizesRequests.php │ │ │ │ │ ├── AuthenticatesUsers.php │ │ │ │ │ ├── RedirectsUsers.php │ │ │ │ │ ├── RegistersUsers.php │ │ │ │ │ ├── ResetsPasswords.php │ │ │ │ │ ├── SendsPasswordResetEmails.php │ │ │ │ │ ├── ThrottlesLogins.php │ │ │ │ │ ├── User.php │ │ │ │ │ └── VerifiesEmails.php │ │ │ │ ├── Bootstrap/ │ │ │ │ │ ├── BootProviders.php │ │ │ │ │ ├── HandleExceptions.php │ │ │ │ │ ├── LoadConfiguration.php │ │ │ │ │ ├── LoadEnvironmentVariables.php │ │ │ │ │ ├── RegisterFacades.php │ │ │ │ │ ├── RegisterProviders.php │ │ │ │ │ └── SetRequestForConsole.php │ │ │ │ ├── Bus/ │ │ │ │ │ ├── Dispatchable.php │ │ │ │ │ ├── DispatchesJobs.php │ │ │ │ │ ├── PendingChain.php │ │ │ │ │ └── PendingDispatch.php │ │ │ │ ├── ComposerScripts.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── AppNameCommand.php │ │ │ │ │ ├── ChannelMakeCommand.php │ │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ │ ├── ClosureCommand.php │ │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ │ ├── DownCommand.php │ │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ │ ├── EventCacheCommand.php │ │ │ │ │ ├── EventClearCommand.php │ │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ │ ├── EventListCommand.php │ │ │ │ │ ├── EventMakeCommand.php │ │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ │ ├── JobMakeCommand.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ │ ├── MailMakeCommand.php │ │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ │ ├── NotificationMakeCommand.php │ │ │ │ │ ├── ObserverMakeCommand.php │ │ │ │ │ ├── OptimizeClearCommand.php │ │ │ │ │ ├── OptimizeCommand.php │ │ │ │ │ ├── PackageDiscoverCommand.php │ │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ │ ├── PresetCommand.php │ │ │ │ │ ├── Presets/ │ │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ │ ├── None.php │ │ │ │ │ │ ├── Preset.php │ │ │ │ │ │ ├── React.php │ │ │ │ │ │ ├── Vue.php │ │ │ │ │ │ ├── bootstrap-stubs/ │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ └── app.scss │ │ │ │ │ │ ├── none-stubs/ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ │ ├── react-stubs/ │ │ │ │ │ │ │ ├── Example.js │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ │ └── vue-stubs/ │ │ │ │ │ │ ├── ExampleComponent.vue │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ │ ├── QueuedCommand.php │ │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ │ ├── RouteClearCommand.php │ │ │ │ │ ├── RouteListCommand.php │ │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ │ ├── ServeCommand.php │ │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ │ ├── TestMakeCommand.php │ │ │ │ │ ├── UpCommand.php │ │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ │ ├── ViewCacheCommand.php │ │ │ │ │ ├── ViewClearCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── channel.stub │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event-handler-queued.stub │ │ │ │ │ ├── event-handler.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── job-queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-duck.stub │ │ │ │ │ ├── listener-queued-duck.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.stub │ │ │ │ │ ├── mail.stub │ │ │ │ │ ├── markdown-mail.stub │ │ │ │ │ ├── markdown-notification.stub │ │ │ │ │ ├── markdown.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── observer.stub │ │ │ │ │ ├── pivot.model.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ └── unit-test.stub │ │ │ │ ├── EnvironmentDetector.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── DiscoverEvents.php │ │ │ │ │ ├── Dispatchable.php │ │ │ │ │ └── LocaleUpdated.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── Handler.php │ │ │ │ │ ├── WhoopsHandler.php │ │ │ │ │ └── views/ │ │ │ │ │ ├── 401.blade.php │ │ │ │ │ ├── 403.blade.php │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ ├── 419.blade.php │ │ │ │ │ ├── 429.blade.php │ │ │ │ │ ├── 500.blade.php │ │ │ │ │ ├── 503.blade.php │ │ │ │ │ ├── illustrated-layout.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ └── minimal.blade.php │ │ │ │ ├── Http/ │ │ │ │ │ ├── Events/ │ │ │ │ │ │ └── RequestHandled.php │ │ │ │ │ ├── Exceptions/ │ │ │ │ │ │ └── MaintenanceModeException.php │ │ │ │ │ ├── FormRequest.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ └── Middleware/ │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ │ ├── Inspiring.php │ │ │ │ ├── Mix.php │ │ │ │ ├── PackageManifest.php │ │ │ │ ├── ProviderRepository.php │ │ │ │ ├── Providers/ │ │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ │ └── FoundationServiceProvider.php │ │ │ │ ├── Support/ │ │ │ │ │ └── Providers/ │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ │ ├── Testing/ │ │ │ │ │ ├── Assert.php │ │ │ │ │ ├── Concerns/ │ │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ │ ├── Constraints/ │ │ │ │ │ │ ├── HasInDatabase.php │ │ │ │ │ │ ├── SeeInOrder.php │ │ │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ │ ├── PendingCommand.php │ │ │ │ │ ├── RefreshDatabase.php │ │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── TestResponse.php │ │ │ │ │ ├── WithFaker.php │ │ │ │ │ ├── WithoutEvents.php │ │ │ │ │ └── WithoutMiddleware.php │ │ │ │ ├── Validation/ │ │ │ │ │ └── ValidatesRequests.php │ │ │ │ ├── helpers.php │ │ │ │ └── stubs/ │ │ │ │ └── facade.stub │ │ │ ├── Hashing/ │ │ │ │ ├── AbstractHasher.php │ │ │ │ ├── Argon2IdHasher.php │ │ │ │ ├── ArgonHasher.php │ │ │ │ ├── BcryptHasher.php │ │ │ │ ├── HashManager.php │ │ │ │ ├── HashServiceProvider.php │ │ │ │ ├── LICENSE.md │ │ │ │ └── composer.json │ │ │ ├── Http/ │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── InteractsWithContentTypes.php │ │ │ │ │ ├── InteractsWithFlashData.php │ │ │ │ │ └── InteractsWithInput.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── HttpResponseException.php │ │ │ │ │ ├── PostTooLargeException.php │ │ │ │ │ └── ThrottleRequestsException.php │ │ │ │ ├── File.php │ │ │ │ ├── FileHelpers.php │ │ │ │ ├── JsonResponse.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ │ ├── FrameGuard.php │ │ │ │ │ └── SetCacheHeaders.php │ │ │ │ ├── RedirectResponse.php │ │ │ │ ├── Request.php │ │ │ │ ├── Resources/ │ │ │ │ │ ├── CollectsResources.php │ │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ │ ├── DelegatesToResource.php │ │ │ │ │ ├── Json/ │ │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ │ ├── JsonResource.php │ │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ │ ├── Resource.php │ │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ │ └── ResourceResponse.php │ │ │ │ │ ├── MergeValue.php │ │ │ │ │ ├── MissingValue.php │ │ │ │ │ └── PotentiallyMissing.php │ │ │ │ ├── Response.php │ │ │ │ ├── ResponseTrait.php │ │ │ │ ├── Testing/ │ │ │ │ │ ├── File.php │ │ │ │ │ ├── FileFactory.php │ │ │ │ │ └── MimeType.php │ │ │ │ ├── UploadedFile.php │ │ │ │ └── composer.json │ │ │ ├── Log/ │ │ │ │ ├── Events/ │ │ │ │ │ └── MessageLogged.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LogManager.php │ │ │ │ ├── LogServiceProvider.php │ │ │ │ ├── Logger.php │ │ │ │ ├── ParsesLogConfiguration.php │ │ │ │ └── composer.json │ │ │ ├── Mail/ │ │ │ │ ├── Events/ │ │ │ │ │ ├── MessageSending.php │ │ │ │ │ └── MessageSent.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MailServiceProvider.php │ │ │ │ ├── Mailable.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Markdown.php │ │ │ │ ├── Message.php │ │ │ │ ├── PendingMail.php │ │ │ │ ├── SendQueuedMailable.php │ │ │ │ ├── Transport/ │ │ │ │ │ ├── ArrayTransport.php │ │ │ │ │ ├── LogTransport.php │ │ │ │ │ ├── MailgunTransport.php │ │ │ │ │ ├── MandrillTransport.php │ │ │ │ │ ├── SesTransport.php │ │ │ │ │ ├── SparkPostTransport.php │ │ │ │ │ └── Transport.php │ │ │ │ ├── TransportManager.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ ├── html/ │ │ │ │ │ ├── button.blade.php │ │ │ │ │ ├── footer.blade.php │ │ │ │ │ ├── header.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ ├── message.blade.php │ │ │ │ │ ├── panel.blade.php │ │ │ │ │ ├── promotion/ │ │ │ │ │ │ └── button.blade.php │ │ │ │ │ ├── promotion.blade.php │ │ │ │ │ ├── subcopy.blade.php │ │ │ │ │ ├── table.blade.php │ │ │ │ │ └── themes/ │ │ │ │ │ └── default.css │ │ │ │ └── text/ │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion/ │ │ │ │ │ └── button.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ └── table.blade.php │ │ │ ├── Notifications/ │ │ │ │ ├── Action.php │ │ │ │ ├── AnonymousNotifiable.php │ │ │ │ ├── ChannelManager.php │ │ │ │ ├── Channels/ │ │ │ │ │ ├── BroadcastChannel.php │ │ │ │ │ ├── DatabaseChannel.php │ │ │ │ │ └── MailChannel.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── NotificationTableCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── notifications.stub │ │ │ │ ├── DatabaseNotification.php │ │ │ │ ├── DatabaseNotificationCollection.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ │ │ ├── NotificationFailed.php │ │ │ │ │ ├── NotificationSending.php │ │ │ │ │ └── NotificationSent.php │ │ │ │ ├── HasDatabaseNotifications.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Messages/ │ │ │ │ │ ├── BroadcastMessage.php │ │ │ │ │ ├── DatabaseMessage.php │ │ │ │ │ ├── MailMessage.php │ │ │ │ │ └── SimpleMessage.php │ │ │ │ ├── Notifiable.php │ │ │ │ ├── Notification.php │ │ │ │ ├── NotificationSender.php │ │ │ │ ├── NotificationServiceProvider.php │ │ │ │ ├── RoutesNotifications.php │ │ │ │ ├── SendQueuedNotifications.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ └── email.blade.php │ │ │ ├── Pagination/ │ │ │ │ ├── AbstractPaginator.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ ├── PaginationServiceProvider.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── UrlWindow.php │ │ │ │ ├── composer.json │ │ │ │ └── resources/ │ │ │ │ └── views/ │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ └── simple-default.blade.php │ │ │ ├── Pipeline/ │ │ │ │ ├── Hub.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Pipeline.php │ │ │ │ ├── PipelineServiceProvider.php │ │ │ │ └── composer.json │ │ │ ├── Queue/ │ │ │ │ ├── BeanstalkdQueue.php │ │ │ │ ├── CallQueuedClosure.php │ │ │ │ ├── CallQueuedHandler.php │ │ │ │ ├── Capsule/ │ │ │ │ │ └── Manager.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── BeanstalkdConnector.php │ │ │ │ │ ├── ConnectorInterface.php │ │ │ │ │ ├── DatabaseConnector.php │ │ │ │ │ ├── NullConnector.php │ │ │ │ │ ├── RedisConnector.php │ │ │ │ │ ├── SqsConnector.php │ │ │ │ │ └── SyncConnector.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── FailedTableCommand.php │ │ │ │ │ ├── FlushFailedCommand.php │ │ │ │ │ ├── ForgetFailedCommand.php │ │ │ │ │ ├── ListFailedCommand.php │ │ │ │ │ ├── ListenCommand.php │ │ │ │ │ ├── RestartCommand.php │ │ │ │ │ ├── RetryCommand.php │ │ │ │ │ ├── TableCommand.php │ │ │ │ │ ├── WorkCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── failed_jobs.stub │ │ │ │ │ └── jobs.stub │ │ │ │ ├── DatabaseQueue.php │ │ │ │ ├── Events/ │ │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ │ ├── JobFailed.php │ │ │ │ │ ├── JobProcessed.php │ │ │ │ │ ├── JobProcessing.php │ │ │ │ │ ├── Looping.php │ │ │ │ │ └── WorkerStopping.php │ │ │ │ ├── Failed/ │ │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ │ └── NullFailedJobProvider.php │ │ │ │ ├── InteractsWithQueue.php │ │ │ │ ├── InvalidPayloadException.php │ │ │ │ ├── Jobs/ │ │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ │ ├── DatabaseJob.php │ │ │ │ │ ├── DatabaseJobRecord.php │ │ │ │ │ ├── Job.php │ │ │ │ │ ├── JobName.php │ │ │ │ │ ├── RedisJob.php │ │ │ │ │ ├── SqsJob.php │ │ │ │ │ └── SyncJob.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Listener.php │ │ │ │ ├── ListenerOptions.php │ │ │ │ ├── LuaScripts.php │ │ │ │ ├── ManuallyFailedException.php │ │ │ │ ├── MaxAttemptsExceededException.php │ │ │ │ ├── NullQueue.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueManager.php │ │ │ │ ├── QueueServiceProvider.php │ │ │ │ ├── README.md │ │ │ │ ├── RedisQueue.php │ │ │ │ ├── SerializableClosure.php │ │ │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ │ │ ├── SerializesModels.php │ │ │ │ ├── SqsQueue.php │ │ │ │ ├── SyncQueue.php │ │ │ │ ├── Worker.php │ │ │ │ ├── WorkerOptions.php │ │ │ │ └── composer.json │ │ │ ├── Redis/ │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ │ ├── PhpRedisConnection.php │ │ │ │ │ ├── PredisClusterConnection.php │ │ │ │ │ └── PredisConnection.php │ │ │ │ ├── Connectors/ │ │ │ │ │ ├── PhpRedisConnector.php │ │ │ │ │ └── PredisConnector.php │ │ │ │ ├── Events/ │ │ │ │ │ └── CommandExecuted.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Limiters/ │ │ │ │ │ ├── ConcurrencyLimiter.php │ │ │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ │ │ ├── DurationLimiter.php │ │ │ │ │ └── DurationLimiterBuilder.php │ │ │ │ ├── RedisManager.php │ │ │ │ ├── RedisServiceProvider.php │ │ │ │ └── composer.json │ │ │ ├── Routing/ │ │ │ │ ├── Console/ │ │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ ├── controller.api.stub │ │ │ │ │ ├── controller.invokable.stub │ │ │ │ │ ├── controller.model.api.stub │ │ │ │ │ ├── controller.model.stub │ │ │ │ │ ├── controller.nested.api.stub │ │ │ │ │ ├── controller.nested.stub │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ │ ├── Contracts/ │ │ │ │ │ └── ControllerDispatcher.php │ │ │ │ ├── Controller.php │ │ │ │ ├── ControllerDispatcher.php │ │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ │ ├── Events/ │ │ │ │ │ └── RouteMatched.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ ├── InvalidSignatureException.php │ │ │ │ │ └── UrlGenerationException.php │ │ │ │ ├── ImplicitRouteBinding.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Matching/ │ │ │ │ │ ├── HostValidator.php │ │ │ │ │ ├── MethodValidator.php │ │ │ │ │ ├── SchemeValidator.php │ │ │ │ │ ├── UriValidator.php │ │ │ │ │ └── ValidatorInterface.php │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── SubstituteBindings.php │ │ │ │ │ ├── ThrottleRequests.php │ │ │ │ │ ├── ThrottleRequestsWithRedis.php │ │ │ │ │ └── ValidateSignature.php │ │ │ │ ├── MiddlewareNameResolver.php │ │ │ │ ├── PendingResourceRegistration.php │ │ │ │ ├── Pipeline.php │ │ │ │ ├── RedirectController.php │ │ │ │ ├── Redirector.php │ │ │ │ ├── ResourceRegistrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── Route.php │ │ │ │ ├── RouteAction.php │ │ │ │ ├── RouteBinding.php │ │ │ │ ├── RouteCollection.php │ │ │ │ ├── RouteCompiler.php │ │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ │ ├── RouteFileRegistrar.php │ │ │ │ ├── RouteGroup.php │ │ │ │ ├── RouteParameterBinder.php │ │ │ │ ├── RouteRegistrar.php │ │ │ │ ├── RouteSignatureParameters.php │ │ │ │ ├── RouteUrlGenerator.php │ │ │ │ ├── Router.php │ │ │ │ ├── RoutingServiceProvider.php │ │ │ │ ├── SortedMiddleware.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ ├── ViewController.php │ │ │ │ └── composer.json │ │ │ ├── Session/ │ │ │ │ ├── CacheBasedSessionHandler.php │ │ │ │ ├── Console/ │ │ │ │ │ ├── SessionTableCommand.php │ │ │ │ │ └── stubs/ │ │ │ │ │ └── database.stub │ │ │ │ ├── CookieSessionHandler.php │ │ │ │ ├── DatabaseSessionHandler.php │ │ │ │ ├── EncryptedStore.php │ │ │ │ ├── ExistenceAwareInterface.php │ │ │ │ ├── FileSessionHandler.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Middleware/ │ │ │ │ │ ├── AuthenticateSession.php │ │ │ │ │ └── StartSession.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── SessionManager.php │ │ │ │ ├── SessionServiceProvider.php │ │ │ │ ├── Store.php │ │ │ │ ├── TokenMismatchException.php │ │ │ │ └── composer.json │ │ │ ├── Support/ │ │ │ │ ├── AggregateServiceProvider.php │ │ │ │ ├── Arr.php │ │ │ │ ├── Carbon.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Composer.php │ │ │ │ ├── ConfigurationUrlParser.php │ │ │ │ ├── DateFactory.php │ │ │ │ ├── Facades/ │ │ │ │ │ ├── App.php │ │ │ │ │ ├── Artisan.php │ │ │ │ │ ├── Auth.php │ │ │ │ │ ├── Blade.php │ │ │ │ │ ├── Broadcast.php │ │ │ │ │ ├── Bus.php │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Cookie.php │ │ │ │ │ ├── Crypt.php │ │ │ │ │ ├── DB.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Gate.php │ │ │ │ │ ├── Hash.php │ │ │ │ │ ├── Input.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Log.php │ │ │ │ │ ├── Mail.php │ │ │ │ │ ├── Notification.php │ │ │ │ │ ├── Password.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── Redirect.php │ │ │ │ │ ├── Redis.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Response.php │ │ │ │ │ ├── Route.php │ │ │ │ │ ├── Schema.php │ │ │ │ │ ├── Session.php │ │ │ │ │ ├── Storage.php │ │ │ │ │ ├── URL.php │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── View.php │ │ │ │ ├── Fluent.php │ │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ │ ├── HigherOrderTapProxy.php │ │ │ │ ├── HtmlString.php │ │ │ │ ├── InteractsWithTime.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Manager.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── NamespacedItemResolver.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Pluralizer.php │ │ │ │ ├── ProcessUtils.php │ │ │ │ ├── ServiceProvider.php │ │ │ │ ├── Str.php │ │ │ │ ├── Testing/ │ │ │ │ │ └── Fakes/ │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ │ ├── Traits/ │ │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ │ ├── ForwardsCalls.php │ │ │ │ │ ├── Localizable.php │ │ │ │ │ ├── Macroable.php │ │ │ │ │ └── Tappable.php │ │ │ │ ├── ViewErrorBag.php │ │ │ │ ├── composer.json │ │ │ │ └── helpers.php │ │ │ ├── Translation/ │ │ │ │ ├── ArrayLoader.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── MessageSelector.php │ │ │ │ ├── TranslationServiceProvider.php │ │ │ │ ├── Translator.php │ │ │ │ └── composer.json │ │ │ ├── Validation/ │ │ │ │ ├── ClosureValidationRule.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── FormatsMessages.php │ │ │ │ │ ├── ReplacesAttributes.php │ │ │ │ │ └── ValidatesAttributes.php │ │ │ │ ├── DatabasePresenceVerifier.php │ │ │ │ ├── Factory.php │ │ │ │ ├── LICENSE.md │ │ │ │ ├── PresenceVerifierInterface.php │ │ │ │ ├── Rule.php │ │ │ │ ├── Rules/ │ │ │ │ │ ├── DatabaseRule.php │ │ │ │ │ ├── Dimensions.php │ │ │ │ │ ├── Exists.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── NotIn.php │ │ │ │ │ ├── RequiredIf.php │ │ │ │ │ └── Unique.php │ │ │ │ ├── UnauthorizedException.php │ │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ │ ├── ValidationData.php │ │ │ │ ├── ValidationException.php │ │ │ │ ├── ValidationRuleParser.php │ │ │ │ ├── ValidationServiceProvider.php │ │ │ │ ├── Validator.php │ │ │ │ └── composer.json │ │ │ └── View/ │ │ │ ├── Compilers/ │ │ │ │ ├── BladeCompiler.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── CompilerInterface.php │ │ │ │ └── Concerns/ │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ ├── CompilesComments.php │ │ │ │ ├── CompilesComponents.php │ │ │ │ ├── CompilesConditionals.php │ │ │ │ ├── CompilesEchos.php │ │ │ │ ├── CompilesErrors.php │ │ │ │ ├── CompilesHelpers.php │ │ │ │ ├── CompilesIncludes.php │ │ │ │ ├── CompilesInjections.php │ │ │ │ ├── CompilesJson.php │ │ │ │ ├── CompilesLayouts.php │ │ │ │ ├── CompilesLoops.php │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ ├── CompilesStacks.php │ │ │ │ └── CompilesTranslations.php │ │ │ ├── Concerns/ │ │ │ │ ├── ManagesComponents.php │ │ │ │ ├── ManagesEvents.php │ │ │ │ ├── ManagesLayouts.php │ │ │ │ ├── ManagesLoops.php │ │ │ │ ├── ManagesStacks.php │ │ │ │ └── ManagesTranslations.php │ │ │ ├── Engines/ │ │ │ │ ├── CompilerEngine.php │ │ │ │ ├── Engine.php │ │ │ │ ├── EngineResolver.php │ │ │ │ ├── FileEngine.php │ │ │ │ └── PhpEngine.php │ │ │ ├── Factory.php │ │ │ ├── FileViewFinder.php │ │ │ ├── LICENSE.md │ │ │ ├── Middleware/ │ │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ │ └── tinker/ │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── config/ │ │ │ └── tinker.php │ │ └── src/ │ │ ├── ClassAliasAutoloader.php │ │ ├── Console/ │ │ │ └── TinkerCommand.php │ │ ├── TinkerCaster.php │ │ └── TinkerServiceProvider.php │ ├── league/ │ │ └── flysystem/ │ │ ├── .php_cs.dist │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── deprecations.md │ │ └── src/ │ │ ├── Adapter/ │ │ │ ├── AbstractAdapter.php │ │ │ ├── AbstractFtpAdapter.php │ │ │ ├── CanOverwriteFiles.php │ │ │ ├── Ftp.php │ │ │ ├── Ftpd.php │ │ │ ├── Local.php │ │ │ ├── NullAdapter.php │ │ │ ├── Polyfill/ │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ ├── StreamedTrait.php │ │ │ │ └── StreamedWritingTrait.php │ │ │ └── SynologyFtp.php │ │ ├── AdapterInterface.php │ │ ├── Config.php │ │ ├── ConfigAwareTrait.php │ │ ├── Directory.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ ├── Filesystem.php │ │ ├── FilesystemInterface.php │ │ ├── FilesystemNotFoundException.php │ │ ├── Handler.php │ │ ├── MountManager.php │ │ ├── NotSupportedException.php │ │ ├── Plugin/ │ │ │ ├── AbstractPlugin.php │ │ │ ├── EmptyDir.php │ │ │ ├── ForcedCopy.php │ │ │ ├── ForcedRename.php │ │ │ ├── GetWithMetadata.php │ │ │ ├── ListFiles.php │ │ │ ├── ListPaths.php │ │ │ ├── ListWith.php │ │ │ ├── PluggableTrait.php │ │ │ └── PluginNotFoundException.php │ │ ├── PluginInterface.php │ │ ├── ReadInterface.php │ │ ├── RootViolationException.php │ │ ├── SafeStorage.php │ │ ├── UnreadableFileException.php │ │ ├── Util/ │ │ │ ├── ContentListingFormatter.php │ │ │ ├── MimeType.php │ │ │ └── StreamHasher.php │ │ └── Util.php │ ├── monolog/ │ │ └── monolog/ │ │ ├── .php_cs │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc/ │ │ │ ├── 01-usage.md │ │ │ ├── 02-handlers-formatters-processors.md │ │ │ ├── 03-utilities.md │ │ │ ├── 04-extending.md │ │ │ └── sockets.md │ │ ├── phpunit.xml.dist │ │ ├── src/ │ │ │ └── Monolog/ │ │ │ ├── ErrorHandler.php │ │ │ ├── Formatter/ │ │ │ │ ├── ChromePHPFormatter.php │ │ │ │ ├── ElasticaFormatter.php │ │ │ │ ├── FlowdockFormatter.php │ │ │ │ ├── FluentdFormatter.php │ │ │ │ ├── FormatterInterface.php │ │ │ │ ├── GelfMessageFormatter.php │ │ │ │ ├── HtmlFormatter.php │ │ │ │ ├── JsonFormatter.php │ │ │ │ ├── LineFormatter.php │ │ │ │ ├── LogglyFormatter.php │ │ │ │ ├── LogstashFormatter.php │ │ │ │ ├── MongoDBFormatter.php │ │ │ │ ├── NormalizerFormatter.php │ │ │ │ ├── ScalarFormatter.php │ │ │ │ └── WildfireFormatter.php │ │ │ ├── Handler/ │ │ │ │ ├── AbstractHandler.php │ │ │ │ ├── AbstractProcessingHandler.php │ │ │ │ ├── AbstractSyslogHandler.php │ │ │ │ ├── AmqpHandler.php │ │ │ │ ├── BrowserConsoleHandler.php │ │ │ │ ├── BufferHandler.php │ │ │ │ ├── ChromePHPHandler.php │ │ │ │ ├── CouchDBHandler.php │ │ │ │ ├── CubeHandler.php │ │ │ │ ├── Curl/ │ │ │ │ │ └── Util.php │ │ │ │ ├── DeduplicationHandler.php │ │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ │ ├── DynamoDbHandler.php │ │ │ │ ├── ElasticSearchHandler.php │ │ │ │ ├── ErrorLogHandler.php │ │ │ │ ├── FilterHandler.php │ │ │ │ ├── FingersCrossed/ │ │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ │ ├── FingersCrossedHandler.php │ │ │ │ ├── FirePHPHandler.php │ │ │ │ ├── FleepHookHandler.php │ │ │ │ ├── FlowdockHandler.php │ │ │ │ ├── GelfHandler.php │ │ │ │ ├── GroupHandler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── HandlerWrapper.php │ │ │ │ ├── HipChatHandler.php │ │ │ │ ├── IFTTTHandler.php │ │ │ │ ├── InsightOpsHandler.php │ │ │ │ ├── LogEntriesHandler.php │ │ │ │ ├── LogglyHandler.php │ │ │ │ ├── MailHandler.php │ │ │ │ ├── MandrillHandler.php │ │ │ │ ├── MissingExtensionException.php │ │ │ │ ├── MongoDBHandler.php │ │ │ │ ├── NativeMailerHandler.php │ │ │ │ ├── NewRelicHandler.php │ │ │ │ ├── NullHandler.php │ │ │ │ ├── PHPConsoleHandler.php │ │ │ │ ├── PsrHandler.php │ │ │ │ ├── PushoverHandler.php │ │ │ │ ├── RavenHandler.php │ │ │ │ ├── RedisHandler.php │ │ │ │ ├── RollbarHandler.php │ │ │ │ ├── RotatingFileHandler.php │ │ │ │ ├── SamplingHandler.php │ │ │ │ ├── Slack/ │ │ │ │ │ └── SlackRecord.php │ │ │ │ ├── SlackHandler.php │ │ │ │ ├── SlackWebhookHandler.php │ │ │ │ ├── SlackbotHandler.php │ │ │ │ ├── SocketHandler.php │ │ │ │ ├── StreamHandler.php │ │ │ │ ├── SwiftMailerHandler.php │ │ │ │ ├── SyslogHandler.php │ │ │ │ ├── SyslogUdp/ │ │ │ │ │ └── UdpSocket.php │ │ │ │ ├── SyslogUdpHandler.php │ │ │ │ ├── TestHandler.php │ │ │ │ ├── WhatFailureGroupHandler.php │ │ │ │ └── ZendMonitorHandler.php │ │ │ ├── Logger.php │ │ │ ├── Processor/ │ │ │ │ ├── GitProcessor.php │ │ │ │ ├── IntrospectionProcessor.php │ │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ │ ├── MemoryProcessor.php │ │ │ │ ├── MemoryUsageProcessor.php │ │ │ │ ├── MercurialProcessor.php │ │ │ │ ├── ProcessIdProcessor.php │ │ │ │ ├── ProcessorInterface.php │ │ │ │ ├── PsrLogMessageProcessor.php │ │ │ │ ├── TagProcessor.php │ │ │ │ ├── UidProcessor.php │ │ │ │ └── WebProcessor.php │ │ │ ├── Registry.php │ │ │ ├── ResettableInterface.php │ │ │ ├── SignalHandler.php │ │ │ └── Utils.php │ │ └── tests/ │ │ └── Monolog/ │ │ ├── ErrorHandlerTest.php │ │ ├── Formatter/ │ │ │ ├── ChromePHPFormatterTest.php │ │ │ ├── ElasticaFormatterTest.php │ │ │ ├── FlowdockFormatterTest.php │ │ │ ├── FluentdFormatterTest.php │ │ │ ├── GelfMessageFormatterTest.php │ │ │ ├── JsonFormatterTest.php │ │ │ ├── LineFormatterTest.php │ │ │ ├── LogglyFormatterTest.php │ │ │ ├── LogstashFormatterTest.php │ │ │ ├── MongoDBFormatterTest.php │ │ │ ├── NormalizerFormatterTest.php │ │ │ ├── ScalarFormatterTest.php │ │ │ └── WildfireFormatterTest.php │ │ ├── Handler/ │ │ │ ├── AbstractHandlerTest.php │ │ │ ├── AbstractProcessingHandlerTest.php │ │ │ ├── AmqpHandlerTest.php │ │ │ ├── BrowserConsoleHandlerTest.php │ │ │ ├── BufferHandlerTest.php │ │ │ ├── ChromePHPHandlerTest.php │ │ │ ├── CouchDBHandlerTest.php │ │ │ ├── DeduplicationHandlerTest.php │ │ │ ├── DoctrineCouchDBHandlerTest.php │ │ │ ├── DynamoDbHandlerTest.php │ │ │ ├── ElasticSearchHandlerTest.php │ │ │ ├── ErrorLogHandlerTest.php │ │ │ ├── FilterHandlerTest.php │ │ │ ├── FingersCrossedHandlerTest.php │ │ │ ├── FirePHPHandlerTest.php │ │ │ ├── Fixtures/ │ │ │ │ └── .gitkeep │ │ │ ├── FleepHookHandlerTest.php │ │ │ ├── FlowdockHandlerTest.php │ │ │ ├── GelfHandlerLegacyTest.php │ │ │ ├── GelfHandlerTest.php │ │ │ ├── GelfMockMessagePublisher.php │ │ │ ├── GroupHandlerTest.php │ │ │ ├── HandlerWrapperTest.php │ │ │ ├── HipChatHandlerTest.php │ │ │ ├── InsightOpsHandlerTest.php │ │ │ ├── LogEntriesHandlerTest.php │ │ │ ├── MailHandlerTest.php │ │ │ ├── MockRavenClient.php │ │ │ ├── MongoDBHandlerTest.php │ │ │ ├── NativeMailerHandlerTest.php │ │ │ ├── NewRelicHandlerTest.php │ │ │ ├── NullHandlerTest.php │ │ │ ├── PHPConsoleHandlerTest.php │ │ │ ├── PsrHandlerTest.php │ │ │ ├── PushoverHandlerTest.php │ │ │ ├── RavenHandlerTest.php │ │ │ ├── RedisHandlerTest.php │ │ │ ├── RollbarHandlerTest.php │ │ │ ├── RotatingFileHandlerTest.php │ │ │ ├── SamplingHandlerTest.php │ │ │ ├── Slack/ │ │ │ │ └── SlackRecordTest.php │ │ │ ├── SlackHandlerTest.php │ │ │ ├── SlackWebhookHandlerTest.php │ │ │ ├── SlackbotHandlerTest.php │ │ │ ├── SocketHandlerTest.php │ │ │ ├── StreamHandlerTest.php │ │ │ ├── SwiftMailerHandlerTest.php │ │ │ ├── SyslogHandlerTest.php │ │ │ ├── SyslogUdpHandlerTest.php │ │ │ ├── TestHandlerTest.php │ │ │ ├── UdpSocketTest.php │ │ │ ├── WhatFailureGroupHandlerTest.php │ │ │ └── ZendMonitorHandlerTest.php │ │ ├── LoggerTest.php │ │ ├── Processor/ │ │ │ ├── GitProcessorTest.php │ │ │ ├── IntrospectionProcessorTest.php │ │ │ ├── MemoryPeakUsageProcessorTest.php │ │ │ ├── MemoryUsageProcessorTest.php │ │ │ ├── MercurialProcessorTest.php │ │ │ ├── ProcessIdProcessorTest.php │ │ │ ├── PsrLogMessageProcessorTest.php │ │ │ ├── TagProcessorTest.php │ │ │ ├── UidProcessorTest.php │ │ │ └── WebProcessorTest.php │ │ ├── PsrLogCompatTest.php │ │ ├── RegistryTest.php │ │ ├── SignalHandlerTest.php │ │ └── TestCase.php │ ├── myclabs/ │ │ └── deep-copy/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── fixtures/ │ │ │ ├── f001/ │ │ │ │ ├── A.php │ │ │ │ └── B.php │ │ │ ├── f002/ │ │ │ │ └── A.php │ │ │ ├── f003/ │ │ │ │ └── Foo.php │ │ │ ├── f004/ │ │ │ │ └── UnclonableItem.php │ │ │ ├── f005/ │ │ │ │ └── Foo.php │ │ │ ├── f006/ │ │ │ │ ├── A.php │ │ │ │ └── B.php │ │ │ ├── f007/ │ │ │ │ ├── FooDateInterval.php │ │ │ │ └── FooDateTimeZone.php │ │ │ └── f008/ │ │ │ ├── A.php │ │ │ └── B.php │ │ └── src/ │ │ └── DeepCopy/ │ │ ├── DeepCopy.php │ │ ├── Exception/ │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ ├── Filter/ │ │ │ ├── Doctrine/ │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ └── DoctrineProxyFilter.php │ │ │ ├── Filter.php │ │ │ ├── KeepFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ └── SetNullFilter.php │ │ ├── Matcher/ │ │ │ ├── Doctrine/ │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ ├── Matcher.php │ │ │ ├── PropertyMatcher.php │ │ │ ├── PropertyNameMatcher.php │ │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection/ │ │ │ └── ReflectionHelper.php │ │ ├── TypeFilter/ │ │ │ ├── Date/ │ │ │ │ └── DateIntervalFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ ├── ShallowCopyFilter.php │ │ │ ├── Spl/ │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ ├── TypeMatcher/ │ │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── nesbot/ │ │ └── carbon/ │ │ ├── .github/ │ │ │ ├── FUNDING.yml │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .multi-tester.yml │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── contributing.md │ │ ├── phpmd.xml │ │ ├── readme.md │ │ └── src/ │ │ └── Carbon/ │ │ ├── Carbon.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonTimeZone.php │ │ ├── Exceptions/ │ │ │ └── InvalidDateException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang/ │ │ │ ├── aa.php │ │ │ ├── aa_DJ.php │ │ │ ├── aa_ER.php │ │ │ ├── aa_ER@saaho.php │ │ │ ├── aa_ET.php │ │ │ ├── af.php │ │ │ ├── af_NA.php │ │ │ ├── af_ZA.php │ │ │ ├── agq.php │ │ │ ├── agr.php │ │ │ ├── agr_PE.php │ │ │ ├── ak.php │ │ │ ├── ak_GH.php │ │ │ ├── am.php │ │ │ ├── am_ET.php │ │ │ ├── an.php │ │ │ ├── an_ES.php │ │ │ ├── anp.php │ │ │ ├── anp_IN.php │ │ │ ├── ar.php │ │ │ ├── ar_AE.php │ │ │ ├── ar_BH.php │ │ │ ├── ar_DJ.php │ │ │ ├── ar_DZ.php │ │ │ ├── ar_EG.php │ │ │ ├── ar_EH.php │ │ │ ├── ar_ER.php │ │ │ ├── ar_IL.php │ │ │ ├── ar_IN.php │ │ │ ├── ar_IQ.php │ │ │ ├── ar_JO.php │ │ │ ├── ar_KM.php │ │ │ ├── ar_KW.php │ │ │ ├── ar_LB.php │ │ │ ├── ar_LY.php │ │ │ ├── ar_MA.php │ │ │ ├── ar_MR.php │ │ │ ├── ar_OM.php │ │ │ ├── ar_PS.php │ │ │ ├── ar_QA.php │ │ │ ├── ar_SA.php │ │ │ ├── ar_SD.php │ │ │ ├── ar_SO.php │ │ │ ├── ar_SS.php │ │ │ ├── ar_SY.php │ │ │ ├── ar_Shakl.php │ │ │ ├── ar_TD.php │ │ │ ├── ar_TN.php │ │ │ ├── ar_YE.php │ │ │ ├── as.php │ │ │ ├── as_IN.php │ │ │ ├── asa.php │ │ │ ├── ast.php │ │ │ ├── ast_ES.php │ │ │ ├── ayc.php │ │ │ ├── ayc_PE.php │ │ │ ├── az.php │ │ │ ├── az_AZ.php │ │ │ ├── az_Cyrl.php │ │ │ ├── az_IR.php │ │ │ ├── az_Latn.php │ │ │ ├── bas.php │ │ │ ├── be.php │ │ │ ├── be_BY.php │ │ │ ├── be_BY@latin.php │ │ │ ├── bem.php │ │ │ ├── bem_ZM.php │ │ │ ├── ber.php │ │ │ ├── ber_DZ.php │ │ │ ├── ber_MA.php │ │ │ ├── bez.php │ │ │ ├── bg.php │ │ │ ├── bg_BG.php │ │ │ ├── bhb.php │ │ │ ├── bhb_IN.php │ │ │ ├── bho.php │ │ │ ├── bho_IN.php │ │ │ ├── bi.php │ │ │ ├── bi_VU.php │ │ │ ├── bm.php │ │ │ ├── bn.php │ │ │ ├── bn_BD.php │ │ │ ├── bn_IN.php │ │ │ ├── bo.php │ │ │ ├── bo_CN.php │ │ │ ├── bo_IN.php │ │ │ ├── br.php │ │ │ ├── br_FR.php │ │ │ ├── brx.php │ │ │ ├── brx_IN.php │ │ │ ├── bs.php │ │ │ ├── bs_BA.php │ │ │ ├── bs_Cyrl.php │ │ │ ├── bs_Latn.php │ │ │ ├── byn.php │ │ │ ├── byn_ER.php │ │ │ ├── ca.php │ │ │ ├── ca_AD.php │ │ │ ├── ca_ES.php │ │ │ ├── ca_ES_Valencia.php │ │ │ ├── ca_FR.php │ │ │ ├── ca_IT.php │ │ │ ├── ccp.php │ │ │ ├── ccp_IN.php │ │ │ ├── ce.php │ │ │ ├── ce_RU.php │ │ │ ├── cgg.php │ │ │ ├── chr.php │ │ │ ├── chr_US.php │ │ │ ├── cmn.php │ │ │ ├── cmn_TW.php │ │ │ ├── crh.php │ │ │ ├── crh_UA.php │ │ │ ├── cs.php │ │ │ ├── cs_CZ.php │ │ │ ├── csb.php │ │ │ ├── csb_PL.php │ │ │ ├── cu.php │ │ │ ├── cv.php │ │ │ ├── cv_RU.php │ │ │ ├── cy.php │ │ │ ├── cy_GB.php │ │ │ ├── da.php │ │ │ ├── da_DK.php │ │ │ ├── da_GL.php │ │ │ ├── dav.php │ │ │ ├── de.php │ │ │ ├── de_AT.php │ │ │ ├── de_BE.php │ │ │ ├── de_CH.php │ │ │ ├── de_DE.php │ │ │ ├── de_IT.php │ │ │ ├── de_LI.php │ │ │ ├── de_LU.php │ │ │ ├── dje.php │ │ │ ├── doi.php │ │ │ ├── doi_IN.php │ │ │ ├── dsb.php │ │ │ ├── dsb_DE.php │ │ │ ├── dua.php │ │ │ ├── dv.php │ │ │ ├── dv_MV.php │ │ │ ├── dyo.php │ │ │ ├── dz.php │ │ │ ├── dz_BT.php │ │ │ ├── ebu.php │ │ │ ├── ee.php │ │ │ ├── ee_TG.php │ │ │ ├── el.php │ │ │ ├── el_CY.php │ │ │ ├── el_GR.php │ │ │ ├── en.php │ │ │ ├── en_001.php │ │ │ ├── en_150.php │ │ │ ├── en_AG.php │ │ │ ├── en_AI.php │ │ │ ├── en_AS.php │ │ │ ├── en_AT.php │ │ │ ├── en_AU.php │ │ │ ├── en_BB.php │ │ │ ├── en_BE.php │ │ │ ├── en_BI.php │ │ │ ├── en_BM.php │ │ │ ├── en_BS.php │ │ │ ├── en_BW.php │ │ │ ├── en_BZ.php │ │ │ ├── en_CA.php │ │ │ ├── en_CC.php │ │ │ ├── en_CH.php │ │ │ ├── en_CK.php │ │ │ ├── en_CM.php │ │ │ ├── en_CX.php │ │ │ ├── en_CY.php │ │ │ ├── en_DE.php │ │ │ ├── en_DG.php │ │ │ ├── en_DK.php │ │ │ ├── en_DM.php │ │ │ ├── en_ER.php │ │ │ ├── en_FI.php │ │ │ ├── en_FJ.php │ │ │ ├── en_FK.php │ │ │ ├── en_FM.php │ │ │ ├── en_GB.php │ │ │ ├── en_GD.php │ │ │ ├── en_GG.php │ │ │ ├── en_GH.php │ │ │ ├── en_GI.php │ │ │ ├── en_GM.php │ │ │ ├── en_GU.php │ │ │ ├── en_GY.php │ │ │ ├── en_HK.php │ │ │ ├── en_IE.php │ │ │ ├── en_IL.php │ │ │ ├── en_IM.php │ │ │ ├── en_IN.php │ │ │ ├── en_IO.php │ │ │ ├── en_ISO.php │ │ │ ├── en_JE.php │ │ │ ├── en_JM.php │ │ │ ├── en_KE.php │ │ │ ├── en_KI.php │ │ │ ├── en_KN.php │ │ │ ├── en_KY.php │ │ │ ├── en_LC.php │ │ │ ├── en_LR.php │ │ │ ├── en_LS.php │ │ │ ├── en_MG.php │ │ │ ├── en_MH.php │ │ │ ├── en_MO.php │ │ │ ├── en_MP.php │ │ │ ├── en_MS.php │ │ │ ├── en_MT.php │ │ │ ├── en_MU.php │ │ │ ├── en_MW.php │ │ │ ├── en_MY.php │ │ │ ├── en_NA.php │ │ │ ├── en_NF.php │ │ │ ├── en_NG.php │ │ │ ├── en_NL.php │ │ │ ├── en_NR.php │ │ │ ├── en_NU.php │ │ │ ├── en_NZ.php │ │ │ ├── en_PG.php │ │ │ ├── en_PH.php │ │ │ ├── en_PK.php │ │ │ ├── en_PN.php │ │ │ ├── en_PR.php │ │ │ ├── en_PW.php │ │ │ ├── en_RW.php │ │ │ ├── en_SB.php │ │ │ ├── en_SC.php │ │ │ ├── en_SD.php │ │ │ ├── en_SE.php │ │ │ ├── en_SG.php │ │ │ ├── en_SH.php │ │ │ ├── en_SI.php │ │ │ ├── en_SL.php │ │ │ ├── en_SS.php │ │ │ ├── en_SX.php │ │ │ ├── en_SZ.php │ │ │ ├── en_TC.php │ │ │ ├── en_TK.php │ │ │ ├── en_TO.php │ │ │ ├── en_TT.php │ │ │ ├── en_TV.php │ │ │ ├── en_TZ.php │ │ │ ├── en_UG.php │ │ │ ├── en_UM.php │ │ │ ├── en_US.php │ │ │ ├── en_US_Posix.php │ │ │ ├── en_VC.php │ │ │ ├── en_VG.php │ │ │ ├── en_VI.php │ │ │ ├── en_VU.php │ │ │ ├── en_WS.php │ │ │ ├── en_ZA.php │ │ │ ├── en_ZM.php │ │ │ ├── en_ZW.php │ │ │ ├── eo.php │ │ │ ├── es.php │ │ │ ├── es_419.php │ │ │ ├── es_AR.php │ │ │ ├── es_BO.php │ │ │ ├── es_BR.php │ │ │ ├── es_BZ.php │ │ │ ├── es_CL.php │ │ │ ├── es_CO.php │ │ │ ├── es_CR.php │ │ │ ├── es_CU.php │ │ │ ├── es_DO.php │ │ │ ├── es_EA.php │ │ │ ├── es_EC.php │ │ │ ├── es_ES.php │ │ │ ├── es_GQ.php │ │ │ ├── es_GT.php │ │ │ ├── es_HN.php │ │ │ ├── es_IC.php │ │ │ ├── es_MX.php │ │ │ ├── es_NI.php │ │ │ ├── es_PA.php │ │ │ ├── es_PE.php │ │ │ ├── es_PH.php │ │ │ ├── es_PR.php │ │ │ ├── es_PY.php │ │ │ ├── es_SV.php │ │ │ ├── es_US.php │ │ │ ├── es_UY.php │ │ │ ├── es_VE.php │ │ │ ├── et.php │ │ │ ├── et_EE.php │ │ │ ├── eu.php │ │ │ ├── eu_ES.php │ │ │ ├── ewo.php │ │ │ ├── fa.php │ │ │ ├── fa_AF.php │ │ │ ├── fa_IR.php │ │ │ ├── ff.php │ │ │ ├── ff_CM.php │ │ │ ├── ff_GN.php │ │ │ ├── ff_MR.php │ │ │ ├── ff_SN.php │ │ │ ├── fi.php │ │ │ ├── fi_FI.php │ │ │ ├── fil.php │ │ │ ├── fil_PH.php │ │ │ ├── fo.php │ │ │ ├── fo_DK.php │ │ │ ├── fo_FO.php │ │ │ ├── fr.php │ │ │ ├── fr_BE.php │ │ │ ├── fr_BF.php │ │ │ ├── fr_BI.php │ │ │ ├── fr_BJ.php │ │ │ ├── fr_BL.php │ │ │ ├── fr_CA.php │ │ │ ├── fr_CD.php │ │ │ ├── fr_CF.php │ │ │ ├── fr_CG.php │ │ │ ├── fr_CH.php │ │ │ ├── fr_CI.php │ │ │ ├── fr_CM.php │ │ │ ├── fr_DJ.php │ │ │ ├── fr_DZ.php │ │ │ ├── fr_FR.php │ │ │ ├── fr_GA.php │ │ │ ├── fr_GF.php │ │ │ ├── fr_GN.php │ │ │ ├── fr_GP.php │ │ │ ├── fr_GQ.php │ │ │ ├── fr_HT.php │ │ │ ├── fr_KM.php │ │ │ ├── fr_LU.php │ │ │ ├── fr_MA.php │ │ │ ├── fr_MC.php │ │ │ ├── fr_MF.php │ │ │ ├── fr_MG.php │ │ │ ├── fr_ML.php │ │ │ ├── fr_MQ.php │ │ │ ├── fr_MR.php │ │ │ ├── fr_MU.php │ │ │ ├── fr_NC.php │ │ │ ├── fr_NE.php │ │ │ ├── fr_PF.php │ │ │ ├── fr_PM.php │ │ │ ├── fr_RE.php │ │ │ ├── fr_RW.php │ │ │ ├── fr_SC.php │ │ │ ├── fr_SN.php │ │ │ ├── fr_SY.php │ │ │ ├── fr_TD.php │ │ │ ├── fr_TG.php │ │ │ ├── fr_TN.php │ │ │ ├── fr_VU.php │ │ │ ├── fr_WF.php │ │ │ ├── fr_YT.php │ │ │ ├── fur.php │ │ │ ├── fur_IT.php │ │ │ ├── fy.php │ │ │ ├── fy_DE.php │ │ │ ├── fy_NL.php │ │ │ ├── ga.php │ │ │ ├── ga_IE.php │ │ │ ├── gd.php │ │ │ ├── gd_GB.php │ │ │ ├── gez.php │ │ │ ├── gez_ER.php │ │ │ ├── gez_ET.php │ │ │ ├── gl.php │ │ │ ├── gl_ES.php │ │ │ ├── gom.php │ │ │ ├── gom_Latn.php │ │ │ ├── gsw.php │ │ │ ├── gsw_CH.php │ │ │ ├── gsw_FR.php │ │ │ ├── gsw_LI.php │ │ │ ├── gu.php │ │ │ ├── gu_IN.php │ │ │ ├── guz.php │ │ │ ├── gv.php │ │ │ ├── gv_GB.php │ │ │ ├── ha.php │ │ │ ├── ha_GH.php │ │ │ ├── ha_NE.php │ │ │ ├── ha_NG.php │ │ │ ├── hak.php │ │ │ ├── hak_TW.php │ │ │ ├── haw.php │ │ │ ├── he.php │ │ │ ├── he_IL.php │ │ │ ├── hi.php │ │ │ ├── hi_IN.php │ │ │ ├── hif.php │ │ │ ├── hif_FJ.php │ │ │ ├── hne.php │ │ │ ├── hne_IN.php │ │ │ ├── hr.php │ │ │ ├── hr_BA.php │ │ │ ├── hr_HR.php │ │ │ ├── hsb.php │ │ │ ├── hsb_DE.php │ │ │ ├── ht.php │ │ │ ├── ht_HT.php │ │ │ ├── hu.php │ │ │ ├── hu_HU.php │ │ │ ├── hy.php │ │ │ ├── hy_AM.php │ │ │ ├── i18n.php │ │ │ ├── ia.php │ │ │ ├── ia_FR.php │ │ │ ├── id.php │ │ │ ├── id_ID.php │ │ │ ├── ig.php │ │ │ ├── ig_NG.php │ │ │ ├── ii.php │ │ │ ├── ik.php │ │ │ ├── ik_CA.php │ │ │ ├── in.php │ │ │ ├── is.php │ │ │ ├── is_IS.php │ │ │ ├── it.php │ │ │ ├── it_CH.php │ │ │ ├── it_IT.php │ │ │ ├── it_SM.php │ │ │ ├── it_VA.php │ │ │ ├── iu.php │ │ │ ├── iu_CA.php │ │ │ ├── iw.php │ │ │ ├── ja.php │ │ │ ├── ja_JP.php │ │ │ ├── jgo.php │ │ │ ├── jmc.php │ │ │ ├── jv.php │ │ │ ├── ka.php │ │ │ ├── ka_GE.php │ │ │ ├── kab.php │ │ │ ├── kab_DZ.php │ │ │ ├── kam.php │ │ │ ├── kde.php │ │ │ ├── kea.php │ │ │ ├── khq.php │ │ │ ├── ki.php │ │ │ ├── kk.php │ │ │ ├── kk_KZ.php │ │ │ ├── kkj.php │ │ │ ├── kl.php │ │ │ ├── kl_GL.php │ │ │ ├── kln.php │ │ │ ├── km.php │ │ │ ├── km_KH.php │ │ │ ├── kn.php │ │ │ ├── kn_IN.php │ │ │ ├── ko.php │ │ │ ├── ko_KP.php │ │ │ ├── ko_KR.php │ │ │ ├── kok.php │ │ │ ├── kok_IN.php │ │ │ ├── ks.php │ │ │ ├── ks_IN.php │ │ │ ├── ks_IN@devanagari.php │ │ │ ├── ksb.php │ │ │ ├── ksf.php │ │ │ ├── ksh.php │ │ │ ├── ku.php │ │ │ ├── ku_TR.php │ │ │ ├── kw.php │ │ │ ├── kw_GB.php │ │ │ ├── ky.php │ │ │ ├── ky_KG.php │ │ │ ├── lag.php │ │ │ ├── lb.php │ │ │ ├── lb_LU.php │ │ │ ├── lg.php │ │ │ ├── lg_UG.php │ │ │ ├── li.php │ │ │ ├── li_NL.php │ │ │ ├── lij.php │ │ │ ├── lij_IT.php │ │ │ ├── lkt.php │ │ │ ├── ln.php │ │ │ ├── ln_AO.php │ │ │ ├── ln_CD.php │ │ │ ├── ln_CF.php │ │ │ ├── ln_CG.php │ │ │ ├── lo.php │ │ │ ├── lo_LA.php │ │ │ ├── lrc.php │ │ │ ├── lrc_IQ.php │ │ │ ├── lt.php │ │ │ ├── lt_LT.php │ │ │ ├── lu.php │ │ │ ├── luo.php │ │ │ ├── luy.php │ │ │ ├── lv.php │ │ │ ├── lv_LV.php │ │ │ ├── lzh.php │ │ │ ├── lzh_TW.php │ │ │ ├── mag.php │ │ │ ├── mag_IN.php │ │ │ ├── mai.php │ │ │ ├── mai_IN.php │ │ │ ├── mas.php │ │ │ ├── mas_TZ.php │ │ │ ├── me.php │ │ │ ├── mer.php │ │ │ ├── mfe.php │ │ │ ├── mfe_MU.php │ │ │ ├── mg.php │ │ │ ├── mg_MG.php │ │ │ ├── mgh.php │ │ │ ├── mgo.php │ │ │ ├── mhr.php │ │ │ ├── mhr_RU.php │ │ │ ├── mi.php │ │ │ ├── mi_NZ.php │ │ │ ├── miq.php │ │ │ ├── miq_NI.php │ │ │ ├── mjw.php │ │ │ ├── mjw_IN.php │ │ │ ├── mk.php │ │ │ ├── mk_MK.php │ │ │ ├── ml.php │ │ │ ├── ml_IN.php │ │ │ ├── mn.php │ │ │ ├── mn_MN.php │ │ │ ├── mni.php │ │ │ ├── mni_IN.php │ │ │ ├── mo.php │ │ │ ├── mr.php │ │ │ ├── mr_IN.php │ │ │ ├── ms.php │ │ │ ├── ms_BN.php │ │ │ ├── ms_MY.php │ │ │ ├── ms_SG.php │ │ │ ├── mt.php │ │ │ ├── mt_MT.php │ │ │ ├── mua.php │ │ │ ├── my.php │ │ │ ├── my_MM.php │ │ │ ├── mzn.php │ │ │ ├── nan.php │ │ │ ├── nan_TW.php │ │ │ ├── nan_TW@latin.php │ │ │ ├── naq.php │ │ │ ├── nb.php │ │ │ ├── nb_NO.php │ │ │ ├── nb_SJ.php │ │ │ ├── nd.php │ │ │ ├── nds.php │ │ │ ├── nds_DE.php │ │ │ ├── nds_NL.php │ │ │ ├── ne.php │ │ │ ├── ne_IN.php │ │ │ ├── ne_NP.php │ │ │ ├── nhn.php │ │ │ ├── nhn_MX.php │ │ │ ├── niu.php │ │ │ ├── niu_NU.php │ │ │ ├── nl.php │ │ │ ├── nl_AW.php │ │ │ ├── nl_BE.php │ │ │ ├── nl_BQ.php │ │ │ ├── nl_CW.php │ │ │ ├── nl_NL.php │ │ │ ├── nl_SR.php │ │ │ ├── nl_SX.php │ │ │ ├── nmg.php │ │ │ ├── nn.php │ │ │ ├── nn_NO.php │ │ │ ├── nnh.php │ │ │ ├── no.php │ │ │ ├── nr.php │ │ │ ├── nr_ZA.php │ │ │ ├── nso.php │ │ │ ├── nso_ZA.php │ │ │ ├── nus.php │ │ │ ├── nyn.php │ │ │ ├── oc.php │ │ │ ├── oc_FR.php │ │ │ ├── om.php │ │ │ ├── om_ET.php │ │ │ ├── om_KE.php │ │ │ ├── or.php │ │ │ ├── or_IN.php │ │ │ ├── os.php │ │ │ ├── os_RU.php │ │ │ ├── pa.php │ │ │ ├── pa_Arab.php │ │ │ ├── pa_Guru.php │ │ │ ├── pa_IN.php │ │ │ ├── pa_PK.php │ │ │ ├── pap.php │ │ │ ├── pap_AW.php │ │ │ ├── pap_CW.php │ │ │ ├── pl.php │ │ │ ├── pl_PL.php │ │ │ ├── prg.php │ │ │ ├── ps.php │ │ │ ├── ps_AF.php │ │ │ ├── pt.php │ │ │ ├── pt_AO.php │ │ │ ├── pt_BR.php │ │ │ ├── pt_CH.php │ │ │ ├── pt_CV.php │ │ │ ├── pt_GQ.php │ │ │ ├── pt_GW.php │ │ │ ├── pt_LU.php │ │ │ ├── pt_MO.php │ │ │ ├── pt_MZ.php │ │ │ ├── pt_PT.php │ │ │ ├── pt_ST.php │ │ │ ├── pt_TL.php │ │ │ ├── qu.php │ │ │ ├── qu_BO.php │ │ │ ├── qu_EC.php │ │ │ ├── quz.php │ │ │ ├── quz_PE.php │ │ │ ├── raj.php │ │ │ ├── raj_IN.php │ │ │ ├── rm.php │ │ │ ├── rn.php │ │ │ ├── ro.php │ │ │ ├── ro_MD.php │ │ │ ├── ro_RO.php │ │ │ ├── rof.php │ │ │ ├── ru.php │ │ │ ├── ru_BY.php │ │ │ ├── ru_KG.php │ │ │ ├── ru_KZ.php │ │ │ ├── ru_MD.php │ │ │ ├── ru_RU.php │ │ │ ├── ru_UA.php │ │ │ ├── rw.php │ │ │ ├── rw_RW.php │ │ │ ├── rwk.php │ │ │ ├── sa.php │ │ │ ├── sa_IN.php │ │ │ ├── sah.php │ │ │ ├── sah_RU.php │ │ │ ├── saq.php │ │ │ ├── sat.php │ │ │ ├── sat_IN.php │ │ │ ├── sbp.php │ │ │ ├── sc.php │ │ │ ├── sc_IT.php │ │ │ ├── scr.php │ │ │ ├── sd.php │ │ │ ├── sd_IN.php │ │ │ ├── sd_IN@devanagari.php │ │ │ ├── se.php │ │ │ ├── se_FI.php │ │ │ ├── se_NO.php │ │ │ ├── se_SE.php │ │ │ ├── seh.php │ │ │ ├── ses.php │ │ │ ├── sg.php │ │ │ ├── sgs.php │ │ │ ├── sgs_LT.php │ │ │ ├── sh.php │ │ │ ├── shi.php │ │ │ ├── shi_Latn.php │ │ │ ├── shi_Tfng.php │ │ │ ├── shn.php │ │ │ ├── shn_MM.php │ │ │ ├── shs.php │ │ │ ├── shs_CA.php │ │ │ ├── si.php │ │ │ ├── si_LK.php │ │ │ ├── sid.php │ │ │ ├── sid_ET.php │ │ │ ├── sk.php │ │ │ ├── sk_SK.php │ │ │ ├── sl.php │ │ │ ├── sl_SI.php │ │ │ ├── sm.php │ │ │ ├── sm_WS.php │ │ │ ├── smn.php │ │ │ ├── sn.php │ │ │ ├── so.php │ │ │ ├── so_DJ.php │ │ │ ├── so_ET.php │ │ │ ├── so_KE.php │ │ │ ├── so_SO.php │ │ │ ├── sq.php │ │ │ ├── sq_AL.php │ │ │ ├── sq_MK.php │ │ │ ├── sq_XK.php │ │ │ ├── sr.php │ │ │ ├── sr_Cyrl.php │ │ │ ├── sr_Cyrl_BA.php │ │ │ ├── sr_Cyrl_ME.php │ │ │ ├── sr_Cyrl_XK.php │ │ │ ├── sr_Latn.php │ │ │ ├── sr_Latn_BA.php │ │ │ ├── sr_Latn_ME.php │ │ │ ├── sr_Latn_XK.php │ │ │ ├── sr_ME.php │ │ │ ├── sr_RS.php │ │ │ ├── sr_RS@latin.php │ │ │ ├── ss.php │ │ │ ├── ss_ZA.php │ │ │ ├── st.php │ │ │ ├── st_ZA.php │ │ │ ├── sv.php │ │ │ ├── sv_AX.php │ │ │ ├── sv_FI.php │ │ │ ├── sv_SE.php │ │ │ ├── sw.php │ │ │ ├── sw_CD.php │ │ │ ├── sw_KE.php │ │ │ ├── sw_TZ.php │ │ │ ├── sw_UG.php │ │ │ ├── szl.php │ │ │ ├── szl_PL.php │ │ │ ├── ta.php │ │ │ ├── ta_IN.php │ │ │ ├── ta_LK.php │ │ │ ├── ta_MY.php │ │ │ ├── ta_SG.php │ │ │ ├── tcy.php │ │ │ ├── tcy_IN.php │ │ │ ├── te.php │ │ │ ├── te_IN.php │ │ │ ├── teo.php │ │ │ ├── teo_KE.php │ │ │ ├── tet.php │ │ │ ├── tg.php │ │ │ ├── tg_TJ.php │ │ │ ├── th.php │ │ │ ├── th_TH.php │ │ │ ├── the.php │ │ │ ├── the_NP.php │ │ │ ├── ti.php │ │ │ ├── ti_ER.php │ │ │ ├── ti_ET.php │ │ │ ├── tig.php │ │ │ ├── tig_ER.php │ │ │ ├── tk.php │ │ │ ├── tk_TM.php │ │ │ ├── tl.php │ │ │ ├── tl_PH.php │ │ │ ├── tlh.php │ │ │ ├── tn.php │ │ │ ├── tn_ZA.php │ │ │ ├── to.php │ │ │ ├── to_TO.php │ │ │ ├── tpi.php │ │ │ ├── tpi_PG.php │ │ │ ├── tr.php │ │ │ ├── tr_CY.php │ │ │ ├── tr_TR.php │ │ │ ├── ts.php │ │ │ ├── ts_ZA.php │ │ │ ├── tt.php │ │ │ ├── tt_RU.php │ │ │ ├── tt_RU@iqtelif.php │ │ │ ├── twq.php │ │ │ ├── tzl.php │ │ │ ├── tzm.php │ │ │ ├── tzm_Latn.php │ │ │ ├── ug.php │ │ │ ├── ug_CN.php │ │ │ ├── uk.php │ │ │ ├── uk_UA.php │ │ │ ├── unm.php │ │ │ ├── unm_US.php │ │ │ ├── ur.php │ │ │ ├── ur_IN.php │ │ │ ├── ur_PK.php │ │ │ ├── uz.php │ │ │ ├── uz_Arab.php │ │ │ ├── uz_Cyrl.php │ │ │ ├── uz_Latn.php │ │ │ ├── uz_UZ.php │ │ │ ├── uz_UZ@cyrillic.php │ │ │ ├── vai.php │ │ │ ├── vai_Latn.php │ │ │ ├── vai_Vaii.php │ │ │ ├── ve.php │ │ │ ├── ve_ZA.php │ │ │ ├── vi.php │ │ │ ├── vi_VN.php │ │ │ ├── vo.php │ │ │ ├── vun.php │ │ │ ├── wa.php │ │ │ ├── wa_BE.php │ │ │ ├── wae.php │ │ │ ├── wae_CH.php │ │ │ ├── wal.php │ │ │ ├── wal_ET.php │ │ │ ├── wo.php │ │ │ ├── wo_SN.php │ │ │ ├── xh.php │ │ │ ├── xh_ZA.php │ │ │ ├── xog.php │ │ │ ├── yav.php │ │ │ ├── yi.php │ │ │ ├── yi_US.php │ │ │ ├── yo.php │ │ │ ├── yo_BJ.php │ │ │ ├── yo_NG.php │ │ │ ├── yue.php │ │ │ ├── yue_HK.php │ │ │ ├── yue_Hans.php │ │ │ ├── yue_Hant.php │ │ │ ├── yuw.php │ │ │ ├── yuw_PG.php │ │ │ ├── zgh.php │ │ │ ├── zh.php │ │ │ ├── zh_CN.php │ │ │ ├── zh_HK.php │ │ │ ├── zh_Hans.php │ │ │ ├── zh_Hans_HK.php │ │ │ ├── zh_Hans_MO.php │ │ │ ├── zh_Hans_SG.php │ │ │ ├── zh_Hant.php │ │ │ ├── zh_Hant_HK.php │ │ │ ├── zh_Hant_MO.php │ │ │ ├── zh_MO.php │ │ │ ├── zh_SG.php │ │ │ ├── zh_TW.php │ │ │ ├── zh_YUE.php │ │ │ ├── zu.php │ │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel/ │ │ │ └── ServiceProvider.php │ │ ├── List/ │ │ │ ├── languages.php │ │ │ └── regions.php │ │ ├── Traits/ │ │ │ ├── Boundaries.php │ │ │ ├── Comparison.php │ │ │ ├── Converter.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── Difference.php │ │ │ ├── Localization.php │ │ │ ├── Macro.php │ │ │ ├── Modifiers.php │ │ │ ├── Mutability.php │ │ │ ├── Options.php │ │ │ ├── Rounding.php │ │ │ ├── Serialization.php │ │ │ ├── Test.php │ │ │ ├── Timestamp.php │ │ │ ├── Units.php │ │ │ └── Week.php │ │ └── Translator.php │ ├── nunomaduro/ │ │ └── collision/ │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ ├── phpunit.xml.dist │ │ └── src/ │ │ ├── Adapters/ │ │ │ ├── Laravel/ │ │ │ │ ├── CollisionServiceProvider.php │ │ │ │ ├── ExceptionHandler.php │ │ │ │ └── Inspector.php │ │ │ └── Phpunit/ │ │ │ └── Listener.php │ │ ├── ArgumentFormatter.php │ │ ├── Contracts/ │ │ │ ├── Adapters/ │ │ │ │ └── Phpunit/ │ │ │ │ └── Listener.php │ │ │ ├── ArgumentFormatter.php │ │ │ ├── Handler.php │ │ │ ├── Highlighter.php │ │ │ ├── Provider.php │ │ │ └── Writer.php │ │ ├── Handler.php │ │ ├── Highlighter.php │ │ ├── Provider.php │ │ └── Writer.php │ ├── opis/ │ │ └── closure/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── functions.php │ │ └── src/ │ │ ├── Analyzer.php │ │ ├── ClosureContext.php │ │ ├── ClosureScope.php │ │ ├── ClosureStream.php │ │ ├── ISecurityProvider.php │ │ ├── ReflectionClosure.php │ │ ├── SecurityException.php │ │ ├── SecurityProvider.php │ │ ├── SelfReference.php │ │ └── SerializableClosure.php │ ├── paragonie/ │ │ └── random_compat/ │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist/ │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib/ │ │ │ └── random.php │ │ ├── other/ │ │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml │ ├── peinhu/ │ │ └── aetherupload-laravel/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LICENSE_996 │ │ ├── README.md │ │ ├── assets/ │ │ │ └── aetherupload.js │ │ ├── composer.json │ │ ├── config/ │ │ │ └── aetherupload.php │ │ ├── middleware/ │ │ │ └── AetherUploadCORS.php │ │ ├── routes/ │ │ │ └── routes.php │ │ ├── src/ │ │ │ ├── AetherUploadServiceProvider.php │ │ │ ├── ConfigMapper.php │ │ │ ├── Console/ │ │ │ │ ├── BuildRedisHashesCommand.php │ │ │ │ ├── CleanUpDirectoryCommand.php │ │ │ │ ├── ListGroupDirectoryCommand.php │ │ │ │ └── PublishCommand.php │ │ │ ├── Header.php │ │ │ ├── MimeType.php │ │ │ ├── PartialResource.php │ │ │ ├── RedisAdapter.php │ │ │ ├── RedisClient.php │ │ │ ├── RedisSavedPath.php │ │ │ ├── Resource.php │ │ │ ├── ResourceController.php │ │ │ ├── Responser.php │ │ │ ├── SavedPathResolver.php │ │ │ ├── UploadController.php │ │ │ ├── Util.php │ │ │ └── helpers.php │ │ ├── translations/ │ │ │ ├── en/ │ │ │ │ └── messages.php │ │ │ └── zh/ │ │ │ └── messages.php │ │ ├── uploads/ │ │ │ ├── aetherupload_file/ │ │ │ │ └── .keep │ │ │ └── aetherupload_header/ │ │ │ └── .keep │ │ └── views/ │ │ └── example.blade.php │ ├── phpdocumentor/ │ │ ├── reflection-common/ │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src/ │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ │ ├── reflection-docblock/ │ │ │ ├── .coveralls.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── easy-coding-standard.neon │ │ │ └── src/ │ │ │ ├── DocBlock/ │ │ │ │ ├── Description.php │ │ │ │ ├── DescriptionFactory.php │ │ │ │ ├── ExampleFinder.php │ │ │ │ ├── Serializer.php │ │ │ │ ├── StandardTagFactory.php │ │ │ │ ├── Tag.php │ │ │ │ ├── TagFactory.php │ │ │ │ └── Tags/ │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory/ │ │ │ │ │ ├── StaticMethod.php │ │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter/ │ │ │ │ │ ├── AlignFormatter.php │ │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference/ │ │ │ │ │ ├── Fqsen.php │ │ │ │ │ ├── Reference.php │ │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlock.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ │ └── type-resolver/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types/ │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ ├── phpspec/ │ │ └── prophecy/ │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Prophecy/ │ │ ├── Argument/ │ │ │ ├── ArgumentsWildcard.php │ │ │ └── Token/ │ │ │ ├── AnyValueToken.php │ │ │ ├── AnyValuesToken.php │ │ │ ├── ApproximateValueToken.php │ │ │ ├── ArrayCountToken.php │ │ │ ├── ArrayEntryToken.php │ │ │ ├── ArrayEveryEntryToken.php │ │ │ ├── CallbackToken.php │ │ │ ├── ExactValueToken.php │ │ │ ├── IdenticalValueToken.php │ │ │ ├── LogicalAndToken.php │ │ │ ├── LogicalNotToken.php │ │ │ ├── ObjectStateToken.php │ │ │ ├── StringContainsToken.php │ │ │ ├── TokenInterface.php │ │ │ └── TypeToken.php │ │ ├── Argument.php │ │ ├── Call/ │ │ │ ├── Call.php │ │ │ └── CallCenter.php │ │ ├── Comparator/ │ │ │ ├── ClosureComparator.php │ │ │ ├── Factory.php │ │ │ └── ProphecyComparator.php │ │ ├── Doubler/ │ │ │ ├── CachedDoubler.php │ │ │ ├── ClassPatch/ │ │ │ │ ├── ClassPatchInterface.php │ │ │ │ ├── DisableConstructorPatch.php │ │ │ │ ├── HhvmExceptionPatch.php │ │ │ │ ├── KeywordPatch.php │ │ │ │ ├── MagicCallPatch.php │ │ │ │ ├── ProphecySubjectPatch.php │ │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ │ ├── SplFileInfoPatch.php │ │ │ │ ├── ThrowablePatch.php │ │ │ │ └── TraversablePatch.php │ │ │ ├── DoubleInterface.php │ │ │ ├── Doubler.php │ │ │ ├── Generator/ │ │ │ │ ├── ClassCodeGenerator.php │ │ │ │ ├── ClassCreator.php │ │ │ │ ├── ClassMirror.php │ │ │ │ ├── Node/ │ │ │ │ │ ├── ArgumentNode.php │ │ │ │ │ ├── ClassNode.php │ │ │ │ │ └── MethodNode.php │ │ │ │ ├── ReflectionInterface.php │ │ │ │ └── TypeHintReference.php │ │ │ ├── LazyDouble.php │ │ │ └── NameGenerator.php │ │ ├── Exception/ │ │ │ ├── Call/ │ │ │ │ └── UnexpectedCallException.php │ │ │ ├── Doubler/ │ │ │ │ ├── ClassCreatorException.php │ │ │ │ ├── ClassMirrorException.php │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── DoubleException.php │ │ │ │ ├── DoublerException.php │ │ │ │ ├── InterfaceNotFoundException.php │ │ │ │ ├── MethodNotExtendableException.php │ │ │ │ ├── MethodNotFoundException.php │ │ │ │ └── ReturnByReferenceException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── Prediction/ │ │ │ │ ├── AggregateException.php │ │ │ │ ├── FailedPredictionException.php │ │ │ │ ├── NoCallsException.php │ │ │ │ ├── PredictionException.php │ │ │ │ ├── UnexpectedCallsCountException.php │ │ │ │ └── UnexpectedCallsException.php │ │ │ └── Prophecy/ │ │ │ ├── MethodProphecyException.php │ │ │ ├── ObjectProphecyException.php │ │ │ └── ProphecyException.php │ │ ├── PhpDocumentor/ │ │ │ ├── ClassAndInterfaceTagRetriever.php │ │ │ ├── ClassTagRetriever.php │ │ │ ├── LegacyClassTagRetriever.php │ │ │ └── MethodTagRetrieverInterface.php │ │ ├── Prediction/ │ │ │ ├── CallPrediction.php │ │ │ ├── CallTimesPrediction.php │ │ │ ├── CallbackPrediction.php │ │ │ ├── NoCallsPrediction.php │ │ │ └── PredictionInterface.php │ │ ├── Promise/ │ │ │ ├── CallbackPromise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── ReturnArgumentPromise.php │ │ │ ├── ReturnPromise.php │ │ │ └── ThrowPromise.php │ │ ├── Prophecy/ │ │ │ ├── MethodProphecy.php │ │ │ ├── ObjectProphecy.php │ │ │ ├── ProphecyInterface.php │ │ │ ├── ProphecySubjectInterface.php │ │ │ ├── Revealer.php │ │ │ └── RevealerInterface.php │ │ ├── Prophet.php │ │ └── Util/ │ │ ├── ExportUtil.php │ │ └── StringUtil.php │ ├── predis/ │ │ └── predis/ │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── autoload.php │ │ ├── bin/ │ │ │ ├── create-command-test │ │ │ ├── create-pear │ │ │ ├── create-phar │ │ │ └── create-single-file │ │ ├── composer.json │ │ ├── examples/ │ │ │ ├── custom_cluster_distributor.php │ │ │ ├── debuggable_connection.php │ │ │ ├── dispatcher_loop.php │ │ │ ├── executing_redis_commands.php │ │ │ ├── key_prefixing.php │ │ │ ├── lua_scripting_abstraction.php │ │ │ ├── monitor_consumer.php │ │ │ ├── pipelining_commands.php │ │ │ ├── pubsub_consumer.php │ │ │ ├── redis_collections_iterators.php │ │ │ ├── replication_complex.php │ │ │ ├── replication_sentinel.php │ │ │ ├── replication_simple.php │ │ │ ├── session_handler.php │ │ │ ├── shared.php │ │ │ └── transaction_using_cas.php │ │ ├── package.ini │ │ └── src/ │ │ ├── Autoloader.php │ │ ├── Client.php │ │ ├── ClientContextInterface.php │ │ ├── ClientException.php │ │ ├── ClientInterface.php │ │ ├── Cluster/ │ │ │ ├── ClusterStrategy.php │ │ │ ├── Distributor/ │ │ │ │ ├── DistributorInterface.php │ │ │ │ ├── EmptyRingException.php │ │ │ │ ├── HashRing.php │ │ │ │ └── KetamaRing.php │ │ │ ├── Hash/ │ │ │ │ ├── CRC16.php │ │ │ │ └── HashGeneratorInterface.php │ │ │ ├── PredisStrategy.php │ │ │ ├── RedisStrategy.php │ │ │ └── StrategyInterface.php │ │ ├── Collection/ │ │ │ └── Iterator/ │ │ │ ├── CursorBasedIterator.php │ │ │ ├── HashKey.php │ │ │ ├── Keyspace.php │ │ │ ├── ListKey.php │ │ │ ├── SetKey.php │ │ │ └── SortedSetKey.php │ │ ├── Command/ │ │ │ ├── Command.php │ │ │ ├── CommandInterface.php │ │ │ ├── ConnectionAuth.php │ │ │ ├── ConnectionEcho.php │ │ │ ├── ConnectionPing.php │ │ │ ├── ConnectionQuit.php │ │ │ ├── ConnectionSelect.php │ │ │ ├── GeospatialGeoAdd.php │ │ │ ├── GeospatialGeoDist.php │ │ │ ├── GeospatialGeoHash.php │ │ │ ├── GeospatialGeoPos.php │ │ │ ├── GeospatialGeoRadius.php │ │ │ ├── GeospatialGeoRadiusByMember.php │ │ │ ├── HashDelete.php │ │ │ ├── HashExists.php │ │ │ ├── HashGet.php │ │ │ ├── HashGetAll.php │ │ │ ├── HashGetMultiple.php │ │ │ ├── HashIncrementBy.php │ │ │ ├── HashIncrementByFloat.php │ │ │ ├── HashKeys.php │ │ │ ├── HashLength.php │ │ │ ├── HashScan.php │ │ │ ├── HashSet.php │ │ │ ├── HashSetMultiple.php │ │ │ ├── HashSetPreserve.php │ │ │ ├── HashStringLength.php │ │ │ ├── HashValues.php │ │ │ ├── HyperLogLogAdd.php │ │ │ ├── HyperLogLogCount.php │ │ │ ├── HyperLogLogMerge.php │ │ │ ├── KeyDelete.php │ │ │ ├── KeyDump.php │ │ │ ├── KeyExists.php │ │ │ ├── KeyExpire.php │ │ │ ├── KeyExpireAt.php │ │ │ ├── KeyKeys.php │ │ │ ├── KeyMigrate.php │ │ │ ├── KeyMove.php │ │ │ ├── KeyPersist.php │ │ │ ├── KeyPreciseExpire.php │ │ │ ├── KeyPreciseExpireAt.php │ │ │ ├── KeyPreciseTimeToLive.php │ │ │ ├── KeyRandom.php │ │ │ ├── KeyRename.php │ │ │ ├── KeyRenamePreserve.php │ │ │ ├── KeyRestore.php │ │ │ ├── KeyScan.php │ │ │ ├── KeySort.php │ │ │ ├── KeyTimeToLive.php │ │ │ ├── KeyType.php │ │ │ ├── ListIndex.php │ │ │ ├── ListInsert.php │ │ │ ├── ListLength.php │ │ │ ├── ListPopFirst.php │ │ │ ├── ListPopFirstBlocking.php │ │ │ ├── ListPopLast.php │ │ │ ├── ListPopLastBlocking.php │ │ │ ├── ListPopLastPushHead.php │ │ │ ├── ListPopLastPushHeadBlocking.php │ │ │ ├── ListPushHead.php │ │ │ ├── ListPushHeadX.php │ │ │ ├── ListPushTail.php │ │ │ ├── ListPushTailX.php │ │ │ ├── ListRange.php │ │ │ ├── ListRemove.php │ │ │ ├── ListSet.php │ │ │ ├── ListTrim.php │ │ │ ├── PrefixableCommandInterface.php │ │ │ ├── Processor/ │ │ │ │ ├── KeyPrefixProcessor.php │ │ │ │ ├── ProcessorChain.php │ │ │ │ └── ProcessorInterface.php │ │ │ ├── PubSubPublish.php │ │ │ ├── PubSubPubsub.php │ │ │ ├── PubSubSubscribe.php │ │ │ ├── PubSubSubscribeByPattern.php │ │ │ ├── PubSubUnsubscribe.php │ │ │ ├── PubSubUnsubscribeByPattern.php │ │ │ ├── RawCommand.php │ │ │ ├── ScriptCommand.php │ │ │ ├── ServerBackgroundRewriteAOF.php │ │ │ ├── ServerBackgroundSave.php │ │ │ ├── ServerClient.php │ │ │ ├── ServerCommand.php │ │ │ ├── ServerConfig.php │ │ │ ├── ServerDatabaseSize.php │ │ │ ├── ServerEval.php │ │ │ ├── ServerEvalSHA.php │ │ │ ├── ServerFlushAll.php │ │ │ ├── ServerFlushDatabase.php │ │ │ ├── ServerInfo.php │ │ │ ├── ServerInfoV26x.php │ │ │ ├── ServerLastSave.php │ │ │ ├── ServerMonitor.php │ │ │ ├── ServerObject.php │ │ │ ├── ServerSave.php │ │ │ ├── ServerScript.php │ │ │ ├── ServerSentinel.php │ │ │ ├── ServerShutdown.php │ │ │ ├── ServerSlaveOf.php │ │ │ ├── ServerSlowlog.php │ │ │ ├── ServerTime.php │ │ │ ├── SetAdd.php │ │ │ ├── SetCardinality.php │ │ │ ├── SetDifference.php │ │ │ ├── SetDifferenceStore.php │ │ │ ├── SetIntersection.php │ │ │ ├── SetIntersectionStore.php │ │ │ ├── SetIsMember.php │ │ │ ├── SetMembers.php │ │ │ ├── SetMove.php │ │ │ ├── SetPop.php │ │ │ ├── SetRandomMember.php │ │ │ ├── SetRemove.php │ │ │ ├── SetScan.php │ │ │ ├── SetUnion.php │ │ │ ├── SetUnionStore.php │ │ │ ├── StringAppend.php │ │ │ ├── StringBitCount.php │ │ │ ├── StringBitField.php │ │ │ ├── StringBitOp.php │ │ │ ├── StringBitPos.php │ │ │ ├── StringDecrement.php │ │ │ ├── StringDecrementBy.php │ │ │ ├── StringGet.php │ │ │ ├── StringGetBit.php │ │ │ ├── StringGetMultiple.php │ │ │ ├── StringGetRange.php │ │ │ ├── StringGetSet.php │ │ │ ├── StringIncrement.php │ │ │ ├── StringIncrementBy.php │ │ │ ├── StringIncrementByFloat.php │ │ │ ├── StringPreciseSetExpire.php │ │ │ ├── StringSet.php │ │ │ ├── StringSetBit.php │ │ │ ├── StringSetExpire.php │ │ │ ├── StringSetMultiple.php │ │ │ ├── StringSetMultiplePreserve.php │ │ │ ├── StringSetPreserve.php │ │ │ ├── StringSetRange.php │ │ │ ├── StringStrlen.php │ │ │ ├── StringSubstr.php │ │ │ ├── TransactionDiscard.php │ │ │ ├── TransactionExec.php │ │ │ ├── TransactionMulti.php │ │ │ ├── TransactionUnwatch.php │ │ │ ├── TransactionWatch.php │ │ │ ├── ZSetAdd.php │ │ │ ├── ZSetCardinality.php │ │ │ ├── ZSetCount.php │ │ │ ├── ZSetIncrementBy.php │ │ │ ├── ZSetIntersectionStore.php │ │ │ ├── ZSetLexCount.php │ │ │ ├── ZSetRange.php │ │ │ ├── ZSetRangeByLex.php │ │ │ ├── ZSetRangeByScore.php │ │ │ ├── ZSetRank.php │ │ │ ├── ZSetRemove.php │ │ │ ├── ZSetRemoveRangeByLex.php │ │ │ ├── ZSetRemoveRangeByRank.php │ │ │ ├── ZSetRemoveRangeByScore.php │ │ │ ├── ZSetReverseRange.php │ │ │ ├── ZSetReverseRangeByLex.php │ │ │ ├── ZSetReverseRangeByScore.php │ │ │ ├── ZSetReverseRank.php │ │ │ ├── ZSetScan.php │ │ │ ├── ZSetScore.php │ │ │ └── ZSetUnionStore.php │ │ ├── CommunicationException.php │ │ ├── Configuration/ │ │ │ ├── ClusterOption.php │ │ │ ├── ConnectionFactoryOption.php │ │ │ ├── ExceptionsOption.php │ │ │ ├── OptionInterface.php │ │ │ ├── Options.php │ │ │ ├── OptionsInterface.php │ │ │ ├── PrefixOption.php │ │ │ ├── ProfileOption.php │ │ │ └── ReplicationOption.php │ │ ├── Connection/ │ │ │ ├── AbstractConnection.php │ │ │ ├── Aggregate/ │ │ │ │ ├── ClusterInterface.php │ │ │ │ ├── MasterSlaveReplication.php │ │ │ │ ├── PredisCluster.php │ │ │ │ ├── RedisCluster.php │ │ │ │ ├── ReplicationInterface.php │ │ │ │ └── SentinelReplication.php │ │ │ ├── AggregateConnectionInterface.php │ │ │ ├── CompositeConnectionInterface.php │ │ │ ├── CompositeStreamConnection.php │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Factory.php │ │ │ ├── FactoryInterface.php │ │ │ ├── NodeConnectionInterface.php │ │ │ ├── Parameters.php │ │ │ ├── ParametersInterface.php │ │ │ ├── PhpiredisSocketConnection.php │ │ │ ├── PhpiredisStreamConnection.php │ │ │ ├── StreamConnection.php │ │ │ └── WebdisConnection.php │ │ ├── Monitor/ │ │ │ └── Consumer.php │ │ ├── NotSupportedException.php │ │ ├── Pipeline/ │ │ │ ├── Atomic.php │ │ │ ├── ConnectionErrorProof.php │ │ │ ├── FireAndForget.php │ │ │ └── Pipeline.php │ │ ├── PredisException.php │ │ ├── Profile/ │ │ │ ├── Factory.php │ │ │ ├── ProfileInterface.php │ │ │ ├── RedisProfile.php │ │ │ ├── RedisUnstable.php │ │ │ ├── RedisVersion200.php │ │ │ ├── RedisVersion220.php │ │ │ ├── RedisVersion240.php │ │ │ ├── RedisVersion260.php │ │ │ ├── RedisVersion280.php │ │ │ ├── RedisVersion300.php │ │ │ └── RedisVersion320.php │ │ ├── Protocol/ │ │ │ ├── ProtocolException.php │ │ │ ├── ProtocolProcessorInterface.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseReaderInterface.php │ │ │ └── Text/ │ │ │ ├── CompositeProtocolProcessor.php │ │ │ ├── Handler/ │ │ │ │ ├── BulkResponse.php │ │ │ │ ├── ErrorResponse.php │ │ │ │ ├── IntegerResponse.php │ │ │ │ ├── MultiBulkResponse.php │ │ │ │ ├── ResponseHandlerInterface.php │ │ │ │ ├── StatusResponse.php │ │ │ │ └── StreamableMultiBulkResponse.php │ │ │ ├── ProtocolProcessor.php │ │ │ ├── RequestSerializer.php │ │ │ └── ResponseReader.php │ │ ├── PubSub/ │ │ │ ├── AbstractConsumer.php │ │ │ ├── Consumer.php │ │ │ └── DispatcherLoop.php │ │ ├── Replication/ │ │ │ ├── MissingMasterException.php │ │ │ ├── ReplicationStrategy.php │ │ │ └── RoleException.php │ │ ├── Response/ │ │ │ ├── Error.php │ │ │ ├── ErrorInterface.php │ │ │ ├── Iterator/ │ │ │ │ ├── MultiBulk.php │ │ │ │ ├── MultiBulkIterator.php │ │ │ │ └── MultiBulkTuple.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerException.php │ │ │ └── Status.php │ │ ├── Session/ │ │ │ └── Handler.php │ │ └── Transaction/ │ │ ├── AbortedMultiExecException.php │ │ ├── MultiExec.php │ │ └── MultiExecState.php │ ├── psr/ │ │ └── simple-cache/ │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php │ ├── ramsey/ │ │ └── uuid/ │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ ├── BinaryUtils.php │ │ ├── Builder/ │ │ │ ├── DefaultUuidBuilder.php │ │ │ ├── DegradedUuidBuilder.php │ │ │ └── UuidBuilderInterface.php │ │ ├── Codec/ │ │ │ ├── CodecInterface.php │ │ │ ├── GuidStringCodec.php │ │ │ ├── OrderedTimeCodec.php │ │ │ ├── StringCodec.php │ │ │ ├── TimestampFirstCombCodec.php │ │ │ └── TimestampLastCombCodec.php │ │ ├── Converter/ │ │ │ ├── Number/ │ │ │ │ ├── BigNumberConverter.php │ │ │ │ └── DegradedNumberConverter.php │ │ │ ├── NumberConverterInterface.php │ │ │ ├── Time/ │ │ │ │ ├── BigNumberTimeConverter.php │ │ │ │ ├── DegradedTimeConverter.php │ │ │ │ └── PhpTimeConverter.php │ │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── Exception/ │ │ │ ├── InvalidUuidStringException.php │ │ │ ├── UnsatisfiedDependencyException.php │ │ │ └── UnsupportedOperationException.php │ │ ├── FeatureSet.php │ │ ├── Generator/ │ │ │ ├── CombGenerator.php │ │ │ ├── DefaultTimeGenerator.php │ │ │ ├── MtRandGenerator.php │ │ │ ├── OpenSslGenerator.php │ │ │ ├── PeclUuidRandomGenerator.php │ │ │ ├── PeclUuidTimeGenerator.php │ │ │ ├── RandomBytesGenerator.php │ │ │ ├── RandomGeneratorFactory.php │ │ │ ├── RandomGeneratorInterface.php │ │ │ ├── RandomLibAdapter.php │ │ │ ├── SodiumRandomGenerator.php │ │ │ ├── TimeGeneratorFactory.php │ │ │ └── TimeGeneratorInterface.php │ │ ├── Provider/ │ │ │ ├── Node/ │ │ │ │ ├── FallbackNodeProvider.php │ │ │ │ ├── RandomNodeProvider.php │ │ │ │ └── SystemNodeProvider.php │ │ │ ├── NodeProviderInterface.php │ │ │ ├── Time/ │ │ │ │ ├── FixedTimeProvider.php │ │ │ │ └── SystemTimeProvider.php │ │ │ └── TimeProviderInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ └── UuidInterface.php │ ├── sebastian/ │ │ └── version/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Version.php │ ├── spatie/ │ │ └── laravel-pjax/ │ │ ├── .editorconfig │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src/ │ │ └── Middleware/ │ │ └── FilterIfPjax.php │ ├── symfony/ │ │ ├── event-dispatcher-contracts/ │ │ │ ├── Event.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── polyfill-ctype/ │ │ │ ├── Ctype.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-iconv/ │ │ │ ├── Iconv.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── charset/ │ │ │ │ ├── from.big5.php │ │ │ │ ├── from.cp037.php │ │ │ │ ├── from.cp1006.php │ │ │ │ ├── from.cp1026.php │ │ │ │ ├── from.cp424.php │ │ │ │ ├── from.cp437.php │ │ │ │ ├── from.cp500.php │ │ │ │ ├── from.cp737.php │ │ │ │ ├── from.cp775.php │ │ │ │ ├── from.cp850.php │ │ │ │ ├── from.cp852.php │ │ │ │ ├── from.cp855.php │ │ │ │ ├── from.cp856.php │ │ │ │ ├── from.cp857.php │ │ │ │ ├── from.cp860.php │ │ │ │ ├── from.cp861.php │ │ │ │ ├── from.cp862.php │ │ │ │ ├── from.cp863.php │ │ │ │ ├── from.cp864.php │ │ │ │ ├── from.cp865.php │ │ │ │ ├── from.cp866.php │ │ │ │ ├── from.cp869.php │ │ │ │ ├── from.cp874.php │ │ │ │ ├── from.cp875.php │ │ │ │ ├── from.cp932.php │ │ │ │ ├── from.cp936.php │ │ │ │ ├── from.cp949.php │ │ │ │ ├── from.cp950.php │ │ │ │ ├── from.iso-8859-1.php │ │ │ │ ├── from.iso-8859-10.php │ │ │ │ ├── from.iso-8859-11.php │ │ │ │ ├── from.iso-8859-13.php │ │ │ │ ├── from.iso-8859-14.php │ │ │ │ ├── from.iso-8859-15.php │ │ │ │ ├── from.iso-8859-16.php │ │ │ │ ├── from.iso-8859-2.php │ │ │ │ ├── from.iso-8859-3.php │ │ │ │ ├── from.iso-8859-4.php │ │ │ │ ├── from.iso-8859-5.php │ │ │ │ ├── from.iso-8859-6.php │ │ │ │ ├── from.iso-8859-7.php │ │ │ │ ├── from.iso-8859-8.php │ │ │ │ ├── from.iso-8859-9.php │ │ │ │ ├── from.koi8-r.php │ │ │ │ ├── from.koi8-u.php │ │ │ │ ├── from.us-ascii.php │ │ │ │ ├── from.windows-1250.php │ │ │ │ ├── from.windows-1251.php │ │ │ │ ├── from.windows-1252.php │ │ │ │ ├── from.windows-1253.php │ │ │ │ ├── from.windows-1254.php │ │ │ │ ├── from.windows-1255.php │ │ │ │ ├── from.windows-1256.php │ │ │ │ ├── from.windows-1257.php │ │ │ │ ├── from.windows-1258.php │ │ │ │ └── translit.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-intl-idn/ │ │ │ ├── Idn.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-mbstring/ │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── unidata/ │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-php72/ │ │ │ ├── LICENSE │ │ │ ├── Php72.php │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-php73/ │ │ │ ├── LICENSE │ │ │ ├── Php73.php │ │ │ ├── README.md │ │ │ ├── Resources/ │ │ │ │ └── stubs/ │ │ │ │ └── JsonException.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── service-contracts/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ResetInterface.php │ │ │ ├── ServiceLocatorTrait.php │ │ │ ├── ServiceProviderInterface.php │ │ │ ├── ServiceSubscriberInterface.php │ │ │ ├── ServiceSubscriberTrait.php │ │ │ ├── Test/ │ │ │ │ └── ServiceLocatorTest.php │ │ │ └── composer.json │ │ └── translation-contracts/ │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test/ │ │ │ └── TranslatorTest.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ ├── tijsverkoyen/ │ │ └── css-to-inline-styles/ │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src/ │ │ ├── Css/ │ │ │ ├── Processor.php │ │ │ ├── Property/ │ │ │ │ ├── Processor.php │ │ │ │ └── Property.php │ │ │ └── Rule/ │ │ │ ├── Processor.php │ │ │ └── Rule.php │ │ └── CssToInlineStyles.php │ ├── vlucas/ │ │ └── phpdotenv/ │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ └── src/ │ │ ├── Dotenv.php │ │ ├── Environment/ │ │ │ ├── AbstractVariables.php │ │ │ ├── Adapter/ │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── ApacheAdapter.php │ │ │ │ ├── ArrayAdapter.php │ │ │ │ ├── EnvConstAdapter.php │ │ │ │ ├── PutenvAdapter.php │ │ │ │ └── ServerConstAdapter.php │ │ │ ├── DotenvFactory.php │ │ │ ├── DotenvVariables.php │ │ │ ├── FactoryInterface.php │ │ │ └── VariablesInterface.php │ │ ├── Exception/ │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidFileException.php │ │ │ ├── InvalidPathException.php │ │ │ └── ValidationException.php │ │ ├── Lines.php │ │ ├── Loader.php │ │ ├── Parser.php │ │ ├── Regex/ │ │ │ ├── Error.php │ │ │ ├── Regex.php │ │ │ ├── Result.php │ │ │ └── Success.php │ │ └── Validator.php │ └── webmozart/ │ └── assert/ │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src/ │ └── Assert.php └── webpack.mix.js