├── .gitattributes ├── .gitignore ├── README.md ├── app ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── mail.php │ ├── packages │ │ ├── bogardo │ │ │ └── mailgun │ │ │ │ └── config.php │ │ └── maatwebsite │ │ │ └── excel │ │ │ ├── cache.php │ │ │ ├── config.php │ │ │ ├── csv.php │ │ │ ├── export.php │ │ │ ├── import.php │ │ │ └── views.php │ ├── queue.php │ ├── remote.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── AddressbookController.php │ ├── AnalyticController.php │ ├── AuthenticationController.php │ ├── BaseController.php │ ├── DashboardController.php │ ├── DraftResourceController.php │ ├── EmailController.php │ ├── FrontendController.php │ ├── HomeController.php │ ├── MaillistController.php │ ├── PageController.php │ ├── SentEmailCustomController.php │ ├── SentEmailResourceController.php │ ├── SettingController.php │ ├── SubscriberController.php │ ├── TagController.php │ ├── TrackingController.php │ ├── TrashResourceController.php │ └── UserController.php ├── database │ ├── migrations │ │ ├── 2013_11_14_122115_create_users_table.php │ │ ├── 2013_11_14_122143_create_groups_table.php │ │ ├── 2013_11_14_122202_create_users_groups_table.php │ │ ├── 2013_11_14_122231_create_throttle_table.php │ │ ├── 2013_11_14_122308_create_settings_table.php │ │ ├── 2014_02_26_212509_create_subscribers_table.php │ │ ├── 2014_03_18_105842_create_maillists_table.php │ │ ├── 2014_03_18_110117_create_maillist_subscriber_table.php │ │ ├── 2014_03_18_110225_create_tags_table.php │ │ ├── 2014_03_18_110347_create_emails_table.php │ │ ├── 2014_03_18_110940_create_analytics_table.php │ │ ├── 2014_05_08_152514_create_clicks_table.php │ │ ├── 2014_05_09_110446_create_tests_table.php │ │ ├── 2014_07_08_105044_create_drafts_table.php │ │ └── 2014_07_18_170629_create_pages_table.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── filters.php ├── helpers │ ├── Addressbooks.php │ ├── BackendPages.php │ ├── BackendUsers.php │ ├── FrontendHelpers.php │ ├── Imports.php │ ├── Maillists.php │ ├── Miscellaneous.php │ ├── ModelCheckboxGroup.php │ ├── MyValidations.php │ ├── SimpleHTMLToPDF.php │ ├── Subscribers.php │ └── Tags.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── models │ ├── Analytic.php │ ├── Click.php │ ├── Draft.php │ ├── Email.php │ ├── Maillist.php │ ├── Page.php │ ├── Setting.php │ ├── Subscriber.php │ ├── Tag.php │ ├── Test.php │ └── User.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ ├── 12 │ │ │ └── cb │ │ │ │ └── 12cbc858576ae9ae1add85a0f996dea6 │ │ ├── 13 │ │ │ ├── 14 │ │ │ │ └── 13143940970d28950329071ba24d4071 │ │ │ └── 70 │ │ │ │ └── 137076d599f7d64740123348c095dadd │ │ ├── 36 │ │ │ └── 97 │ │ │ │ └── 3697f8151389dd8f36518a62fd5f3760 │ │ ├── 37 │ │ │ └── 4d │ │ │ │ └── 374d1ddf385aaf70cc3e240c236c0cc8 │ │ ├── 39 │ │ │ └── 13 │ │ │ │ └── 3913b9241a24c143517f6229d044a750 │ │ ├── 60 │ │ │ ├── 57 │ │ │ │ └── 605758c0481b0e1d3690b8e3bc46d732 │ │ │ └── ef │ │ │ │ └── 60efc9ec4c099ef633e164f258f073a3 │ │ ├── 62 │ │ │ └── 1e │ │ │ │ └── 621e768e05130464fc512d71e12b1524 │ │ ├── 84 │ │ │ └── 49 │ │ │ │ └── 8449ceca74c9c62211c1597d6c43f577 │ │ ├── 08 │ │ │ └── 9b │ │ │ │ └── 089b84149c68128c96f8d025f1e2b3b0 │ │ ├── 1d │ │ │ └── 07 │ │ │ │ └── 1d07ac2086408133ad95477fa555701d │ │ ├── 4a │ │ │ ├── 6e │ │ │ │ └── 4a6e22734b74cd248ffe71929467d21f │ │ │ └── f3 │ │ │ │ └── 4af3cedb887335c7140d6e55f6b31fa6 │ │ ├── ad │ │ │ └── f2 │ │ │ │ └── adf27bb5fc724880814647e2c35d8a42 │ │ ├── c6 │ │ │ └── d3 │ │ │ │ └── c6d3851092dd8d1345e13a4661881809 │ │ ├── ef │ │ │ └── 03 │ │ │ │ └── ef03820daad3cd50dd3fd33114df79d7 │ │ └── fa │ │ │ └── 78 │ │ │ └── fa78e483cf6659289f179880711ac2e1 │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ ├── 7e276d2244028e7b02a8312e7d1f409a9cec8036 │ │ ├── 83ca5332397d22df53219da2527aacaa3f1b8b65 │ │ ├── bcc23f1ebcdd030c98f9dbf0c5301e7f486ec1e9 │ │ └── c7a72ba19f06f2d974b811053e2b42087fd6c578 │ └── views │ │ ├── 065cb7e0d7612316b5a0240d7b0fdb1e │ │ ├── 0b2f1f6f95a849954f0a9054c7a3f72d │ │ ├── 265127987a0d94238e7f68ef530a7850 │ │ ├── 285e6e84f2bcaed74fab96c4b4a158bb │ │ ├── 2becdbf48dafbe3f92de83ce4400a6a4 │ │ ├── 30e80b2035efd6ef29fecde55657d928 │ │ ├── 33bc073fb1491517ee141d870b10357e │ │ ├── 3549952bc3e37bc71bd6bf9f66e97066 │ │ ├── 3674144755f43fdb9d109a128d8ce806 │ │ ├── 37db1e7b45c2df5bfaa57fc80c16753c │ │ ├── 3923f7bb38c5323378a16be60c01f602 │ │ ├── 3966fca5d0aabfdd260a7930cf09a703 │ │ ├── 3a302ee3667fc347b0b9ed2174ac0151 │ │ ├── 3f6013995ec92cf8a63e31cd49aad711 │ │ ├── 41220937631874272fcd8241d0ca74fd │ │ ├── 5617d44a1365a70c61118177a83e3e0f │ │ ├── 5d6487070587f9a7050d7bddebc9908c │ │ ├── 60a37c2df882f979c1ee13fb7ac8ef3c │ │ ├── 614f21eebeced9ecc6189b1967b19ec6 │ │ ├── 615a2f0c5fa84b7a4f81c16b9d3925dc │ │ ├── 64c7975db7e28d93eaed7764e74e5b4b │ │ ├── 6662e67a630ff43c5c32b978adbc3ae9 │ │ ├── 6b44d5d8d8a87c5708940a845e28a17b │ │ ├── 6efb3fddf5b19d3ac010bf07ab335d45 │ │ ├── 7766ca5ef16dfcb4870ec01a47f4114f │ │ ├── 7d2e5ce8fadddd255b64e662d87b6faa │ │ ├── 7f0eb8ac6153e90f8a3780979dfde87a │ │ ├── 852e17204cfe99a962b21c12307d3ed9 │ │ ├── 8daea4401f27a4c527f5936eb6155cd8 │ │ ├── 8fa4c899d4a8d6fbd01bc4ce98a06b4b │ │ ├── 8fb6d864c76764bd3315ceff4d0dcc62 │ │ ├── 93d96bd0f5991f2f16d5e3e6d3c7513c │ │ ├── 97890ab56e24e04595e62743e2d2534c │ │ ├── 9d17dcd660e620e1fa099547892aff89 │ │ ├── 9e69a720f369f654726b44923456c2c3 │ │ ├── 9e91a8353b98b69b95a634db738d5dc1 │ │ ├── 9f445d13d523a399028212c47d7712b3 │ │ ├── a7b9b8eebae7586f7f19578ebe568104 │ │ ├── a9ab57f88297b5db81e7b1d6795fe2d4 │ │ ├── aa8b06c5c562f253950eb31b25f1481e │ │ ├── ac251318cbdccc295ff8d36469577303 │ │ ├── aea9eabb23f4a77818cee6a6537421a3 │ │ ├── b25a001756e6c27b62da41534a937799 │ │ ├── b3fab03ab3eb60e07342a61e42626687 │ │ ├── b5eeed2b5ca9a4c459d697b3e09d2b05 │ │ ├── b86ce921cc97240f8bbb6e9c24d0bde8 │ │ ├── bc6d91defd058f84e6bae3946ffab8d3 │ │ ├── bc968dee82c420439f2f0484d228f457 │ │ ├── be157d2e106556b7073641196b97f0b5 │ │ ├── c5e725cccfcb0636dc1f5007be92ace1 │ │ ├── cb13eb4370218ec36df0648aa4851872 │ │ ├── d0c3e2abd9cf9e7ee5f385899eda4469 │ │ ├── d2cb41447978e5a8e0a8e4b82fdc982d │ │ ├── d507bce3ee2e9c7428fa18fabbf3bcfa │ │ ├── d769c5d8a7d145adde76866fa45dbb07 │ │ ├── dbec15f96fe2b2e3b17f7ebbf71d3d91 │ │ ├── dd4e103b39367e74a912e839fc368ac5 │ │ ├── dee289c6baf71e8767e30850d928073b │ │ ├── df5184831b5ed4c721f1ac51004d7240 │ │ ├── e7ec8cc1225ecfce6177b185d26114cc │ │ ├── f030bee1c4a1d4f3828a4e315b89fbce │ │ ├── f5b678ee4af883bc3b53fcf6bad46bb8 │ │ ├── ff539e16e9c7bf921d5ae91085aaad34 │ │ └── ffa82fe92b97d6888a4e6b09e8e99d67 ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── backend │ ├── _template.blade.php │ ├── dashboards │ │ └── index.blade.php │ ├── emails │ │ ├── auth │ │ │ ├── click-to-reset-pass.blade.php │ │ │ └── reminder.blade.php │ │ ├── drafts.blade.php │ │ ├── edit-draft.blade.php │ │ ├── edit.blade.php │ │ ├── new.blade.php │ │ ├── send_templates │ │ │ ├── backend-draft-show.blade.php │ │ │ ├── backend-show.blade.php │ │ │ ├── main.blade.php │ │ │ └── view-in-browser.blade.php │ │ ├── sent.blade.php │ │ └── trash.blade.php │ ├── generate-new-pass.blade.php │ ├── lists │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── new.blade.php │ ├── login.blade.php │ ├── pages │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── new.blade.php │ ├── pagination │ │ └── nifty.php │ ├── partials │ │ ├── page-form.blade.php │ │ ├── sidebar.blade.php │ │ └── top-menu.blade.php │ ├── settings │ │ └── create.blade.php │ ├── subscribers │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ └── trash.blade.php │ ├── tags │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── new.blade.php │ └── users │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ ├── new.blade.php │ │ ├── password.blade.php │ │ └── profile.blade.php │ └── frontend │ ├── hello.blade.php │ └── unsubscribe.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── database.sql ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── angular │ │ ├── js │ │ │ ├── angular-locale_en-gb.js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── directives.js │ │ │ ├── filters.js │ │ │ ├── ng-google-chart.js │ │ │ └── services.js │ │ ├── lib │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-animate.min.js.map │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-cookies.min.js.map │ │ │ ├── angular-csp.css │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-loader.min.js.map │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-resource.min.js.map │ │ │ ├── angular-route.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ ├── angular-scenario.js │ │ │ ├── angular-touch.js │ │ │ ├── angular-touch.min.js │ │ │ ├── angular-touch.min.js.map │ │ │ ├── angular-ui-router.min.js │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ ├── errors.json │ │ │ ├── version.json │ │ │ └── version.txt │ │ └── partials │ │ │ ├── drafts.html │ │ │ ├── emails.html │ │ │ ├── trash.html │ │ │ ├── view-analytics.html │ │ │ ├── view-draft.html │ │ │ └── view-email.html │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ └── respond.min.js │ ├── ckeditor4.4.3 │ │ ├── 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 │ │ │ ├── tt.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-gb.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 │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.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 │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.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 │ ├── ckfinder2.4 │ │ ├── changelog.txt │ │ ├── ckfinder.html │ │ ├── ckfinder.js │ │ ├── ckfinder.php │ │ ├── ckfinder_v1.js │ │ ├── config.js │ │ ├── config.php │ │ ├── core │ │ │ ├── ckfinder_php5.php │ │ │ └── connector │ │ │ │ └── php │ │ │ │ ├── connector.php │ │ │ │ ├── constants.php │ │ │ │ ├── lang │ │ │ │ ├── bg.php │ │ │ │ ├── ca.php │ │ │ │ ├── cs.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── eo.php │ │ │ │ ├── es-mx.php │ │ │ │ ├── es.php │ │ │ │ ├── et.php │ │ │ │ ├── fa.php │ │ │ │ ├── fi.php │ │ │ │ ├── fr.php │ │ │ │ ├── gu.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── nb.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── pl.php │ │ │ │ ├── pt-br.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sr.php │ │ │ │ ├── sv.php │ │ │ │ ├── tr.php │ │ │ │ ├── vi.php │ │ │ │ ├── zh-cn.php │ │ │ │ └── zh-tw.php │ │ │ │ └── php5 │ │ │ │ ├── CommandHandler │ │ │ │ ├── CommandHandlerBase.php │ │ │ │ ├── CopyFiles.php │ │ │ │ ├── CreateFolder.php │ │ │ │ ├── DeleteFiles.php │ │ │ │ ├── DeleteFolder.php │ │ │ │ ├── DownloadFile.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── GetFiles.php │ │ │ │ ├── GetFolders.php │ │ │ │ ├── Init.php │ │ │ │ ├── LoadCookies.php │ │ │ │ ├── MoveFiles.php │ │ │ │ ├── QuickUpload.php │ │ │ │ ├── RenameFile.php │ │ │ │ ├── RenameFolder.php │ │ │ │ ├── Thumbnail.php │ │ │ │ └── XmlCommandHandlerBase.php │ │ │ │ ├── Core │ │ │ │ ├── AccessControlConfig.php │ │ │ │ ├── Config.php │ │ │ │ ├── Connector.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FolderHandler.php │ │ │ │ ├── Hooks.php │ │ │ │ ├── ImagesConfig.php │ │ │ │ ├── Registry.php │ │ │ │ ├── ResourceTypeConfig.php │ │ │ │ ├── ThumbnailsConfig.php │ │ │ │ └── Xml.php │ │ │ │ ├── ErrorHandler │ │ │ │ ├── Base.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── Http.php │ │ │ │ └── QuickUpload.php │ │ │ │ └── Utils │ │ │ │ ├── FileSystem.php │ │ │ │ ├── Misc.php │ │ │ │ ├── Security.php │ │ │ │ └── XmlNode.php │ │ ├── help │ │ │ ├── cs │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── 014.html │ │ │ │ │ ├── 015.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ ├── en │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── 014.html │ │ │ │ │ ├── 015.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ ├── es-mx │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 001.png │ │ │ │ │ │ ├── 002.gif │ │ │ │ │ │ ├── 003.gif │ │ │ │ │ │ ├── 004.png │ │ │ │ │ │ ├── 005.png │ │ │ │ │ │ ├── 006.png │ │ │ │ │ │ ├── 007.png │ │ │ │ │ │ ├── 008.png │ │ │ │ │ │ ├── 009.png │ │ │ │ │ │ ├── 010.gif │ │ │ │ │ │ ├── 011.png │ │ │ │ │ │ ├── 012.png │ │ │ │ │ │ ├── 013.png │ │ │ │ │ │ ├── 014.gif │ │ │ │ │ │ ├── 015.gif │ │ │ │ │ │ ├── 016.gif │ │ │ │ │ │ ├── 017.gif │ │ │ │ │ │ ├── 018.png │ │ │ │ │ │ ├── 019.png │ │ │ │ │ │ └── 020.png │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ ├── es │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 001.png │ │ │ │ │ │ ├── 002.gif │ │ │ │ │ │ ├── 003.gif │ │ │ │ │ │ ├── 004.png │ │ │ │ │ │ ├── 005.png │ │ │ │ │ │ ├── 006.png │ │ │ │ │ │ ├── 007.png │ │ │ │ │ │ ├── 008.png │ │ │ │ │ │ ├── 009.png │ │ │ │ │ │ ├── 010.gif │ │ │ │ │ │ ├── 011.png │ │ │ │ │ │ ├── 012.png │ │ │ │ │ │ ├── 013.png │ │ │ │ │ │ ├── 014.gif │ │ │ │ │ │ ├── 015.gif │ │ │ │ │ │ ├── 016.gif │ │ │ │ │ │ ├── 017.gif │ │ │ │ │ │ ├── 018.png │ │ │ │ │ │ ├── 019.png │ │ │ │ │ │ └── 020.png │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ ├── fi │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 001.gif │ │ │ │ │ │ ├── 002.gif │ │ │ │ │ │ ├── 003.gif │ │ │ │ │ │ ├── 004.gif │ │ │ │ │ │ ├── 005.gif │ │ │ │ │ │ ├── 006.gif │ │ │ │ │ │ ├── 007.gif │ │ │ │ │ │ ├── 008.gif │ │ │ │ │ │ ├── 009.gif │ │ │ │ │ │ ├── 010.gif │ │ │ │ │ │ ├── 011.gif │ │ │ │ │ │ ├── 012.gif │ │ │ │ │ │ ├── 013.gif │ │ │ │ │ │ ├── 014.gif │ │ │ │ │ │ ├── 015.gif │ │ │ │ │ │ ├── 016.gif │ │ │ │ │ │ ├── 017.gif │ │ │ │ │ │ ├── 018.gif │ │ │ │ │ │ ├── 019.gif │ │ │ │ │ │ └── 020.gif │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ ├── files │ │ │ │ ├── images │ │ │ │ │ ├── 002.gif │ │ │ │ │ ├── 003.gif │ │ │ │ │ ├── CKFinder_basket_clear.png │ │ │ │ │ ├── CKFinder_basket_drag.png │ │ │ │ │ ├── CKFinder_basket_empty.png │ │ │ │ │ ├── CKFinder_basket_file_menu.png │ │ │ │ │ ├── CKFinder_basket_remove.png │ │ │ │ │ ├── CKFinder_file_already_exists.png │ │ │ │ │ ├── CKFinder_file_copied.png │ │ │ │ │ ├── CKFinder_file_delete.png │ │ │ │ │ ├── CKFinder_file_display_01.png │ │ │ │ │ ├── CKFinder_file_display_02.png │ │ │ │ │ ├── CKFinder_file_display_03.png │ │ │ │ │ ├── CKFinder_file_display_04.png │ │ │ │ │ ├── CKFinder_file_drag_copy.png │ │ │ │ │ ├── CKFinder_file_drag_move.png │ │ │ │ │ ├── CKFinder_file_menu.png │ │ │ │ │ ├── CKFinder_file_moved.png │ │ │ │ │ ├── CKFinder_file_pane.png │ │ │ │ │ ├── CKFinder_file_rename.png │ │ │ │ │ ├── CKFinder_file_resize.png │ │ │ │ │ ├── CKFinder_file_resize_both.png │ │ │ │ │ ├── CKFinder_file_resize_new.png │ │ │ │ │ ├── CKFinder_file_resize_overwrite.png │ │ │ │ │ ├── CKFinder_file_resize_resized.png │ │ │ │ │ ├── CKFinder_file_resize_thumbnails.png │ │ │ │ │ ├── CKFinder_file_select_hovered.png │ │ │ │ │ ├── CKFinder_file_select_selected.png │ │ │ │ │ ├── CKFinder_file_select_unselected.png │ │ │ │ │ ├── CKFinder_file_view_list.png │ │ │ │ │ ├── CKFinder_file_view_thumbnails.png │ │ │ │ │ ├── CKFinder_folder_collapse.png │ │ │ │ │ ├── CKFinder_folder_copied_from_basket.png │ │ │ │ │ ├── CKFinder_folder_delete.png │ │ │ │ │ ├── CKFinder_folder_expand.png │ │ │ │ │ ├── CKFinder_folder_loading.png │ │ │ │ │ ├── CKFinder_folder_menu.png │ │ │ │ │ ├── CKFinder_folder_moved_from_basket.png │ │ │ │ │ ├── CKFinder_folder_new.png │ │ │ │ │ ├── CKFinder_folder_pane.png │ │ │ │ │ ├── CKFinder_folder_rename.png │ │ │ │ │ ├── CKFinder_folder_select.png │ │ │ │ │ ├── CKFinder_interface.png │ │ │ │ │ ├── CKFinder_menu_arrow.png │ │ │ │ │ ├── CKFinder_menu_arrows.png │ │ │ │ │ ├── CKFinder_resize_lock.png │ │ │ │ │ ├── CKFinder_resize_reset.png │ │ │ │ │ ├── CKFinder_resize_unlock.png │ │ │ │ │ ├── CKFinder_settings.png │ │ │ │ │ ├── CKFinder_status_empty.png │ │ │ │ │ ├── CKFinder_status_file.png │ │ │ │ │ ├── CKFinder_status_folder.png │ │ │ │ │ ├── CKFinder_toolbar.png │ │ │ │ │ ├── CKFinder_toolbar_help.png │ │ │ │ │ ├── CKFinder_toolbar_refresh.png │ │ │ │ │ ├── CKFinder_upload_01.png │ │ │ │ │ ├── CKFinder_upload_03.png │ │ │ │ │ ├── CKFinder_upload_04.png │ │ │ │ │ ├── CKFinder_upload_09.png │ │ │ │ │ └── CKFinder_upload_10.png │ │ │ │ └── other │ │ │ │ │ ├── help.css │ │ │ │ │ └── help.js │ │ │ ├── lt │ │ │ │ ├── files │ │ │ │ │ ├── 001.html │ │ │ │ │ ├── 002.html │ │ │ │ │ ├── 003.html │ │ │ │ │ ├── 004.html │ │ │ │ │ ├── 005.html │ │ │ │ │ ├── 006.html │ │ │ │ │ ├── 007.html │ │ │ │ │ ├── 008.html │ │ │ │ │ ├── 009.html │ │ │ │ │ ├── 010.html │ │ │ │ │ ├── 011.html │ │ │ │ │ ├── 012.html │ │ │ │ │ ├── 013.html │ │ │ │ │ ├── header.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 001.gif │ │ │ │ │ │ ├── 002.gif │ │ │ │ │ │ ├── 003.gif │ │ │ │ │ │ ├── 004.gif │ │ │ │ │ │ ├── 005.gif │ │ │ │ │ │ ├── 006.gif │ │ │ │ │ │ ├── 007.gif │ │ │ │ │ │ ├── 008.gif │ │ │ │ │ │ ├── 009.gif │ │ │ │ │ │ ├── 010.gif │ │ │ │ │ │ ├── 011.gif │ │ │ │ │ │ ├── 012.gif │ │ │ │ │ │ ├── 013.gif │ │ │ │ │ │ ├── 014.gif │ │ │ │ │ │ ├── 015.gif │ │ │ │ │ │ ├── 016.gif │ │ │ │ │ │ ├── 017.gif │ │ │ │ │ │ ├── 018.gif │ │ │ │ │ │ ├── 019.gif │ │ │ │ │ │ └── 020.gif │ │ │ │ │ ├── license.html │ │ │ │ │ ├── suggestions.html │ │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ │ └── pl │ │ │ │ ├── files │ │ │ │ ├── 001.html │ │ │ │ ├── 002.html │ │ │ │ ├── 003.html │ │ │ │ ├── 004.html │ │ │ │ ├── 005.html │ │ │ │ ├── 006.html │ │ │ │ ├── 007.html │ │ │ │ ├── 008.html │ │ │ │ ├── 009.html │ │ │ │ ├── 010.html │ │ │ │ ├── 011.html │ │ │ │ ├── 012.html │ │ │ │ ├── 013.html │ │ │ │ ├── 014.html │ │ │ │ ├── 015.html │ │ │ │ ├── header.html │ │ │ │ ├── license.html │ │ │ │ ├── suggestions.html │ │ │ │ └── toc.html │ │ │ │ └── index.html │ │ ├── install.txt │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── tr.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── dummy │ │ │ │ ├── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── pl.js │ │ │ │ └── plugin.js │ │ │ ├── fileeditor │ │ │ │ ├── codemirror │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ └── codemirror.js │ │ │ │ │ └── mode │ │ │ │ │ │ ├── clike │ │ │ │ │ │ └── clike.js │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── css.js │ │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ └── htmlmixed.js │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ └── javascript.js │ │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── xml.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.php │ │ │ ├── flashupload │ │ │ │ ├── Uploader.html │ │ │ │ └── flash │ │ │ │ │ └── Uploader.swf │ │ │ ├── gallery │ │ │ │ └── colorbox │ │ │ │ │ ├── colorbox.css │ │ │ │ │ ├── images │ │ │ │ │ ├── border.png │ │ │ │ │ ├── controls.png │ │ │ │ │ ├── ie6 │ │ │ │ │ │ ├── borderBottomCenter.png │ │ │ │ │ │ ├── borderBottomLeft.png │ │ │ │ │ │ ├── borderBottomRight.png │ │ │ │ │ │ ├── borderMiddleLeft.png │ │ │ │ │ │ ├── borderMiddleRight.png │ │ │ │ │ │ ├── borderTopCenter.png │ │ │ │ │ │ ├── borderTopLeft.png │ │ │ │ │ │ └── borderTopRight.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── loading_background.png │ │ │ │ │ └── overlay.png │ │ │ │ │ ├── jquery.colorbox-min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── license.txt │ │ │ ├── imageresize │ │ │ │ ├── images │ │ │ │ │ └── mini.gif │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.php │ │ │ ├── watermark │ │ │ │ ├── logo.gif │ │ │ │ └── plugin.php │ │ │ └── zip │ │ │ │ ├── images │ │ │ │ └── zip.gif │ │ │ │ └── plugin.php │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── app.css │ │ │ │ ├── host.css │ │ │ │ ├── images │ │ │ │ │ ├── ckffolder.gif │ │ │ │ │ ├── ckffolderopened.gif │ │ │ │ │ ├── ckfminus.gif │ │ │ │ │ ├── ckfnothumb.gif │ │ │ │ │ ├── ckfplus.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 16 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── ogg.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── ogg.gif │ │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ ├── loaders │ │ │ │ │ │ ├── 16x16.gif │ │ │ │ │ │ └── 32x32.gif │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ ├── clear_basket.gif │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ ├── download.gif │ │ │ │ │ │ ├── help.gif │ │ │ │ │ │ ├── maximize.gif │ │ │ │ │ │ ├── refresh.gif │ │ │ │ │ │ ├── settings.gif │ │ │ │ │ │ └── view.gif │ │ │ │ ├── richcombo.css │ │ │ │ ├── skin.js │ │ │ │ └── uipanel.css │ │ │ └── v1 │ │ │ │ ├── app.css │ │ │ │ ├── host.css │ │ │ │ ├── images │ │ │ │ ├── ckffolder.gif │ │ │ │ ├── ckffolderopened.gif │ │ │ │ ├── ckfminus.gif │ │ │ │ ├── ckfnothumb.gif │ │ │ │ ├── ckfplus.gif │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── icons.png │ │ │ │ ├── icons │ │ │ │ │ ├── 16 │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── 32 │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ ├── loaders │ │ │ │ │ ├── 16x16.gif │ │ │ │ │ └── 32x32.gif │ │ │ │ ├── spacer.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ ├── toolbar │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── clear_basket.gif │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── download.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── maximize.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── settings.gif │ │ │ │ │ └── view.gif │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── richcombo.css │ │ │ │ ├── skin.js │ │ │ │ └── uipanel.css │ │ ├── translations.txt │ │ └── userfiles │ │ │ └── .htaccess │ ├── css │ │ ├── emails.css │ │ ├── front.css │ │ └── malihu-scrollbar.css │ ├── js │ │ ├── back.js │ │ ├── front.js │ │ ├── jQuery-1.10.2.min.js │ │ ├── main.js │ │ └── malihu-scrollbar.min.js │ ├── select2-3.4.5 │ │ ├── select2-bootstrap.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.min.js │ │ ├── select2.png │ │ └── select2x2.png │ └── template │ │ ├── css │ │ ├── Markdown.Editor.hack.css │ │ ├── bootstrap-fileupload.min.css │ │ ├── bootstrap-wysihtml5-hack.css │ │ ├── countdown.css │ │ ├── elfinder.css │ │ ├── fullCalendarHack.css │ │ ├── jquery.cleditor-hack.css │ │ ├── main.css │ │ ├── main.min.css │ │ ├── style-switcher.css │ │ └── theme.css │ │ ├── img │ │ ├── cp.png │ │ ├── logo.png │ │ ├── metis-tile.png │ │ ├── pattern │ │ │ ├── 45degreee_fabric.png │ │ │ ├── 60degree_gray.png │ │ │ ├── README.md │ │ │ ├── absurdidad.png │ │ │ ├── agsquare.png │ │ │ ├── always_grey.png │ │ │ ├── arab_tile.png │ │ │ ├── arches.png │ │ │ ├── argyle.png │ │ │ ├── asfalt.png │ │ │ ├── assault.png │ │ │ ├── az_subtle.png │ │ │ ├── back_pattern.png │ │ │ ├── batthern.png │ │ │ ├── bedge_grunge.png │ │ │ ├── beige_paper.png │ │ │ ├── bgnoise_lg.png │ │ │ ├── billie_holiday.png │ │ │ ├── binding_dark.png │ │ │ ├── binding_light.png │ │ │ ├── black-Linen.png │ │ │ ├── black_denim.png │ │ │ ├── black_linen_v2.png │ │ │ ├── black_lozenge.png │ │ │ ├── black_mamba.png │ │ │ ├── black_paper.png │ │ │ ├── black_scales.png │ │ │ ├── black_thread.png │ │ │ ├── black_twill.png │ │ │ ├── blackmamba.png │ │ │ ├── blackorchid.png │ │ │ ├── blizzard.png │ │ │ ├── blu_stripes.png │ │ │ ├── bo_play_pattern.png │ │ │ ├── bright_squares.png │ │ │ ├── brillant.png │ │ │ ├── broken_noise.png │ │ │ ├── brushed_alu.png │ │ │ ├── brushed_alu_dark.png │ │ │ ├── burried.png │ │ │ ├── candyhole.png │ │ │ ├── carbon_fibre.png │ │ │ ├── carbon_fibre_big.png │ │ │ ├── carbon_fibre_v2.png │ │ │ ├── cardboard.png │ │ │ ├── cardboard_1.png │ │ │ ├── cardboard_flat.png │ │ │ ├── cartographer.png │ │ │ ├── checkered_pattern.png │ │ │ ├── chruch.png │ │ │ ├── circles.png │ │ │ ├── classy_fabric.png │ │ │ ├── clean_textile.png │ │ │ ├── climpek.png │ │ │ ├── cloth_alike.png │ │ │ ├── concrete_wall.png │ │ │ ├── concrete_wall_2.png │ │ │ ├── concrete_wall_3.png │ │ │ ├── connect.png │ │ │ ├── cork_1.png │ │ │ ├── corrugation.png │ │ │ ├── cracks_1.png │ │ │ ├── cream_dust.png │ │ │ ├── cream_pixels.png │ │ │ ├── creampaper.png │ │ │ ├── crisp_paper_ruffles.png │ │ │ ├── crissXcross.png │ │ │ ├── cross_scratches.png │ │ │ ├── crossed_stripes.png │ │ │ ├── crosses.png │ │ │ ├── cubes.png │ │ │ ├── cutcube.png │ │ │ ├── daimond_eyes.png │ │ │ ├── dark_Tire.png │ │ │ ├── dark_brick_wall.png │ │ │ ├── dark_circles.png │ │ │ ├── dark_dotted.png │ │ │ ├── dark_dotted2.png │ │ │ ├── dark_exa.png │ │ │ ├── dark_fish_skin.png │ │ │ ├── dark_geometric.png │ │ │ ├── dark_leather.png │ │ │ ├── dark_matter.png │ │ │ ├── dark_mosaic.png │ │ │ ├── dark_stripes.png │ │ │ ├── dark_wall.png │ │ │ ├── dark_wood.png │ │ │ ├── darkdenim3.png │ │ │ ├── darth_stripe.png │ │ │ ├── debut_dark.png │ │ │ ├── debut_light.png │ │ │ ├── denim.png │ │ │ ├── diagmonds.png │ │ │ ├── diagonal-noise.png │ │ │ ├── diagonal_striped_brick.png │ │ │ ├── diagonal_waves.png │ │ │ ├── diagonales_decalees.png │ │ │ ├── diamond_upholstery.png │ │ │ ├── diamonds.png │ │ │ ├── dirty_old_shirt.png │ │ │ ├── double_lined.png │ │ │ ├── dust.png │ │ │ ├── dvsup.png │ │ │ ├── ecailles.png │ │ │ ├── egg_shell.png │ │ │ ├── elastoplast.png │ │ │ ├── elegant_grid.png │ │ │ ├── embossed_paper.png │ │ │ ├── escheresque.png │ │ │ ├── escheresque_ste.png │ │ │ ├── exclusive_paper.png │ │ │ ├── extra_clean_paper.png │ │ │ ├── fabric_1.png │ │ │ ├── fabric_of_squares_gray.png │ │ │ ├── fabric_plaid.png │ │ │ ├── fake_brick.png │ │ │ ├── fake_luxury.png │ │ │ ├── fancy_deboss.png │ │ │ ├── farmer.png │ │ │ ├── felt.png │ │ │ ├── first_aid_kit.png │ │ │ ├── flowers.png │ │ │ ├── flowertrail.png │ │ │ ├── foggy_birds.png │ │ │ ├── foil.png │ │ │ ├── frenchstucco.png │ │ │ ├── furley_bg.png │ │ │ ├── gold_scale.png │ │ │ ├── gplaypattern.png │ │ │ ├── gradient_squares.png │ │ │ ├── graphy.png │ │ │ ├── gray_jean.png │ │ │ ├── gray_sand.png │ │ │ ├── green-fibers.png │ │ │ ├── green_dust_scratch.png │ │ │ ├── green_gobbler.png │ │ │ ├── grey.png │ │ │ ├── grey_sandbag.png │ │ │ ├── grey_wash_wall.png │ │ │ ├── greyfloral.png │ │ │ ├── grid.png │ │ │ ├── grid_noise.png │ │ │ ├── gridme.png │ │ │ ├── grilled.png │ │ │ ├── groovepaper.png │ │ │ ├── grunge_wall.png │ │ │ ├── gun_metal.png │ │ │ ├── handmadepaper.png │ │ │ ├── hexabump.png │ │ │ ├── hexellence.png │ │ │ ├── hixs_pattern_evolution.png │ │ │ ├── honey_im_subtle.png │ │ │ ├── husk.png │ │ │ ├── ice_age.png │ │ │ ├── inflicted.png │ │ │ ├── irongrip.png │ │ │ ├── kindajean.png │ │ │ ├── knitted-netting.png │ │ │ ├── knitting250px.png │ │ │ ├── kuji.png │ │ │ ├── large_leather.png │ │ │ ├── leather_1.png │ │ │ ├── lghtmesh.png │ │ │ ├── light_alu.png │ │ │ ├── light_checkered_tiles.png │ │ │ ├── light_grey_floral_motif.png │ │ │ ├── light_honeycomb.png │ │ │ ├── light_noise_diagonal.png │ │ │ ├── light_toast.png │ │ │ ├── light_wool.png │ │ │ ├── lightpaperfibers.png │ │ │ ├── lil_fiber.png │ │ │ ├── lined_paper.png │ │ │ ├── linedpaper.png │ │ │ ├── linen.png │ │ │ ├── little_pluses.png │ │ │ ├── little_triangles.png │ │ │ ├── littleknobs.png │ │ │ ├── low_contrast_linen.png │ │ │ ├── lyonnette.png │ │ │ ├── merely_cubed.png │ │ │ ├── micro_carbon.png │ │ │ ├── mirrored_squares.png │ │ │ ├── mochaGrunge.png │ │ │ ├── mooning.png │ │ │ ├── moulin.png │ │ │ ├── nami.png │ │ │ ├── nasty_fabric.png │ │ │ ├── natural_paper.png │ │ │ ├── navy_blue.png │ │ │ ├── nistri.png │ │ │ ├── noise_lines.png │ │ │ ├── noise_pattern_with_crosslines.png │ │ │ ├── noisy.png │ │ │ ├── noisy_grid.png │ │ │ ├── noisy_net.png │ │ │ ├── norwegian_rose.png │ │ │ ├── office.png │ │ │ ├── old_mathematics.png │ │ │ ├── old_wall.png │ │ │ ├── otis_redding.png │ │ │ ├── outlets.png │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p4.png │ │ │ ├── p5.png │ │ │ ├── p6.png │ │ │ ├── padded.png │ │ │ ├── paper.png │ │ │ ├── paper_1.png │ │ │ ├── paper_2.png │ │ │ ├── paper_3.png │ │ │ ├── paper_fibers.png │ │ │ ├── paven.png │ │ │ ├── perforated_white_leather.png │ │ │ ├── pineapplecut.png │ │ │ ├── pinstripe.png │ │ │ ├── pinstriped_suit.png │ │ │ ├── plaid.png │ │ │ ├── polaroid.png │ │ │ ├── polonez_car.png │ │ │ ├── polyester_lite.png │ │ │ ├── pool_table.png │ │ │ ├── project_papper.png │ │ │ ├── ps_neutral.png │ │ │ ├── psychedelic_pattern.png │ │ │ ├── purty_wood.png │ │ │ ├── pw_maze_black.png │ │ │ ├── pw_maze_white.png │ │ │ ├── pw_pattern.png │ │ │ ├── px_by_Gre3g.png │ │ │ ├── pyramid.png │ │ │ ├── quilt.png │ │ │ ├── random_grey_variations.png │ │ │ ├── ravenna.png │ │ │ ├── real_cf.png │ │ │ ├── rebel.png │ │ │ ├── redox_01.png │ │ │ ├── redox_02.png │ │ │ ├── reticular_tissue.png │ │ │ ├── retina_wood.png │ │ │ ├── retro_intro.png │ │ │ ├── ricepaper.png │ │ │ ├── ricepaper2.png │ │ │ ├── rip_jobs.png │ │ │ ├── robots.png │ │ │ ├── rockywall.png │ │ │ ├── rough_diagonal.png │ │ │ ├── roughcloth.png │ │ │ ├── rubber_grip.png │ │ │ ├── satinweave.png │ │ │ ├── scribble_light.png │ │ │ ├── shattered.png │ │ │ ├── shinecaro.png │ │ │ ├── shinedotted.png │ │ │ ├── shl.png │ │ │ ├── silver_scales.png │ │ │ ├── simple_dashed.png │ │ │ ├── skelatal_weave.png │ │ │ ├── skewed_print.png │ │ │ ├── skin_side_up.png │ │ │ ├── slash_it.png │ │ │ ├── small-crackle-bright.png │ │ │ ├── small_tiles.png │ │ │ ├── smooth_wall.png │ │ │ ├── sneaker_mesh_fabric.png │ │ │ ├── snow.png │ │ │ ├── soft_circle_scales.png │ │ │ ├── soft_kill.png │ │ │ ├── soft_pad.png │ │ │ ├── soft_wallpaper.png │ │ │ ├── solid.png │ │ │ ├── squairy_light.png │ │ │ ├── square_bg.png │ │ │ ├── squares.png │ │ │ ├── stacked_circles.png │ │ │ ├── starring.png │ │ │ ├── stitched_wool.png │ │ │ ├── strange_bullseyes.png │ │ │ ├── straws.png │ │ │ ├── stressed_linen.png │ │ │ ├── striped_lens.png │ │ │ ├── struckaxiom.png │ │ │ ├── stucco.png │ │ │ ├── subtle_carbon.png │ │ │ ├── subtle_dots.png │ │ │ ├── subtle_freckles.png │ │ │ ├── subtle_grunge.png │ │ │ ├── subtle_orange_emboss.png │ │ │ ├── subtle_stripes.png │ │ │ ├── subtle_surface.png │ │ │ ├── subtle_white_feathers.png │ │ │ ├── subtle_zebra_3d.png │ │ │ ├── subtlenet2.png │ │ │ ├── swirl.png │ │ │ ├── tactile_noise.png │ │ │ ├── tapestry_pattern.png │ │ │ ├── tasky_pattern.png │ │ │ ├── tex2res1.png │ │ │ ├── tex2res2.png │ │ │ ├── tex2res3.png │ │ │ ├── tex2res4.png │ │ │ ├── tex2res5.png │ │ │ ├── textured_paper.png │ │ │ ├── textured_stripes.png │ │ │ ├── texturetastic_gray.png │ │ │ ├── ticks.png │ │ │ ├── tileable_wood_texture.png │ │ │ ├── tiny_grid.png │ │ │ ├── triangles.png │ │ │ ├── triangles_pattern.png │ │ │ ├── twinkle_twinkle.png │ │ │ ├── txture.png │ │ │ ├── type.png │ │ │ ├── use_your_illusion.png │ │ │ ├── vaio_hard_edge.png │ │ │ ├── vertical_cloth.png │ │ │ ├── vichy.png │ │ │ ├── vintage_speckles.png │ │ │ ├── wall4.png │ │ │ ├── washi.png │ │ │ ├── wavecut.png │ │ │ ├── wavegrid.png │ │ │ ├── weave.png │ │ │ ├── white_bed_sheet.png │ │ │ ├── white_brick_wall.png │ │ │ ├── white_carbon.png │ │ │ ├── white_carbonfiber.png │ │ │ ├── white_leather.png │ │ │ ├── white_paperboard.png │ │ │ ├── white_plaster.png │ │ │ ├── white_sand.png │ │ │ ├── white_texture.png │ │ │ ├── white_tiles.png │ │ │ ├── white_wall.png │ │ │ ├── white_wall2.png │ │ │ ├── white_wall_hash.png │ │ │ ├── white_wave.png │ │ │ ├── whitediamond.png │ │ │ ├── whitey.png │ │ │ ├── wide_rectangles.png │ │ │ ├── wild_oliva.png │ │ │ ├── wood_1.jpg │ │ │ ├── wood_1.png │ │ │ ├── wood_pattern.png │ │ │ ├── worn_dots.png │ │ │ ├── woven.png │ │ │ ├── xv.png │ │ │ └── zigzag.png │ │ └── user.gif │ │ ├── js │ │ ├── app.js │ │ ├── countdown.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── style-switcher.js │ │ └── lib │ │ └── magic │ │ ├── README.md │ │ ├── magic.css │ │ ├── magic.min.css │ │ └── magic.styl ├── index.php ├── packages │ └── .gitkeep └── robots.txt ├── server.php └── vendor ├── autoload.php ├── bin ├── boris ├── boris.bat ├── classpreloader.php └── classpreloader.php.bat ├── bogardo └── mailgun │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ └── src │ ├── Bogardo │ └── Mailgun │ │ ├── Facades │ │ └── Mailgun.php │ │ ├── Mailgun.php │ │ ├── Mailgun │ │ ├── Attachment.php │ │ ├── Inline.php │ │ └── Message.php │ │ └── MailgunServiceProvider.php │ └── config │ └── config.php ├── cartalyst └── sentry │ ├── .gitignore │ ├── .travis.yml │ ├── composer.json │ ├── license.txt │ ├── phpunit.xml.dist │ ├── readme.md │ ├── schema │ └── mysql.sql │ ├── src │ ├── Cartalyst │ │ └── Sentry │ │ │ ├── Cookies │ │ │ ├── CICookie.php │ │ │ ├── CookieInterface.php │ │ │ ├── FuelPHPCookie.php │ │ │ ├── IlluminateCookie.php │ │ │ ├── KohanaCookie.php │ │ │ └── NativeCookie.php │ │ │ ├── Facades │ │ │ ├── CI │ │ │ │ └── Sentry.php │ │ │ ├── ConnectionResolver.php │ │ │ ├── Facade.php │ │ │ ├── FuelPHP │ │ │ │ └── Sentry.php │ │ │ ├── Kohana │ │ │ │ └── Sentry.php │ │ │ ├── Laravel │ │ │ │ └── Sentry.php │ │ │ └── Native │ │ │ │ └── Sentry.php │ │ │ ├── Groups │ │ │ ├── Eloquent │ │ │ │ ├── Group.php │ │ │ │ └── Provider.php │ │ │ ├── Exceptions.php │ │ │ ├── GroupInterface.php │ │ │ ├── Kohana │ │ │ │ ├── Group.php │ │ │ │ └── Provider.php │ │ │ └── ProviderInterface.php │ │ │ ├── Hashing │ │ │ ├── BaseHasher.php │ │ │ ├── BcryptHasher.php │ │ │ ├── HasherInterface.php │ │ │ ├── NativeHasher.php │ │ │ ├── Sha256Hasher.php │ │ │ └── WhirlpoolHasher.php │ │ │ ├── Sentry.php │ │ │ ├── SentryServiceProvider.php │ │ │ ├── Sessions │ │ │ ├── CISession.php │ │ │ ├── FuelPHPSession.php │ │ │ ├── IlluminateSession.php │ │ │ ├── KohanaSession.php │ │ │ ├── NativeSession.php │ │ │ └── SessionInterface.php │ │ │ ├── Throttling │ │ │ ├── Eloquent │ │ │ │ ├── Provider.php │ │ │ │ └── Throttle.php │ │ │ ├── Exceptions.php │ │ │ ├── Kohana │ │ │ │ ├── Provider.php │ │ │ │ └── Throttle.php │ │ │ ├── ProviderInterface.php │ │ │ └── ThrottleInterface.php │ │ │ └── Users │ │ │ ├── Eloquent │ │ │ ├── Provider.php │ │ │ └── User.php │ │ │ ├── Exceptions.php │ │ │ ├── Kohana │ │ │ ├── Provider.php │ │ │ └── User.php │ │ │ ├── ProviderInterface.php │ │ │ └── UserInterface.php │ ├── config │ │ └── config.php │ └── migrations │ │ ├── 2012_12_06_225921_migration_cartalyst_sentry_install_users.php │ │ ├── 2012_12_06_225929_migration_cartalyst_sentry_install_groups.php │ │ ├── 2012_12_06_225945_migration_cartalyst_sentry_install_users_groups_pivot.php │ │ └── 2012_12_06_225988_migration_cartalyst_sentry_install_throttle.php │ └── tests │ ├── BcryptHasherTest.php │ ├── CICookieTest.php │ ├── CISessionTest.php │ ├── EloquentGroupProviderTest.php │ ├── EloquentGroupTest.php │ ├── EloquentThrottleTest.php │ ├── EloquentUserProviderTest.php │ ├── EloquentUserTest.php │ ├── FuelPHPCookieTest.php │ ├── FuelPHPSessionTest.php │ ├── IlluminateCookieTest.php │ ├── IlluminateSessionTest.php │ ├── NativeCookieTest.php │ ├── NativeHasherTest.php │ ├── NativeSessionTest.php │ ├── SentryTest.php │ ├── Sha256HasherTest.php │ ├── WhirlpoolHasherTest.php │ └── stubs │ ├── ci │ ├── CI_Input.php │ └── CI_Session.php │ ├── fuelphp │ ├── Cookie.php │ └── Fuel │ │ └── Core │ │ └── Session_Driver.php │ ├── groups │ └── GroupModelStubs.php │ └── users │ └── UserModelStubs.php ├── 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 │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── docs │ ├── API Documentation.md │ ├── Framework Integration.md │ └── Open Files In An Editor.md │ ├── examples │ ├── example-ajax-only.php │ ├── example-silex.php │ └── example.php │ ├── phpunit.xml.dist │ ├── 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 │ └── tests │ ├── Whoops │ ├── Exception │ │ ├── FormatterTest.php │ │ ├── FrameCollectionTest.php │ │ ├── FrameTest.php │ │ └── InspectorTest.php │ ├── Handler │ │ ├── JsonResponseHandlerTest.php │ │ ├── PlainTextHandlerTest.php │ │ ├── PrettyPageHandlerTest.php │ │ ├── SoapResponseHandlerTest.php │ │ └── XmlResponseHandlerTest.php │ ├── RunTest.php │ ├── TestCase.php │ └── Util │ │ ├── MiscTest.php │ │ └── TemplateHelperTest.php │ ├── bootstrap.php │ ├── deprecated │ └── Zend │ │ └── ModuleTest.php │ └── fixtures │ ├── frame.lines-test.php │ └── template.php ├── guzzle └── guzzle │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── build.xml │ ├── composer.json │ ├── docs │ ├── Makefile │ ├── _downloads │ │ └── guzzle-schema-1.0.json │ ├── _static │ │ ├── guzzle-icon.png │ │ ├── homepage.css │ │ ├── logo.png │ │ ├── prettify.css │ │ └── prettify.js │ ├── _templates │ │ ├── index.html │ │ ├── leftbar.html │ │ └── nav_links.html │ ├── batching │ │ └── batching.rst │ ├── conf.py │ ├── docs.rst │ ├── getting-started │ │ ├── faq.rst │ │ ├── installation.rst │ │ └── overview.rst │ ├── http-client │ │ ├── client.rst │ │ ├── entity-bodies.rst │ │ ├── http-redirects.rst │ │ ├── request.rst │ │ ├── response.rst │ │ └── uri-templates.rst │ ├── index.rst │ ├── iterators │ │ ├── guzzle-iterators.rst │ │ └── resource-iterators.rst │ ├── plugins │ │ ├── async-plugin.rst │ │ ├── backoff-plugin.rst │ │ ├── cache-plugin.rst │ │ ├── cookie-plugin.rst │ │ ├── creating-plugins.rst │ │ ├── curl-auth-plugin.rst │ │ ├── history-plugin.rst │ │ ├── log-plugin.rst │ │ ├── md5-validator-plugin.rst │ │ ├── mock-plugin.rst │ │ ├── oauth-plugin.rst │ │ ├── plugins-list.rst.inc │ │ └── plugins-overview.rst │ ├── requirements.txt │ ├── testing │ │ └── unit-testing.rst │ └── webservice-client │ │ ├── guzzle-service-descriptions.rst │ │ ├── using-the-service-builder.rst │ │ └── webservice-client.rst │ ├── phar-stub.php │ ├── phing │ ├── build.properties.dist │ ├── imports │ │ ├── dependencies.xml │ │ └── deploy.xml │ └── tasks │ │ ├── ComposerLintTask.php │ │ ├── GuzzlePearPharPackageTask.php │ │ └── GuzzleSubSplitTask.php │ ├── phpunit.xml.dist │ ├── src │ └── Guzzle │ │ ├── Batch │ │ ├── AbstractBatchDecorator.php │ │ ├── Batch.php │ │ ├── BatchBuilder.php │ │ ├── BatchClosureDivisor.php │ │ ├── BatchClosureTransfer.php │ │ ├── BatchCommandTransfer.php │ │ ├── BatchDivisorInterface.php │ │ ├── BatchInterface.php │ │ ├── BatchRequestTransfer.php │ │ ├── BatchSizeDivisor.php │ │ ├── BatchTransferInterface.php │ │ ├── Exception │ │ │ └── BatchTransferException.php │ │ ├── ExceptionBufferingBatch.php │ │ ├── FlushingBatch.php │ │ ├── HistoryBatch.php │ │ ├── NotifyingBatch.php │ │ └── composer.json │ │ ├── Cache │ │ ├── AbstractCacheAdapter.php │ │ ├── CacheAdapterFactory.php │ │ ├── CacheAdapterInterface.php │ │ ├── ClosureCacheAdapter.php │ │ ├── DoctrineCacheAdapter.php │ │ ├── NullCacheAdapter.php │ │ ├── Zf1CacheAdapter.php │ │ ├── Zf2CacheAdapter.php │ │ └── composer.json │ │ ├── Common │ │ ├── AbstractHasDispatcher.php │ │ ├── Collection.php │ │ ├── Event.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── ExceptionCollection.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnexpectedValueException.php │ │ ├── FromConfigInterface.php │ │ ├── HasDispatcherInterface.php │ │ ├── ToArrayInterface.php │ │ ├── Version.php │ │ └── composer.json │ │ ├── Http │ │ ├── AbstractEntityBodyDecorator.php │ │ ├── CachingEntityBody.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Curl │ │ │ ├── CurlHandle.php │ │ │ ├── CurlMulti.php │ │ │ ├── CurlMultiInterface.php │ │ │ ├── CurlMultiProxy.php │ │ │ ├── CurlVersion.php │ │ │ └── RequestMediator.php │ │ ├── EntityBody.php │ │ ├── EntityBodyInterface.php │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientErrorResponseException.php │ │ │ ├── CouldNotRewindStreamException.php │ │ │ ├── CurlException.php │ │ │ ├── HttpException.php │ │ │ ├── MultiTransferException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerErrorResponseException.php │ │ │ └── TooManyRedirectsException.php │ │ ├── IoEmittingEntityBody.php │ │ ├── Message │ │ │ ├── AbstractMessage.php │ │ │ ├── EntityEnclosingRequest.php │ │ │ ├── EntityEnclosingRequestInterface.php │ │ │ ├── Header.php │ │ │ ├── Header │ │ │ │ ├── CacheControl.php │ │ │ │ ├── HeaderCollection.php │ │ │ │ ├── HeaderFactory.php │ │ │ │ ├── HeaderFactoryInterface.php │ │ │ │ ├── HeaderInterface.php │ │ │ │ └── Link.php │ │ │ ├── MessageInterface.php │ │ │ ├── PostFile.php │ │ │ ├── PostFileInterface.php │ │ │ ├── Request.php │ │ │ ├── RequestFactory.php │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── RequestInterface.php │ │ │ └── Response.php │ │ ├── Mimetypes.php │ │ ├── QueryAggregator │ │ │ ├── CommaAggregator.php │ │ │ ├── DuplicateAggregator.php │ │ │ ├── PhpAggregator.php │ │ │ └── QueryAggregatorInterface.php │ │ ├── QueryString.php │ │ ├── ReadLimitEntityBody.php │ │ ├── RedirectPlugin.php │ │ ├── Resources │ │ │ └── cacert.pem │ │ ├── StaticClient.php │ │ ├── Url.php │ │ └── composer.json │ │ ├── Inflection │ │ ├── Inflector.php │ │ ├── InflectorInterface.php │ │ ├── MemoizingInflector.php │ │ ├── PreComputedInflector.php │ │ └── composer.json │ │ ├── Iterator │ │ ├── AppendIterator.php │ │ ├── ChunkedIterator.php │ │ ├── FilterIterator.php │ │ ├── MapIterator.php │ │ ├── MethodProxyIterator.php │ │ ├── README.md │ │ └── composer.json │ │ ├── Log │ │ ├── AbstractLogAdapter.php │ │ ├── ArrayLogAdapter.php │ │ ├── ClosureLogAdapter.php │ │ ├── LogAdapterInterface.php │ │ ├── MessageFormatter.php │ │ ├── MonologLogAdapter.php │ │ ├── PsrLogAdapter.php │ │ ├── Zf1LogAdapter.php │ │ ├── Zf2LogAdapter.php │ │ └── composer.json │ │ ├── Parser │ │ ├── Cookie │ │ │ ├── CookieParser.php │ │ │ └── CookieParserInterface.php │ │ ├── Message │ │ │ ├── AbstractMessageParser.php │ │ │ ├── MessageParser.php │ │ │ ├── MessageParserInterface.php │ │ │ └── PeclHttpMessageParser.php │ │ ├── ParserRegistry.php │ │ ├── UriTemplate │ │ │ ├── PeclUriTemplate.php │ │ │ ├── UriTemplate.php │ │ │ └── UriTemplateInterface.php │ │ ├── Url │ │ │ ├── UrlParser.php │ │ │ └── UrlParserInterface.php │ │ └── composer.json │ │ ├── Plugin │ │ ├── Async │ │ │ ├── AsyncPlugin.php │ │ │ └── composer.json │ │ ├── Backoff │ │ │ ├── AbstractBackoffStrategy.php │ │ │ ├── AbstractErrorCodeBackoffStrategy.php │ │ │ ├── BackoffLogger.php │ │ │ ├── BackoffPlugin.php │ │ │ ├── BackoffStrategyInterface.php │ │ │ ├── CallbackBackoffStrategy.php │ │ │ ├── ConstantBackoffStrategy.php │ │ │ ├── CurlBackoffStrategy.php │ │ │ ├── ExponentialBackoffStrategy.php │ │ │ ├── HttpBackoffStrategy.php │ │ │ ├── LinearBackoffStrategy.php │ │ │ ├── ReasonPhraseBackoffStrategy.php │ │ │ ├── TruncatedBackoffStrategy.php │ │ │ └── composer.json │ │ ├── Cache │ │ │ ├── CacheKeyProviderInterface.php │ │ │ ├── CachePlugin.php │ │ │ ├── CacheStorageInterface.php │ │ │ ├── CallbackCanCacheStrategy.php │ │ │ ├── CanCacheStrategyInterface.php │ │ │ ├── DefaultCacheKeyProvider.php │ │ │ ├── DefaultCacheStorage.php │ │ │ ├── DefaultCanCacheStrategy.php │ │ │ ├── DefaultRevalidation.php │ │ │ ├── DenyRevalidation.php │ │ │ ├── RevalidationInterface.php │ │ │ ├── SkipRevalidation.php │ │ │ └── composer.json │ │ ├── Cookie │ │ │ ├── Cookie.php │ │ │ ├── CookieJar │ │ │ │ ├── ArrayCookieJar.php │ │ │ │ ├── CookieJarInterface.php │ │ │ │ └── FileCookieJar.php │ │ │ ├── CookiePlugin.php │ │ │ ├── Exception │ │ │ │ └── InvalidCookieException.php │ │ │ └── composer.json │ │ ├── CurlAuth │ │ │ ├── CurlAuthPlugin.php │ │ │ └── composer.json │ │ ├── ErrorResponse │ │ │ ├── ErrorResponseExceptionInterface.php │ │ │ ├── ErrorResponsePlugin.php │ │ │ ├── Exception │ │ │ │ └── ErrorResponseException.php │ │ │ └── composer.json │ │ ├── History │ │ │ ├── HistoryPlugin.php │ │ │ └── composer.json │ │ ├── Log │ │ │ ├── LogPlugin.php │ │ │ └── composer.json │ │ ├── Md5 │ │ │ ├── CommandContentMd5Plugin.php │ │ │ ├── Md5ValidatorPlugin.php │ │ │ └── composer.json │ │ ├── Mock │ │ │ ├── MockPlugin.php │ │ │ └── composer.json │ │ ├── Oauth │ │ │ ├── OauthPlugin.php │ │ │ └── composer.json │ │ └── composer.json │ │ ├── Service │ │ ├── AbstractConfigLoader.php │ │ ├── Builder │ │ │ ├── ServiceBuilder.php │ │ │ ├── ServiceBuilderInterface.php │ │ │ └── ServiceBuilderLoader.php │ │ ├── CachingConfigLoader.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Command │ │ │ ├── AbstractCommand.php │ │ │ ├── ClosureCommand.php │ │ │ ├── CommandInterface.php │ │ │ ├── CreateResponseClassEvent.php │ │ │ ├── DefaultRequestSerializer.php │ │ │ ├── DefaultResponseParser.php │ │ │ ├── Factory │ │ │ │ ├── AliasFactory.php │ │ │ │ ├── CompositeFactory.php │ │ │ │ ├── ConcreteClassFactory.php │ │ │ │ ├── FactoryInterface.php │ │ │ │ ├── MapFactory.php │ │ │ │ └── ServiceDescriptionFactory.php │ │ │ ├── LocationVisitor │ │ │ │ ├── Request │ │ │ │ │ ├── AbstractRequestVisitor.php │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ ├── PostFieldVisitor.php │ │ │ │ │ ├── PostFileVisitor.php │ │ │ │ │ ├── QueryVisitor.php │ │ │ │ │ ├── RequestVisitorInterface.php │ │ │ │ │ ├── ResponseBodyVisitor.php │ │ │ │ │ └── XmlVisitor.php │ │ │ │ ├── Response │ │ │ │ │ ├── AbstractResponseVisitor.php │ │ │ │ │ ├── BodyVisitor.php │ │ │ │ │ ├── HeaderVisitor.php │ │ │ │ │ ├── JsonVisitor.php │ │ │ │ │ ├── ReasonPhraseVisitor.php │ │ │ │ │ ├── ResponseVisitorInterface.php │ │ │ │ │ ├── StatusCodeVisitor.php │ │ │ │ │ └── XmlVisitor.php │ │ │ │ └── VisitorFlyweight.php │ │ │ ├── OperationCommand.php │ │ │ ├── OperationResponseParser.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseClassInterface.php │ │ │ └── ResponseParserInterface.php │ │ ├── ConfigLoaderInterface.php │ │ ├── Description │ │ │ ├── Operation.php │ │ │ ├── OperationInterface.php │ │ │ ├── Parameter.php │ │ │ ├── SchemaFormatter.php │ │ │ ├── SchemaValidator.php │ │ │ ├── ServiceDescription.php │ │ │ ├── ServiceDescriptionInterface.php │ │ │ ├── ServiceDescriptionLoader.php │ │ │ └── ValidatorInterface.php │ │ ├── Exception │ │ │ ├── CommandException.php │ │ │ ├── CommandTransferException.php │ │ │ ├── DescriptionBuilderException.php │ │ │ ├── InconsistentClientTransferException.php │ │ │ ├── ResponseClassException.php │ │ │ ├── ServiceBuilderException.php │ │ │ ├── ServiceNotFoundException.php │ │ │ └── ValidationException.php │ │ ├── Resource │ │ │ ├── AbstractResourceIteratorFactory.php │ │ │ ├── CompositeResourceIteratorFactory.php │ │ │ ├── MapResourceIteratorFactory.php │ │ │ ├── Model.php │ │ │ ├── ResourceIterator.php │ │ │ ├── ResourceIteratorApplyBatched.php │ │ │ ├── ResourceIteratorClassFactory.php │ │ │ ├── ResourceIteratorFactoryInterface.php │ │ │ └── ResourceIteratorInterface.php │ │ └── composer.json │ │ └── Stream │ │ ├── PhpStreamRequestFactory.php │ │ ├── Stream.php │ │ ├── StreamInterface.php │ │ ├── StreamRequestFactoryInterface.php │ │ └── composer.json │ └── tests │ ├── Guzzle │ └── Tests │ │ ├── Batch │ │ ├── AbstractBatchDecoratorTest.php │ │ ├── BatchBuilderTest.php │ │ ├── BatchClosureDivisorTest.php │ │ ├── BatchClosureTransferTest.php │ │ ├── BatchCommandTransferTest.php │ │ ├── BatchRequestTransferTest.php │ │ ├── BatchSizeDivisorTest.php │ │ ├── BatchTest.php │ │ ├── ExceptionBufferingBatchTest.php │ │ ├── FlushingBatchTest.php │ │ ├── HistoryBatchTest.php │ │ └── NotifyingBatchTest.php │ │ ├── Cache │ │ ├── CacheAdapterFactoryTest.php │ │ ├── CacheAdapterTest.php │ │ ├── ClosureCacheAdapterTest.php │ │ ├── NullCacheAdapterTest.php │ │ └── Zf2CacheAdapterTest.php │ │ ├── Common │ │ ├── AbstractHasDispatcherTest.php │ │ ├── CollectionTest.php │ │ ├── EventTest.php │ │ ├── Exception │ │ │ ├── BatchTransferExceptionTest.php │ │ │ └── ExceptionCollectionTest.php │ │ └── VersionTest.php │ │ ├── GuzzleTestCase.php │ │ ├── Http │ │ ├── AbstractEntityBodyDecoratorTest.php │ │ ├── CachingEntityBodyTest.php │ │ ├── ClientTest.php │ │ ├── Curl │ │ │ ├── CurlHandleTest.php │ │ │ ├── CurlMultiProxyTest.php │ │ │ ├── CurlMultiTest.php │ │ │ ├── CurlVersionTest.php │ │ │ └── RequestMediatorTest.php │ │ ├── EntityBodyTest.php │ │ ├── Exception │ │ │ ├── CurlExceptionTest.php │ │ │ ├── ExceptionTest.php │ │ │ └── MultiTransferExceptionTest.php │ │ ├── IoEmittingEntityBodyTest.php │ │ ├── Message │ │ │ ├── AbstractMessageTest.php │ │ │ ├── EntityEnclosingRequestTest.php │ │ │ ├── Header │ │ │ │ ├── HeaderFactoryTest.php │ │ │ │ └── LinkTest.php │ │ │ ├── HeaderComparison.php │ │ │ ├── HeaderComparisonTest.php │ │ │ ├── HeaderTest.php │ │ │ ├── PostFileTest.php │ │ │ ├── RequestFactoryTest.php │ │ │ ├── RequestTest.php │ │ │ └── ResponseTest.php │ │ ├── MimetypesTest.php │ │ ├── QueryAggregator │ │ │ ├── CommaAggregatorTest.php │ │ │ ├── DuplicateAggregatorTest.php │ │ │ └── PhpAggregatorTest.php │ │ ├── QueryStringTest.php │ │ ├── ReadLimitEntityBodyTest.php │ │ ├── RedirectPluginTest.php │ │ ├── Server.php │ │ ├── StaticClientTest.php │ │ ├── UrlTest.php │ │ └── server.js │ │ ├── Inflection │ │ ├── InflectorTest.php │ │ ├── MemoizingInflectorTest.php │ │ └── PreComputedInflectorTest.php │ │ ├── Iterator │ │ ├── AppendIteratorTest.php │ │ ├── ChunkedIteratorTest.php │ │ ├── FilterIteratorTest.php │ │ ├── MapIteratorTest.php │ │ └── MethodProxyIteratorTest.php │ │ ├── Log │ │ ├── ArrayLogAdapterTest.php │ │ ├── ClosureLogAdapterTest.php │ │ ├── MessageFormatterTest.php │ │ ├── PsrLogAdapterTest.php │ │ └── Zf2LogAdapterTest.php │ │ ├── Mock │ │ ├── CustomResponseModel.php │ │ ├── ErrorResponseMock.php │ │ ├── ExceptionMock.php │ │ ├── MockMulti.php │ │ ├── MockObserver.php │ │ └── MockSubject.php │ │ ├── Parser │ │ ├── Cookie │ │ │ ├── CookieParserProvider.php │ │ │ └── CookieParserTest.php │ │ ├── Message │ │ │ ├── MessageParserProvider.php │ │ │ ├── MessageParserTest.php │ │ │ └── PeclHttpMessageParserTest.php │ │ ├── ParserRegistryTest.php │ │ └── UriTemplate │ │ │ ├── AbstractUriTemplateTest.php │ │ │ ├── PeclUriTemplateTest.php │ │ │ └── UriTemplateTest.php │ │ ├── Plugin │ │ ├── Async │ │ │ └── AsyncPluginTest.php │ │ ├── Backoff │ │ │ ├── AbstractBackoffStrategyTest.php │ │ │ ├── BackoffLoggerTest.php │ │ │ ├── BackoffPluginTest.php │ │ │ ├── CallbackBackoffStrategyTest.php │ │ │ ├── ConstantBackoffStrategyTest.php │ │ │ ├── CurlBackoffStrategyTest.php │ │ │ ├── ExponentialBackoffStrategyTest.php │ │ │ ├── HttpBackoffStrategyTest.php │ │ │ ├── LinearBackoffStrategyTest.php │ │ │ ├── ReasonPhraseBackoffStrategyTest.php │ │ │ └── TruncatedBackoffStrategyTest.php │ │ ├── Cache │ │ │ ├── CachePluginTest.php │ │ │ ├── CallbackCanCacheStrategyTest.php │ │ │ ├── DefaultCacheStorageTest.php │ │ │ ├── DefaultCanCacheStrategyTest.php │ │ │ ├── DefaultRevalidationTest.php │ │ │ ├── DenyRevalidationTest.php │ │ │ └── SkipRevalidationTest.php │ │ ├── Cookie │ │ │ ├── CookieJar │ │ │ │ ├── ArrayCookieJarTest.php │ │ │ │ └── FileCookieJarTest.php │ │ │ ├── CookiePluginTest.php │ │ │ └── CookieTest.php │ │ ├── CurlAuth │ │ │ └── CurlAuthPluginTest.php │ │ ├── ErrorResponse │ │ │ └── ErrorResponsePluginTest.php │ │ ├── History │ │ │ └── HistoryPluginTest.php │ │ ├── Log │ │ │ └── LogPluginTest.php │ │ ├── Md5 │ │ │ ├── CommandContentMd5PluginTest.php │ │ │ └── Md5ValidatorPluginTest.php │ │ ├── Mock │ │ │ └── MockPluginTest.php │ │ └── Oauth │ │ │ └── OauthPluginTest.php │ │ ├── Service │ │ ├── AbstractConfigLoaderTest.php │ │ ├── Builder │ │ │ ├── ServiceBuilderLoaderTest.php │ │ │ └── ServiceBuilderTest.php │ │ ├── CachingConfigLoaderTest.php │ │ ├── ClientTest.php │ │ ├── Command │ │ │ ├── AbstractCommandTest.php │ │ │ ├── ClosureCommandTest.php │ │ │ ├── CommandTest.php │ │ │ ├── DefaultRequestSerializerTest.php │ │ │ ├── DefaultResponseParserTest.php │ │ │ ├── Factory │ │ │ │ ├── AliasFactoryTest.php │ │ │ │ ├── CompositeFactoryTest.php │ │ │ │ ├── ConcreteClassFactoryTest.php │ │ │ │ ├── MapFactoryTest.php │ │ │ │ └── ServiceDescriptionFactoryTest.php │ │ │ ├── LocationVisitor │ │ │ │ ├── Request │ │ │ │ │ ├── AbstractVisitorTestCase.php │ │ │ │ │ ├── BodyVisitorTest.php │ │ │ │ │ ├── HeaderVisitorTest.php │ │ │ │ │ ├── JsonVisitorTest.php │ │ │ │ │ ├── PostFieldVisitorTest.php │ │ │ │ │ ├── PostFileVisitorTest.php │ │ │ │ │ ├── QueryVisitorTest.php │ │ │ │ │ ├── ResponseBodyVisitorTest.php │ │ │ │ │ └── XmlVisitorTest.php │ │ │ │ ├── Response │ │ │ │ │ ├── AbstractResponseVisitorTest.php │ │ │ │ │ ├── BodyVisitorTest.php │ │ │ │ │ ├── HeaderVisitorTest.php │ │ │ │ │ ├── JsonVisitorTest.php │ │ │ │ │ ├── ReasonPhraseVisitorTest.php │ │ │ │ │ ├── StatusCodeVisitorTest.php │ │ │ │ │ └── XmlVisitorTest.php │ │ │ │ └── VisitorFlyweightTest.php │ │ │ ├── OperationCommandTest.php │ │ │ └── OperationResponseParserTest.php │ │ ├── Description │ │ │ ├── OperationTest.php │ │ │ ├── ParameterTest.php │ │ │ ├── SchemaFormatterTest.php │ │ │ ├── SchemaValidatorTest.php │ │ │ ├── ServiceDescriptionLoaderTest.php │ │ │ └── ServiceDescriptionTest.php │ │ ├── Exception │ │ │ ├── CommandTransferExceptionTest.php │ │ │ ├── InconsistentClientTransferExceptionTest.php │ │ │ └── ValidationExceptionTest.php │ │ ├── Mock │ │ │ ├── Command │ │ │ │ ├── IterableCommand.php │ │ │ │ ├── MockCommand.php │ │ │ │ ├── OtherCommand.php │ │ │ │ └── Sub │ │ │ │ │ └── Sub.php │ │ │ ├── MockClient.php │ │ │ └── Model │ │ │ │ └── MockCommandIterator.php │ │ └── Resource │ │ │ ├── CompositeResourceIteratorFactoryTest.php │ │ │ ├── MapResourceIteratorFactoryTest.php │ │ │ ├── ModelTest.php │ │ │ ├── ResourceIteratorClassFactoryTest.php │ │ │ └── ResourceIteratorTest.php │ │ ├── Stream │ │ ├── PhpStreamRequestFactoryTest.php │ │ └── StreamTest.php │ │ └── TestData │ │ ├── FileBody.txt │ │ ├── description │ │ ├── bar.json │ │ ├── baz.json │ │ ├── foo.json │ │ └── recursive.json │ │ ├── mock_response │ │ ├── services │ │ ├── json1.json │ │ ├── json2.json │ │ └── services.json │ │ ├── test_service.json │ │ ├── test_service2.json │ │ └── test_service_3.json │ └── bootstrap.php ├── hashids └── hashids │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── examples │ ├── encrypting_decrypting_several_numbers.php │ ├── encrypting_one_number.php │ ├── encrypting_several_numbers.php │ ├── encrypting_with_custom_alphabet.php │ └── encrypting_with_custom_hash_length.php │ ├── lib │ └── Hashids │ │ └── Hashids.php │ └── tests │ └── HashidsTest.php ├── ircmaxell └── password-compat │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── lib │ └── password.php │ ├── phpunit.xml.dist │ ├── test │ └── Unit │ │ ├── PasswordGetInfoTest.php │ │ ├── PasswordHashTest.php │ │ ├── PasswordNeedsRehashTest.php │ │ └── PasswordVerifyTest.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 │ ├── .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 │ │ └── ClearCommand.php │ ├── DatabaseStore.php │ ├── FileStore.php │ ├── MemcachedConnector.php │ ├── MemcachedStore.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 │ ├── 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 │ ├── Encrypter.php │ ├── EncryptionServiceProvider.php │ └── composer.json │ ├── Events │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ ├── Subscriber.php │ └── composer.json │ ├── Exception │ ├── ExceptionDisplayerInterface.php │ ├── ExceptionServiceProvider.php │ ├── Handler.php │ ├── PlainDisplayer.php │ ├── SymfonyDisplayer.php │ ├── WhoopsDisplayer.php │ ├── composer.json │ └── resources │ │ └── plain.html │ ├── Filesystem │ ├── 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 │ │ └── 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 ├── maatwebsite └── excel │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── blade.md │ ├── blade │ │ ├── load-view.md │ │ ├── styling.md │ │ └── vars.md │ ├── borders.md │ ├── changelog.md │ ├── changelog │ │ └── version-1.md │ ├── export.md │ ├── export │ │ ├── array.md │ │ ├── autofilter.md │ │ ├── autosize.md │ │ ├── call.md │ │ ├── cells.md │ │ ├── export.md │ │ ├── format.md │ │ ├── freeze.md │ │ ├── merge.md │ │ ├── rows.md │ │ ├── sheet-styling.md │ │ ├── sheets.md │ │ ├── simple.md │ │ ├── sizing.md │ │ └── store.md │ ├── formats.md │ ├── getting-started.md │ ├── getting-started │ │ ├── config.md │ │ ├── contributing.md │ │ ├── installation.md │ │ ├── license.md │ │ └── requirements.md │ ├── import.md │ ├── import │ │ ├── basics.md │ │ ├── batch.md │ │ ├── cache.md │ │ ├── calculation.md │ │ ├── config.md │ │ ├── dates.md │ │ ├── extra.md │ │ ├── results.md │ │ └── select.md │ ├── merge.md │ ├── reference-guide.md │ └── reference-guide │ │ ├── borders.md │ │ ├── closures.md │ │ ├── css-styles.md │ │ ├── file-properties.md │ │ ├── formatting.md │ │ └── sheet-properties.md │ ├── phpunit.xml │ ├── provides.json │ ├── src │ ├── Maatwebsite │ │ └── Excel │ │ │ ├── Classes │ │ │ ├── Cache.php │ │ │ ├── FormatIdentifier.php │ │ │ ├── LaravelExcelWorksheet.php │ │ │ └── PHPExcel.php │ │ │ ├── Collections │ │ │ ├── CellCollection.php │ │ │ ├── ExcelCollection.php │ │ │ ├── RowCollection.php │ │ │ └── SheetCollection.php │ │ │ ├── Excel.php │ │ │ ├── ExcelServiceProvider.php │ │ │ ├── Exceptions │ │ │ └── LaravelExcelException.php │ │ │ ├── Facades │ │ │ └── Excel.php │ │ │ ├── Parsers │ │ │ ├── CssParser.php │ │ │ ├── ExcelParser.php │ │ │ └── ViewParser.php │ │ │ ├── Readers │ │ │ ├── Batch.php │ │ │ ├── ConfigReader.php │ │ │ ├── HtmlReader.php │ │ │ └── LaravelExcelReader.php │ │ │ └── Writers │ │ │ ├── CellWriter.php │ │ │ └── LaravelExcelWriter.php │ └── config │ │ ├── cache.php │ │ ├── config.php │ │ ├── csv.php │ │ ├── export.php │ │ ├── import.php │ │ └── views.php │ └── tests │ ├── .gitkeep │ ├── Excel │ ├── ExcelTestCase.php │ └── ExcelTester.php │ ├── Readers │ ├── ChineseXlsReaderTest.php │ ├── CsvReaderTest.php │ ├── MultipleSheetsXlsReaderTest.php │ ├── ReaderTest.php │ ├── XlsReaderTest.php │ ├── XlsxReaderTest.php │ ├── files │ │ ├── chinese.xls │ │ ├── multiple.xls │ │ ├── test.csv │ │ ├── test.xls │ │ └── test.xlsx │ └── traits │ │ ├── ImportTrait.php │ │ └── SingleImportTestingTrait.php │ ├── TestCase.php │ ├── TestConfig.php │ ├── TestServiceProvider.php │ └── Writers │ └── ExcelWriterTest.php ├── mailgun └── mailgun-php │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── SharedHostInstall.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Mailgun │ │ ├── Connection │ │ ├── Exceptions │ │ │ ├── GenericHTTPError.php │ │ │ ├── InvalidCredentials.php │ │ │ ├── MissingEndpoint.php │ │ │ ├── MissingRequiredParameters.php │ │ │ └── NoDomainsConfigured.php │ │ └── RestClient.php │ │ ├── Constants │ │ └── Constants.php │ │ ├── Lists │ │ ├── OptInHandler.php │ │ └── README.md │ │ ├── Mailgun.php │ │ └── Messages │ │ ├── BatchMessage.php │ │ ├── Exceptions │ │ ├── InvalidParameter.php │ │ ├── InvalidParameterType.php │ │ ├── MissingRequiredMIMEParameters.php │ │ └── TooManyParameters.php │ │ ├── MessageBuilder.php │ │ └── README.md │ └── tests │ ├── Bootstrap.php │ └── Mailgun │ └── Tests │ ├── Connection │ └── ConnectionTest.php │ ├── Lists │ └── OptInHandlerTest.php │ ├── MailgunTest.php │ ├── MailgunTestCase.php │ ├── Messages │ ├── BatchMessageTest.php │ ├── MessageBuilderTest.php │ └── StandardMessageTest.php │ └── Mock │ ├── Connection │ └── TestBroker.php │ └── Mailgun.php ├── monolog └── monolog │ ├── CHANGELOG.mdown │ ├── LICENSE │ ├── README.mdown │ ├── composer.json │ ├── doc │ ├── extending.md │ ├── sockets.md │ └── usage.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 │ │ ├── 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 │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HipChatHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.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 │ │ ├── NormalizerFormatterTest.php │ │ ├── ScalarFormatterTest.php │ │ └── WildfireFormatterTest.php │ ├── Functional │ │ └── Handler │ │ │ └── FirePHPHandlerTest.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 │ │ ├── FlowdockHandlerTest.php │ │ ├── GelfHandlerLegacyTest.php │ │ ├── GelfHandlerTest.php │ │ ├── GroupHandlerTest.php │ │ ├── HipChatHandlerTest.php │ │ ├── LogEntriesHandlerTest.php │ │ ├── MailHandlerTest.php │ │ ├── MockRavenClient.php │ │ ├── MongoDBHandlerTest.php │ │ ├── NativeMailerHandlerTest.php │ │ ├── NewRelicHandlerTest.php │ │ ├── NullHandlerTest.php │ │ ├── PushoverHandlerTest.php │ │ ├── RavenHandlerTest.php │ │ ├── RedisHandlerTest.php │ │ ├── RotatingFileHandlerTest.php │ │ ├── SocketHandlerTest.php │ │ ├── StreamHandlerTest.php │ │ ├── SyslogHandlerTest.php │ │ ├── SyslogUdpHandlerTest.php │ │ ├── TestHandlerTest.php │ │ ├── UdpSocketTest.php │ │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ │ ├── GitProcessorTest.php │ │ ├── IntrospectionProcessorTest.php │ │ ├── MemoryPeakUsageProcessorTest.php │ │ ├── MemoryUsageProcessorTest.php │ │ ├── ProcessIdProcessorTest.php │ │ ├── TagProcessorTest.php │ │ ├── UidProcessorTest.php │ │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ └── TestCase.php │ └── bootstrap.php ├── nesbot └── carbon │ ├── LICENSE │ ├── composer.json │ ├── history.md │ ├── 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 │ ├── 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 │ ├── class │ ├── 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 │ │ ├── Bootup.php │ │ ├── Bootup │ │ ├── iconv.php │ │ ├── intl.php │ │ ├── mbstring.php │ │ └── utf8_encode.php │ │ ├── WinFsStreamWrapper.php │ │ └── data │ │ ├── caseFolding_full.ser │ │ └── translit_extra.ser │ ├── composer.json │ └── phpunit.xml.dist ├── phpoffice └── phpexcel │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Classes │ ├── PHPExcel.php │ └── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ ├── APC.php │ │ ├── CacheBase.php │ │ ├── DiscISAM.php │ │ ├── ICache.php │ │ ├── Igbinary.php │ │ ├── Memcache.php │ │ ├── Memory.php │ │ ├── MemoryGZip.php │ │ ├── MemorySerialized.php │ │ ├── PHPTemp.php │ │ ├── SQLite.php │ │ ├── SQLite3.php │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine │ │ ├── CyclicReferenceStack.php │ │ └── Logger.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ ├── Database.php │ │ ├── DateTime.php │ │ ├── Engineering.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Function.php │ │ ├── Functions.php │ │ ├── Logical.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── Statistical.php │ │ ├── TextData.php │ │ ├── Token │ │ │ └── Stack.php │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ ├── AdvancedValueBinder.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Exception.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Renderer │ │ │ ├── PHP Charting Libraries.txt │ │ │ └── jpgraph.php │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── Abstract.php │ │ ├── CSV.php │ │ ├── DefaultReadFilter.php │ │ ├── Excel2003XML.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ └── Theme.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ ├── Escher.php │ │ │ ├── MD5.php │ │ │ └── RC4.php │ │ ├── Exception.php │ │ ├── Gnumeric.php │ │ ├── HTML.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── OOCalc.php │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── Excel5.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ ├── Error.php │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PCLZip │ │ │ ├── gnu-lgpl.txt │ │ │ ├── pclzip.lib.php │ │ │ └── readme.txt │ │ ├── PasswordHasher.php │ │ ├── String.php │ │ ├── TimeZone.php │ │ ├── XMLWriter.php │ │ ├── ZipArchive.php │ │ ├── ZipStreamWrapper.php │ │ └── trend │ │ │ ├── bestFitClass.php │ │ │ ├── exponentialBestFitClass.php │ │ │ ├── linearBestFitClass.php │ │ │ ├── logarithmicBestFitClass.php │ │ │ ├── polynomialBestFitClass.php │ │ │ ├── powerBestFitClass.php │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ ├── Protection.php │ │ └── Supervisor.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ ├── AutoFilter.php │ │ ├── AutoFilter │ │ │ ├── Column.php │ │ │ └── Column │ │ │ │ └── Rule.php │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── ColumnDimension.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ ├── Abstract.php │ │ ├── CSV.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DocProps.php │ │ │ ├── Drawing.php │ │ │ ├── Rels.php │ │ │ ├── RelsRibbon.php │ │ │ ├── RelsVBA.php │ │ │ ├── StringTable.php │ │ │ ├── Style.php │ │ │ ├── Theme.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── WriterPart.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ ├── BIFFwriter.php │ │ │ ├── Escher.php │ │ │ ├── Font.php │ │ │ ├── Parser.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── Xf.php │ │ ├── Exception.php │ │ ├── HTML.php │ │ ├── IWriter.php │ │ ├── PDF.php │ │ └── PDF │ │ │ ├── Core.php │ │ │ ├── DomPDF.php │ │ │ ├── mPDF.php │ │ │ └── tcPDF.php │ │ └── locale │ │ ├── bg │ │ └── config │ │ ├── cs │ │ ├── config │ │ └── functions │ │ ├── da │ │ ├── config │ │ └── functions │ │ ├── de │ │ ├── config │ │ └── functions │ │ ├── en │ │ └── uk │ │ │ └── config │ │ ├── es │ │ ├── config │ │ └── functions │ │ ├── fi │ │ ├── config │ │ └── functions │ │ ├── fr │ │ ├── config │ │ └── functions │ │ ├── hu │ │ ├── config │ │ └── functions │ │ ├── it │ │ ├── config │ │ └── functions │ │ ├── nl │ │ ├── config │ │ └── functions │ │ ├── no │ │ ├── config │ │ └── functions │ │ ├── pl │ │ ├── config │ │ └── functions │ │ ├── pt │ │ ├── br │ │ │ ├── config │ │ │ └── functions │ │ ├── config │ │ └── functions │ │ ├── ru │ │ ├── config │ │ └── functions │ │ ├── sv │ │ ├── config │ │ └── functions │ │ └── tr │ │ ├── config │ │ └── functions │ ├── Examples │ ├── .gitignore │ ├── 01pharSimple.php │ ├── 01simple-download-pdf.php │ ├── 01simple-download-xls.php │ ├── 01simple-download-xlsx.php │ ├── 01simple.php │ ├── 01simplePCLZip.php │ ├── 02types-xls.php │ ├── 02types.php │ ├── 03formulas.php │ ├── 04printing.php │ ├── 05featuredemo.inc.php │ ├── 05featuredemo.php │ ├── 06largescale-with-cellcaching-sqlite.php │ ├── 06largescale-with-cellcaching-sqlite3.php │ ├── 06largescale-with-cellcaching.php │ ├── 06largescale-xls.php │ ├── 06largescale.php │ ├── 07reader.php │ ├── 07readerPCLZip.php │ ├── 08conditionalformatting.php │ ├── 08conditionalformatting2.php │ ├── 09pagebreaks.php │ ├── 10autofilter-selection-1.php │ ├── 10autofilter-selection-2.php │ ├── 10autofilter-selection-display.php │ ├── 10autofilter.php │ ├── 11documentsecurity-xls.php │ ├── 11documentsecurity.php │ ├── 12cellProtection.php │ ├── 13calculation.php │ ├── 14excel5.php │ ├── 15datavalidation-xls.php │ ├── 15datavalidation.php │ ├── 16csv.php │ ├── 17html.php │ ├── 18extendedcalculation.php │ ├── 19namedrange.php │ ├── 20readexcel5.php │ ├── 21pdf.php │ ├── 22heavilyformatted.php │ ├── 23sharedstyles.php │ ├── 24readfilter.php │ ├── 25inmemoryimage.php │ ├── 26utf8.php │ ├── 27imagesexcel5.php │ ├── 28iterator.php │ ├── 29advancedvaluebinder.php │ ├── 30template.php │ ├── 31docproperties_write-xls.php │ ├── 31docproperties_write.php │ ├── 32chartreadwrite.php │ ├── 33chartcreate-area.php │ ├── 33chartcreate-bar-stacked.php │ ├── 33chartcreate-bar.php │ ├── 33chartcreate-column-2.php │ ├── 33chartcreate-column.php │ ├── 33chartcreate-composite.php │ ├── 33chartcreate-line.php │ ├── 33chartcreate-multiple-charts.php │ ├── 33chartcreate-pie.php │ ├── 33chartcreate-radar.php │ ├── 33chartcreate-scatter.php │ ├── 33chartcreate-stock.php │ ├── 34chartupdate.php │ ├── 35chartrender.php │ ├── 36chartreadwriteHTML.php │ ├── 36chartreadwritePDF.php │ ├── 37page_layout_view.php │ ├── 38cloneWorksheet.php │ ├── 40duplicateStyle.php │ ├── Excel2003XMLReader.php │ ├── Excel2003XMLTest.xml │ ├── GnumericReader.php │ ├── GnumericTest.gnumeric │ ├── OOCalcReader.php │ ├── OOCalcReaderPCLZip.php │ ├── OOCalcTest.ods │ ├── Quadratic.php │ ├── Quadratic2.php │ ├── SylkReader.php │ ├── SylkTest.slk │ ├── XMLReader.php │ ├── XMLTest.xml │ ├── images │ │ ├── officelogo.jpg │ │ ├── paid.png │ │ ├── phpexcel_logo.gif │ │ └── termsconditions.jpg │ └── runall.php │ ├── changelog.txt │ ├── composer.json │ ├── install.txt │ ├── license.md │ └── unitTests │ ├── Classes │ └── PHPExcel │ │ ├── AutoloaderTest.php │ │ ├── Calculation │ │ ├── DateTimeTest.php │ │ ├── EngineeringTest.php │ │ ├── FinancialTest.php │ │ ├── FunctionsTest.php │ │ ├── LogicalTest.php │ │ ├── LookupRefTest.php │ │ ├── MathTrigTest.php │ │ └── TextDataTest.php │ │ ├── CalculationTest.php │ │ ├── Cell │ │ ├── AdvancedValueBinderTest.php │ │ ├── DataTypeTest.php │ │ └── HyperlinkTest.php │ │ ├── CellTest.php │ │ ├── Chart │ │ ├── DataSeriesValuesTest.php │ │ ├── LayoutTest.php │ │ └── LegendTest.php │ │ ├── ReferenceHelperTest.php │ │ ├── Shared │ │ ├── CodePageTest.php │ │ ├── DateTest.php │ │ ├── FileTest.php │ │ ├── FontTest.php │ │ ├── PasswordHasherTest.php │ │ ├── StringTest.php │ │ └── TimeZoneTest.php │ │ ├── Style │ │ ├── ColorTest.php │ │ └── NumberFormatTest.php │ │ └── Worksheet │ │ ├── AutoFilter │ │ ├── Column │ │ │ └── RuleTest.php │ │ └── ColumnTest.php │ │ ├── AutoFilterTest.php │ │ └── CellCollectionTest.php │ ├── bootstrap.php │ ├── custom │ ├── Complex.php │ └── complexAssert.php │ ├── phpunit-cc.xml │ ├── phpunit.xml │ ├── rawTestData │ ├── Calculation │ │ ├── DateTime │ │ │ ├── DATE.data │ │ │ ├── DATEDIF.data │ │ │ ├── DATEVALUE.data │ │ │ ├── DAY.data │ │ │ ├── DAYS360.data │ │ │ ├── EDATE.data │ │ │ ├── EOMONTH.data │ │ │ ├── HOUR.data │ │ │ ├── MINUTE.data │ │ │ ├── MONTH.data │ │ │ ├── NETWORKDAYS.data │ │ │ ├── SECOND.data │ │ │ ├── TIME.data │ │ │ ├── TIMEVALUE.data │ │ │ ├── WEEKDAY.data │ │ │ ├── WEEKNUM.data │ │ │ ├── WORKDAY.data │ │ │ ├── YEAR.data │ │ │ └── YEARFRAC.data │ │ ├── Engineering │ │ │ ├── BESSELI.data │ │ │ ├── BESSELJ.data │ │ │ ├── BESSELK.data │ │ │ ├── BESSELY.data │ │ │ ├── BIN2DEC.data │ │ │ ├── BIN2HEX.data │ │ │ ├── BIN2OCT.data │ │ │ ├── COMPLEX.data │ │ │ ├── CONVERTUOM.data │ │ │ ├── DEC2BIN.data │ │ │ ├── DEC2HEX.data │ │ │ ├── DEC2OCT.data │ │ │ ├── DELTA.data │ │ │ ├── ERF.data │ │ │ ├── ERFC.data │ │ │ ├── GESTEP.data │ │ │ ├── HEX2BIN.data │ │ │ ├── HEX2DEC.data │ │ │ ├── HEX2OCT.data │ │ │ ├── IMABS.data │ │ │ ├── IMAGINARY.data │ │ │ ├── IMARGUMENT.data │ │ │ ├── IMCONJUGATE.data │ │ │ ├── IMCOS.data │ │ │ ├── IMDIV.data │ │ │ ├── IMEXP.data │ │ │ ├── IMLN.data │ │ │ ├── IMLOG10.data │ │ │ ├── IMLOG2.data │ │ │ ├── IMPOWER.data │ │ │ ├── IMPRODUCT.data │ │ │ ├── IMREAL.data │ │ │ ├── IMSIN.data │ │ │ ├── IMSQRT.data │ │ │ ├── IMSUB.data │ │ │ ├── IMSUM.data │ │ │ ├── OCT2BIN.data │ │ │ ├── OCT2DEC.data │ │ │ └── OCT2HEX.data │ │ ├── Financial │ │ │ ├── ACCRINT.data │ │ │ ├── ACCRINTM.data │ │ │ ├── AMORDEGRC.data │ │ │ ├── AMORLINC.data │ │ │ ├── COUPDAYBS.data │ │ │ ├── COUPDAYS.data │ │ │ ├── COUPDAYSNC.data │ │ │ ├── COUPNCD.data │ │ │ ├── COUPNUM.data │ │ │ ├── COUPPCD.data │ │ │ ├── CUMIPMT.data │ │ │ ├── CUMPRINC.data │ │ │ ├── DB.data │ │ │ ├── DDB.data │ │ │ ├── DISC.data │ │ │ ├── DOLLARDE.data │ │ │ ├── DOLLARFR.data │ │ │ ├── EFFECT.data │ │ │ ├── FV.data │ │ │ ├── FVSCHEDULE.data │ │ │ ├── INTRATE.data │ │ │ ├── IPMT.data │ │ │ ├── IRR.data │ │ │ ├── ISPMT.data │ │ │ ├── MIRR.data │ │ │ ├── NOMINAL.data │ │ │ ├── NPER.data │ │ │ ├── NPV.data │ │ │ ├── PRICE.data │ │ │ ├── RATE.data │ │ │ └── XIRR.data │ │ ├── Functions │ │ │ ├── ERROR_TYPE.data │ │ │ ├── IS_BLANK.data │ │ │ ├── IS_ERR.data │ │ │ ├── IS_ERROR.data │ │ │ ├── IS_EVEN.data │ │ │ ├── IS_LOGICAL.data │ │ │ ├── IS_NA.data │ │ │ ├── IS_NONTEXT.data │ │ │ ├── IS_NUMBER.data │ │ │ ├── IS_ODD.data │ │ │ ├── IS_TEXT.data │ │ │ ├── N.data │ │ │ └── TYPE.data │ │ ├── Logical │ │ │ ├── AND.data │ │ │ ├── IF.data │ │ │ ├── IFERROR.data │ │ │ ├── NOT.data │ │ │ └── OR.data │ │ ├── LookupRef │ │ │ ├── HLOOKUP.data │ │ │ └── VLOOKUP.data │ │ ├── MathTrig │ │ │ ├── ATAN2.data │ │ │ ├── CEILING.data │ │ │ ├── COMBIN.data │ │ │ ├── EVEN.data │ │ │ ├── FACT.data │ │ │ ├── FACTDOUBLE.data │ │ │ ├── FLOOR.data │ │ │ ├── GCD.data │ │ │ ├── INT.data │ │ │ ├── LCM.data │ │ │ ├── LOG.data │ │ │ ├── MDETERM.data │ │ │ ├── MINVERSE.data │ │ │ ├── MMULT.data │ │ │ ├── MOD.data │ │ │ ├── MROUND.data │ │ │ ├── MULTINOMIAL.data │ │ │ ├── ODD.data │ │ │ ├── POWER.data │ │ │ ├── PRODUCT.data │ │ │ ├── QUOTIENT.data │ │ │ ├── ROMAN.data │ │ │ ├── ROUNDDOWN.data │ │ │ ├── ROUNDUP.data │ │ │ ├── SERIESSUM.data │ │ │ ├── SIGN.data │ │ │ ├── SQRTPI.data │ │ │ ├── SUMSQ.data │ │ │ └── TRUNC.data │ │ └── TextData │ │ │ ├── CHAR.data │ │ │ ├── CLEAN.data │ │ │ ├── CODE.data │ │ │ ├── CONCATENATE.data │ │ │ ├── DOLLAR.data │ │ │ ├── FIND.data │ │ │ ├── FIXED.data │ │ │ ├── LEFT.data │ │ │ ├── LEN.data │ │ │ ├── LOWER.data │ │ │ ├── MID.data │ │ │ ├── PROPER.data │ │ │ ├── REPLACE.data │ │ │ ├── RIGHT.data │ │ │ ├── SEARCH.data │ │ │ ├── SUBSTITUTE.data │ │ │ ├── T.data │ │ │ ├── TEXT.data │ │ │ ├── TRIM.data │ │ │ └── UPPER.data │ ├── CalculationBinaryComparisonOperation.data │ ├── CellAbsoluteCoordinate.data │ ├── CellAbsoluteReference.data │ ├── CellBuildRange.data │ ├── CellCoordinates.data │ ├── CellExtractAllCellReferencesInRange.data │ ├── CellGetRangeBoundaries.data │ ├── CellRangeBoundaries.data │ ├── CellRangeDimension.data │ ├── CellSplitRange.data │ ├── ColumnIndex.data │ ├── ColumnString.data │ ├── Shared │ │ ├── CentimeterSizeToPixels.data │ │ ├── CodePage.data │ │ ├── DateTimeExcelToPHP1900.data │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ ├── DateTimeExcelToPHP1904.data │ │ ├── DateTimeFormatCodes.data │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ ├── DateTimePHPToExcel1900.data │ │ ├── DateTimePHPToExcel1904.data │ │ ├── FontSizeToPixels.data │ │ ├── InchSizeToPixels.data │ │ └── PasswordHashes.data │ └── Style │ │ ├── ColorChangeBrightness.data │ │ ├── ColorGetBlue.data │ │ ├── ColorGetGreen.data │ │ ├── ColorGetRed.data │ │ └── NumberFormat.data │ └── testDataFileIterator.php ├── phpseclib └── phpseclib │ ├── .gitattributes │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── build │ ├── build.xml │ ├── code-sniffer-ruleset-tests.xml │ └── code-sniffer-ruleset.xml │ ├── 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 │ │ │ ├── SFTPUserStoryTest.php │ │ │ └── SSH2Test.php │ ├── PhpseclibFunctionalTestCase.php │ ├── PhpseclibTestCase.php │ ├── Unit │ │ ├── Crypt │ │ │ ├── AES │ │ │ │ ├── ContinuousBufferTest.php │ │ │ │ └── TestCase.php │ │ │ ├── Hash │ │ │ │ ├── MD5Test.php │ │ │ │ └── TestCase.php │ │ │ └── RSA │ │ │ │ └── LoadKeyTest.php │ │ ├── File │ │ │ ├── ASN1 │ │ │ │ └── DevTest.php │ │ │ └── X509 │ │ │ │ └── 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 │ │ ├── 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 │ │ └── 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 │ │ ├── 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 │ │ └── 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 │ ├── notes │ ├── APPS │ ├── CHARSETS │ ├── message.xml │ ├── rfc │ │ ├── rfc0821.txt │ │ ├── rfc0822.txt │ │ ├── rfc1341.txt │ │ ├── rfc1521.txt │ │ ├── rfc1854.txt │ │ ├── rfc2015.txt │ │ ├── rfc2045.txt │ │ ├── rfc2046.txt │ │ ├── rfc2047.txt │ │ ├── rfc2048.txt │ │ ├── rfc2049.txt │ │ ├── rfc2183.txt │ │ ├── rfc2222.txt │ │ ├── rfc2231.txt │ │ ├── rfc2234.txt │ │ ├── rfc2440.txt │ │ ├── rfc2487.txt │ │ ├── rfc2554.txt │ │ ├── rfc2821.txt │ │ ├── rfc2822.txt │ │ ├── rfc3156.txt │ │ ├── rfc3676.txt │ │ ├── rfc4505.txt │ │ ├── rfc4616.txt │ │ ├── rfc4870.txt │ │ ├── rfc4871.txt │ │ ├── rfc4880.txt │ │ ├── rfc4954.txt │ │ ├── rfc5751.txt │ │ └── whats_where.txt │ └── smtp.txt │ ├── 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 │ │ └── textfile.zip │ └── smime │ │ ├── CA.srl │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── create-cert.sh │ │ ├── encrypt.crt │ │ ├── encrypt.key │ │ ├── encrypt2.crt │ │ ├── encrypt2.key │ │ ├── sign.crt │ │ └── sign.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 │ │ ├── Bug51Test.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 │ ├── 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 │ │ │ ├── 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 │ │ │ ├── DialogHelperTest.php │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressHelperTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── TableHelperTest.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 │ └── Symfony │ │ └── Component │ │ └── EventDispatcher │ │ ├── .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 │ │ ├── ContainerAwareEventDispatcherTest.php │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ ├── EventDispatcherTest.php │ │ ├── EventTest.php │ │ ├── GenericEventTest.php │ │ └── ImmutableEventDispatcherTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── filesystem │ └── Symfony │ │ └── Component │ │ └── Filesystem │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ └── IOExceptionInterface.php │ │ ├── Filesystem.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Tests │ │ ├── ExceptionTest.php │ │ ├── FilesystemTest.php │ │ └── FilesystemTestCase.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 │ │ │ └── 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 │ │ │ ├── FakeFile.php │ │ │ └── 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 │ │ │ ├── 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 │ │ └── 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 │ │ ├── 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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── ApacheUrlMatcherTest.php │ │ │ ├── Dumper │ │ │ │ ├── ApacheMatcherDumperTest.php │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ │ └── PhpMatcherDumperTest.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.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.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 │ │ │ │ └── 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 │ │ │ └── UserTest.php │ │ ├── Util │ │ │ ├── ClassUtilsTest.php │ │ │ ├── SecureRandomTest.php │ │ │ └── StringUtilsTest.php │ │ └── Validator │ │ │ └── Constraints │ │ │ └── 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 └── way └── generators ├── .gitignore ├── .travis.yml ├── LICENSE ├── behat.yml ├── composer.json ├── phpunit.xml ├── provides.json ├── readme.md ├── spec └── Way │ └── Generators │ ├── Compilers │ └── TemplateCompilerSpec.php │ ├── GeneratorSpec.php │ ├── Parsers │ ├── MigrationFieldsParserSpec.php │ └── MigrationNameParserSpec.php │ └── SchemaCreatorSpec.php ├── src ├── Way │ └── Generators │ │ ├── Commands │ │ ├── ControllerGeneratorCommand.php │ │ ├── GeneratorCommand.php │ │ ├── MigrationGeneratorCommand.php │ │ ├── ModelGeneratorCommand.php │ │ ├── PivotGeneratorCommand.php │ │ ├── PublishTemplatesCommand.php │ │ ├── ResourceGeneratorCommand.php │ │ ├── ScaffoldGeneratorCommand.php │ │ ├── SeederGeneratorCommand.php │ │ └── ViewGeneratorCommand.php │ │ ├── Compilers │ │ ├── Compiler.php │ │ └── TemplateCompiler.php │ │ ├── Filesystem │ │ ├── FileAlreadyExists.php │ │ ├── FileNotFound.php │ │ └── Filesystem.php │ │ ├── Generator.php │ │ ├── GeneratorsServiceProvider.php │ │ ├── InvalidMigrationName.php │ │ ├── Parsers │ │ ├── MigrationFieldsParser.php │ │ └── MigrationNameParser.php │ │ ├── SchemaCreator.php │ │ ├── Syntax │ │ ├── AddToTable.php │ │ ├── CreateTable.php │ │ ├── DroppedTable.php │ │ ├── RemoveFromTable.php │ │ └── Table.php │ │ └── templates │ │ ├── controller.txt │ │ ├── migration.txt │ │ ├── model.txt │ │ ├── scaffolding │ │ ├── controller.txt │ │ └── model.txt │ │ ├── schema.txt │ │ ├── seed.txt │ │ └── view.txt └── config │ └── config.php └── tests ├── .gitkeep ├── features ├── bootstrap │ └── FeatureContext.php ├── generators.feature └── migrations.feature └── stubs ├── AddTitleToOrdersTable.txt ├── CreateComplexOrdersTable.txt ├── CreateOrdersTable.txt ├── DropOrdersTable.txt ├── Order.txt ├── OrdersController.txt ├── RecentOrdersTableSeeder.txt ├── RemoveTitleFromOrdersTable.txt └── index.blade.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/bogardo/mailgun/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/bogardo/mailgun/config.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/cache.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/config.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/csv.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/export.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/import.php -------------------------------------------------------------------------------- /app/config/packages/maatwebsite/excel/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/packages/maatwebsite/excel/views.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/AddressbookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/AddressbookController.php -------------------------------------------------------------------------------- /app/controllers/AnalyticController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/AnalyticController.php -------------------------------------------------------------------------------- /app/controllers/AuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/AuthenticationController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/DashboardController.php -------------------------------------------------------------------------------- /app/controllers/DraftResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/DraftResourceController.php -------------------------------------------------------------------------------- /app/controllers/EmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/EmailController.php -------------------------------------------------------------------------------- /app/controllers/FrontendController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/FrontendController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/controllers/MaillistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/MaillistController.php -------------------------------------------------------------------------------- /app/controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/PageController.php -------------------------------------------------------------------------------- /app/controllers/SentEmailCustomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/SentEmailCustomController.php -------------------------------------------------------------------------------- /app/controllers/SentEmailResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/SentEmailResourceController.php -------------------------------------------------------------------------------- /app/controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/SettingController.php -------------------------------------------------------------------------------- /app/controllers/SubscriberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/SubscriberController.php -------------------------------------------------------------------------------- /app/controllers/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/TagController.php -------------------------------------------------------------------------------- /app/controllers/TrackingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/TrackingController.php -------------------------------------------------------------------------------- /app/controllers/TrashResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/TrashResourceController.php -------------------------------------------------------------------------------- /app/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/controllers/UserController.php -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/helpers/Addressbooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Addressbooks.php -------------------------------------------------------------------------------- /app/helpers/BackendPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/BackendPages.php -------------------------------------------------------------------------------- /app/helpers/BackendUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/BackendUsers.php -------------------------------------------------------------------------------- /app/helpers/FrontendHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/FrontendHelpers.php -------------------------------------------------------------------------------- /app/helpers/Imports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Imports.php -------------------------------------------------------------------------------- /app/helpers/Maillists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Maillists.php -------------------------------------------------------------------------------- /app/helpers/Miscellaneous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Miscellaneous.php -------------------------------------------------------------------------------- /app/helpers/ModelCheckboxGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/ModelCheckboxGroup.php -------------------------------------------------------------------------------- /app/helpers/MyValidations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/MyValidations.php -------------------------------------------------------------------------------- /app/helpers/SimpleHTMLToPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/SimpleHTMLToPDF.php -------------------------------------------------------------------------------- /app/helpers/Subscribers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Subscribers.php -------------------------------------------------------------------------------- /app/helpers/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/helpers/Tags.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/models/Analytic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Analytic.php -------------------------------------------------------------------------------- /app/models/Click.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Click.php -------------------------------------------------------------------------------- /app/models/Draft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Draft.php -------------------------------------------------------------------------------- /app/models/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Email.php -------------------------------------------------------------------------------- /app/models/Maillist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Maillist.php -------------------------------------------------------------------------------- /app/models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Page.php -------------------------------------------------------------------------------- /app/models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Setting.php -------------------------------------------------------------------------------- /app/models/Subscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Subscriber.php -------------------------------------------------------------------------------- /app/models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/app/models/Tag.php -------------------------------------------------------------------------------- /app/models/Test.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/Symfony/Component/EventDispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Symfony/Component/Filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /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/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.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/way/generators/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/.gitignore -------------------------------------------------------------------------------- /vendor/way/generators/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/.travis.yml -------------------------------------------------------------------------------- /vendor/way/generators/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/LICENSE -------------------------------------------------------------------------------- /vendor/way/generators/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/behat.yml -------------------------------------------------------------------------------- /vendor/way/generators/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/composer.json -------------------------------------------------------------------------------- /vendor/way/generators/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/phpunit.xml -------------------------------------------------------------------------------- /vendor/way/generators/provides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/provides.json -------------------------------------------------------------------------------- /vendor/way/generators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kJamesy/Nifty-Newsletter/HEAD/vendor/way/generators/readme.md -------------------------------------------------------------------------------- /vendor/way/generators/src/Way/Generators/templates/model.txt: -------------------------------------------------------------------------------- 1 |