├── .gitignore ├── .htaccess ├── 996License ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── crud │ │ ├── admin.php │ │ ├── admin_v1.php │ │ ├── category.php │ │ ├── code.php │ │ ├── customer.php │ │ ├── customer.php.bak │ │ ├── d_module.php │ │ ├── demo.php │ │ ├── menu.php │ │ ├── post.php │ │ └── post.php.bak │ ├── database.php │ ├── datasource.php.tpl │ ├── local │ │ ├── app.php │ │ └── database.php │ ├── mail.php │ ├── packages │ │ └── .gitkeep │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── BaseController.php │ ├── DevelopController.php │ ├── SiteController.php │ ├── UserController.php │ └── admin │ │ ├── AdminController.php │ │ ├── CodeController.php │ │ ├── CustomerController.php │ │ ├── DDataSourceController.php │ │ ├── DMenuController.php │ │ ├── DModuleController.php │ │ ├── DemoController.php │ │ └── PostController.php ├── database │ ├── .gitignore │ ├── migrations │ │ └── .gitkeep │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── filters.php ├── lang │ ├── cn │ │ ├── mess.php │ │ ├── pagination.php │ │ └── reminders.php │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── library │ ├── ConfigUtils.php │ ├── DataSourceHelpers.php │ ├── FileUtils.php │ ├── FormControl.php │ ├── Request.class.php │ ├── SiteHelpers.php │ ├── StringUtils.php │ ├── Supports.php │ ├── master │ │ ├── MasterSite.php │ │ └── master.conf.php │ └── testSiteHelpers.php ├── models │ ├── BaseModel.php │ ├── Category.php │ ├── Code.php │ ├── Customer.php │ ├── DMenu.php │ ├── DModule.php │ ├── Demo.php │ ├── Post.php │ └── User.php ├── module_routes.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── cache │ │ └── 35 │ │ │ └── a2 │ │ │ └── 35a2864c314e4367eb1684bfe126a967 │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── services.json │ ├── sessions │ │ └── .gitignore │ └── views │ │ ├── 04db5c25ed316b98664f1a0aa055644b │ │ ├── 090f6643d1ccca1aec37fd0e5753ee5b │ │ ├── 125c2fe5cba44b8364a27be52725f950 │ │ ├── 17d0b93e106a28c598487daba166d631 │ │ ├── 1c06178348f957c4de9c83b1a09f33b4 │ │ ├── 1d23a4e85cb0091bf79cfab722429d2e │ │ ├── 24284b3794ed1ca4ca15909fec5b989a │ │ ├── 244b14460c4c5933e98876e1414fe9df │ │ ├── 272118078e883471d321782cf02f2400 │ │ ├── 2ace06969d56d4ce0607736973abac9e │ │ ├── 2acfae60672fa0d872e5237e31e743e6 │ │ ├── 2c780c5d0e654a01e052beff79c72540 │ │ ├── 2e870ff59d52a666e25192c3905b3dd1 │ │ ├── 3732b6e00ce5e43eed23766476c4c3ed │ │ ├── 3d420d9bd104a7936ae92c9b6bfe539d │ │ ├── 3d523d1a2edd8818a4b5c4a28647706c │ │ ├── 44c7729219b51ad0a28ee59f0ba24fcc │ │ ├── 49dc4a6e7ff18ea152596e079c5def73 │ │ ├── 4bb199a297f69cd164d580101228c31a │ │ ├── 53bed5173f0b1796f9fb79b8f3d11623 │ │ ├── 5f719b5ddeedb5d55ef3be79d88cb8a8 │ │ ├── 61cec02cdb7e035102185465983e9234 │ │ ├── 63e20c3cd03e0613306ab58cf91b4e89 │ │ ├── 64b071426d2b0d1148c792e124f9dabe │ │ ├── 6c976ebf7ca9db73d54f07764354cdea │ │ ├── 6ea38bdd12455d8d1ebfda3b2031c4b3 │ │ ├── 6f57ba89f552fec42601a75a96a41684 │ │ ├── 739733f4d8487daa2e3d496d6cecd2c9 │ │ ├── 859100c5802cbf4c1268555d4197c242 │ │ ├── 864836ea0a5f71604f134ed0d3a671f1 │ │ ├── 8af5f57ffb7c08af7502bac6144e099c │ │ ├── 8d22e896dd59fdd40925ebf811a43a63 │ │ ├── 8fc8970bb3b4aa1dc4c9a9437313964b │ │ ├── 900717aff932ea140fd20fc6abf0ca2b │ │ ├── 91632ac5b1ebc9661bd39b63c7343ebf │ │ ├── 9724772bd6ea2edaf6e5ee08abe451a6 │ │ ├── 97471e96b55bda33a46ad4f04e731f14 │ │ ├── 9ea06b0dec4def8ad612f7b755c37cb0 │ │ ├── ad268816a7d9c8d574f99423f958ebd7 │ │ ├── b9a05c4fe7a26874aedd450da162f127 │ │ ├── c132447a9a01741c6c7ab7e1153ac212 │ │ ├── c1a628292aba28e014ce9aff6c5a22be │ │ ├── c215d7c7a7898e414137a796b98cd523 │ │ ├── c3c69e4eb4b16c9665b68b3a14434670 │ │ ├── d921e9dc240c6726a3c69af88e0be1e8 │ │ ├── dcef7cade1813e744817c899fc7428c3 │ │ ├── dd5a3e7ddcb051ac6877af9fc5e74ddd │ │ ├── e1776dbda3e9cf1297e7f28cecd6b6c2 │ │ ├── eafd2d8d9c4cf6042f1ec55937789019 │ │ ├── f1eb841e33f32e6714f17edfa0df02aa │ │ ├── f4e0345a66228bb49d7e5e151b854070 │ │ ├── f6bc9e66cac649163c9165c2ac695db7 │ │ ├── f7cc0185218c288a597d13e6824b7732 │ │ └── fc9f1f09e6d3f6dcedaec091e8a39947 ├── template │ ├── _form.tpl │ ├── _list.tpl │ ├── config.tpl │ ├── controller.tpl │ ├── form.tpl │ ├── list.tpl │ └── model.tpl └── views │ ├── admin │ ├── category │ │ ├── _form.blade.php │ │ └── _list.blade.php │ ├── code │ │ ├── _form.blade.php │ │ └── _list.blade.php │ ├── controls │ │ └── text.blade.php │ ├── core │ │ ├── form.blade.php │ │ └── list.blade.php │ ├── customer │ │ ├── _form.blade.php │ │ └── _list.blade.php │ ├── d_data_source │ │ ├── edit.blade.php │ │ └── list.blade.php │ ├── d_menu │ │ └── manager.blade.php │ ├── d_module │ │ ├── _form.blade.php │ │ ├── _list.blade.php │ │ ├── field_config.blade.php │ │ ├── fields_config.blade.php │ │ ├── list.blade.php │ │ └── list_item_links.blade.php │ ├── demo │ │ ├── _form.blade.php │ │ └── _list.blade.php │ ├── help.blade.php │ ├── index.blade.php │ └── post │ │ ├── _form.blade.php │ │ └── _list.blade.php │ ├── components │ └── relation_select.blade.php │ ├── layouts │ ├── admin │ │ ├── breadcrumb.blade.php │ │ ├── foot.blade.php │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── main.blade.php │ │ ├── menu.blade.php │ │ ├── modals.blade.php │ │ ├── sidebar.blade.php │ │ └── top.blade.php │ ├── footer.blade.php │ ├── frame.blade.php │ ├── head.blade.php │ ├── main.blade.php │ ├── menu.blade.php │ ├── right.blade.php │ ├── site.blade.php │ └── test.blade.php │ └── site │ ├── 404.blade.php │ ├── error404.blade.php │ ├── index.blade.php │ └── login.blade.php ├── artisan ├── assets ├── css │ ├── bootstrap.css │ ├── bs-less │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── bs-rtl-less │ │ ├── button-groups-rtl.less │ │ ├── carousel-rtl.less │ │ ├── grid-rtl.less │ │ ├── list-group-rtl.less │ │ ├── merged-rtl.less │ │ ├── mixins.less │ │ ├── neon.less │ │ ├── type-rtl.less │ │ └── variables.less │ ├── css │ │ └── neon-theme.css │ ├── custom.css │ ├── font-icons │ │ ├── entypo │ │ │ ├── css │ │ │ │ ├── animation.css │ │ │ │ ├── entypo-codes.css │ │ │ │ ├── entypo-embedded.css │ │ │ │ ├── entypo-ie7-codes.css │ │ │ │ ├── entypo-ie7.css │ │ │ │ └── entypo.css │ │ │ └── font │ │ │ │ ├── entypo.eot │ │ │ │ ├── entypo.svg │ │ │ │ ├── entypo.ttf │ │ │ │ └── entypo.woff │ │ └── font-awesome │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── ie.css │ ├── ie.less │ ├── index.html │ ├── less-separated │ │ ├── bootstrap.less │ │ ├── neon-core.less │ │ ├── neon-forms.less │ │ └── neon-theme.less │ ├── neon-core.css │ ├── neon-forms.css │ ├── neon-less │ │ ├── 404.less │ │ ├── blockquote.less │ │ ├── boxed.less │ │ ├── calendar-2.less │ │ ├── calendar.less │ │ ├── chat.less │ │ ├── checkbox-replacement.less │ │ ├── comments.less │ │ ├── datatables.less │ │ ├── daterangepicker.less │ │ ├── form-wizard.less │ │ ├── gallery.less │ │ ├── icheck.less │ │ ├── inbox.less │ │ ├── invoice.less │ │ ├── language-selector.less │ │ ├── login.less │ │ ├── members.less │ │ ├── menu.less │ │ ├── miscellaneous.less │ │ ├── multiselect.less │ │ ├── neon-mixins.less │ │ ├── nestable.less │ │ ├── notes.less │ │ ├── page-transitions.less │ │ ├── portlets.less │ │ ├── profile-info.less │ │ ├── profile.less │ │ ├── range-slider.less │ │ ├── responsive.less │ │ ├── search.less │ │ ├── select2.less │ │ ├── selectboxit.less │ │ ├── skin-variants.less │ │ ├── tabs-vertical.less │ │ ├── tiles.less │ │ ├── tocify.less │ │ ├── typeahead.less │ │ ├── variables.less │ │ ├── vertical-timeline.less │ │ └── wysihtml5.less │ ├── neon-rtl.css │ ├── neon-rtl.less │ ├── neon-theme.css │ ├── neon.css │ ├── neon.less │ ├── other-less │ │ ├── bootstrap-switch.less │ │ ├── bootstrap-tagsinput.less │ │ ├── bs-switch-deps │ │ │ ├── mixins.less │ │ │ └── variables.less │ │ ├── colorpicker.less │ │ ├── datepicker.less │ │ ├── fileinput.less │ │ ├── lesshat.less │ │ ├── morris.core.less │ │ ├── perfect-scrollbar.less │ │ ├── timepicker.less │ │ └── toastr.less │ ├── skins │ │ ├── black.css │ │ ├── black.less │ │ ├── black.min.css │ │ ├── blue.css │ │ ├── blue.less │ │ ├── blue.min.css │ │ ├── cafe.css │ │ ├── cafe.less │ │ ├── cafe.min.css │ │ ├── facebook.css │ │ ├── facebook.less │ │ ├── green.css │ │ ├── green.less │ │ ├── green.min.css │ │ ├── purple.css │ │ ├── purple.less │ │ ├── purple.min.css │ │ ├── red.css │ │ ├── red.less │ │ ├── red.min.css │ │ ├── white.css │ │ ├── white.less │ │ ├── white.min.css │ │ ├── yellow.css │ │ ├── yellow.less │ │ └── yellow.min.css │ └── wysihtml5-color.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── index.html │ └── montserrat │ │ ├── font.css │ │ ├── generator_config.txt │ │ ├── montserrat-bold-demo.html │ │ ├── montserrat-bold-webfont.eot │ │ ├── montserrat-bold-webfont.svg │ │ ├── montserrat-bold-webfont.ttf │ │ ├── montserrat-bold-webfont.woff │ │ ├── montserrat-regular-demo.html │ │ ├── montserrat-regular-webfont.eot │ │ ├── montserrat-regular-webfont.svg │ │ ├── montserrat-regular-webfont.ttf │ │ ├── montserrat-regular-webfont.woff │ │ └── specimen_files │ │ ├── easytabs.js │ │ ├── grid_12-825-55-15.css │ │ └── specimen_stylesheet.css ├── images │ ├── PhoXo1.gif │ ├── album-image-1.jpg │ ├── album-thumb-1.jpg │ ├── attach-1.png │ ├── attach-2.png │ ├── boxed-pattern-1.png │ ├── boxed-pattern-2.png │ ├── boxed-pattern-3.png │ ├── burjkhalifa.jpg │ ├── china.png │ ├── colorpicker │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ └── saturation.png │ ├── crop-1.jpg │ ├── crop-2.jpg │ ├── crop-3.jpg │ ├── crop-4.jpg │ ├── crop-5.jpg │ ├── dbuilder.gif │ ├── dj.jpg │ ├── english.png │ ├── flag-al.png │ ├── flag-de.png │ ├── flag-es.png │ ├── flag-fr.png │ ├── flag-uk.png │ ├── highlights-1-skins.png │ ├── highlights-2-0-bootstrap.png │ ├── highlights-2-1-icheck.png │ ├── highlights-2-10-rtl-support.png │ ├── highlights-2-2-new-editor.png │ ├── highlights-2-3-language-switcher.png │ ├── highlights-2-4-register-form.png │ ├── highlights-2-5-right-menu.png │ ├── highlights-2-6-login-form.png │ ├── highlights-2-7-left-chat.png │ ├── highlights-2-8-spinners.png │ ├── highlights-2-9-search-results.png │ ├── highlights-2-profile.png │ ├── highlights-3-1-comments.png │ ├── highlights-3-2-members.png │ ├── highlights-3-2-newpost.png │ ├── highlights-3-3-nestable.png │ ├── highlights-3-4-page-loading.png │ ├── highlights-3-5-settings-page.png │ ├── highlights-3-6-treeview.png │ ├── highlights-3-dashboard.png │ ├── highlights-3-front-end.png │ ├── highlights-3-notes.png │ ├── highlights-3-photoshop.png │ ├── highlights-4-1-boxed.png │ ├── highlights-4-datatables.png │ ├── highlights-5-profile_left.png │ ├── highlights-6-crop.png │ ├── highlights-7-gallery.png │ ├── highlights-8-timeline.png │ ├── index.html │ ├── laborator.png │ ├── loader-1.gif │ ├── loader-2.gif │ ├── lockscreen-user.png │ ├── logo-horizontal.png │ ├── logo-light.png │ ├── logo-light@2x.png │ ├── logo.png │ ├── logo@2x.png │ ├── member.jpg │ ├── notes-lines.png │ ├── profile-picture.png │ ├── rc.jpg │ ├── sample-al.png │ ├── sample-au.png │ ├── sample-crop-2.png │ ├── sample-crop.jpg │ ├── sample-it.png │ ├── sample.jpg │ ├── thumb-1.png │ ├── thumb-1@2x.png │ ├── thumb-2.png │ ├── thumb-3.png │ ├── thumb-4.png │ ├── timeline-image-1.png │ ├── timeline-image-2.png │ ├── timeline-image-3.png │ └── timeline-image-4.png ├── js │ ├── aci-tree │ │ ├── aciTree-checkbox.html │ │ ├── aciTree-drag-drop.html │ │ ├── aciTree-drag-outside.html │ │ ├── aciTree-radio.html │ │ ├── aciTree.html │ │ ├── aciTree.jquery.json │ │ ├── css │ │ │ ├── aciTree.css │ │ │ └── demo.css │ │ ├── documentation.html │ │ ├── gpl-v2-licence.txt │ │ ├── image │ │ │ ├── drag-drop-rtl.png │ │ │ ├── drag-drop.png │ │ │ ├── eyes.png │ │ │ ├── load-node.gif │ │ │ ├── load-root.gif │ │ │ ├── tree-arrow-big-rtl.png │ │ │ ├── tree-arrow-big.png │ │ │ ├── tree-arrow-small-rtl.png │ │ │ ├── tree-arrow-small.png │ │ │ ├── tree-big-rtl.png │ │ │ ├── tree-big.png │ │ │ ├── tree-branch.png │ │ │ ├── tree-check-big-rtl.png │ │ │ ├── tree-check-big.png │ │ │ ├── tree-check-small-rtl.png │ │ │ ├── tree-check-small.png │ │ │ ├── tree-small-rtl.png │ │ │ └── tree-small.png │ │ ├── js │ │ │ ├── jquery.aciFragment.min.js │ │ │ ├── jquery.aciPlugin.min.js │ │ │ ├── jquery.aciSortable.min.js │ │ │ ├── jquery.aciTree.checkbox.js │ │ │ ├── jquery.aciTree.column.js │ │ │ ├── jquery.aciTree.core.js │ │ │ ├── jquery.aciTree.debug.js │ │ │ ├── jquery.aciTree.dom.js │ │ │ ├── jquery.aciTree.editable.js │ │ │ ├── jquery.aciTree.hash.js │ │ │ ├── jquery.aciTree.min.js │ │ │ ├── jquery.aciTree.persist.js │ │ │ ├── jquery.aciTree.radio.js │ │ │ ├── jquery.aciTree.selectable.js │ │ │ ├── jquery.aciTree.sortable.js │ │ │ ├── jquery.aciTree.utils.js │ │ │ ├── jquery.min.js │ │ │ └── jstorage.min.js │ │ ├── json │ │ │ ├── checkbox-radio-button.json │ │ │ ├── checkbox.json │ │ │ ├── radio-button.json │ │ │ └── sample.json │ │ ├── mit-licence.txt │ │ ├── php │ │ │ ├── FsTree.php │ │ │ ├── Tree.php │ │ │ ├── aciTree.php │ │ │ ├── hugeTree.php │ │ │ └── tree │ │ │ │ ├── Item 1 │ │ │ │ └── document 1.txt │ │ │ │ ├── Item 2 │ │ │ │ ├── Item 1 │ │ │ │ │ └── document 2.txt │ │ │ │ └── Item 3 │ │ │ │ │ ├── document 3.txt │ │ │ │ │ ├── document 4.txt │ │ │ │ │ └── document 5.txt │ │ │ │ ├── Item 5 │ │ │ │ ├── document 6.txt │ │ │ │ ├── document 7.txt │ │ │ │ ├── document 8.txt │ │ │ │ └── document 9.txt │ │ │ │ ├── Item 7 │ │ │ │ ├── Item 2 │ │ │ │ │ └── Item 1 │ │ │ │ │ │ └── document 14.txt │ │ │ │ ├── Item 4 │ │ │ │ │ ├── Item 1 │ │ │ │ │ │ ├── document 11.txt │ │ │ │ │ │ └── document 12.txt │ │ │ │ │ └── Item 2 │ │ │ │ │ │ └── document 13.txt │ │ │ │ └── document 15.txt │ │ │ │ ├── Item 8 │ │ │ │ └── document 10.txt │ │ │ │ ├── Sample Image.jpg │ │ │ │ ├── document a.txt │ │ │ │ ├── document b.txt │ │ │ │ └── document c.txt │ │ ├── readme.txt │ │ └── sample │ │ │ ├── index.html │ │ │ ├── sample.php │ │ │ ├── selected-event-extended.html │ │ │ ├── selected-event.html │ │ │ ├── using-file-hash.html │ │ │ ├── using-file-links.html │ │ │ ├── using-hash.html │ │ │ ├── using-links.html │ │ │ └── using-the-api.html │ ├── additional-methods.min.js │ ├── api.js │ ├── bootstrap-colorpicker.min.js │ ├── bootstrap-datepicker.js │ ├── bootstrap-switch.min.js │ ├── bootstrap-tagsinput.min.js │ ├── bootstrap-timepicker.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ ├── codemirror │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addon │ │ │ ├── comment │ │ │ │ ├── comment.js │ │ │ │ └── continuecomment.js │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── display │ │ │ │ ├── fullscreen.css │ │ │ │ ├── fullscreen.js │ │ │ │ └── placeholder.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 │ │ │ │ └── xml-fold.js │ │ │ ├── hint │ │ │ │ ├── anyword-hint.js │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── pig-hint.js │ │ │ │ ├── python-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 │ │ │ ├── merge │ │ │ │ ├── dep │ │ │ │ │ └── diff_match_patch.js │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── mode │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ ├── multiplex_test.js │ │ │ │ └── overlay.js │ │ │ ├── runmode │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── scroll │ │ │ │ └── scrollpastend.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── selection │ │ │ │ ├── active-line.js │ │ │ │ └── mark-selection.js │ │ │ ├── tern │ │ │ │ ├── tern.css │ │ │ │ ├── tern.js │ │ │ │ └── worker.js │ │ │ └── wrap │ │ │ │ └── hardwrap.js │ │ ├── bin │ │ │ ├── authors.sh │ │ │ ├── compress │ │ │ ├── lint │ │ │ ├── release │ │ │ └── source-highlight │ │ ├── bower.json │ │ ├── demo │ │ │ ├── activeline.html │ │ │ ├── anywordhint.html │ │ │ ├── bidi.html │ │ │ ├── btree.html │ │ │ ├── buffers.html │ │ │ ├── changemode.html │ │ │ ├── closebrackets.html │ │ │ ├── closetag.html │ │ │ ├── complete.html │ │ │ ├── emacs.html │ │ │ ├── folding.html │ │ │ ├── fullscreen.html │ │ │ ├── hardwrap.html │ │ │ ├── html5complete.html │ │ │ ├── indentwrap.html │ │ │ ├── lint.html │ │ │ ├── loadmode.html │ │ │ ├── marker.html │ │ │ ├── markselection.html │ │ │ ├── matchhighlighter.html │ │ │ ├── matchtags.html │ │ │ ├── merge.html │ │ │ ├── multiplex.html │ │ │ ├── mustache.html │ │ │ ├── placeholder.html │ │ │ ├── preview.html │ │ │ ├── resize.html │ │ │ ├── runmode.html │ │ │ ├── search.html │ │ │ ├── spanaffectswrapping_shim.html │ │ │ ├── tern.html │ │ │ ├── theme.html │ │ │ ├── trailingspace.html │ │ │ ├── variableheight.html │ │ │ ├── vim.html │ │ │ ├── visibletabs.html │ │ │ ├── widget.html │ │ │ └── xmlcomplete.html │ │ ├── doc │ │ │ ├── activebookmark.js │ │ │ ├── compress.html │ │ │ ├── docs.css │ │ │ ├── internals.html │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── manual.html │ │ │ ├── realworld.html │ │ │ ├── releases.html │ │ │ ├── reporting.html │ │ │ ├── upgrade_v2.2.html │ │ │ └── upgrade_v3.html │ │ ├── index.html │ │ ├── keymap │ │ │ ├── emacs.js │ │ │ ├── extra.js │ │ │ └── vim.js │ │ ├── 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 │ │ │ ├── d │ │ │ │ ├── d.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── dtd │ │ │ │ ├── dtd.js │ │ │ │ └── index.html │ │ │ ├── ecl │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── eiffel │ │ │ │ ├── eiffel.js │ │ │ │ └── index.html │ │ │ ├── erlang │ │ │ │ ├── erlang.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 │ │ │ ├── index.html │ │ │ ├── jade │ │ │ │ ├── index.html │ │ │ │ └── jade.js │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── julia │ │ │ │ ├── index.html │ │ │ │ └── julia.js │ │ │ ├── less │ │ │ │ ├── index.html │ │ │ │ └── less.js │ │ │ ├── livescript │ │ │ │ ├── index.html │ │ │ │ ├── livescript.js │ │ │ │ └── livescript.ls │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── meta.js │ │ │ ├── mirc │ │ │ │ ├── index.html │ │ │ │ └── mirc.js │ │ │ ├── mllike │ │ │ │ ├── index.html │ │ │ │ └── mllike.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 │ │ │ ├── pig │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── properties │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── python │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── q │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ ├── changes.js │ │ │ │ │ └── index.html │ │ │ │ └── spec │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spec.css │ │ │ │ │ └── spec.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── index.html │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── sass │ │ │ │ ├── index.html │ │ │ │ └── sass.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ │ ├── index.html │ │ │ │ └── shell.js │ │ │ ├── sieve │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── smartymixed │ │ │ │ ├── index.html │ │ │ │ └── smartymixed.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── tcl │ │ │ │ ├── index.html │ │ │ │ └── tcl.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── toml │ │ │ │ ├── index.html │ │ │ │ └── toml.js │ │ │ ├── turtle │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── vb │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ │ ├── index.html │ │ │ │ └── verilog.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ ├── package.json │ │ ├── test │ │ │ ├── comment_test.js │ │ │ ├── doc_test.js │ │ │ ├── driver.js │ │ │ ├── emacs_test.js │ │ │ ├── index.html │ │ │ ├── lint │ │ │ │ ├── acorn.js │ │ │ │ ├── lint.js │ │ │ │ └── walk.js │ │ │ ├── mode_test.css │ │ │ ├── mode_test.js │ │ │ ├── phantom_driver.js │ │ │ ├── run.js │ │ │ ├── search_test.js │ │ │ ├── test.js │ │ │ └── vim_test.js │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── mbo.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── night.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ └── xq-light.css │ ├── commons.js │ ├── cookies.min.js │ ├── custom.js │ ├── dataTables.bootstrap.js │ ├── datatables │ │ ├── TableTools.min.js │ │ ├── ZeroClipboard.js │ │ ├── copy_csv_xls_pdf.swf │ │ ├── jquery.dataTables.columnFilter.js │ │ ├── lodash.min.js │ │ └── responsive │ │ │ ├── css │ │ │ └── datatables.responsive.css │ │ │ ├── img │ │ │ ├── minus.png │ │ │ └── plus.png │ │ │ └── js │ │ │ └── datatables.responsive.js │ ├── daterangepicker │ │ ├── .gitignore │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ ├── dropzone │ │ ├── dropzone.css │ │ ├── dropzone.js │ │ ├── spritemap.png │ │ └── spritemap@2x.png │ ├── fileinput.js │ ├── fullcalendar-2 │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── background-events.html │ │ │ ├── basic-views.html │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json.html │ │ │ ├── json │ │ │ │ └── events.json │ │ │ ├── languages.html │ │ │ ├── php │ │ │ │ ├── get-events.php │ │ │ │ ├── get-timezones.php │ │ │ │ └── utils.php │ │ │ ├── selectable.html │ │ │ ├── theme.html │ │ │ └── timezones.html │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ ├── gcal.js │ │ ├── lang-all.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── min │ │ │ │ ├── ar-ma-min.js │ │ │ │ ├── ar-min.js │ │ │ │ ├── ar-sa-min.js │ │ │ │ ├── bg-min.js │ │ │ │ ├── ca-min.js │ │ │ │ ├── cs-min.js │ │ │ │ ├── da-min.js │ │ │ │ ├── de-at-min.js │ │ │ │ ├── de-min.js │ │ │ │ ├── el-min.js │ │ │ │ ├── en-au-min.js │ │ │ │ ├── en-ca-min.js │ │ │ │ ├── en-gb-min.js │ │ │ │ ├── es-min.js │ │ │ │ ├── fa-min.js │ │ │ │ ├── fi-min.js │ │ │ │ ├── fr-ca-min.js │ │ │ │ ├── fr-min.js │ │ │ │ ├── hi-min.js │ │ │ │ ├── hr-min.js │ │ │ │ ├── hu-min.js │ │ │ │ ├── id-min.js │ │ │ │ ├── is-min.js │ │ │ │ ├── it-min.js │ │ │ │ ├── ja-min.js │ │ │ │ ├── ko-min.js │ │ │ │ ├── lt-min.js │ │ │ │ ├── lv-min.js │ │ │ │ ├── nl-min.js │ │ │ │ ├── pl-min.js │ │ │ │ ├── pt-br-min.js │ │ │ │ ├── pt-min.js │ │ │ │ ├── ro-min.js │ │ │ │ ├── ru-min.js │ │ │ │ ├── sk-min.js │ │ │ │ ├── sl-min.js │ │ │ │ ├── sr-cyrl-min.js │ │ │ │ ├── sr-min.js │ │ │ │ ├── sv-min.js │ │ │ │ ├── th-min.js │ │ │ │ ├── tr-min.js │ │ │ │ ├── uk-min.js │ │ │ │ ├── vi-min.js │ │ │ │ ├── zh-cn-min.js │ │ │ │ └── zh-tw-min.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── lib │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui.min.css │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.min.js │ │ │ ├── min │ │ │ │ ├── jquery-ui.custom.min-min.js │ │ │ │ ├── jquery.min-min.js │ │ │ │ └── moment.min-min.js │ │ │ └── moment.min.js │ │ └── license.txt │ ├── fullcalendar │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ └── gcal.js │ ├── gsap │ │ ├── TimelineLite.min.js │ │ ├── TimelineMax.min.js │ │ ├── TweenLite.min.js │ │ ├── TweenMax.min.js │ │ ├── easing │ │ │ └── EasePack.min.js │ │ ├── jquery.gsap.min.js │ │ ├── main-gsap.js │ │ ├── plugins │ │ │ ├── AttrPlugin.min.js │ │ │ ├── BezierPlugin.min.js │ │ │ ├── CSSPlugin.min.js │ │ │ ├── CSSRulePlugin.min.js │ │ │ ├── ColorPropsPlugin.min.js │ │ │ ├── DirectionalRotationPlugin.min.js │ │ │ ├── EaselPlugin.min.js │ │ │ ├── KineticPlugin.min.js │ │ │ ├── Physics2DPlugin.min.js │ │ │ ├── PhysicsPropsPlugin.min.js │ │ │ ├── RaphaelPlugin.min.js │ │ │ ├── RoundPropsPlugin.min.js │ │ │ ├── ScrambleTextPlugin.min.js │ │ │ ├── ScrollToPlugin.min.js │ │ │ ├── TextPlugin.min.js │ │ │ └── ThrowPropsPlugin.min.js │ │ └── utils │ │ │ ├── Draggable.min.js │ │ │ └── SplitText.min.js │ ├── icheck │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ └── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── ie8-responsive-file-warning.js │ ├── index.html │ ├── isotope │ │ ├── isotope.css │ │ └── jquery.isotope.min.js │ ├── jcrop │ │ ├── Jcrop.gif │ │ ├── jquery.Jcrop.css │ │ ├── jquery.Jcrop.js │ │ ├── jquery.Jcrop.min.css │ │ ├── jquery.Jcrop.min.js │ │ └── jquery.color.js │ ├── joinable.js │ ├── jquery-1.11.0.min.js │ ├── jquery-ui │ │ ├── css │ │ │ └── no-theme │ │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ └── js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-ui-1.10.3.custom.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ └── jquery-ui-1.10.3.minimal.min.js │ ├── jquery.bootstrap.wizard.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.form.min.js │ ├── jquery.inputmask.bundle.min.js │ ├── jquery.knob.js │ ├── jquery.multi-select.js │ ├── jquery.nestable.js │ ├── jquery.nicescroll.min.js │ ├── jquery.peity.min.js │ ├── jquery.slimscroll.min.js │ ├── jquery.sparkline.min.js │ ├── jquery.transit.min.js │ ├── jquery.transit.minx.js │ ├── jquery.validate.min.js │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-ar-merc-en.js │ │ ├── jquery-jvectormap-at-merc-en.js │ │ ├── jquery-jvectormap-au-mill-en.js │ │ ├── jquery-jvectormap-be-merc-en.js │ │ ├── jquery-jvectormap-ca-lcc-en.js │ │ ├── jquery-jvectormap-ch-mill-en.js │ │ ├── jquery-jvectormap-cn-mill-en.js │ │ ├── jquery-jvectormap-de-merc-en.js │ │ ├── jquery-jvectormap-dk-merc-en.js │ │ ├── jquery-jvectormap-es-merc-en.js │ │ ├── jquery-jvectormap-europe-merc-en.js │ │ ├── jquery-jvectormap-europe-mill-en.js │ │ ├── jquery-jvectormap-fr-merc-en.js │ │ ├── jquery-jvectormap-it-merc-en.js │ │ ├── jquery-jvectormap-nl-merc-en.js │ │ ├── jquery-jvectormap-uk-merc-en.js │ │ ├── jquery-jvectormap-us-aea-en.js │ │ ├── jquery-jvectormap-us-ny-newyork-mill-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ ├── less-1.5.0.min.js │ ├── marked.js │ ├── min │ │ └── jquery.dataTables.min-min.js │ ├── morris.min.js │ ├── neon-calendar-2.js │ ├── neon-calendar.js │ ├── neon-charts.js │ ├── neon-chat.js │ ├── neon-demo.js │ ├── neon-forgotpassword.js │ ├── neon-login.js │ ├── neon-mail.js │ ├── neon-notes.js │ ├── neon-register.js │ ├── neon-skins.js │ ├── raphael-min.js │ ├── resizeable.js │ ├── rickshaw │ │ ├── rickshaw.css │ │ ├── rickshaw.js │ │ ├── rickshaw.min.css │ │ ├── rickshaw.min.js │ │ └── vendor │ │ │ ├── d3.layout.min.js │ │ │ ├── d3.min.js │ │ │ ├── d3.v2.js │ │ │ └── d3.v3.js │ ├── scrollMonitor.js │ ├── select2-x │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-bootstrap.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ ├── select2 │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── package.json │ │ ├── release.sh │ │ ├── select2-bootstrap.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_az.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ka.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nb.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_rs.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ug-CN.js │ │ ├── select2_locale_uk.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ ├── selectboxit │ │ ├── jquery.selectBoxIt.css │ │ ├── jquery.selectBoxIt.min.js │ │ └── js │ │ │ ├── jquery.selectBoxIt.js │ │ │ └── modules │ │ │ ├── jquery.selectBoxIt.add.js │ │ │ ├── jquery.selectBoxIt.ariaAccessibility.js │ │ │ ├── jquery.selectBoxIt.copyAttributes.js │ │ │ ├── jquery.selectBoxIt.core.js │ │ │ ├── jquery.selectBoxIt.destroy.js │ │ │ ├── jquery.selectBoxIt.disable.js │ │ │ ├── jquery.selectBoxIt.dynamicPositioning.js │ │ │ ├── jquery.selectBoxIt.enable.js │ │ │ ├── jquery.selectBoxIt.endClosure.js │ │ │ ├── jquery.selectBoxIt.keyboardNavigation.js │ │ │ ├── jquery.selectBoxIt.keyboardSearch.js │ │ │ ├── jquery.selectBoxIt.mobile.js │ │ │ ├── jquery.selectBoxIt.remove.js │ │ │ ├── jquery.selectBoxIt.selectOption.js │ │ │ ├── jquery.selectBoxIt.setOption.js │ │ │ ├── jquery.selectBoxIt.setOptions.js │ │ │ └── jquery.selectBoxIt.wait.js │ ├── toastr.js │ ├── tocify │ │ ├── jquery.tocify.css │ │ └── jquery.tocify.min.js │ ├── typeahead.min.js │ ├── uikit │ │ ├── addons │ │ │ ├── css │ │ │ │ ├── datepicker.almost-flat.css │ │ │ │ ├── datepicker.almost-flat.min.css │ │ │ │ ├── datepicker.css │ │ │ │ ├── datepicker.gradient.css │ │ │ │ ├── datepicker.gradient.min.css │ │ │ │ ├── datepicker.min.css │ │ │ │ ├── form-file.css │ │ │ │ ├── form-file.min.css │ │ │ │ ├── form-password.almost-flat.css │ │ │ │ ├── form-password.almost-flat.min.css │ │ │ │ ├── form-password.css │ │ │ │ ├── form-password.gradient.css │ │ │ │ ├── form-password.gradient.min.css │ │ │ │ ├── form-password.min.css │ │ │ │ ├── markdownarea.almost-flat.css │ │ │ │ ├── markdownarea.almost-flat.min.css │ │ │ │ ├── markdownarea.css │ │ │ │ ├── markdownarea.gradient.css │ │ │ │ ├── markdownarea.gradient.min.css │ │ │ │ ├── markdownarea.min.css │ │ │ │ ├── notify.almost-flat.css │ │ │ │ ├── notify.almost-flat.min.css │ │ │ │ ├── notify.css │ │ │ │ ├── notify.gradient.css │ │ │ │ ├── notify.gradient.min.css │ │ │ │ ├── notify.min.css │ │ │ │ ├── sortable.almost-flat.css │ │ │ │ ├── sortable.almost-flat.min.css │ │ │ │ ├── sortable.css │ │ │ │ ├── sortable.gradient.css │ │ │ │ ├── sortable.gradient.min.css │ │ │ │ └── sortable.min.css │ │ │ └── js │ │ │ │ ├── datepicker.js │ │ │ │ ├── datepicker.min.js │ │ │ │ ├── form-file.js │ │ │ │ ├── form-file.min.js │ │ │ │ ├── form-password.js │ │ │ │ ├── form-password.min.js │ │ │ │ ├── markdownarea.js │ │ │ │ ├── markdownarea.min.js │ │ │ │ ├── notify.js │ │ │ │ ├── notify.min.js │ │ │ │ ├── sortable.js │ │ │ │ ├── sortable.min.js │ │ │ │ ├── sticky.js │ │ │ │ ├── sticky.min.js │ │ │ │ ├── timepicker.js │ │ │ │ └── timepicker.min.js │ │ ├── css │ │ │ ├── uikit.almost-flat.css │ │ │ ├── uikit.almost-flat.min.css │ │ │ ├── uikit.css │ │ │ ├── uikit.gradient.css │ │ │ ├── uikit.gradient.min.css │ │ │ └── uikit.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── js │ │ │ ├── uikit.js │ │ │ └── uikit.min.js │ ├── vertical-timeline │ │ ├── -index.html │ │ ├── README.md │ │ ├── css │ │ │ ├── component.css │ │ │ └── default.css │ │ ├── fonts │ │ │ ├── fontawesome.eot │ │ │ ├── fontawesome.svg │ │ │ ├── fontawesome.ttf │ │ │ ├── fontawesome.woff │ │ │ ├── readme.md │ │ │ └── timelineicons │ │ │ │ ├── Read Me.txt │ │ │ │ ├── ecoico.dev.svg │ │ │ │ ├── ecoico.eot │ │ │ │ ├── ecoico.svg │ │ │ │ ├── ecoico.ttf │ │ │ │ ├── ecoico.woff │ │ │ │ └── license.txt │ │ ├── index.html │ │ └── js │ │ │ └── modernizr.custom.js │ ├── wysihtml5 │ │ ├── advanced.js │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap-wysihtml5.js │ │ ├── simple.js │ │ └── wysihtml5-0.4.0pre.min.js │ └── zurb-responsive-tables │ │ ├── .gitignore │ │ ├── index.html │ │ ├── javascripts │ │ ├── app.js │ │ ├── app.js.orig │ │ ├── forms.jquery.js │ │ ├── jquery.customforms.js │ │ ├── jquery.min.js │ │ ├── jquery.orbit-1.3.0.js │ │ ├── jquery.placeholder.min.js │ │ ├── jquery.reveal.js │ │ └── modernizr.foundation.js │ │ ├── responsive-tables.css │ │ ├── responsive-tables.js │ │ └── stylesheets │ │ ├── app.css │ │ ├── forms.css │ │ ├── globals.css │ │ ├── grid.css │ │ ├── ie.css │ │ ├── mobile.css │ │ ├── orbit.css │ │ ├── reveal.css │ │ ├── typography.css │ │ └── ui.css └── less │ ├── commons.less │ ├── core.less │ └── vars.less ├── bootstrap ├── autoload.php ├── compiled.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── dbuilder.sql ├── docker-compose.yml ├── favicon.ico ├── index.php ├── init.sh ├── plugins ├── ue-utf8-php │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ ├── index.html │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ ├── php │ │ ├── Uploader.class.php │ │ ├── action_crawler.php │ │ ├── action_list.php │ │ ├── action_upload.php │ │ ├── config.json │ │ └── controller.php │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js └── zTree │ ├── css │ ├── awesomeStyle │ │ ├── awesome.css │ │ ├── awesome.less │ │ ├── fa.less │ │ └── img │ │ │ └── loading.gif │ ├── metroStyle │ │ ├── img │ │ │ ├── line_conn.png │ │ │ ├── loading.gif │ │ │ ├── metro.gif │ │ │ └── metro.png │ │ └── metroStyle.css │ ├── styles.css │ └── zTreeStyle │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── zTreeStandard.gif │ │ └── zTreeStandard.png │ │ └── zTreeStyle.css │ └── js │ ├── jquery-1.4.4.min.js │ ├── jquery.ztree.all.js │ ├── jquery.ztree.all.min.js │ ├── jquery.ztree.core.js │ ├── jquery.ztree.core.min.js │ ├── jquery.ztree.excheck.js │ ├── jquery.ztree.excheck.min.js │ ├── jquery.ztree.exedit.js │ ├── jquery.ztree.exedit.min.js │ ├── jquery.ztree.exhide.js │ └── jquery.ztree.exhide.min.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── robots.txt ├── sql ├── customer.0904.01.sql ├── d_module.0904.01.sql └── demo.0904.01.sql └── vendor ├── autoload.php ├── bin ├── boris ├── boris.bat ├── classpreloader.php └── classpreloader.php.bat ├── classpreloader └── classpreloader │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── classpreloader.php │ ├── composer.json │ └── src │ └── ClassPreloader │ ├── Application.php │ ├── ClassList.php │ ├── ClassLoader.php │ ├── ClassNode.php │ ├── Command │ └── PreCompileCommand.php │ ├── Config.php │ └── Parser │ ├── AbstractNodeVisitor.php │ ├── DirVisitor.php │ ├── FileVisitor.php │ └── NodeTraverser.php ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── include_paths.php └── installed.json ├── d11wtq └── boris │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── bin │ └── boris │ ├── box.json │ ├── composer.json │ └── lib │ ├── Boris │ ├── Boris.php │ ├── CLIOptionsHandler.php │ ├── ColoredInspector.php │ ├── Config.php │ ├── DumpInspector.php │ ├── EvalWorker.php │ ├── ExportInspector.php │ ├── Inspector.php │ ├── ReadlineClient.php │ └── ShallowParser.php │ └── autoload.php ├── filp └── whoops │ ├── LICENSE.md │ ├── composer.json │ └── src │ ├── Whoops │ ├── Exception │ │ ├── ErrorException.php │ │ ├── Formatter.php │ │ ├── Frame.php │ │ ├── FrameCollection.php │ │ └── Inspector.php │ ├── Handler │ │ ├── CallbackHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── JsonResponseHandler.php │ │ ├── PlainTextHandler.php │ │ ├── PrettyPageHandler.php │ │ ├── SoapResponseHandler.php │ │ └── XmlResponseHandler.php │ ├── Provider │ │ ├── Phalcon │ │ │ └── WhoopsServiceProvider.php │ │ └── Silex │ │ │ └── WhoopsServiceProvider.php │ ├── Resources │ │ ├── css │ │ │ └── whoops.base.css │ │ ├── js │ │ │ ├── whoops.base.js │ │ │ └── zepto.min.js │ │ └── views │ │ │ ├── env_details.html.php │ │ │ ├── frame_code.html.php │ │ │ ├── frame_list.html.php │ │ │ ├── header.html.php │ │ │ └── layout.html.php │ ├── Run.php │ └── Util │ │ ├── Misc.php │ │ └── TemplateHelper.php │ └── deprecated │ └── Zend │ ├── ExceptionStrategy.php │ ├── Module.php │ ├── RouteNotFoundStrategy.php │ └── module.config.example.php ├── ircmaxell └── password-compat │ ├── LICENSE.md │ ├── composer.json │ ├── lib │ └── password.php │ └── version-test.php ├── jeremeamia └── SuperClosure │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── demo │ ├── factorial.php │ └── hello-world.php │ ├── phpunit.xml.dist │ ├── src │ └── Jeremeamia │ │ └── SuperClosure │ │ ├── ClosureLocation.php │ │ ├── ClosureParser.php │ │ ├── SerializableClosure.php │ │ └── Visitor │ │ ├── ClosureFinderVisitor.php │ │ └── MagicConstantVisitor.php │ └── tests │ ├── Jeremeamia │ └── SuperClosure │ │ └── Test │ │ ├── ClosureLocationTest.php │ │ ├── ClosureParserTest.php │ │ ├── SerializableClosureTest.php │ │ └── Visitor │ │ ├── ClosureFinderVisitorTest.php │ │ └── MagicConstantVisitorTest.php │ └── bootstrap.php ├── laravel └── framework │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── composer.json │ ├── phpunit.php │ ├── phpunit.xml │ ├── readme.md │ └── src │ └── Illuminate │ ├── Auth │ ├── AuthManager.php │ ├── AuthServiceProvider.php │ ├── Console │ │ ├── ClearRemindersCommand.php │ │ ├── RemindersControllerCommand.php │ │ ├── RemindersTableCommand.php │ │ └── stubs │ │ │ ├── controller.stub │ │ │ └── reminders.stub │ ├── DatabaseUserProvider.php │ ├── EloquentUserProvider.php │ ├── GenericUser.php │ ├── Guard.php │ ├── Reminders │ │ ├── DatabaseReminderRepository.php │ │ ├── PasswordBroker.php │ │ ├── RemindableInterface.php │ │ ├── RemindableTrait.php │ │ ├── ReminderRepositoryInterface.php │ │ └── ReminderServiceProvider.php │ ├── UserInterface.php │ ├── UserProviderInterface.php │ ├── UserTrait.php │ └── composer.json │ ├── Cache │ ├── ApcStore.php │ ├── ApcWrapper.php │ ├── ArrayStore.php │ ├── CacheManager.php │ ├── CacheServiceProvider.php │ ├── Console │ │ ├── CacheTableCommand.php │ │ ├── ClearCommand.php │ │ └── stubs │ │ │ └── cache.stub │ ├── DatabaseStore.php │ ├── FileStore.php │ ├── MemcachedConnector.php │ ├── MemcachedStore.php │ ├── NullStore.php │ ├── RedisStore.php │ ├── RedisTaggedCache.php │ ├── Repository.php │ ├── StoreInterface.php │ ├── TagSet.php │ ├── TaggableStore.php │ ├── TaggedCache.php │ ├── WinCacheStore.php │ ├── XCacheStore.php │ └── composer.json │ ├── Config │ ├── EnvironmentVariables.php │ ├── EnvironmentVariablesLoaderInterface.php │ ├── FileEnvironmentVariablesLoader.php │ ├── FileLoader.php │ ├── LoaderInterface.php │ ├── Repository.php │ └── composer.json │ ├── Console │ ├── Application.php │ ├── Command.php │ ├── ConfirmableTrait.php │ └── composer.json │ ├── Container │ ├── BindingResolutionException.php │ ├── Container.php │ └── composer.json │ ├── Cookie │ ├── CookieJar.php │ ├── CookieServiceProvider.php │ ├── Guard.php │ ├── Queue.php │ └── composer.json │ ├── Database │ ├── Capsule │ │ └── Manager.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 │ │ ├── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ └── RollbackCommand.php │ │ └── SeedCommand.php │ ├── DatabaseManager.php │ ├── DatabaseServiceProvider.php │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Collection.php │ │ ├── MassAssignmentException.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ ├── Relations │ │ │ ├── BelongsTo.php │ │ │ ├── BelongsToMany.php │ │ │ ├── HasMany.php │ │ │ ├── HasManyThrough.php │ │ │ ├── HasOne.php │ │ │ ├── HasOneOrMany.php │ │ │ ├── MorphMany.php │ │ │ ├── MorphOne.php │ │ │ ├── MorphOneOrMany.php │ │ │ ├── MorphPivot.php │ │ │ ├── MorphTo.php │ │ │ ├── MorphToMany.php │ │ │ ├── Pivot.php │ │ │ └── Relation.php │ │ ├── ScopeInterface.php │ │ ├── SoftDeletingScope.php │ │ └── SoftDeletingTrait.php │ ├── Grammar.php │ ├── MigrationServiceProvider.php │ ├── Migrations │ │ ├── DatabaseMigrationRepository.php │ │ ├── Migration.php │ │ ├── MigrationCreator.php │ │ ├── MigrationRepositoryInterface.php │ │ ├── Migrator.php │ │ └── stubs │ │ │ ├── blank.stub │ │ │ ├── create.stub │ │ │ └── update.stub │ ├── MySqlConnection.php │ ├── PostgresConnection.php │ ├── Query │ │ ├── Builder.php │ │ ├── Expression.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ ├── JoinClause.php │ │ └── Processors │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ ├── QueryException.php │ ├── README.md │ ├── SQLiteConnection.php │ ├── Schema │ │ ├── Blueprint.php │ │ ├── Builder.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ └── MySqlBuilder.php │ ├── SeedServiceProvider.php │ ├── Seeder.php │ ├── SqlServerConnection.php │ └── composer.json │ ├── Encryption │ ├── DecryptException.php │ ├── Encrypter.php │ ├── EncryptionServiceProvider.php │ ├── InvalidKeyException.php │ └── composer.json │ ├── Events │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ └── composer.json │ ├── Exception │ ├── ExceptionDisplayerInterface.php │ ├── ExceptionServiceProvider.php │ ├── Handler.php │ ├── PlainDisplayer.php │ ├── SymfonyDisplayer.php │ ├── WhoopsDisplayer.php │ ├── composer.json │ └── resources │ │ └── plain.html │ ├── Filesystem │ ├── FileNotFoundException.php │ ├── Filesystem.php │ ├── FilesystemServiceProvider.php │ └── composer.json │ ├── Foundation │ ├── AliasLoader.php │ ├── Application.php │ ├── Artisan.php │ ├── AssetPublisher.php │ ├── Composer.php │ ├── ConfigPublisher.php │ ├── Console │ │ ├── AssetPublishCommand.php │ │ ├── AutoloadCommand.php │ │ ├── ChangesCommand.php │ │ ├── ClearCompiledCommand.php │ │ ├── CommandMakeCommand.php │ │ ├── ConfigPublishCommand.php │ │ ├── DownCommand.php │ │ ├── EnvironmentCommand.php │ │ ├── KeyGenerateCommand.php │ │ ├── MigratePublishCommand.php │ │ ├── Optimize │ │ │ └── config.php │ │ ├── OptimizeCommand.php │ │ ├── RoutesCommand.php │ │ ├── ServeCommand.php │ │ ├── TailCommand.php │ │ ├── TinkerCommand.php │ │ ├── UpCommand.php │ │ ├── ViewPublishCommand.php │ │ └── stubs │ │ │ └── command.stub │ ├── EnvironmentDetector.php │ ├── MigrationPublisher.php │ ├── ProviderRepository.php │ ├── Providers │ │ ├── ArtisanServiceProvider.php │ │ ├── CommandCreatorServiceProvider.php │ │ ├── ComposerServiceProvider.php │ │ ├── ConsoleSupportServiceProvider.php │ │ ├── KeyGeneratorServiceProvider.php │ │ ├── MaintenanceServiceProvider.php │ │ ├── OptimizeServiceProvider.php │ │ ├── PublisherServiceProvider.php │ │ ├── RouteListServiceProvider.php │ │ ├── ServerServiceProvider.php │ │ └── TinkerServiceProvider.php │ ├── Testing │ │ ├── ApplicationTrait.php │ │ ├── AssertionsTrait.php │ │ ├── Client.php │ │ └── TestCase.php │ ├── ViewPublisher.php │ ├── changes.json │ └── start.php │ ├── Hashing │ ├── BcryptHasher.php │ ├── HashServiceProvider.php │ ├── HasherInterface.php │ └── composer.json │ ├── Html │ ├── FormBuilder.php │ ├── HtmlBuilder.php │ ├── HtmlServiceProvider.php │ └── composer.json │ ├── Http │ ├── FrameGuard.php │ ├── JsonResponse.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── Response.php │ ├── ResponseTrait.php │ └── composer.json │ ├── Log │ ├── LogServiceProvider.php │ ├── Writer.php │ └── composer.json │ ├── Mail │ ├── MailServiceProvider.php │ ├── Mailer.php │ ├── Message.php │ ├── Transport │ │ ├── LogTransport.php │ │ ├── MailgunTransport.php │ │ └── MandrillTransport.php │ └── composer.json │ ├── Pagination │ ├── BootstrapPresenter.php │ ├── Factory.php │ ├── PaginationServiceProvider.php │ ├── Paginator.php │ ├── Presenter.php │ ├── composer.json │ └── views │ │ ├── simple.php │ │ ├── slider-3.php │ │ └── slider.php │ ├── Queue │ ├── BeanstalkdQueue.php │ ├── Capsule │ │ └── Manager.php │ ├── Connectors │ │ ├── BeanstalkdConnector.php │ │ ├── ConnectorInterface.php │ │ ├── IronConnector.php │ │ ├── RedisConnector.php │ │ ├── SqsConnector.php │ │ └── SyncConnector.php │ ├── Console │ │ ├── FailedTableCommand.php │ │ ├── FlushFailedCommand.php │ │ ├── ForgetFailedCommand.php │ │ ├── ListFailedCommand.php │ │ ├── ListenCommand.php │ │ ├── RestartCommand.php │ │ ├── RetryCommand.php │ │ ├── SubscribeCommand.php │ │ ├── WorkCommand.php │ │ └── stubs │ │ │ └── failed_jobs.stub │ ├── FailConsoleServiceProvider.php │ ├── Failed │ │ ├── DatabaseFailedJobProvider.php │ │ └── FailedJobProviderInterface.php │ ├── IlluminateQueueClosure.php │ ├── IronQueue.php │ ├── Jobs │ │ ├── BeanstalkdJob.php │ │ ├── IronJob.php │ │ ├── Job.php │ │ ├── RedisJob.php │ │ ├── SqsJob.php │ │ └── SyncJob.php │ ├── Listener.php │ ├── Queue.php │ ├── QueueInterface.php │ ├── QueueManager.php │ ├── QueueServiceProvider.php │ ├── README.md │ ├── RedisQueue.php │ ├── SqsQueue.php │ ├── SyncQueue.php │ ├── Worker.php │ └── composer.json │ ├── Redis │ ├── Database.php │ ├── RedisServiceProvider.php │ └── composer.json │ ├── Remote │ ├── Connection.php │ ├── ConnectionInterface.php │ ├── GatewayInterface.php │ ├── MultiConnection.php │ ├── RemoteManager.php │ ├── RemoteServiceProvider.php │ ├── SecLibGateway.php │ └── composer.json │ ├── Routing │ ├── Console │ │ └── MakeControllerCommand.php │ ├── Controller.php │ ├── ControllerDispatcher.php │ ├── ControllerInspector.php │ ├── ControllerServiceProvider.php │ ├── Generators │ │ ├── ControllerGenerator.php │ │ └── stubs │ │ │ ├── controller.stub │ │ │ ├── create.stub │ │ │ ├── destroy.stub │ │ │ ├── edit.stub │ │ │ ├── index.stub │ │ │ ├── show.stub │ │ │ ├── store.stub │ │ │ └── update.stub │ ├── Matching │ │ ├── HostValidator.php │ │ ├── MethodValidator.php │ │ ├── SchemeValidator.php │ │ ├── UriValidator.php │ │ └── ValidatorInterface.php │ ├── Redirector.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteFiltererInterface.php │ ├── Router.php │ ├── RoutingServiceProvider.php │ ├── UrlGenerator.php │ └── composer.json │ ├── Session │ ├── CacheBasedSessionHandler.php │ ├── CommandsServiceProvider.php │ ├── Console │ │ ├── SessionTableCommand.php │ │ └── stubs │ │ │ └── database.stub │ ├── CookieSessionHandler.php │ ├── DatabaseSessionHandler.php │ ├── ExistenceAwareInterface.php │ ├── FileSessionHandler.php │ ├── Middleware.php │ ├── SessionInterface.php │ ├── SessionManager.php │ ├── SessionServiceProvider.php │ ├── Store.php │ ├── TokenMismatchException.php │ └── composer.json │ ├── Support │ ├── Arr.php │ ├── ClassLoader.php │ ├── Collection.php │ ├── Contracts │ │ ├── ArrayableInterface.php │ │ ├── JsonableInterface.php │ │ ├── MessageProviderInterface.php │ │ ├── RenderableInterface.php │ │ └── ResponsePreparerInterface.php │ ├── Facades │ │ ├── App.php │ │ ├── Artisan.php │ │ ├── Auth.php │ │ ├── Blade.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── Cookie.php │ │ ├── Crypt.php │ │ ├── DB.php │ │ ├── Event.php │ │ ├── Facade.php │ │ ├── File.php │ │ ├── Form.php │ │ ├── HTML.php │ │ ├── Hash.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Log.php │ │ ├── Mail.php │ │ ├── Paginator.php │ │ ├── Password.php │ │ ├── Queue.php │ │ ├── Redirect.php │ │ ├── Redis.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── SSH.php │ │ ├── Schema.php │ │ ├── Session.php │ │ ├── URL.php │ │ ├── Validator.php │ │ └── View.php │ ├── Fluent.php │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Pluralizer.php │ ├── SerializableClosure.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── Traits │ │ ├── CapsuleManagerTrait.php │ │ └── MacroableTrait.php │ ├── ViewErrorBag.php │ ├── composer.json │ └── helpers.php │ ├── Translation │ ├── FileLoader.php │ ├── LoaderInterface.php │ ├── TranslationServiceProvider.php │ ├── Translator.php │ └── composer.json │ ├── Validation │ ├── DatabasePresenceVerifier.php │ ├── Factory.php │ ├── PresenceVerifierInterface.php │ ├── ValidationServiceProvider.php │ ├── Validator.php │ └── composer.json │ ├── View │ ├── Compilers │ │ ├── BladeCompiler.php │ │ ├── Compiler.php │ │ └── CompilerInterface.php │ ├── Engines │ │ ├── CompilerEngine.php │ │ ├── Engine.php │ │ ├── EngineInterface.php │ │ ├── EngineResolver.php │ │ └── PhpEngine.php │ ├── Factory.php │ ├── FileViewFinder.php │ ├── View.php │ ├── ViewFinderInterface.php │ ├── ViewServiceProvider.php │ └── composer.json │ └── Workbench │ ├── Console │ └── WorkbenchMakeCommand.php │ ├── Package.php │ ├── PackageCreator.php │ ├── Starter.php │ ├── WorkbenchServiceProvider.php │ ├── composer.json │ └── stubs │ ├── .travis.yml │ ├── composer.json │ ├── gitignore.txt │ ├── phpunit.xml │ ├── plain.composer.json │ ├── plain.provider.stub │ └── provider.stub ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.mdown │ ├── LICENSE │ ├── README.mdown │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SlackHandler.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 │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.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 │ ├── 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 │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── SlackHandlerTest.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 │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── nesbot └── carbon │ ├── .editorconfig │ ├── LICENSE │ ├── composer.json │ ├── phpunit.xml.dist │ ├── readme.md │ ├── src │ └── Carbon │ │ └── Carbon.php │ └── tests │ ├── AddTest.php │ ├── ComparisonTest.php │ ├── ConstructTest.php │ ├── CopyTest.php │ ├── CreateFromDateTest.php │ ├── CreateFromFormatTest.php │ ├── CreateFromTimeTest.php │ ├── CreateFromTimestampTest.php │ ├── CreateTest.php │ ├── DayOfWeekModifiersTest.php │ ├── DiffTest.php │ ├── FluidSettersTest.php │ ├── GettersTest.php │ ├── InstanceTest.php │ ├── IsTest.php │ ├── IssetTest.php │ ├── NowAndOtherStaticHelpersTest.php │ ├── RelativeTest.php │ ├── SettersTest.php │ ├── StartEndOfTest.php │ ├── StringsTest.php │ ├── SubTest.php │ ├── TestFixture.php │ └── TestingAidsTest.php ├── nikic └── php-parser │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── 0_Introduction.markdown │ ├── 1_Installation.markdown │ ├── 2_Usage_of_basic_components.markdown │ ├── 3_Other_node_tree_representations.markdown │ ├── 4_Code_generation.markdown │ └── component │ │ └── Lexer.markdown │ ├── grammar │ ├── README.md │ ├── analyze.php │ ├── kmyacc.php.parser │ ├── rebuildParser.php │ └── zend_language_parser.phpy │ ├── lib │ ├── PHPParser │ │ ├── Autoloader.php │ │ ├── Builder.php │ │ ├── Builder │ │ │ ├── Class.php │ │ │ ├── Function.php │ │ │ ├── Interface.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ └── Property.php │ │ ├── BuilderAbstract.php │ │ ├── BuilderFactory.php │ │ ├── Comment.php │ │ ├── Comment │ │ │ └── Doc.php │ │ ├── Error.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ │ └── Emulative.php │ │ ├── Node.php │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── Const.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── Array.php │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignBitwiseAnd.php │ │ │ │ ├── AssignBitwiseOr.php │ │ │ │ ├── AssignBitwiseXor.php │ │ │ │ ├── AssignConcat.php │ │ │ │ ├── AssignDiv.php │ │ │ │ ├── AssignMinus.php │ │ │ │ ├── AssignMod.php │ │ │ │ ├── AssignMul.php │ │ │ │ ├── AssignPlus.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── AssignShiftLeft.php │ │ │ │ ├── AssignShiftRight.php │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array.php │ │ │ │ │ ├── Bool.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int.php │ │ │ │ │ ├── Object.php │ │ │ │ │ ├── String.php │ │ │ │ │ └── Unset.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── Concat.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Div.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Equal.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval.php │ │ │ │ ├── Exit.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── Include.php │ │ │ │ ├── Instanceof.php │ │ │ │ ├── Isset.php │ │ │ │ ├── List.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── New.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Plus.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ ├── ShiftRight.php │ │ │ │ ├── Smaller.php │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ └── Yield.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── Param.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── ClassConst.php │ │ │ │ ├── DNumber.php │ │ │ │ ├── DirConst.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── FileConst.php │ │ │ │ ├── FuncConst.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── LineConst.php │ │ │ │ ├── MethodConst.php │ │ │ │ ├── NSConst.php │ │ │ │ ├── String.php │ │ │ │ └── TraitConst.php │ │ │ ├── Stmt.php │ │ │ └── Stmt │ │ │ │ ├── Break.php │ │ │ │ ├── Case.php │ │ │ │ ├── Catch.php │ │ │ │ ├── Class.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Const.php │ │ │ │ ├── Continue.php │ │ │ │ ├── Declare.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Do.php │ │ │ │ ├── Echo.php │ │ │ │ ├── Else.php │ │ │ │ ├── ElseIf.php │ │ │ │ ├── For.php │ │ │ │ ├── Foreach.php │ │ │ │ ├── Function.php │ │ │ │ ├── Global.php │ │ │ │ ├── Goto.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return.php │ │ │ │ ├── Static.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Switch.php │ │ │ │ ├── Throw.php │ │ │ │ ├── Trait.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset.php │ │ │ │ ├── Use.php │ │ │ │ ├── UseUse.php │ │ │ │ └── While.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── NameResolver.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── PrettyPrinter │ │ │ ├── Default.php │ │ │ └── Zend.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Serializer.php │ │ ├── Serializer │ │ │ └── XML.php │ │ ├── Template.php │ │ ├── TemplateLoader.php │ │ ├── Unserializer.php │ │ └── Unserializer │ │ │ └── XML.php │ └── bootstrap.php │ ├── phpunit.xml.dist │ ├── test │ ├── PHPParser │ │ └── Tests │ │ │ ├── Builder │ │ │ ├── ClassTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── InterfaceTest.php │ │ │ ├── MethodTest.php │ │ │ ├── ParamTest.php │ │ │ └── PropertyTest.php │ │ │ ├── BuilderFactoryTest.php │ │ │ ├── CodeTestAbstract.php │ │ │ ├── CommentTest.php │ │ │ ├── ErrorTest.php │ │ │ ├── Lexer │ │ │ └── EmulativeTest.php │ │ │ ├── LexerTest.php │ │ │ ├── Node │ │ │ ├── NameTest.php │ │ │ ├── Scalar │ │ │ │ └── StringTest.php │ │ │ └── Stmt │ │ │ │ ├── ClassMethodTest.php │ │ │ │ ├── ClassTest.php │ │ │ │ └── PropertyTest.php │ │ │ ├── NodeAbstractTest.php │ │ │ ├── NodeDumperTest.php │ │ │ ├── NodeTraverserTest.php │ │ │ ├── NodeVisitor │ │ │ └── NameResolverTest.php │ │ │ ├── ParserTest.php │ │ │ ├── PrettyPrinterTest.php │ │ │ ├── Serializer │ │ │ └── XMLTest.php │ │ │ ├── TemplateLoaderTest.php │ │ │ ├── TemplateTest.php │ │ │ └── Unserializer │ │ │ └── XMLTest.php │ └── code │ │ ├── parser │ │ ├── expr │ │ │ ├── arrayDef.test │ │ │ ├── assign.test │ │ │ ├── cast.test │ │ │ ├── clone.test │ │ │ ├── closure.test │ │ │ ├── comparison.test │ │ │ ├── errorSuppress.test │ │ │ ├── exit.test │ │ │ ├── fetchAndCall │ │ │ │ ├── args.test │ │ │ │ ├── constFetch.test │ │ │ │ ├── constantDeref.test │ │ │ │ ├── funcCall.test │ │ │ │ ├── newDeref.test │ │ │ │ ├── objectAccess.test │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ ├── staticCall.test │ │ │ │ └── staticPropertyFetch.test │ │ │ ├── includeAndEval.test │ │ │ ├── issetAndEmpty.test │ │ │ ├── logic.test │ │ │ ├── math.test │ │ │ ├── new.test │ │ │ ├── print.test │ │ │ ├── shellExec.test │ │ │ ├── ternary.test │ │ │ └── variable.test │ │ ├── scalar │ │ │ ├── constantString.test │ │ │ ├── docString.test │ │ │ ├── encapsedString.test │ │ │ ├── float.test │ │ │ ├── int.test │ │ │ └── magicConst.test │ │ └── stmt │ │ │ ├── blocklessStatement.test │ │ │ ├── class │ │ │ ├── abstract.test │ │ │ ├── conditional.test │ │ │ ├── final.test │ │ │ ├── interface.test │ │ │ ├── modifier.test-fail │ │ │ ├── name.test-fail │ │ │ ├── php4Style.test │ │ │ ├── simple.test │ │ │ ├── staticMethod.test-fail │ │ │ └── trait.test │ │ │ ├── const.test │ │ │ ├── controlFlow.test │ │ │ ├── declare.test │ │ │ ├── echo.test │ │ │ ├── function │ │ │ ├── byRef.test │ │ │ ├── conditional.test │ │ │ ├── defaultValues.test │ │ │ ├── generator.test │ │ │ ├── specialVars.test │ │ │ └── typeHints.test │ │ │ ├── haltCompiler.test │ │ │ ├── haltCompilerInvalidSyntax.test-fail │ │ │ ├── haltCompilerOutermostScope.test-fail │ │ │ ├── if.test │ │ │ ├── inlineHTML.test │ │ │ ├── loop │ │ │ ├── do.test │ │ │ ├── for.test │ │ │ ├── foreach.test │ │ │ └── while.test │ │ │ ├── namespace │ │ │ ├── alias.test │ │ │ ├── braced.test │ │ │ ├── mix.test-fail │ │ │ ├── name.test │ │ │ ├── name.test-fail │ │ │ ├── nested.test-fail │ │ │ ├── notBraced.test │ │ │ ├── outsideStmt.test │ │ │ └── outsideStmt.test-fail │ │ │ ├── switch.test │ │ │ ├── tryCatch.test │ │ │ ├── tryCatch.test-fail │ │ │ └── unset.test │ │ └── prettyPrinter │ │ ├── closure.test │ │ ├── comments.test │ │ ├── include.test │ │ ├── inlineHTMLandPHPtest.file-test │ │ ├── namespaces.test │ │ ├── onlyInlineHTML.file-test │ │ ├── onlyPHP.file-test │ │ ├── parentheses.test │ │ └── switch.test │ └── test_old │ └── run.php ├── patchwork └── utf8 │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ └── src │ ├── Normalizer.php │ └── Patchwork │ ├── PHP │ └── Shim │ │ ├── Iconv.php │ │ ├── Intl.php │ │ ├── Mbstring.php │ │ ├── Normalizer.php │ │ ├── Xml.php │ │ ├── charset │ │ ├── from.big5.ser │ │ ├── from.cp037.ser │ │ ├── from.cp1006.ser │ │ ├── from.cp1026.ser │ │ ├── from.cp424.ser │ │ ├── from.cp437.ser │ │ ├── from.cp500.ser │ │ ├── from.cp737.ser │ │ ├── from.cp775.ser │ │ ├── from.cp850.ser │ │ ├── from.cp852.ser │ │ ├── from.cp855.ser │ │ ├── from.cp856.ser │ │ ├── from.cp857.ser │ │ ├── from.cp860.ser │ │ ├── from.cp861.ser │ │ ├── from.cp862.ser │ │ ├── from.cp863.ser │ │ ├── from.cp864.ser │ │ ├── from.cp865.ser │ │ ├── from.cp866.ser │ │ ├── from.cp869.ser │ │ ├── from.cp874.ser │ │ ├── from.cp875.ser │ │ ├── from.cp932.ser │ │ ├── from.cp936.ser │ │ ├── from.cp949.ser │ │ ├── from.cp950.ser │ │ ├── from.gsm0338.ser │ │ ├── from.iso-8859-1.ser │ │ ├── from.iso-8859-10.ser │ │ ├── from.iso-8859-11.ser │ │ ├── from.iso-8859-13.ser │ │ ├── from.iso-8859-14.ser │ │ ├── from.iso-8859-15.ser │ │ ├── from.iso-8859-16.ser │ │ ├── from.iso-8859-2.ser │ │ ├── from.iso-8859-3.ser │ │ ├── from.iso-8859-4.ser │ │ ├── from.iso-8859-5.ser │ │ ├── from.iso-8859-6.ser │ │ ├── from.iso-8859-7.ser │ │ ├── from.iso-8859-8.ser │ │ ├── from.iso-8859-9.ser │ │ ├── from.koi8-r.ser │ │ ├── from.koi8-u.ser │ │ ├── from.mazovia.ser │ │ ├── from.nextstep.ser │ │ ├── from.stdenc.ser │ │ ├── from.symbol.ser │ │ ├── from.turkish.ser │ │ ├── from.us-ascii-quotes.ser │ │ ├── from.us-ascii.ser │ │ ├── from.windows-1250.ser │ │ ├── from.windows-1251.ser │ │ ├── from.windows-1252.ser │ │ ├── from.windows-1253.ser │ │ ├── from.windows-1254.ser │ │ ├── from.windows-1255.ser │ │ ├── from.windows-1256.ser │ │ ├── from.windows-1257.ser │ │ ├── from.windows-1258.ser │ │ ├── from.x-mac-ce.ser │ │ ├── from.x-mac-cyrillic.ser │ │ ├── from.x-mac-greek.ser │ │ ├── from.x-mac-icelandic.ser │ │ ├── from.x-mac-roman.ser │ │ ├── from.zdingbat.ser │ │ ├── to.gsm0338.ser │ │ ├── to.mazovia.ser │ │ ├── to.stdenc.ser │ │ ├── to.symbol.ser │ │ ├── to.zdingbat.ser │ │ └── translit.ser │ │ └── unidata │ │ ├── canonicalComposition.ser │ │ ├── canonicalDecomposition.ser │ │ ├── combiningClass.ser │ │ ├── compatibilityDecomposition.ser │ │ ├── lowerCase.ser │ │ └── upperCase.ser │ ├── TurkishUtf8.php │ ├── Utf8.php │ └── Utf8 │ ├── BestFit.php │ ├── Bootup.php │ ├── Bootup │ ├── iconv.php │ ├── intl.php │ ├── mbstring.php │ └── utf8_encode.php │ ├── Compiler.php │ ├── WindowsStreamWrapper.php │ ├── data │ ├── caseFolding_full.ser │ ├── to.bestfit1250.ser │ ├── to.bestfit1251.ser │ ├── to.bestfit1252.ser │ ├── to.bestfit1253.ser │ ├── to.bestfit1254.ser │ ├── to.bestfit1255.ser │ ├── to.bestfit1256.ser │ ├── to.bestfit1257.ser │ ├── to.bestfit1258.ser │ ├── to.bestfit874.ser │ ├── to.bestfit932.ser │ ├── to.bestfit936.ser │ ├── to.bestfit949.ser │ ├── to.bestfit950.ser │ └── translit_extra.ser │ └── unicode-data.tbz2 ├── phpseclib └── phpseclib │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build │ ├── build.xml │ ├── code-sniffer-ruleset-tests.xml │ ├── code-sniffer-ruleset.xml │ └── sami.conf.php │ ├── composer.json │ ├── composer.lock │ ├── phpseclib │ ├── Crypt │ │ ├── AES.php │ │ ├── Base.php │ │ ├── Blowfish.php │ │ ├── DES.php │ │ ├── Hash.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ └── X509.php │ ├── Math │ │ └── BigInteger.php │ ├── Net │ │ ├── SCP.php │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ ├── SSH1.php │ │ └── SSH2.php │ ├── System │ │ ├── SSH │ │ │ └── Agent.php │ │ └── SSH_Agent.php │ └── openssl.cnf │ ├── phpunit.xml.dist │ ├── tests │ ├── Functional │ │ └── Net │ │ │ ├── SCPSSH2UserStoryTest.php │ │ │ ├── SFTPLargeFileTest.php │ │ │ ├── SFTPUserStoryTest.php │ │ │ ├── SSH2AgentTest.php │ │ │ └── SSH2Test.php │ ├── PhpseclibFunctionalTestCase.php │ ├── PhpseclibTestCase.php │ ├── Unit │ │ ├── Crypt │ │ │ ├── AES │ │ │ │ ├── InternalTest.php │ │ │ │ ├── McryptTest.php │ │ │ │ └── TestCase.php │ │ │ ├── Hash │ │ │ │ ├── MD5Test.php │ │ │ │ ├── SHA256Test.php │ │ │ │ ├── SHA256_96Test.php │ │ │ │ ├── SHA512Test.php │ │ │ │ ├── SHA512_96Test.php │ │ │ │ └── TestCase.php │ │ │ ├── RSA │ │ │ │ └── LoadKeyTest.php │ │ │ └── RandomTest.php │ │ ├── File │ │ │ ├── ASN1 │ │ │ │ └── FE.pdf.p7m │ │ │ ├── ASN1Test.php │ │ │ └── X509 │ │ │ │ ├── CSRTest.php │ │ │ │ └── SPKACTest.php │ │ ├── Math │ │ │ └── BigInteger │ │ │ │ ├── BCMathTest.php │ │ │ │ ├── GMPTest.php │ │ │ │ ├── InternalOpenSSLTest.php │ │ │ │ ├── InternalTest.php │ │ │ │ └── TestCase.php │ │ └── Net │ │ │ ├── SFTPStreamTest.php │ │ │ ├── SSH1Test.php │ │ │ └── SSH2Test.php │ └── bootstrap.php │ └── travis │ ├── code_coverage_id_rsa │ ├── install-php-extensions.sh │ ├── run-phpunit.sh │ ├── setup-composer.sh │ ├── setup-secure-shell.sh │ ├── upload-code-coverage-html.sh │ └── upload-code-coverage-scrutinizer.sh ├── predis └── predis │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.NAMING.md │ ├── 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 │ ├── CustomDistributionStrategy.php │ ├── DispatcherLoop.php │ ├── KeyPrefixes.php │ ├── MasterSlaveReplication.php │ ├── MasterSlaveReplicationComplex.php │ ├── MonitorContext.php │ ├── MultiBulkReplyIterators.php │ ├── MultipleSetAndGet.php │ ├── PipelineContext.php │ ├── PubSubContext.php │ ├── RedisCollectionsIterators.php │ ├── ServerSideScripting.php │ ├── SessionHandler.php │ ├── SharedConfigurations.php │ ├── SimpleDebuggableConnection.php │ ├── SimpleSetAndGet.php │ └── TransactionWithCAS.php │ ├── lib │ └── Predis │ │ ├── Autoloader.php │ │ ├── BasicClientInterface.php │ │ ├── Client.php │ │ ├── ClientException.php │ │ ├── ClientInterface.php │ │ ├── Cluster │ │ ├── CommandHashStrategyInterface.php │ │ ├── Distribution │ │ │ ├── DistributionStrategyInterface.php │ │ │ ├── EmptyRingException.php │ │ │ ├── HashRing.php │ │ │ └── KetamaPureRing.php │ │ ├── Hash │ │ │ ├── CRC16HashGenerator.php │ │ │ └── HashGeneratorInterface.php │ │ ├── PredisClusterHashStrategy.php │ │ └── RedisClusterHashStrategy.php │ │ ├── Collection │ │ └── Iterator │ │ │ ├── CursorBasedIterator.php │ │ │ ├── HashKey.php │ │ │ ├── Keyspace.php │ │ │ ├── ListKey.php │ │ │ ├── SetKey.php │ │ │ └── SortedSetKey.php │ │ ├── Command │ │ ├── AbstractCommand.php │ │ ├── CommandInterface.php │ │ ├── ConnectionAuth.php │ │ ├── ConnectionEcho.php │ │ ├── ConnectionPing.php │ │ ├── ConnectionQuit.php │ │ ├── ConnectionSelect.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 │ │ ├── HashValues.php │ │ ├── HyperLogLogAdd.php │ │ ├── HyperLogLogCount.php │ │ ├── HyperLogLogMerge.php │ │ ├── KeyDelete.php │ │ ├── KeyDump.php │ │ ├── KeyExists.php │ │ ├── KeyExpire.php │ │ ├── KeyExpireAt.php │ │ ├── KeyKeys.php │ │ ├── KeyKeysV12x.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 │ │ ├── PrefixHelpers.php │ │ ├── PrefixableCommand.php │ │ ├── PrefixableCommandInterface.php │ │ ├── Processor │ │ │ ├── CommandProcessingInterface.php │ │ │ ├── CommandProcessorChainInterface.php │ │ │ ├── CommandProcessorInterface.php │ │ │ ├── KeyPrefixProcessor.php │ │ │ └── ProcessorChain.php │ │ ├── PubSubPublish.php │ │ ├── PubSubSubscribe.php │ │ ├── PubSubSubscribeByPattern.php │ │ ├── PubSubUnsubscribe.php │ │ ├── PubSubUnsubscribeByPattern.php │ │ ├── RawCommand.php │ │ ├── ScriptedCommand.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 │ │ ├── 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 │ │ ├── StringBitOp.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 │ │ ├── ZSetReverseRangeByScore.php │ │ ├── ZSetReverseRank.php │ │ ├── ZSetScan.php │ │ ├── ZSetScore.php │ │ └── ZSetUnionStore.php │ │ ├── CommunicationException.php │ │ ├── Connection │ │ ├── AbstractConnection.php │ │ ├── AggregatedConnectionInterface.php │ │ ├── ClusterConnectionInterface.php │ │ ├── ComposableConnectionInterface.php │ │ ├── ComposableStreamConnection.php │ │ ├── ConnectionException.php │ │ ├── ConnectionFactory.php │ │ ├── ConnectionFactoryInterface.php │ │ ├── ConnectionInterface.php │ │ ├── ConnectionParameters.php │ │ ├── ConnectionParametersInterface.php │ │ ├── MasterSlaveReplication.php │ │ ├── PhpiredisConnection.php │ │ ├── PhpiredisStreamConnection.php │ │ ├── PredisCluster.php │ │ ├── RedisCluster.php │ │ ├── ReplicationConnectionInterface.php │ │ ├── SingleConnectionInterface.php │ │ ├── StreamConnection.php │ │ └── WebdisConnection.php │ │ ├── ExecutableContextInterface.php │ │ ├── Helpers.php │ │ ├── Iterator │ │ ├── MultiBulkResponse.php │ │ ├── MultiBulkResponseSimple.php │ │ └── MultiBulkResponseTuple.php │ │ ├── Monitor │ │ └── MonitorContext.php │ │ ├── NotSupportedException.php │ │ ├── Option │ │ ├── AbstractOption.php │ │ ├── ClientCluster.php │ │ ├── ClientConnectionFactory.php │ │ ├── ClientExceptions.php │ │ ├── ClientOptions.php │ │ ├── ClientOptionsInterface.php │ │ ├── ClientPrefix.php │ │ ├── ClientProfile.php │ │ ├── ClientReplication.php │ │ ├── CustomOption.php │ │ └── OptionInterface.php │ │ ├── Pipeline │ │ ├── FireAndForgetExecutor.php │ │ ├── MultiExecExecutor.php │ │ ├── PipelineContext.php │ │ ├── PipelineExecutorInterface.php │ │ ├── SafeClusterExecutor.php │ │ ├── SafeExecutor.php │ │ └── StandardExecutor.php │ │ ├── PredisException.php │ │ ├── Profile │ │ ├── ServerProfile.php │ │ ├── ServerProfileInterface.php │ │ ├── ServerVersion12.php │ │ ├── ServerVersion20.php │ │ ├── ServerVersion22.php │ │ ├── ServerVersion24.php │ │ ├── ServerVersion26.php │ │ ├── ServerVersion28.php │ │ ├── ServerVersion30.php │ │ └── ServerVersionNext.php │ │ ├── Protocol │ │ ├── CommandSerializerInterface.php │ │ ├── ComposableProtocolInterface.php │ │ ├── ProtocolException.php │ │ ├── ProtocolInterface.php │ │ ├── ResponseHandlerInterface.php │ │ ├── ResponseReaderInterface.php │ │ └── Text │ │ │ ├── ComposableTextProtocol.php │ │ │ ├── ResponseBulkHandler.php │ │ │ ├── ResponseErrorHandler.php │ │ │ ├── ResponseIntegerHandler.php │ │ │ ├── ResponseMultiBulkHandler.php │ │ │ ├── ResponseMultiBulkStreamHandler.php │ │ │ ├── ResponseStatusHandler.php │ │ │ ├── TextCommandSerializer.php │ │ │ ├── TextProtocol.php │ │ │ └── TextResponseReader.php │ │ ├── PubSub │ │ ├── AbstractPubSubContext.php │ │ ├── DispatcherLoop.php │ │ └── PubSubContext.php │ │ ├── Replication │ │ └── ReplicationStrategy.php │ │ ├── ResponseError.php │ │ ├── ResponseErrorInterface.php │ │ ├── ResponseObjectInterface.php │ │ ├── ResponseQueued.php │ │ ├── ServerException.php │ │ ├── Session │ │ └── SessionHandler.php │ │ └── Transaction │ │ ├── AbortedMultiExecException.php │ │ └── MultiExecContext.php │ ├── package.ini │ ├── phpunit.xml.dist │ ├── phpunit.xml.travisci │ └── tests │ ├── PHPUnit │ ├── ArrayHasSameValuesConstraint.php │ ├── PredisCommandTestCase.php │ ├── PredisConnectionTestCase.php │ ├── PredisDistributorTestCase.php │ ├── PredisProfileTestCase.php │ ├── PredisTestCase.php │ └── RedisCommandConstraint.php │ ├── Predis │ ├── ClientExceptionTest.php │ ├── ClientTest.php │ ├── Cluster │ │ ├── Distribution │ │ │ ├── EmptyRingExceptionTest.php │ │ │ ├── HashRingTest.php │ │ │ └── KetamaPureRingTest.php │ │ ├── PredisClusterHashStrategyTest.php │ │ └── RedisClusterHashStrategyTest.php │ ├── Collection │ │ └── Iterator │ │ │ ├── HashKeyTest.php │ │ │ ├── KeyspaceTest.php │ │ │ ├── ListKeyTest.php │ │ │ ├── SetKeyTest.php │ │ │ └── SortedSetKeyTest.php │ ├── Command │ │ ├── CommandTest.php │ │ ├── ConnectionAuthTest.php │ │ ├── ConnectionEchoTest.php │ │ ├── ConnectionPingTest.php │ │ ├── ConnectionQuitTest.php │ │ ├── ConnectionSelectTest.php │ │ ├── HashDeleteTest.php │ │ ├── HashExistsTest.php │ │ ├── HashGetAllTest.php │ │ ├── HashGetMultipleTest.php │ │ ├── HashGetTest.php │ │ ├── HashIncrementByFloatTest.php │ │ ├── HashIncrementByTest.php │ │ ├── HashKeysTest.php │ │ ├── HashLengthTest.php │ │ ├── HashScanTest.php │ │ ├── HashSetMultipleTest.php │ │ ├── HashSetPreserveTest.php │ │ ├── HashSetTest.php │ │ ├── HashValuesTest.php │ │ ├── HyperLogLogAddTest.php │ │ ├── HyperLogLogCountTest.php │ │ ├── HyperLogLogMergeTest.php │ │ ├── KeyDeleteTest.php │ │ ├── KeyDumpTest.php │ │ ├── KeyExistsTest.php │ │ ├── KeyExpireAtTest.php │ │ ├── KeyExpireTest.php │ │ ├── KeyKeysTest.php │ │ ├── KeyKeysV12xTest.php │ │ ├── KeyMoveTest.php │ │ ├── KeyPersistTest.php │ │ ├── KeyPreciseExpireAtTest.php │ │ ├── KeyPreciseExpireTest.php │ │ ├── KeyPreciseTimeToLiveTest.php │ │ ├── KeyRandomTest.php │ │ ├── KeyRenamePreserveTest.php │ │ ├── KeyRenameTest.php │ │ ├── KeyRestoreTest.php │ │ ├── KeyScanTest.php │ │ ├── KeySortTest.php │ │ ├── KeyTimeToLiveTest.php │ │ ├── KeyTypeTest.php │ │ ├── ListIndexTest.php │ │ ├── ListInsertTest.php │ │ ├── ListLengthTest.php │ │ ├── ListPopFirstBlockingTest.php │ │ ├── ListPopFirstTest.php │ │ ├── ListPopLastBlockingTest.php │ │ ├── ListPopLastPushHeadBlockingTest.php │ │ ├── ListPopLastPushHeadTest.php │ │ ├── ListPopLastTest.php │ │ ├── ListPushHeadTest.php │ │ ├── ListPushHeadXTest.php │ │ ├── ListPushTailTest.php │ │ ├── ListPushTailXTest.php │ │ ├── ListRangeTest.php │ │ ├── ListRemoveTest.php │ │ ├── ListSetTest.php │ │ ├── ListTrimTest.php │ │ ├── PrefixHelpersTest.php │ │ ├── PrefixableCommandTest.php │ │ ├── Processor │ │ │ ├── KeyPrefixProcessorTest.php │ │ │ └── ProcessorChainTest.php │ │ ├── PubSubPublishTest.php │ │ ├── PubSubSubscribeByPatternTest.php │ │ ├── PubSubSubscribeTest.php │ │ ├── PubSubUnsubscribeByPatternTest.php │ │ ├── PubSubUnsubscribeTest.php │ │ ├── RawCommandTest.php │ │ ├── ScriptedCommandTest.php │ │ ├── ServerBackgroundRewriteAOFTest.php │ │ ├── ServerBackgroundSaveTest.php │ │ ├── ServerClientTest.php │ │ ├── ServerCommandTest.php │ │ ├── ServerConfigTest.php │ │ ├── ServerDatabaseSizeTest.php │ │ ├── ServerEvalSHATest.php │ │ ├── ServerEvalTest.php │ │ ├── ServerFlushAllTest.php │ │ ├── ServerFlushDatabaseTest.php │ │ ├── ServerInfoTest.php │ │ ├── ServerInfoV26xTest.php │ │ ├── ServerLastSaveTest.php │ │ ├── ServerMonitorTest.php │ │ ├── ServerObjectTest.php │ │ ├── ServerSaveTest.php │ │ ├── ServerScriptTest.php │ │ ├── ServerShutdownTest.php │ │ ├── ServerSlaveOfTest.php │ │ ├── ServerSlowlogTest.php │ │ ├── ServerTimeTest.php │ │ ├── SetAddTest.php │ │ ├── SetCardinalityTest.php │ │ ├── SetDifferenceStoreTest.php │ │ ├── SetDifferenceTest.php │ │ ├── SetIntersectionStoreTest.php │ │ ├── SetIntersectionTest.php │ │ ├── SetIsMemberTest.php │ │ ├── SetMembersTest.php │ │ ├── SetMoveTest.php │ │ ├── SetPopTest.php │ │ ├── SetRandomMemberTest.php │ │ ├── SetRemoveTest.php │ │ ├── SetScanTest.php │ │ ├── SetUnionStoreTest.php │ │ ├── SetUnionTest.php │ │ ├── StringAppendTest.php │ │ ├── StringBitCountTest.php │ │ ├── StringBitOpTest.php │ │ ├── StringDecrementByTest.php │ │ ├── StringDecrementTest.php │ │ ├── StringGetBitTest.php │ │ ├── StringGetMultipleTest.php │ │ ├── StringGetRangeTest.php │ │ ├── StringGetSetTest.php │ │ ├── StringGetTest.php │ │ ├── StringIncrementByFloatTest.php │ │ ├── StringIncrementByTest.php │ │ ├── StringIncrementTest.php │ │ ├── StringPreciseSetExpireTest.php │ │ ├── StringSetBitTest.php │ │ ├── StringSetExpireTest.php │ │ ├── StringSetMultiplePreserveTest.php │ │ ├── StringSetMultipleTest.php │ │ ├── StringSetPreserveTest.php │ │ ├── StringSetRangeTest.php │ │ ├── StringSetTest.php │ │ ├── StringStrlenTest.php │ │ ├── StringSubstrTest.php │ │ ├── TransactionDiscardTest.php │ │ ├── TransactionExecTest.php │ │ ├── TransactionMultiTest.php │ │ ├── TransactionUnwatchTest.php │ │ ├── TransactionWatchTest.php │ │ ├── ZSetAddTest.php │ │ ├── ZSetCardinalityTest.php │ │ ├── ZSetCountTest.php │ │ ├── ZSetIncrementByTest.php │ │ ├── ZSetIntersectionStoreTest.php │ │ ├── ZSetLexCountTest.php │ │ ├── ZSetRangeByLexTest.php │ │ ├── ZSetRangeByScoreTest.php │ │ ├── ZSetRangeTest.php │ │ ├── ZSetRankTest.php │ │ ├── ZSetRemoveRangeByLexTest.php │ │ ├── ZSetRemoveRangeByRankTest.php │ │ ├── ZSetRemoveRangeByScoreTest.php │ │ ├── ZSetRemoveTest.php │ │ ├── ZSetReverseRangeByScoreTest.php │ │ ├── ZSetReverseRangeTest.php │ │ ├── ZSetReverseRankTest.php │ │ ├── ZSetScanTest.php │ │ ├── ZSetScoreTest.php │ │ └── ZSetUnionStoreTest.php │ ├── CommunicationExceptionTest.php │ ├── Connection │ │ ├── ComposableStreamConnectionTest.php │ │ ├── ConnectionExceptionTest.php │ │ ├── ConnectionFactoryTest.php │ │ ├── ConnectionParametersTest.php │ │ ├── MasterSlaveReplicationTest.php │ │ ├── PhpiredisConnectionTest.php │ │ ├── PhpiredisStreamConnectionTest.php │ │ ├── PredisClusterTest.php │ │ ├── RedisClusterTest.php │ │ ├── StreamConnectionTest.php │ │ └── WebdisConnectionTest.php │ ├── HelpersTest.php │ ├── Iterator │ │ ├── MultiBulkResponseSimpleTest.php │ │ └── MultiBulkResponseTupleTest.php │ ├── Monitor │ │ └── MonitorContextTest.php │ ├── Option │ │ ├── AbstractOptionTest.php │ │ ├── ClientClusterTest.php │ │ ├── ClientConnectionFactoryTest.php │ │ ├── ClientExceptionsTest.php │ │ ├── ClientOptionsTest.php │ │ ├── ClientPrefixTest.php │ │ ├── ClientProfileTest.php │ │ ├── ClientReplicationTest.php │ │ └── CustomOptionTest.php │ ├── Pipeline │ │ ├── FireAndForgetExecutorTest.php │ │ ├── MultiExecExecutorTest.php │ │ ├── PipelineContextTest.php │ │ └── StandardExecutorTest.php │ ├── PredisExceptionTest.php │ ├── Profile │ │ ├── ServerProfileTest.php │ │ ├── ServerVersion12Test.php │ │ ├── ServerVersion20Test.php │ │ ├── ServerVersion22Test.php │ │ ├── ServerVersion24Test.php │ │ ├── ServerVersion26Test.php │ │ ├── ServerVersion28Test.php │ │ ├── ServerVersion30Test.php │ │ └── ServerVersionNextTest.php │ ├── Protocol │ │ ├── ProtocolExceptionTest.php │ │ └── Text │ │ │ ├── ComposableTextProtocolTest.php │ │ │ ├── ResponseBulkHandlerTest.php │ │ │ ├── ResponseErrorHandlerTest.php │ │ │ ├── ResponseIntegerHandlerTest.php │ │ │ ├── ResponseMultiBulkHandlerTest.php │ │ │ ├── ResponseMultiBulkStreamHandlerTest.php │ │ │ ├── ResponseStatusHandlerTest.php │ │ │ ├── TextCommandSerializerTest.php │ │ │ ├── TextProtocolTest.php │ │ │ └── TextResponseReaderTest.php │ ├── PubSub │ │ ├── DispatcherLoopTest.php │ │ └── PubSubContextTest.php │ ├── Replication │ │ └── ReplicationStrategyTest.php │ ├── ResponseErrorTest.php │ ├── ResponseQueuedTest.php │ ├── ServerExceptionTest.php │ └── Transaction │ │ ├── AbortedMultiExecExceptionTest.php │ │ └── MultiExecContextTest.php │ ├── README.md │ └── bootstrap.php ├── psr └── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json ├── stack └── builder │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ └── Stack │ │ ├── Builder.php │ │ └── StackedHttpKernel.php │ └── tests │ ├── functional │ └── SilexApplicationTest.php │ └── unit │ └── Stack │ ├── BuilderTest.php │ └── StackedHttpKernelTest.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── composer.json │ ├── doc │ ├── headers.rst │ ├── help-resources.rst │ ├── including-the-files.rst │ ├── index.rst │ ├── installing.rst │ ├── introduction.rst │ ├── japanese.rst │ ├── messages.rst │ ├── overview.rst │ ├── plugins.rst │ ├── sending.rst │ └── uml │ │ ├── Encoders.graffle │ │ ├── Mime.graffle │ │ └── Transports.graffle │ ├── lib │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ ├── mime_types.php │ ├── preferences.php │ ├── swift_init.php │ ├── swift_required.php │ ├── swift_required_pear.php │ └── swiftmailer_generate_mimes_config.php │ ├── phpunit.xml.dist │ └── tests │ ├── IdenticalBinaryConstraint.php │ ├── StreamCollector.php │ ├── SwiftMailerSmokeTestCase.php │ ├── SwiftMailerTestCase.php │ ├── _samples │ ├── charsets │ │ ├── iso-2022-jp │ │ │ └── one.txt │ │ ├── iso-8859-1 │ │ │ └── one.txt │ │ └── utf-8 │ │ │ ├── one.txt │ │ │ ├── three.txt │ │ │ └── two.txt │ ├── dkim │ │ ├── dkim.test.priv │ │ └── dkim.test.pub │ ├── files │ │ ├── data.txt │ │ ├── swiftmailer.png │ │ └── textfile.zip │ └── smime │ │ ├── CA.srl │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── create-cert.sh │ │ ├── encrypt.crt │ │ ├── encrypt.key │ │ ├── encrypt2.crt │ │ ├── encrypt2.key │ │ ├── intermediate.crt │ │ ├── intermediate.key │ │ ├── sign.crt │ │ ├── sign.key │ │ ├── sign2.crt │ │ └── sign2.key │ ├── acceptance.conf.php.default │ ├── acceptance │ └── Swift │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ByteStream │ │ └── FileByteStreamAcceptanceTest.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ ├── DependencyContainerAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── Encoder │ │ ├── Base64EncoderAcceptanceTest.php │ │ ├── QpEncoderAcceptanceTest.php │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ ├── EncodingAcceptanceTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ └── DiskKeyCacheAcceptanceTest.php │ │ ├── MessageAcceptanceTest.php │ │ ├── Mime │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── HeaderEncoder │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── SimpleMessageAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── Transport │ │ └── StreamBuffer │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ ├── BasicSocketAcceptanceTest.php │ │ ├── ProcessAcceptanceTest.php │ │ ├── SocketTimeoutTest.php │ │ ├── SslSocketAcceptanceTest.php │ │ └── TlsSocketAcceptanceTest.php │ ├── bootstrap.php │ ├── bug │ └── Swift │ │ ├── Bug111Test.php │ │ ├── Bug118Test.php │ │ ├── Bug206Test.php │ │ ├── Bug274Test.php │ │ ├── Bug34Test.php │ │ ├── Bug35Test.php │ │ ├── Bug38Test.php │ │ ├── Bug518Test.php │ │ ├── Bug51Test.php │ │ ├── Bug534Test.php │ │ ├── Bug71Test.php │ │ └── Bug76Test.php │ ├── fixtures │ ├── EsmtpTransportFixture.php │ └── MimeEntityFixture.php │ ├── smoke.conf.php.default │ ├── smoke │ └── Swift │ │ └── Smoke │ │ ├── AttachmentSmokeTest.php │ │ ├── BasicSmokeTest.php │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ └── InternationalSmokeTest.php │ └── unit │ └── Swift │ ├── ByteStream │ └── ArrayByteStreamTest.php │ ├── CharacterReader │ ├── GenericFixedWidthReaderTest.php │ ├── UsAsciiReaderTest.php │ └── Utf8ReaderTest.php │ ├── CharacterStream │ └── ArrayCharacterStreamTest.php │ ├── DependencyContainerTest.php │ ├── Encoder │ ├── Base64EncoderTest.php │ ├── QpEncoderTest.php │ └── Rfc2231EncoderTest.php │ ├── Events │ ├── CommandEventTest.php │ ├── EventObjectTest.php │ ├── ResponseEventTest.php │ ├── SendEventTest.php │ ├── SimpleEventDispatcherTest.php │ ├── TransportChangeEventTest.php │ └── TransportExceptionEventTest.php │ ├── KeyCache │ ├── ArrayKeyCacheTest.php │ └── SimpleKeyCacheInputStreamTest.php │ ├── Mailer │ └── ArrayRecipientIteratorTest.php │ ├── MailerTest.php │ ├── MessageTest.php │ ├── Mime │ ├── AbstractMimeEntityTest.php │ ├── AttachmentTest.php │ ├── ContentEncoder │ │ ├── Base64ContentEncoderTest.php │ │ ├── PlainContentEncoderTest.php │ │ └── QpContentEncoderTest.php │ ├── EmbeddedFileTest.php │ ├── HeaderEncoder │ │ ├── Base64HeaderEncoderTest.php │ │ └── QpHeaderEncoderTest.php │ ├── Headers │ │ ├── DateHeaderTest.php │ │ ├── IdentificationHeaderTest.php │ │ ├── MailboxHeaderTest.php │ │ ├── ParameterizedHeaderTest.php │ │ ├── PathHeaderTest.php │ │ └── UnstructuredHeaderTest.php │ ├── MimePartTest.php │ ├── SimpleHeaderFactoryTest.php │ ├── SimpleHeaderSetTest.php │ ├── SimpleMessageTest.php │ └── SimpleMimeEntityTest.php │ ├── Plugins │ ├── AntiFloodPluginTest.php │ ├── BandwidthMonitorPluginTest.php │ ├── DecoratorPluginTest.php │ ├── LoggerPluginTest.php │ ├── Loggers │ │ ├── ArrayLoggerTest.php │ │ └── EchoLoggerTest.php │ ├── PopBeforeSmtpPluginTest.php │ ├── RedirectingPluginTest.php │ ├── ReporterPluginTest.php │ ├── Reporters │ │ ├── HitReporterTest.php │ │ └── HtmlReporterTest.php │ └── ThrottlerPluginTest.php │ ├── Signers │ ├── DKIMSignerTest.php │ ├── OpenDKIMSignerTest.php │ └── SMimeSignerTest.php │ ├── StreamFilters │ ├── ByteArrayReplacementFilterTest.php │ ├── StringReplacementFilterFactoryTest.php │ └── StringReplacementFilterTest.php │ └── Transport │ ├── AbstractSmtpEventSupportTest.php │ ├── AbstractSmtpTest.php │ ├── Esmtp │ ├── Auth │ │ ├── CramMd5AuthenticatorTest.php │ │ ├── LoginAuthenticatorTest.php │ │ ├── NTLMAuthenticatorTest.php │ │ └── PlainAuthenticatorTest.php │ └── AuthHandlerTest.php │ ├── EsmtpTransport │ └── ExtensionSupportTest.php │ ├── EsmtpTransportTest.php │ ├── FailoverTransportTest.php │ ├── LoadBalancedTransportTest.php │ ├── MailTransportTest.php │ ├── SendmailTransportTest.php │ └── StreamBufferTest.php └── symfony ├── browser-kit └── Symfony │ └── Component │ └── BrowserKit │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Client.php │ ├── Cookie.php │ ├── CookieJar.php │ ├── History.php │ ├── LICENSE │ ├── README.md │ ├── Request.php │ ├── Response.php │ ├── Tests │ ├── ClientTest.php │ ├── CookieJarTest.php │ ├── CookieTest.php │ ├── HistoryTest.php │ ├── RequestTest.php │ └── ResponseTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── console └── Symfony │ └── Component │ └── Console │ ├── .gitignore │ ├── Application.php │ ├── CHANGELOG.md │ ├── Command │ ├── Command.php │ ├── HelpCommand.php │ └── ListCommand.php │ ├── ConsoleEvents.php │ ├── Descriptor │ ├── ApplicationDescription.php │ ├── Descriptor.php │ ├── DescriptorInterface.php │ ├── JsonDescriptor.php │ ├── MarkdownDescriptor.php │ ├── TextDescriptor.php │ └── XmlDescriptor.php │ ├── Event │ ├── ConsoleCommandEvent.php │ ├── ConsoleEvent.php │ ├── ConsoleExceptionEvent.php │ └── ConsoleTerminateEvent.php │ ├── Formatter │ ├── OutputFormatter.php │ ├── OutputFormatterInterface.php │ ├── OutputFormatterStyle.php │ ├── OutputFormatterStyleInterface.php │ └── OutputFormatterStyleStack.php │ ├── Helper │ ├── DescriptorHelper.php │ ├── DialogHelper.php │ ├── FormatterHelper.php │ ├── Helper.php │ ├── HelperInterface.php │ ├── HelperSet.php │ ├── InputAwareHelper.php │ ├── ProgressBar.php │ ├── ProgressHelper.php │ ├── QuestionHelper.php │ ├── Table.php │ ├── TableHelper.php │ ├── TableSeparator.php │ └── TableStyle.php │ ├── Input │ ├── ArgvInput.php │ ├── ArrayInput.php │ ├── Input.php │ ├── InputArgument.php │ ├── InputAwareInterface.php │ ├── InputDefinition.php │ ├── InputInterface.php │ ├── InputOption.php │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ └── ConsoleLogger.php │ ├── Output │ ├── BufferedOutput.php │ ├── ConsoleOutput.php │ ├── ConsoleOutputInterface.php │ ├── NullOutput.php │ ├── Output.php │ ├── OutputInterface.php │ └── StreamOutput.php │ ├── Question │ ├── ChoiceQuestion.php │ ├── ConfirmationQuestion.php │ └── Question.php │ ├── README.md │ ├── Resources │ └── bin │ │ └── hiddeninput.exe │ ├── Shell.php │ ├── Tester │ ├── ApplicationTester.php │ └── CommandTester.php │ ├── Tests │ ├── ApplicationTest.php │ ├── Command │ │ ├── CommandTest.php │ │ ├── HelpCommandTest.php │ │ └── ListCommandTest.php │ ├── Descriptor │ │ ├── AbstractDescriptorTest.php │ │ ├── JsonDescriptorTest.php │ │ ├── MarkdownDescriptorTest.php │ │ ├── ObjectsProvider.php │ │ ├── TextDescriptorTest.php │ │ └── XmlDescriptorTest.php │ ├── Fixtures │ │ ├── BarBucCommand.php │ │ ├── DescriptorApplication1.php │ │ ├── DescriptorApplication2.php │ │ ├── DescriptorCommand1.php │ │ ├── DescriptorCommand2.php │ │ ├── DummyOutput.php │ │ ├── Foo1Command.php │ │ ├── Foo2Command.php │ │ ├── Foo3Command.php │ │ ├── Foo4Command.php │ │ ├── Foo5Command.php │ │ ├── FooCommand.php │ │ ├── FooSubnamespaced1Command.php │ │ ├── FooSubnamespaced2Command.php │ │ ├── FoobarCommand.php │ │ ├── TestCommand.php │ │ ├── application_1.json │ │ ├── application_1.md │ │ ├── application_1.txt │ │ ├── application_1.xml │ │ ├── application_2.json │ │ ├── application_2.md │ │ ├── application_2.txt │ │ ├── application_2.xml │ │ ├── application_astext1.txt │ │ ├── application_astext2.txt │ │ ├── application_asxml1.txt │ │ ├── application_asxml2.txt │ │ ├── application_gethelp.txt │ │ ├── application_renderexception1.txt │ │ ├── application_renderexception2.txt │ │ ├── application_renderexception3.txt │ │ ├── application_renderexception3decorated.txt │ │ ├── application_renderexception4.txt │ │ ├── application_renderexception_doublewidth1.txt │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ ├── application_renderexception_doublewidth2.txt │ │ ├── application_run1.txt │ │ ├── application_run2.txt │ │ ├── application_run3.txt │ │ ├── application_run4.txt │ │ ├── command_1.json │ │ ├── command_1.md │ │ ├── command_1.txt │ │ ├── command_1.xml │ │ ├── command_2.json │ │ ├── command_2.md │ │ ├── command_2.txt │ │ ├── command_2.xml │ │ ├── command_astext.txt │ │ ├── command_asxml.txt │ │ ├── definition_astext.txt │ │ ├── definition_asxml.txt │ │ ├── input_argument_1.json │ │ ├── input_argument_1.md │ │ ├── input_argument_1.txt │ │ ├── input_argument_1.xml │ │ ├── input_argument_2.json │ │ ├── input_argument_2.md │ │ ├── input_argument_2.txt │ │ ├── input_argument_2.xml │ │ ├── input_argument_3.json │ │ ├── input_argument_3.md │ │ ├── input_argument_3.txt │ │ ├── input_argument_3.xml │ │ ├── input_definition_1.json │ │ ├── input_definition_1.md │ │ ├── input_definition_1.txt │ │ ├── input_definition_1.xml │ │ ├── input_definition_2.json │ │ ├── input_definition_2.md │ │ ├── input_definition_2.txt │ │ ├── input_definition_2.xml │ │ ├── input_definition_3.json │ │ ├── input_definition_3.md │ │ ├── input_definition_3.txt │ │ ├── input_definition_3.xml │ │ ├── input_definition_4.json │ │ ├── input_definition_4.md │ │ ├── input_definition_4.txt │ │ ├── input_definition_4.xml │ │ ├── input_option_1.json │ │ ├── input_option_1.md │ │ ├── input_option_1.txt │ │ ├── input_option_1.xml │ │ ├── input_option_2.json │ │ ├── input_option_2.md │ │ ├── input_option_2.txt │ │ ├── input_option_2.xml │ │ ├── input_option_3.json │ │ ├── input_option_3.md │ │ ├── input_option_3.txt │ │ ├── input_option_3.xml │ │ ├── input_option_4.json │ │ ├── input_option_4.md │ │ ├── input_option_4.txt │ │ └── input_option_4.xml │ ├── Formatter │ │ ├── OutputFormatterStyleStackTest.php │ │ ├── OutputFormatterStyleTest.php │ │ └── OutputFormatterTest.php │ ├── Helper │ │ ├── FormatterHelperTest.php │ │ ├── HelperSetTest.php │ │ ├── LegacyDialogHelperTest.php │ │ ├── LegacyProgressHelperTest.php │ │ ├── LegacyTableHelperTest.php │ │ ├── ProgressBarTest.php │ │ ├── QuestionHelperTest.php │ │ └── TableTest.php │ ├── Input │ │ ├── ArgvInputTest.php │ │ ├── ArrayInputTest.php │ │ ├── InputArgumentTest.php │ │ ├── InputDefinitionTest.php │ │ ├── InputOptionTest.php │ │ ├── InputTest.php │ │ └── StringInputTest.php │ ├── Logger │ │ └── ConsoleLoggerTest.php │ ├── Output │ │ ├── ConsoleOutputTest.php │ │ ├── NullOutputTest.php │ │ ├── OutputTest.php │ │ └── StreamOutputTest.php │ └── Tester │ │ ├── ApplicationTesterTest.php │ │ └── CommandTesterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── css-selector └── Symfony │ └── Component │ └── CssSelector │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CssSelector.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── ExpressionErrorException.php │ ├── InternalErrorException.php │ ├── ParseException.php │ └── SyntaxErrorException.php │ ├── LICENSE │ ├── Node │ ├── AbstractNode.php │ ├── AttributeNode.php │ ├── ClassNode.php │ ├── CombinedSelectorNode.php │ ├── ElementNode.php │ ├── FunctionNode.php │ ├── HashNode.php │ ├── NegationNode.php │ ├── NodeInterface.php │ ├── PseudoNode.php │ ├── SelectorNode.php │ └── Specificity.php │ ├── Parser │ ├── Handler │ │ ├── CommentHandler.php │ │ ├── HandlerInterface.php │ │ ├── HashHandler.php │ │ ├── IdentifierHandler.php │ │ ├── NumberHandler.php │ │ ├── StringHandler.php │ │ └── WhitespaceHandler.php │ ├── Parser.php │ ├── ParserInterface.php │ ├── Reader.php │ ├── Shortcut │ │ ├── ClassParser.php │ │ ├── ElementParser.php │ │ ├── EmptyStringParser.php │ │ └── HashParser.php │ ├── Token.php │ ├── TokenStream.php │ └── Tokenizer │ │ ├── Tokenizer.php │ │ ├── TokenizerEscaping.php │ │ └── TokenizerPatterns.php │ ├── README.md │ ├── Tests │ ├── CssSelectorTest.php │ ├── Node │ │ ├── AbstractNodeTest.php │ │ ├── AttributeNodeTest.php │ │ ├── ClassNodeTest.php │ │ ├── CombinedSelectorNodeTest.php │ │ ├── ElementNodeTest.php │ │ ├── FunctionNodeTest.php │ │ ├── HashNodeTest.php │ │ ├── NegationNodeTest.php │ │ ├── PseudoNodeTest.php │ │ ├── SelectorNodeTest.php │ │ └── SpecificityTest.php │ ├── Parser │ │ ├── Handler │ │ │ ├── AbstractHandlerTest.php │ │ │ ├── CommentHandlerTest.php │ │ │ ├── HashHandlerTest.php │ │ │ ├── IdentifierHandlerTest.php │ │ │ ├── NumberHandlerTest.php │ │ │ ├── StringHandlerTest.php │ │ │ └── WhitespaceHandlerTest.php │ │ ├── ParserTest.php │ │ ├── ReaderTest.php │ │ ├── Shortcut │ │ │ ├── ClassParserTest.php │ │ │ ├── ElementParserTest.php │ │ │ ├── EmptyStringParserTest.php │ │ │ └── HashParserTest.php │ │ └── TokenStreamTest.php │ └── XPath │ │ ├── Fixtures │ │ ├── ids.html │ │ ├── lang.xml │ │ └── shakespear.html │ │ └── TranslatorTest.php │ ├── XPath │ ├── Extension │ │ ├── AbstractExtension.php │ │ ├── AttributeMatchingExtension.php │ │ ├── CombinationExtension.php │ │ ├── ExtensionInterface.php │ │ ├── FunctionExtension.php │ │ ├── HtmlExtension.php │ │ ├── NodeExtension.php │ │ └── PseudoClassExtension.php │ ├── Translator.php │ ├── TranslatorInterface.php │ └── XPathExpr.php │ ├── composer.json │ └── phpunit.xml.dist ├── debug └── Symfony │ └── Component │ └── Debug │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── ErrorHandler.php │ ├── Exception │ ├── ClassNotFoundException.php │ ├── ContextErrorException.php │ ├── DummyException.php │ ├── FatalErrorException.php │ ├── FlattenException.php │ ├── OutOfMemoryException.php │ ├── UndefinedFunctionException.php │ └── UndefinedMethodException.php │ ├── ExceptionHandler.php │ ├── FatalErrorHandler │ ├── ClassNotFoundFatalErrorHandler.php │ ├── FatalErrorHandlerInterface.php │ ├── UndefinedFunctionFatalErrorHandler.php │ └── UndefinedMethodFatalErrorHandler.php │ ├── LICENSE │ ├── README.md │ ├── Tests │ ├── DebugClassLoaderTest.php │ ├── ErrorHandlerTest.php │ ├── Exception │ │ └── FlattenExceptionTest.php │ ├── ExceptionHandlerTest.php │ ├── FatalErrorHandler │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ ├── Fixtures │ │ ├── ClassAlias.php │ │ ├── PEARClass.php │ │ ├── RequiredTwice.php │ │ ├── casemismatch.php │ │ ├── notPsr0Bis.php │ │ ├── psr4 │ │ │ └── Psr4CaseMismatch.php │ │ └── reallyNotPsr0.php │ └── MockExceptionHandler.php │ ├── composer.json │ └── phpunit.xml.dist ├── dom-crawler └── Symfony │ └── Component │ └── DomCrawler │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ ├── ChoiceFormField.php │ ├── FileFormField.php │ ├── FormField.php │ ├── InputFormField.php │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Tests │ ├── CrawlerTest.php │ ├── Field │ │ ├── ChoiceFormFieldTest.php │ │ ├── FileFormFieldTest.php │ │ ├── FormFieldTest.php │ │ ├── FormFieldTestCase.php │ │ ├── InputFormFieldTest.php │ │ └── TextareaFormFieldTest.php │ ├── Fixtures │ │ ├── no-extension │ │ └── windows-1250.html │ ├── FormTest.php │ └── LinkTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── event-dispatcher ├── .gitignore ├── CHANGELOG.md ├── ContainerAwareEventDispatcher.php ├── Debug │ ├── TraceableEventDispatcher.php │ ├── TraceableEventDispatcherInterface.php │ └── WrappedListener.php ├── DependencyInjection │ └── RegisterListenersPass.php ├── Event.php ├── EventDispatcher.php ├── EventDispatcherInterface.php ├── EventSubscriberInterface.php ├── GenericEvent.php ├── ImmutableEventDispatcher.php ├── LICENSE ├── README.md ├── Tests │ ├── AbstractEventDispatcherTest.php │ ├── ContainerAwareEventDispatcherTest.php │ ├── Debug │ │ └── TraceableEventDispatcherTest.php │ ├── DependencyInjection │ │ └── RegisterListenersPassTest.php │ ├── EventDispatcherTest.php │ ├── EventTest.php │ ├── GenericEventTest.php │ └── ImmutableEventDispatcherTest.php ├── composer.json └── phpunit.xml.dist ├── filesystem ├── .gitignore ├── CHANGELOG.md ├── Exception │ ├── ExceptionInterface.php │ ├── FileNotFoundException.php │ ├── IOException.php │ └── IOExceptionInterface.php ├── Filesystem.php ├── LICENSE ├── LockHandler.php ├── README.md ├── Tests │ ├── ExceptionTest.php │ ├── FilesystemTest.php │ ├── FilesystemTestCase.php │ └── LockHandlerTest.php ├── composer.json └── phpunit.xml.dist ├── finder └── Symfony │ └── Component │ └── Finder │ ├── .gitignore │ ├── Adapter │ ├── AbstractAdapter.php │ ├── AbstractFindAdapter.php │ ├── AdapterInterface.php │ ├── BsdFindAdapter.php │ ├── GnuFindAdapter.php │ └── PhpAdapter.php │ ├── CHANGELOG.md │ ├── Comparator │ ├── Comparator.php │ ├── DateComparator.php │ └── NumberComparator.php │ ├── Exception │ ├── AccessDeniedException.php │ ├── AdapterFailureException.php │ ├── ExceptionInterface.php │ ├── OperationNotPermitedException.php │ └── ShellCommandFailureException.php │ ├── Expression │ ├── Expression.php │ ├── Glob.php │ ├── Regex.php │ └── ValueInterface.php │ ├── Finder.php │ ├── Glob.php │ ├── Iterator │ ├── CustomFilterIterator.php │ ├── DateRangeFilterIterator.php │ ├── DepthRangeFilterIterator.php │ ├── ExcludeDirectoryFilterIterator.php │ ├── FilePathsIterator.php │ ├── FileTypeFilterIterator.php │ ├── FilecontentFilterIterator.php │ ├── FilenameFilterIterator.php │ ├── FilterIterator.php │ ├── MultiplePcreFilterIterator.php │ ├── PathFilterIterator.php │ ├── RecursiveDirectoryIterator.php │ ├── SizeRangeFilterIterator.php │ └── SortableIterator.php │ ├── LICENSE │ ├── README.md │ ├── Shell │ ├── Command.php │ └── Shell.php │ ├── SplFileInfo.php │ ├── Tests │ ├── Comparator │ │ ├── ComparatorTest.php │ │ ├── DateComparatorTest.php │ │ └── NumberComparatorTest.php │ ├── Expression │ │ ├── ExpressionTest.php │ │ ├── GlobTest.php │ │ └── RegexTest.php │ ├── FakeAdapter │ │ ├── DummyAdapter.php │ │ ├── FailingAdapter.php │ │ ├── NamedAdapter.php │ │ └── UnsupportedAdapter.php │ ├── FinderTest.php │ ├── Fixtures │ │ ├── A │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ │ └── abc.dat │ │ │ │ └── ab.dat │ │ │ └── a.dat │ │ ├── copy │ │ │ └── A │ │ │ │ ├── B │ │ │ │ ├── C │ │ │ │ │ └── abc.dat.copy │ │ │ │ └── ab.dat.copy │ │ │ │ └── a.dat.copy │ │ ├── dolor.txt │ │ ├── ipsum.txt │ │ ├── lorem.txt │ │ ├── one │ │ │ ├── a │ │ │ └── b │ │ │ │ ├── c.neon │ │ │ │ └── d.neon │ │ ├── r+e.gex[c]a(r)s │ │ │ └── dir │ │ │ │ └── bar.dat │ │ └── with space │ │ │ └── foo.txt │ └── Iterator │ │ ├── CustomFilterIteratorTest.php │ │ ├── DateRangeFilterIteratorTest.php │ │ ├── DepthRangeFilterIteratorTest.php │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ ├── FilePathsIteratorTest.php │ │ ├── FileTypeFilterIteratorTest.php │ │ ├── FilecontentFilterIteratorTest.php │ │ ├── FilenameFilterIteratorTest.php │ │ ├── FilterIteratorTest.php │ │ ├── Iterator.php │ │ ├── IteratorTestCase.php │ │ ├── MockFileListIterator.php │ │ ├── MockSplFileInfo.php │ │ ├── MultiplePcreFilterIteratorTest.php │ │ ├── PathFilterIteratorTest.php │ │ ├── RealIteratorTestCase.php │ │ ├── RecursiveDirectoryIteratorTest.php │ │ ├── SizeRangeFilterIteratorTest.php │ │ └── SortableIteratorTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-foundation └── Symfony │ └── Component │ └── HttpFoundation │ ├── .gitignore │ ├── AcceptHeader.php │ ├── AcceptHeaderItem.php │ ├── ApacheRequest.php │ ├── BinaryFileResponse.php │ ├── CHANGELOG.md │ ├── Cookie.php │ ├── ExpressionRequestMatcher.php │ ├── File │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── FileException.php │ │ ├── FileNotFoundException.php │ │ ├── UnexpectedTypeException.php │ │ └── UploadException.php │ ├── File.php │ ├── MimeType │ │ ├── ExtensionGuesser.php │ │ ├── ExtensionGuesserInterface.php │ │ ├── FileBinaryMimeTypeGuesser.php │ │ ├── FileinfoMimeTypeGuesser.php │ │ ├── MimeTypeExtensionGuesser.php │ │ ├── MimeTypeGuesser.php │ │ └── MimeTypeGuesserInterface.php │ └── UploadedFile.php │ ├── FileBag.php │ ├── HeaderBag.php │ ├── IpUtils.php │ ├── JsonResponse.php │ ├── LICENSE │ ├── ParameterBag.php │ ├── README.md │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestMatcher.php │ ├── RequestMatcherInterface.php │ ├── RequestStack.php │ ├── Resources │ └── stubs │ │ └── SessionHandlerInterface.php │ ├── Response.php │ ├── ResponseHeaderBag.php │ ├── ServerBag.php │ ├── Session │ ├── Attribute │ │ ├── AttributeBag.php │ │ ├── AttributeBagInterface.php │ │ └── NamespacedAttributeBag.php │ ├── Flash │ │ ├── AutoExpireFlashBag.php │ │ ├── FlashBag.php │ │ └── FlashBagInterface.php │ ├── Session.php │ ├── SessionBagInterface.php │ ├── SessionInterface.php │ └── Storage │ │ ├── Handler │ │ ├── MemcacheSessionHandler.php │ │ ├── MemcachedSessionHandler.php │ │ ├── MongoDbSessionHandler.php │ │ ├── NativeFileSessionHandler.php │ │ ├── NativeSessionHandler.php │ │ ├── NullSessionHandler.php │ │ ├── PdoSessionHandler.php │ │ └── WriteCheckSessionHandler.php │ │ ├── MetadataBag.php │ │ ├── MockArraySessionStorage.php │ │ ├── MockFileSessionStorage.php │ │ ├── NativeSessionStorage.php │ │ ├── PhpBridgeSessionStorage.php │ │ ├── Proxy │ │ ├── AbstractProxy.php │ │ ├── NativeProxy.php │ │ └── SessionHandlerProxy.php │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ ├── Tests │ ├── AcceptHeaderItemTest.php │ ├── AcceptHeaderTest.php │ ├── ApacheRequestTest.php │ ├── BinaryFileResponseTest.php │ ├── CookieTest.php │ ├── ExpressionRequestMatcherTest.php │ ├── File │ │ ├── FakeFile.php │ │ ├── FileTest.php │ │ ├── Fixtures │ │ │ ├── .unknownextension │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ ├── test │ │ │ └── test.gif │ │ ├── MimeType │ │ │ └── MimeTypeTest.php │ │ └── UploadedFileTest.php │ ├── FileBagTest.php │ ├── HeaderBagTest.php │ ├── IpUtilsTest.php │ ├── JsonResponseTest.php │ ├── ParameterBagTest.php │ ├── RedirectResponseTest.php │ ├── RequestMatcherTest.php │ ├── RequestStackTest.php │ ├── RequestTest.php │ ├── ResponseHeaderBagTest.php │ ├── ResponseTest.php │ ├── ResponseTestCase.php │ ├── ServerBagTest.php │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBagTest.php │ │ │ └── NamespacedAttributeBagTest.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ └── FlashBagTest.php │ │ ├── SessionTest.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ ├── NativeSessionHandlerTest.php │ │ │ ├── NullSessionHandlerTest.php │ │ │ ├── PdoSessionHandlerTest.php │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ ├── MetadataBagTest.php │ │ │ ├── MockArraySessionStorageTest.php │ │ │ ├── MockFileSessionStorageTest.php │ │ │ ├── NativeSessionStorageTest.php │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ └── Proxy │ │ │ ├── AbstractProxyTest.php │ │ │ ├── NativeProxyTest.php │ │ │ └── SessionHandlerProxyTest.php │ └── StreamedResponseTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-kernel └── Symfony │ └── Component │ └── HttpKernel │ ├── .gitignore │ ├── Bundle │ ├── Bundle.php │ └── BundleInterface.php │ ├── CHANGELOG.md │ ├── CacheClearer │ ├── CacheClearerInterface.php │ └── ChainCacheClearer.php │ ├── CacheWarmer │ ├── CacheWarmer.php │ ├── CacheWarmerAggregate.php │ ├── CacheWarmerInterface.php │ └── WarmableInterface.php │ ├── Client.php │ ├── Config │ ├── EnvParametersResource.php │ └── FileLocator.php │ ├── Controller │ ├── ControllerReference.php │ ├── ControllerResolver.php │ ├── ControllerResolverInterface.php │ └── TraceableControllerResolver.php │ ├── DataCollector │ ├── ConfigDataCollector.php │ ├── DataCollector.php │ ├── DataCollectorInterface.php │ ├── EventDataCollector.php │ ├── ExceptionDataCollector.php │ ├── LateDataCollectorInterface.php │ ├── LoggerDataCollector.php │ ├── MemoryDataCollector.php │ ├── RequestDataCollector.php │ ├── RouterDataCollector.php │ ├── TimeDataCollector.php │ └── Util │ │ └── ValueExporter.php │ ├── Debug │ ├── ErrorHandler.php │ ├── ExceptionHandler.php │ └── TraceableEventDispatcher.php │ ├── DependencyInjection │ ├── AddClassesToCachePass.php │ ├── ConfigurableExtension.php │ ├── ContainerAwareHttpKernel.php │ ├── Extension.php │ ├── MergeExtensionConfigurationPass.php │ └── RegisterListenersPass.php │ ├── Event │ ├── FilterControllerEvent.php │ ├── FilterResponseEvent.php │ ├── FinishRequestEvent.php │ ├── GetResponseEvent.php │ ├── GetResponseForControllerResultEvent.php │ ├── GetResponseForExceptionEvent.php │ ├── KernelEvent.php │ └── PostResponseEvent.php │ ├── EventListener │ ├── AddRequestFormatsListener.php │ ├── DebugHandlersListener.php │ ├── ErrorsLoggerListener.php │ ├── EsiListener.php │ ├── ExceptionListener.php │ ├── FragmentListener.php │ ├── LocaleListener.php │ ├── ProfilerListener.php │ ├── ResponseListener.php │ ├── RouterListener.php │ ├── SaveSessionListener.php │ ├── SessionListener.php │ ├── StreamedResponseListener.php │ └── TestSessionListener.php │ ├── Exception │ ├── AccessDeniedHttpException.php │ ├── BadRequestHttpException.php │ ├── ConflictHttpException.php │ ├── FatalErrorException.php │ ├── FlattenException.php │ ├── GoneHttpException.php │ ├── HttpException.php │ ├── HttpExceptionInterface.php │ ├── LengthRequiredHttpException.php │ ├── MethodNotAllowedHttpException.php │ ├── NotAcceptableHttpException.php │ ├── NotFoundHttpException.php │ ├── PreconditionFailedHttpException.php │ ├── PreconditionRequiredHttpException.php │ ├── ServiceUnavailableHttpException.php │ ├── TooManyRequestsHttpException.php │ ├── UnauthorizedHttpException.php │ ├── UnprocessableEntityHttpException.php │ └── UnsupportedMediaTypeHttpException.php │ ├── Fragment │ ├── EsiFragmentRenderer.php │ ├── FragmentHandler.php │ ├── FragmentRendererInterface.php │ ├── HIncludeFragmentRenderer.php │ ├── InlineFragmentRenderer.php │ └── RoutableFragmentRenderer.php │ ├── HttpCache │ ├── Esi.php │ ├── EsiResponseCacheStrategy.php │ ├── EsiResponseCacheStrategyInterface.php │ ├── HttpCache.php │ ├── Store.php │ └── StoreInterface.php │ ├── HttpKernel.php │ ├── HttpKernelInterface.php │ ├── Kernel.php │ ├── KernelEvents.php │ ├── KernelInterface.php │ ├── LICENSE │ ├── Log │ ├── DebugLoggerInterface.php │ ├── LoggerInterface.php │ └── NullLogger.php │ ├── Profiler │ ├── BaseMemcacheProfilerStorage.php │ ├── FileProfilerStorage.php │ ├── MemcacheProfilerStorage.php │ ├── MemcachedProfilerStorage.php │ ├── MongoDbProfilerStorage.php │ ├── MysqlProfilerStorage.php │ ├── PdoProfilerStorage.php │ ├── Profile.php │ ├── Profiler.php │ ├── ProfilerStorageInterface.php │ ├── RedisProfilerStorage.php │ └── SqliteProfilerStorage.php │ ├── README.md │ ├── TerminableInterface.php │ ├── Tests │ ├── Bundle │ │ └── BundleTest.php │ ├── CacheClearer │ │ └── ChainCacheClearerTest.php │ ├── CacheWarmer │ │ ├── CacheWarmerAggregateTest.php │ │ └── CacheWarmerTest.php │ ├── ClientTest.php │ ├── Config │ │ ├── EnvParametersResourceTest.php │ │ └── FileLocatorTest.php │ ├── Controller │ │ └── ControllerResolverTest.php │ ├── DataCollector │ │ ├── ConfigDataCollectorTest.php │ │ ├── ExceptionDataCollectorTest.php │ │ ├── LoggerDataCollectorTest.php │ │ ├── MemoryDataCollectorTest.php │ │ ├── RequestDataCollectorTest.php │ │ └── TimeDataCollectorTest.php │ ├── Debug │ │ └── TraceableEventDispatcherTest.php │ ├── DependencyInjection │ │ ├── ContainerAwareHttpKernelTest.php │ │ └── MergeExtensionConfigurationPassTest.php │ ├── EventListener │ │ ├── AddRequestFormatsListenerTest.php │ │ ├── EsiListenerTest.php │ │ ├── ExceptionListenerTest.php │ │ ├── FragmentListenerTest.php │ │ ├── LocaleListenerTest.php │ │ ├── ProfilerListenerTest.php │ │ ├── ResponseListenerTest.php │ │ ├── RouterListenerTest.php │ │ └── TestSessionListenerTest.php │ ├── Fixtures │ │ ├── BaseBundle │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ ├── Bundle1Bundle │ │ │ ├── Resources │ │ │ │ └── foo.txt │ │ │ ├── bar.txt │ │ │ └── foo.txt │ │ ├── Bundle2Bundle │ │ │ └── foo.txt │ │ ├── ChildBundle │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ ├── ExtensionAbsentBundle │ │ │ └── ExtensionAbsentBundle.php │ │ ├── ExtensionLoadedBundle │ │ │ ├── DependencyInjection │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ └── ExtensionLoadedBundle.php │ │ ├── ExtensionPresentBundle │ │ │ ├── Command │ │ │ │ ├── BarCommand.php │ │ │ │ └── FooCommand.php │ │ │ ├── DependencyInjection │ │ │ │ └── ExtensionPresentExtension.php │ │ │ └── ExtensionPresentBundle.php │ │ ├── FooBarBundle.php │ │ ├── KernelForOverrideName.php │ │ ├── KernelForTest.php │ │ ├── Resources │ │ │ ├── BaseBundle │ │ │ │ └── hide.txt │ │ │ ├── Bundle1Bundle │ │ │ │ └── foo.txt │ │ │ ├── ChildBundle │ │ │ │ └── foo.txt │ │ │ └── FooBundle │ │ │ │ └── foo.txt │ │ ├── TestClient.php │ │ └── TestEventDispatcher.php │ ├── Fragment │ │ ├── EsiFragmentRendererTest.php │ │ ├── FragmentHandlerTest.php │ │ ├── HIncludeFragmentRendererTest.php │ │ ├── InlineFragmentRendererTest.php │ │ └── RoutableFragmentRendererTest.php │ ├── HttpCache │ │ ├── EsiTest.php │ │ ├── HttpCacheTest.php │ │ ├── HttpCacheTestCase.php │ │ ├── StoreTest.php │ │ ├── TestHttpKernel.php │ │ └── TestMultipleHttpKernel.php │ ├── HttpKernelTest.php │ ├── KernelTest.php │ ├── Logger.php │ ├── Profiler │ │ ├── AbstractProfilerStorageTest.php │ │ ├── FileProfilerStorageTest.php │ │ ├── MemcacheProfilerStorageTest.php │ │ ├── MemcachedProfilerStorageTest.php │ │ ├── Mock │ │ │ ├── MemcacheMock.php │ │ │ ├── MemcachedMock.php │ │ │ └── RedisMock.php │ │ ├── MongoDbProfilerStorageTest.php │ │ ├── ProfilerTest.php │ │ ├── RedisProfilerStorageTest.php │ │ └── SqliteProfilerStorageTest.php │ ├── TestHttpKernel.php │ └── UriSignerTest.php │ ├── UriSigner.php │ ├── composer.json │ └── phpunit.xml.dist ├── process └── Symfony │ └── Component │ └── Process │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── ProcessFailedException.php │ ├── ProcessTimedOutException.php │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── LICENSE │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Process.php │ ├── ProcessBuilder.php │ ├── ProcessPipes.php │ ├── ProcessUtils.php │ ├── README.md │ ├── Tests │ ├── AbstractProcessTest.php │ ├── ExecutableFinderTest.php │ ├── NonStopableProcess.php │ ├── PhpExecutableFinderTest.php │ ├── PhpProcessTest.php │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ ├── ProcessBuilderTest.php │ ├── ProcessFailedExceptionTest.php │ ├── ProcessInSigchildEnvironment.php │ ├── ProcessUtilsTest.php │ ├── SigchildDisabledProcessTest.php │ ├── SigchildEnabledProcessTest.php │ ├── SignalListener.php │ └── SimpleProcessTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── routing └── Symfony │ └── Component │ └── Routing │ ├── .gitignore │ ├── Annotation │ └── Route.php │ ├── CHANGELOG.md │ ├── CompiledRoute.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidParameterException.php │ ├── MethodNotAllowedException.php │ ├── MissingMandatoryParametersException.php │ ├── ResourceNotFoundException.php │ └── RouteNotFoundException.php │ ├── Generator │ ├── ConfigurableRequirementsInterface.php │ ├── Dumper │ │ ├── GeneratorDumper.php │ │ ├── GeneratorDumperInterface.php │ │ └── PhpGeneratorDumper.php │ ├── UrlGenerator.php │ └── UrlGeneratorInterface.php │ ├── LICENSE │ ├── Loader │ ├── AnnotationClassLoader.php │ ├── AnnotationDirectoryLoader.php │ ├── AnnotationFileLoader.php │ ├── ClosureLoader.php │ ├── PhpFileLoader.php │ ├── XmlFileLoader.php │ ├── YamlFileLoader.php │ └── schema │ │ └── routing │ │ └── routing-1.0.xsd │ ├── Matcher │ ├── ApacheUrlMatcher.php │ ├── Dumper │ │ ├── ApacheMatcherDumper.php │ │ ├── DumperCollection.php │ │ ├── DumperPrefixCollection.php │ │ ├── DumperRoute.php │ │ ├── MatcherDumper.php │ │ ├── MatcherDumperInterface.php │ │ └── PhpMatcherDumper.php │ ├── RedirectableUrlMatcher.php │ ├── RedirectableUrlMatcherInterface.php │ ├── RequestMatcherInterface.php │ ├── TraceableUrlMatcher.php │ ├── UrlMatcher.php │ └── UrlMatcherInterface.php │ ├── README.md │ ├── RequestContext.php │ ├── RequestContextAwareInterface.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteCompiler.php │ ├── RouteCompilerInterface.php │ ├── Router.php │ ├── RouterInterface.php │ ├── Tests │ ├── Annotation │ │ └── RouteTest.php │ ├── CompiledRouteTest.php │ ├── Fixtures │ │ ├── AnnotatedClasses │ │ │ ├── AbstractClass.php │ │ │ ├── BarClass.php │ │ │ └── FooClass.php │ │ ├── CustomXmlFileLoader.php │ │ ├── RedirectableUrlMatcher.php │ │ ├── annotated.php │ │ ├── dumper │ │ │ ├── url_matcher1.apache │ │ │ ├── url_matcher1.php │ │ │ ├── url_matcher2.apache │ │ │ ├── url_matcher2.php │ │ │ └── url_matcher3.php │ │ ├── empty.yml │ │ ├── foo.xml │ │ ├── foo1.xml │ │ ├── incomplete.yml │ │ ├── missing_id.xml │ │ ├── missing_path.xml │ │ ├── namespaceprefix.xml │ │ ├── nonesense_resource_plus_path.yml │ │ ├── nonesense_type_without_resource.yml │ │ ├── nonvalid.xml │ │ ├── nonvalid.yml │ │ ├── nonvalid2.yml │ │ ├── nonvalidkeys.yml │ │ ├── nonvalidnode.xml │ │ ├── nonvalidroute.xml │ │ ├── null_values.xml │ │ ├── special_route_name.yml │ │ ├── validpattern.php │ │ ├── validpattern.xml │ │ ├── validpattern.yml │ │ ├── validresource.xml │ │ ├── validresource.yml │ │ └── withdoctype.xml │ ├── Generator │ │ ├── Dumper │ │ │ └── PhpGeneratorDumperTest.php │ │ └── UrlGeneratorTest.php │ ├── Loader │ │ ├── AbstractAnnotationLoaderTest.php │ │ ├── AnnotationClassLoaderTest.php │ │ ├── AnnotationDirectoryLoaderTest.php │ │ ├── AnnotationFileLoaderTest.php │ │ ├── ClosureLoaderTest.php │ │ ├── PhpFileLoaderTest.php │ │ ├── XmlFileLoaderTest.php │ │ └── YamlFileLoaderTest.php │ ├── Matcher │ │ ├── Dumper │ │ │ ├── DumperCollectionTest.php │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ ├── LegacyApacheMatcherDumperTest.php │ │ │ └── PhpMatcherDumperTest.php │ │ ├── LegacyApacheUrlMatcherTest.php │ │ ├── RedirectableUrlMatcherTest.php │ │ ├── TraceableUrlMatcherTest.php │ │ └── UrlMatcherTest.php │ ├── RequestContextTest.php │ ├── RouteCollectionTest.php │ ├── RouteCompilerTest.php │ ├── RouteTest.php │ └── RouterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── security-core └── Symfony │ └── Component │ └── Security │ └── Core │ ├── .gitignore │ ├── Authentication │ ├── AuthenticationManagerInterface.php │ ├── AuthenticationProviderManager.php │ ├── AuthenticationTrustResolver.php │ ├── AuthenticationTrustResolverInterface.php │ ├── Provider │ │ ├── AnonymousAuthenticationProvider.php │ │ ├── AuthenticationProviderInterface.php │ │ ├── DaoAuthenticationProvider.php │ │ ├── PreAuthenticatedAuthenticationProvider.php │ │ ├── RememberMeAuthenticationProvider.php │ │ ├── SimpleAuthenticationProvider.php │ │ └── UserAuthenticationProvider.php │ ├── RememberMe │ │ ├── InMemoryTokenProvider.php │ │ ├── PersistentToken.php │ │ ├── PersistentTokenInterface.php │ │ └── TokenProviderInterface.php │ ├── SimpleAuthenticatorInterface.php │ ├── SimpleFormAuthenticatorInterface.php │ ├── SimplePreAuthenticatorInterface.php │ └── Token │ │ ├── AbstractToken.php │ │ ├── AnonymousToken.php │ │ ├── PreAuthenticatedToken.php │ │ ├── RememberMeToken.php │ │ ├── TokenInterface.php │ │ └── UsernamePasswordToken.php │ ├── AuthenticationEvents.php │ ├── Authorization │ ├── AccessDecisionManager.php │ ├── AccessDecisionManagerInterface.php │ ├── ExpressionLanguage.php │ └── Voter │ │ ├── AuthenticatedVoter.php │ │ ├── ExpressionVoter.php │ │ ├── RoleHierarchyVoter.php │ │ ├── RoleVoter.php │ │ └── VoterInterface.php │ ├── Encoder │ ├── BCryptPasswordEncoder.php │ ├── BasePasswordEncoder.php │ ├── EncoderAwareInterface.php │ ├── EncoderFactory.php │ ├── EncoderFactoryInterface.php │ ├── MessageDigestPasswordEncoder.php │ ├── PasswordEncoderInterface.php │ ├── Pbkdf2PasswordEncoder.php │ └── PlaintextPasswordEncoder.php │ ├── Event │ ├── AuthenticationEvent.php │ └── AuthenticationFailureEvent.php │ ├── Exception │ ├── AccessDeniedException.php │ ├── AccountExpiredException.php │ ├── AccountStatusException.php │ ├── AuthenticationCredentialsNotFoundException.php │ ├── AuthenticationException.php │ ├── AuthenticationServiceException.php │ ├── BadCredentialsException.php │ ├── CookieTheftException.php │ ├── CredentialsExpiredException.php │ ├── DisabledException.php │ ├── ExceptionInterface.php │ ├── InsufficientAuthenticationException.php │ ├── InvalidArgumentException.php │ ├── InvalidCsrfTokenException.php │ ├── LockedException.php │ ├── LogoutException.php │ ├── NonceExpiredException.php │ ├── ProviderNotFoundException.php │ ├── RuntimeException.php │ ├── SessionUnavailableException.php │ ├── TokenNotFoundException.php │ ├── UnsupportedUserException.php │ └── UsernameNotFoundException.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ └── translations │ │ ├── security.ar.xlf │ │ ├── security.az.xlf │ │ ├── security.ca.xlf │ │ ├── security.cs.xlf │ │ ├── security.da.xlf │ │ ├── security.de.xlf │ │ ├── security.el.xlf │ │ ├── security.en.xlf │ │ ├── security.es.xlf │ │ ├── security.fa.xlf │ │ ├── security.fr.xlf │ │ ├── security.gl.xlf │ │ ├── security.he.xlf │ │ ├── security.hu.xlf │ │ ├── security.it.xlf │ │ ├── security.lb.xlf │ │ ├── security.nl.xlf │ │ ├── security.no.xlf │ │ ├── security.pl.xlf │ │ ├── security.pt_BR.xlf │ │ ├── security.pt_PT.xlf │ │ ├── security.ro.xlf │ │ ├── security.ru.xlf │ │ ├── security.sk.xlf │ │ ├── security.sl.xlf │ │ ├── security.sr_Cyrl.xlf │ │ ├── security.sr_Latn.xlf │ │ ├── security.sv.xlf │ │ ├── security.tr.xlf │ │ └── security.ua.xlf │ ├── Role │ ├── Role.php │ ├── RoleHierarchy.php │ ├── RoleHierarchyInterface.php │ ├── RoleInterface.php │ └── SwitchUserRole.php │ ├── SecurityContext.php │ ├── SecurityContextInterface.php │ ├── Tests │ ├── Authentication │ │ ├── AuthenticationProviderManagerTest.php │ │ ├── AuthenticationTrustResolverTest.php │ │ ├── Provider │ │ │ ├── AnonymousAuthenticationProviderTest.php │ │ │ ├── DaoAuthenticationProviderTest.php │ │ │ ├── PreAuthenticatedAuthenticationProviderTest.php │ │ │ ├── RememberMeAuthenticationProviderTest.php │ │ │ └── UserAuthenticationProviderTest.php │ │ ├── RememberMe │ │ │ ├── InMemoryTokenProviderTest.php │ │ │ └── PersistentTokenTest.php │ │ └── Token │ │ │ ├── AbstractTokenTest.php │ │ │ ├── AnonymousTokenTest.php │ │ │ ├── PreAuthenticatedTokenTest.php │ │ │ ├── RememberMeTokenTest.php │ │ │ └── UsernamePasswordTokenTest.php │ ├── Authorization │ │ ├── AccessDecisionManagerTest.php │ │ ├── ExpressionLanguageTest.php │ │ └── Voter │ │ │ ├── AuthenticatedVoterTest.php │ │ │ ├── ExpressionVoterTest.php │ │ │ ├── RoleHierarchyVoterTest.php │ │ │ └── RoleVoterTest.php │ ├── Encoder │ │ ├── BCryptPasswordEncoderTest.php │ │ ├── BasePasswordEncoderTest.php │ │ ├── EncoderFactoryTest.php │ │ ├── MessageDigestPasswordEncoderTest.php │ │ ├── Pbkdf2PasswordEncoderTest.php │ │ └── PlaintextPasswordEncoderTest.php │ ├── Role │ │ ├── RoleHierarchyTest.php │ │ ├── RoleTest.php │ │ └── SwitchUserRoleTest.php │ ├── SecurityContextTest.php │ ├── User │ │ ├── ChainUserProviderTest.php │ │ ├── InMemoryUserProviderTest.php │ │ ├── UserCheckerTest.php │ │ └── UserTest.php │ ├── Util │ │ ├── ClassUtilsTest.php │ │ ├── SecureRandomTest.php │ │ └── StringUtilsTest.php │ └── Validator │ │ └── Constraints │ │ ├── LegacyUserPasswordValidator2Dot4ApiTest.php │ │ ├── LegacyUserPasswordValidatorTest.php │ │ └── UserPasswordValidatorTest.php │ ├── User │ ├── AdvancedUserInterface.php │ ├── ChainUserProvider.php │ ├── EquatableInterface.php │ ├── InMemoryUserProvider.php │ ├── User.php │ ├── UserChecker.php │ ├── UserCheckerInterface.php │ ├── UserInterface.php │ └── UserProviderInterface.php │ ├── Util │ ├── ClassUtils.php │ ├── SecureRandom.php │ ├── SecureRandomInterface.php │ └── StringUtils.php │ ├── Validator │ └── Constraints │ │ ├── UserPassword.php │ │ └── UserPasswordValidator.php │ ├── composer.json │ └── phpunit.xml.dist └── translation └── Symfony └── Component └── Translation ├── .gitignore ├── CHANGELOG.md ├── Catalogue ├── AbstractOperation.php ├── DiffOperation.php ├── MergeOperation.php └── OperationInterface.php ├── Dumper ├── CsvFileDumper.php ├── DumperInterface.php ├── FileDumper.php ├── IcuResFileDumper.php ├── IniFileDumper.php ├── JsonFileDumper.php ├── MoFileDumper.php ├── PhpFileDumper.php ├── PoFileDumper.php ├── QtFileDumper.php ├── XliffFileDumper.php └── YamlFileDumper.php ├── Exception ├── ExceptionInterface.php ├── InvalidResourceException.php └── NotFoundResourceException.php ├── Extractor ├── ChainExtractor.php └── ExtractorInterface.php ├── IdentityTranslator.php ├── Interval.php ├── LICENSE ├── Loader ├── ArrayLoader.php ├── CsvFileLoader.php ├── IcuDatFileLoader.php ├── IcuResFileLoader.php ├── IniFileLoader.php ├── JsonFileLoader.php ├── LoaderInterface.php ├── MoFileLoader.php ├── PhpFileLoader.php ├── PoFileLoader.php ├── QtFileLoader.php ├── XliffFileLoader.php ├── YamlFileLoader.php └── schema │ └── dic │ └── xliff-core │ ├── xliff-core-1.2-strict.xsd │ └── xml.xsd ├── MessageCatalogue.php ├── MessageCatalogueInterface.php ├── MessageSelector.php ├── MetadataAwareInterface.php ├── PluralizationRules.php ├── README.md ├── Tests ├── Catalogue │ ├── AbstractOperationTest.php │ ├── DiffOperationTest.php │ └── MergeOperationTest.php ├── Dumper │ ├── CsvFileDumperTest.php │ ├── FileDumperTest.php │ ├── IcuResFileDumperTest.php │ ├── IniFileDumperTest.php │ ├── JsonFileDumperTest.php │ ├── MoFileDumperTest.php │ ├── PhpFileDumperTest.php │ ├── PoFileDumperTest.php │ ├── QtFileDumperTest.php │ ├── XliffFileDumperTest.php │ └── YamlFileDumperTest.php ├── IdentityTranslatorTest.php ├── IntervalTest.php ├── Loader │ ├── CsvFileLoaderTest.php │ ├── IcuDatFileLoaderTest.php │ ├── IcuResFileLoaderTest.php │ ├── IniFileLoaderTest.php │ ├── JsonFileLoaderTest.php │ ├── LocalizedTestCase.php │ ├── MoFileLoaderTest.php │ ├── PhpFileLoaderTest.php │ ├── PoFileLoaderTest.php │ ├── QtFileLoaderTest.php │ ├── XliffFileLoaderTest.php │ └── YamlFileLoaderTest.php ├── MessageCatalogueTest.php ├── MessageSelectorTest.php ├── PluralizationRulesTest.php ├── TranslatorTest.php └── fixtures │ ├── empty-translation.po │ ├── empty.csv │ ├── empty.ini │ ├── empty.json │ ├── empty.mo │ ├── empty.po │ ├── empty.xlf │ ├── empty.yml │ ├── encoding.xlf │ ├── escaped-id-plurals.po │ ├── escaped-id.po │ ├── invalid-xml-resources.xlf │ ├── malformed.json │ ├── non-valid.xlf │ ├── non-valid.yml │ ├── plurals.mo │ ├── plurals.po │ ├── resname.xlf │ ├── resourcebundle │ ├── corrupted │ │ └── resources.dat │ ├── dat │ │ ├── en.res │ │ ├── en.txt │ │ ├── fr.res │ │ ├── fr.txt │ │ ├── packagelist.txt │ │ └── resources.dat │ └── res │ │ └── en.res │ ├── resources-clean.xlf │ ├── resources.csv │ ├── resources.ini │ ├── resources.json │ ├── resources.mo │ ├── resources.php │ ├── resources.po │ ├── resources.ts │ ├── resources.xlf │ ├── resources.yml │ ├── valid.csv │ └── withdoctype.xlf ├── Translator.php ├── TranslatorInterface.php ├── Writer └── TranslationWriter.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | app/storage/* 3 | uploads/* 4 | docs 5 | datasource.php -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/.htaccess -------------------------------------------------------------------------------- /996License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/996License -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/crud/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/admin.php -------------------------------------------------------------------------------- /app/config/crud/admin_v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/admin_v1.php -------------------------------------------------------------------------------- /app/config/crud/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/category.php -------------------------------------------------------------------------------- /app/config/crud/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/code.php -------------------------------------------------------------------------------- /app/config/crud/customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/customer.php -------------------------------------------------------------------------------- /app/config/crud/customer.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/customer.php.bak -------------------------------------------------------------------------------- /app/config/crud/d_module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/d_module.php -------------------------------------------------------------------------------- /app/config/crud/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/demo.php -------------------------------------------------------------------------------- /app/config/crud/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/menu.php -------------------------------------------------------------------------------- /app/config/crud/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/post.php -------------------------------------------------------------------------------- /app/config/crud/post.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/crud/post.php.bak -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/datasource.php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/datasource.php.tpl -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/local/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/local/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/DevelopController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/DevelopController.php -------------------------------------------------------------------------------- /app/controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/SiteController.php -------------------------------------------------------------------------------- /app/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/UserController.php -------------------------------------------------------------------------------- /app/controllers/admin/CodeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/admin/CodeController.php -------------------------------------------------------------------------------- /app/controllers/admin/DemoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/admin/DemoController.php -------------------------------------------------------------------------------- /app/controllers/admin/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/controllers/admin/PostController.php -------------------------------------------------------------------------------- /app/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/cn/mess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/cn/mess.php -------------------------------------------------------------------------------- /app/lang/cn/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/cn/pagination.php -------------------------------------------------------------------------------- /app/lang/cn/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/cn/reminders.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/library/ConfigUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/ConfigUtils.php -------------------------------------------------------------------------------- /app/library/DataSourceHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/DataSourceHelpers.php -------------------------------------------------------------------------------- /app/library/FileUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/FileUtils.php -------------------------------------------------------------------------------- /app/library/FormControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/FormControl.php -------------------------------------------------------------------------------- /app/library/Request.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/Request.class.php -------------------------------------------------------------------------------- /app/library/SiteHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/SiteHelpers.php -------------------------------------------------------------------------------- /app/library/StringUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/StringUtils.php -------------------------------------------------------------------------------- /app/library/Supports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/Supports.php -------------------------------------------------------------------------------- /app/library/master/MasterSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/master/MasterSite.php -------------------------------------------------------------------------------- /app/library/master/master.conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/master/master.conf.php -------------------------------------------------------------------------------- /app/library/testSiteHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/library/testSiteHelpers.php -------------------------------------------------------------------------------- /app/models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/BaseModel.php -------------------------------------------------------------------------------- /app/models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/Category.php -------------------------------------------------------------------------------- /app/models/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/Code.php -------------------------------------------------------------------------------- /app/models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/Customer.php -------------------------------------------------------------------------------- /app/models/DMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/DMenu.php -------------------------------------------------------------------------------- /app/models/DModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/DModule.php -------------------------------------------------------------------------------- /app/models/Demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/Demo.php -------------------------------------------------------------------------------- /app/models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/Post.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/module_routes.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/browser-kit/Symfony/Component/BrowserKit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/Symfony/Component/CssSelector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/vendor/symfony/filesystem/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyahui8/dbuilder/HEAD/vendor/symfony/filesystem/README.md -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/process/Symfony/Component/Process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /vendor/symfony/security-core/Symfony/Component/Security/Core/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" " 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | --------------------------------------------------------------------------------