├── .gitignore ├── .htaccess ├── INSTALLATION - Instructions.txt ├── LICENSE.txt ├── README.md ├── Resource ├── clean-code.sh ├── install.sql └── logo.psd ├── app ├── Fbf │ └── LaravelNewsletterSignup │ │ └── LaravelNewsletterSignupServiceProvider.php ├── config │ ├── administrator │ │ └── newsletter.php │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── config.php │ ├── database.php │ ├── local │ │ ├── app.php │ │ └── database.php │ ├── mail.php │ ├── moltincart.php │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── AccessController.php │ ├── AuthController.php │ ├── AuthorsController.php │ ├── BaseController.php │ ├── ContactController.php │ ├── ContentController.php │ ├── EventController.php │ ├── FrontController.php │ ├── FrontfbController.php │ ├── FrontprofileController.php │ ├── FrontuserController.php │ ├── HomeController.php │ ├── MediaController.php │ ├── MyController.php │ ├── MyaccountController.php │ ├── OrdersController.php │ ├── PaymentController.php │ ├── PermissionController.php │ ├── SignupsController.php │ ├── UsersController.php │ └── index.html ├── css │ ├── layout.css │ ├── prettyPhoto.css │ ├── reset.css │ └── style.css ├── database │ ├── migrations │ │ ├── 2014_06_05_233828_create_authors_table.php │ │ ├── 2014_06_05_235440_create_aman_table.php │ │ ├── 2014_06_06_000448_add_authors.php │ │ └── 2014_06_06_195937_create_test_table.php │ ├── production.sqlite │ └── seeds │ │ └── DatabaseSeeder.php ├── filters.php ├── index.html ├── lang │ ├── .gitignore │ ├── Changelog.md │ ├── README.md │ ├── Source.md │ ├── Status.md │ ├── ar │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── bg │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── bs │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── ca │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── composer.json │ ├── cs │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── da │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── de │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── el │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── en │ │ ├── copy.php │ │ ├── greeting.php │ │ └── home.php │ ├── es │ │ ├── greeting.php │ │ ├── home.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── fa │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── fi │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── fr │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── he │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── hi │ │ └── greeting.php │ ├── hu │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── id │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── it │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── ja │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── km │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── ko │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── me │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── mk │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── nb │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── nl │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── pl │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── pt-BR │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── pt │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── ro │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── ru │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── sc │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── sk │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── sq │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── sr │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── sv │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── test │ │ ├── de │ │ │ └── greeting.php │ │ └── en │ │ │ ├── copy.php │ │ │ └── greeting.php │ ├── th │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── tk │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── tr │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── vi │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── zh-HK │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── zh-TW │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── zh │ │ ├── greeting.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ └── zu │ │ └── greeting.php ├── migrations │ └── 2013_11_26_091111_create_signups_table.php ├── models │ ├── Addlanguage.php │ ├── Block.php │ ├── Blog.php │ ├── Category.php │ ├── Chat.php │ ├── Chatrecord.php │ ├── Comment.php │ ├── Confirmmail.php │ ├── Contact.php │ ├── Contemplate.php │ ├── Content.php │ ├── Createevent.php │ ├── Currency.php │ ├── Emails.php │ ├── Friends.php │ ├── Gallery.php │ ├── Like.php │ ├── Logo.php │ ├── Membershipplan.php │ ├── Menu.php │ ├── Message.php │ ├── Notification.php │ ├── Notificationlike.php │ ├── Notilike.php │ ├── Notitemplate.php │ ├── Onlineuser.php │ ├── Orders.php │ ├── Pages.php │ ├── Post.php │ ├── Postcomment.php │ ├── Profile.php │ ├── Rating.php │ ├── Set.php │ ├── Settings.php │ ├── Shopping.php │ ├── Signup.php │ ├── Slider.php │ ├── Subcategory.php │ ├── Submenu.php │ ├── Template.php │ ├── User.php │ ├── UserEloquent.php │ ├── author.php │ ├── events.php │ ├── media.php │ └── my.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── meta │ │ └── services.json │ ├── sessions │ │ └── .gitkeep │ └── views │ │ └── .gitkeep ├── tests │ ├── ExampleTest.php │ ├── FooTest.php │ ├── TestCase.php │ ├── controllers │ │ └── PostsControllerTest.php │ └── fetch.test.php ├── translation.php └── views │ ├── authors │ ├── edit.blade.php │ ├── form.blade.php │ ├── index.blade.php │ ├── login.blade.php │ ├── login.blade.php13-2-2015 │ ├── new.blade.php │ └── register.blade.php │ ├── comment │ ├── commentedit.blade.php │ └── viewcomment.blade.php │ ├── contact │ ├── allemail.blade.php │ ├── confirmmail.blade.php │ ├── contactedit.blade.php │ ├── contemplate.blade.php │ ├── editemail.blade.php │ ├── emails.blade.php │ ├── indexs.blade.php │ ├── notification.blade.php │ ├── notitemplate.blade.php │ ├── request.blade.php │ ├── test.blade.php │ ├── viewcontact.blade.php │ └── viewemail.blade.php │ ├── content │ ├── PaymentController.php │ ├── addtemplate.blade.php │ ├── alllanguage.blade.php │ ├── contentadd.blade.php │ ├── contentedit.blade.php │ ├── createmember.blade.php │ ├── creatememberplan.blade.php │ ├── createpage.blade.php │ ├── editmem.blade.php │ ├── membership.blade.php │ ├── newsetting.blade.php │ ├── pageedit.blade.php │ ├── pages.blade.php │ ├── setting.blade.php │ └── viewpages.blade.php │ ├── emails │ └── auth │ │ └── reminder.blade.php │ ├── event │ ├── blogadd.blade.php │ ├── editevent.blade.php │ ├── eventadd.blade.php │ ├── viewblog.blade.php │ └── viewevent.blade.php │ ├── fb │ ├── 404.blade.php │ ├── about.blade.php │ ├── about_img2.jpg │ ├── activate.blade.php │ ├── allevent.blade.php │ ├── allfriendrequest.blade.php │ ├── camerasred.png │ ├── contactform.blade.php │ ├── deleteaccount.blade.php │ ├── fbsetting.blade.php │ ├── forget.blade.php │ ├── friendlist.blade.php │ ├── gallery.blade.php │ ├── home.blade.php │ ├── inbox.blade.php │ ├── index.blade.php │ ├── messages.blade.php │ ├── mystyle.css │ ├── news.blade.php │ ├── news.blade.php_ │ ├── notifications.blade.php │ ├── othergallery.blade.php │ ├── pages.blade.php │ ├── profile.blade.php │ ├── profiledetails.blade.php │ ├── profileopen.blade.php │ ├── profileuser.blade.php │ ├── ren.blade.php │ ├── renpro.blade.php │ ├── renuser.blade.php │ ├── resetpass.blade.php │ ├── routes.php │ ├── search.blade.php │ └── test.blade.php │ ├── hello.php │ ├── index.html │ ├── index.php_ │ ├── layouts │ ├── access.blade.php │ ├── admin.blade.php │ ├── adminnew.blade.php │ ├── default.blade.php │ ├── fb.blade.php │ ├── fbhome.blade.php │ ├── fbprofile.blade.php │ ├── home.blade.php │ ├── index.blade.php │ ├── live.blade.php │ ├── login.blade.php │ ├── permission.blade.php │ ├── portlert.php │ ├── profile.blade.php │ ├── profilefb.blade.php │ └── theme.blade.php │ ├── live │ ├── FrontuserController.php │ ├── blog.blade.php │ ├── blogsingle.blade.php │ ├── checkout.blade.php │ ├── checkout.blade.php_old │ ├── details.blade.php │ ├── details.blade.php_old │ ├── header.blade.php │ ├── header.blade.php_old │ ├── index.blade.php │ ├── index.blade.php_old │ ├── login.blade.php │ ├── loginfirst.blade.php │ ├── logins.blade.php │ ├── payment.blade.php │ ├── rightsidebar.blade.php │ ├── routes.php │ ├── search.blade.php │ ├── search.blade.php_old │ ├── signup.blade.php │ ├── signup.blade.php_old │ ├── sites.blade.php │ └── specials.blade.php │ ├── media │ ├── editmedia.blade.php │ ├── indexs.blade.php │ ├── slider.blade.php │ ├── viewmedia.blade.php │ └── viewslider.blade.php │ ├── myaccount │ ├── indexs.blade.php │ └── indexs.blade.php_old │ ├── newsletter.blade.php │ ├── orders │ ├── eventadmin.blade.php │ ├── galleryadmin.blade.php │ ├── indexs.blade.php │ ├── logo.blade.php │ ├── searchcontact.blade.php │ ├── searchevent.blade.php │ ├── searchgallery.blade.php │ ├── searchtimeline.blade.php │ ├── timeline.blade.php │ ├── timelines.blade.php │ └── timeprofile.blade.php │ ├── profile.blade.php │ ├── settings │ └── settings.blade.php │ ├── signup.blade.php │ ├── unsubscribe.blade.php │ └── users │ ├── addsuser.blade.php │ ├── admins.blade.php │ ├── category.blade.php │ ├── categoryedit.blade.php │ ├── dashboard.blade.php │ ├── edit.blade.php │ ├── indexs.blade.php │ ├── menu.blade.php │ ├── menuedit.blade.php │ ├── notaccesspage.blade.php │ ├── searchuser.blade.php │ ├── subcategory.blade.php │ ├── subcategoryedit.blade.php │ ├── submenu.blade.php │ ├── submenuedit.blade.php │ ├── viewcategory.blade.php │ └── viewmenu.blade.php ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── for_sub_folder.htaccess ├── imagesfb ├── female.jpg ├── female_cover.jpg ├── male.jpg └── male_cover.jpg ├── index.php ├── public ├── css │ ├── 960.css │ ├── animate.css │ ├── blue.css │ ├── bluessss.css │ ├── bootstrap.min.css │ ├── contact.css │ ├── demo │ │ └── style.css │ ├── font-awesome.min.css │ ├── forms.css │ ├── green.css │ ├── jquery.cleditor.css │ ├── login.css │ ├── main.css │ ├── prettyPhoto.css │ ├── price-range.css │ ├── red.css │ ├── reddsad.css │ ├── reset.css │ ├── responsive.css │ ├── sahil.css │ ├── smoothness │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── ui.css │ ├── style.css │ ├── styless.css │ ├── table.css │ └── text.css ├── cssfb │ ├── 001cb3ba800d39235f0f6a706700c136.jpg │ ├── 250354.jpg │ ├── 404.css │ ├── DSC_BG_History.jpg │ ├── adminstyle.css │ ├── banner_bg.jpg │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── datepicker.css │ ├── editor-style.css │ ├── general.css │ ├── happy-birthday-wallpapers-5.jpg │ ├── mystyle.css │ ├── mystyle.css_odl │ ├── mystylegreen.css │ ├── mystylepink.css │ ├── mystyletest.css │ └── profile.blade.php ├── favicon.ico ├── font-awesome-4.1.0 │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── spinning.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _spinning.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.svg │ └── glyphicons-halflings-regular.woff ├── fontsfb │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── oswald-bold-demo.html │ ├── oswald-bold-webfont.eot │ ├── oswald-bold-webfont.svg │ ├── oswald-bold-webfont.ttf │ ├── oswald-bold-webfont.woff │ ├── oswald-bold-webfont.woff2 │ ├── oswald-light-demo.html │ ├── oswald-light-webfont.eot │ ├── oswald-light-webfont.svg │ ├── oswald-light-webfont.ttf │ ├── oswald-light-webfont.woff2 │ ├── oswald-regular-demo.html │ ├── oswald-regular-webfont.eot │ ├── oswald-regular-webfont.ttf │ ├── oswald-regular-webfont.woff │ ├── oswald-regular-webfont.woff2 │ ├── oswald-stencil-demo.html │ ├── oswald-stencil-webfont.eot │ ├── oswald-stencil-webfont.svg │ ├── oswald-stencil-webfont.ttf │ ├── oswald-stencil-webfont.woff │ ├── oswald-stencil-webfont.woff2 │ ├── specimen_files │ │ ├── easytabs.js │ │ ├── grid_12-825-55-15.css │ │ └── specimen_stylesheet.css │ └── stylesheet.css ├── images │ ├── 404 │ │ └── 404.png │ ├── 404.gif │ ├── about.png │ ├── add-to-cart.jpg │ ├── addtocart.gif │ ├── admin_bg.jpg │ ├── app_storebtn.png │ ├── arrow_mini_down.gif │ ├── bann1.jpg │ ├── bann2.jpg │ ├── banner_bg.jpg │ ├── banner_shadow.png │ ├── bar_bg.gif │ ├── bg.gif │ ├── bg.jpg │ ├── bg_content.gif │ ├── bg_content_bottom.gif │ ├── bg_header_blue.gif │ ├── bg_header_green.gif │ ├── bg_header_red.gif │ ├── bg_login.gif │ ├── bg_usertools_left.gif │ ├── bg_usertools_right.gif │ ├── big_pic.jpg │ ├── blog │ │ ├── blog-one.jpg │ │ ├── blog-three.jpg │ │ ├── blog-two.jpg │ │ ├── man-four.jpg │ │ ├── man-one.jpg │ │ ├── man-three.jpg │ │ ├── man-two.jpg │ │ └── socials.png │ ├── blue-add.png │ ├── book.png │ ├── box_bg.png │ ├── bullet_blue.gif │ ├── bullet_green.gif │ ├── bullet_red.gif │ ├── but_left_blue.gif │ ├── but_left_green.gif │ ├── but_left_grey.gif │ ├── but_left_red.gif │ ├── but_login_left.gif │ ├── but_login_span.gif │ ├── but_right_blue.gif │ ├── but_right_green.gif │ ├── but_right_grey.gif │ ├── but_right_red.gif │ ├── but_round_del_blue.gif │ ├── but_round_del_green.gif │ ├── but_round_del_red.gif │ ├── but_round_left_grey.gif │ ├── but_round_ok_blue.gif │ ├── but_round_ok_green.gif │ ├── but_round_ok_red.gif │ ├── but_round_span_blue.gif │ ├── but_round_span_green.gif │ ├── but_round_span_grey.gif │ ├── but_round_span_red.gif │ ├── buttons.gif │ ├── camera.png │ ├── car.png │ ├── cart.gif │ ├── cart │ │ ├── one.png │ │ ├── three.png │ │ └── two.png │ ├── cart_bg.gif │ ├── checked.png │ ├── clipboard.jpg │ ├── compare.gif │ ├── contact-new.png │ ├── contact.png │ ├── contact_bt.gif │ ├── csscreme.jpg │ ├── de.gif │ ├── details_box_bottom.gif │ ├── details_box_center.gif │ ├── details_box_top.gif │ ├── details_bt_bg.gif │ ├── details_bt_bg.png │ ├── en.gif │ ├── facebook.png │ ├── favorites.gif │ ├── favorites.png │ ├── favs.gif │ ├── favs.png │ ├── footer_bg.gif │ ├── footer_logo.png │ ├── forgot_bg_left.gif │ ├── forgot_bg_span.gif │ ├── google_playbtn.png │ ├── googleplus.png │ ├── header_bg.jpg │ ├── header_divider.png │ ├── home.png │ ├── home │ │ ├── bg_border.png │ │ ├── gallery1.jpg │ │ ├── gallery2.jpg │ │ ├── gallery3.jpg │ │ ├── gallery4.jpg │ │ ├── girl1.jpg │ │ ├── girl2.jpg │ │ ├── girl3.jpg │ │ ├── iframe1.png │ │ ├── iframe2.png │ │ ├── iframe3.png │ │ ├── iframe4.png │ │ ├── logo.png │ │ ├── map.png │ │ ├── new.png │ │ ├── partner1.png │ │ ├── partner2.png │ │ ├── partner3.png │ │ ├── partner4.png │ │ ├── pricing.png │ │ ├── product1.jpg │ │ ├── product2.jpg │ │ ├── product3.jpg │ │ ├── product4.jpg │ │ ├── product5.jpg │ │ ├── product6.jpg │ │ ├── recommend1.jpg │ │ ├── recommend2.jpg │ │ ├── recommend3.jpg │ │ ├── sale.png │ │ ├── searchicon.png │ │ └── shipping.jpg │ ├── icon_clock.png │ ├── icon_content_small.gif │ ├── icon_dashboard.png │ ├── icon_dashboard_small.gif │ ├── icon_edit.png │ ├── icon_error.gif │ ├── icon_info.gif │ ├── icon_mail_small.gif │ ├── icon_media.png │ ├── icon_news.png │ ├── icon_reports.png │ ├── icon_settings.png │ ├── icon_success.gif │ ├── icon_users.png │ ├── icon_warning.gif │ ├── icons │ │ ├── action_check.gif │ │ ├── action_delete.gif │ │ ├── action_remove.gif │ │ ├── calendar.gif │ │ ├── chart_bar.gif │ │ ├── comments.gif │ │ ├── edit.gif │ │ ├── exclamation.gif │ │ ├── feed.gif │ │ ├── lightbulb.gif │ │ ├── lightbulb_off.gif │ │ └── user.gif │ ├── images.jpg │ ├── informationbar_right.gif │ ├── iphone.png │ ├── laptop.gif │ ├── laptop.png │ ├── logo.png │ ├── menu_bg.gif │ ├── menu_divider.gif │ ├── menu_left.gif │ ├── menu_right.gif │ ├── menu_title_bg.gif │ ├── navbullet.png │ ├── navigation_background_blue.gif │ ├── navigation_background_green.gif │ ├── navigation_background_red.gif │ ├── navigation_first_blue.gif │ ├── navigation_first_green.gif │ ├── navigation_first_red.gif │ ├── navigation_last_blue.gif │ ├── navigation_last_green.gif │ ├── navigation_last_red.gif │ ├── p1.gif │ ├── p2.gif │ ├── p4.gif │ ├── p5.gif │ ├── pag_bg.gif │ ├── pag_bg.png │ ├── pag_bg_a.gif │ ├── pag_bg_a.png │ ├── payment.gif │ ├── paypal.png │ ├── product-details │ │ ├── 1.jpg │ │ ├── new.jpg │ │ ├── rating.png │ │ ├── share.png │ │ ├── similar1.jpg │ │ ├── similar2.jpg │ │ └── similar3.jpg │ ├── product_box_bottom.gif │ ├── product_box_center.gif │ ├── product_box_top.gif │ ├── products_details_bg.gif │ ├── search.gif │ ├── services.png │ ├── shop │ │ ├── advertisement.jpg │ │ ├── product10.jpg │ │ ├── product11.jpg │ │ ├── product12.jpg │ │ ├── product7.jpg │ │ ├── product8.jpg │ │ └── product9.jpg │ ├── shoppingcart.png │ ├── smallclipboard.jpg │ ├── square-blue-add.gif │ ├── star.png │ ├── starblank.png │ ├── tabs_left.gif │ ├── tabs_left_green.gif │ ├── tabs_left_red.gif │ ├── tabs_right.gif │ ├── tabs_right_green.gif │ ├── tabs_right_red.gif │ ├── tem1.jpg │ ├── thumb1.gif │ ├── thumb2.gif │ ├── toolbar.gif │ ├── top_search_bg.gif │ ├── twitter.png │ └── user_add.png ├── imagesfb │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── about_bg1.jpg │ ├── about_img1.jpg │ ├── about_img2.jpg │ ├── add_cover.jpg │ ├── add_cover_hover.jpg │ ├── allevent.blade.php │ ├── app_storebtn.png │ ├── backs.jpeg │ ├── banner_bg.jpg │ ├── banner_green.jpg │ ├── banner_shadow.png │ ├── book.png │ ├── box_bg.png │ ├── button.png │ ├── cameras.jpeg_back │ ├── cameras.jpg │ ├── cameras.png │ ├── camerasred.png │ ├── cover.jpg │ ├── design-error-access-denied.jpg │ ├── design-error-message-240.jpg │ ├── event.jpg │ ├── facebook.png │ ├── facebook1.png │ ├── fav.png │ ├── female.jpg │ ├── female_cover.jpg │ ├── gallery1.jpg │ ├── gallery2.jpg │ ├── gallery3.jpg │ ├── gallery4.jpg │ ├── gallery5.jpg │ ├── gallery6.jpg │ ├── gallery7.jpg │ ├── gallery8.jpg │ ├── gallery9.jpg │ ├── google_playbtn.png │ ├── googleplus.png │ ├── logo.png │ ├── logo.png_old │ ├── logo2.png │ ├── logo3.png │ ├── male.jpg │ ├── male_cover.jpg │ ├── man.jpg │ ├── music.png │ ├── people_banner.jpg │ ├── photo_text.jpg │ ├── photo_text_hover.jpg │ ├── pinkbanner.jpg │ ├── profile_img.jpg │ ├── rec_img.jpg │ ├── rec_img1.jpg │ ├── rec_img2.jpg │ ├── tv_img.png │ ├── tvshow.png │ ├── twitter.png │ ├── twitter1.png │ ├── usephoto.jpg │ ├── usephoto.png │ ├── user_img.jpg │ ├── user_img1.jpg │ ├── video1.jpg │ ├── video1.png │ ├── video1red.png │ ├── window_storebtn.png │ ├── youtube.png │ └── youtube1.png ├── index.php ├── js │ ├── advanced.js │ ├── blend │ │ └── jquery.blend.js │ ├── flot │ │ └── jquery.flot.pack.js │ ├── jquery.anythingzoomer.js │ ├── jquery.anythingzoomer.min.js │ ├── jquery.cleditor.js │ ├── jquery.cleditor.min.js │ ├── jquery.js │ ├── js │ │ ├── bootstrap.min.js │ │ ├── contact.js │ │ ├── gmaps.js │ │ ├── html5shiv.js │ │ ├── jquery.js │ │ ├── jquery.prettyPhoto.js │ │ ├── jquery.scrollUp.min.js │ │ ├── main.js │ │ └── price-range.js │ ├── ui.core.js │ ├── ui.datepicker.js │ ├── ui.dialog.js │ ├── ui.sortable.js │ ├── wysihtml5-0.3.0.min.js │ └── wysiwyg │ │ ├── jquery.wysiwyg.css │ │ ├── jquery.wysiwyg.gif │ │ └── jquery.wysiwyg.js ├── jsfb │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── datepicker.js │ ├── exam.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery-1.11.0.js │ ├── jquery.form.js │ ├── jquery.form.min.js │ ├── modernizr.custom.js │ ├── momet.js │ ├── plugins │ │ ├── flot │ │ │ ├── excanvas.min.js │ │ │ ├── flot-data.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.tooltip.min.js │ │ └── morris │ │ │ ├── morris-data.js │ │ │ ├── morris.js │ │ │ ├── morris.min.js │ │ │ └── raphael.min.js │ ├── response.js │ ├── response1.js │ └── script.js ├── robots.txt ├── smallclipboard.jpg └── uploads │ ├── Fq1uQdemo image.png │ ├── LUStYdemo image.png │ ├── images │ ├── 012015 │ │ ├── 7Bmc96dqR5as.png │ │ ├── HVypZ1TsAc250354.jPg │ │ ├── Of1pBNZRoqhappy-birthday-wallpapers-5.jpg │ │ ├── logos.png │ │ ├── smallHVypZ1TsAc250354.jPg │ │ └── xW371TDT3F250354.jPg │ ├── 022015 │ │ ├── 1903101.jpg │ │ ├── FkTEs0QKGd14767-koenigsegg-agera-r-1920x1200-car-wallpaper.jpg │ │ ├── LbMo0AvOHX2014_lamborghini_aventador_novitec_torado-1920x1080.jpg │ │ ├── Smf4KdexkA2015 Lamborghini Huracan LP 610-4 HD Wallpaper 1080p Red Colour.jpg │ │ ├── Wt9DaURScUIMG_1016.JPG │ │ ├── XwQfYuFQq1banner.jpg │ │ ├── bybEXMThRl.mp4 │ │ ├── iV0goLQwQ0IMG_1008.JPG │ │ ├── oF6O4QtHNlbanner.jpg │ │ └── uxJwOgbOOk2015_porsche_911_carrera_gts_4_cabriolet-2560x1440.jpg │ ├── 112014smallO1t9LohLctclipboard.jpg │ ├── default_temp.jpg │ ├── green_theme.jpg │ ├── pink_theme.jpg │ ├── similar1.jpg │ ├── similar3.jpg │ └── test │ │ ├── FrontprofileController.php │ │ ├── allfriendrequest.blade.php │ │ └── notifications.blade.php │ ├── olcrMdemo image.png │ ├── vax2g001cb3ba800d39235f0f6a706700c136.jpg │ └── xlh7Ydemo image.png ├── routes.php ├── server.php ├── uploads ├── 694TuDK_Website_Activities.jpg ├── EG5wkDSC_Explore_Books.jpg ├── d2BtkKoala.jpg ├── images │ ├── 022015 │ │ ├── 0v3AmYl17ktest.jpg │ │ ├── 3wxti1hl9nPenguins.jpg │ │ ├── 4hb2r2j0YgDSC_Explore_Books.jpg │ │ ├── 5ia4ZSt8kfDSC_Explore_Apps.jpg │ │ ├── 6c6EqOinWI.mp4 │ │ ├── 7i3sV2Yc4n..jpg │ │ ├── 9kv4Kj31uxglasses-555649_1280.jpg │ │ ├── 9oqJZZvVZaDK_Website_Activities.jpg │ │ ├── AvglwTIArrJaguar-animal-wallpaper-hd-8.jpg │ │ ├── D8mC55A6uoDSC_Explore_Apps.jpg │ │ ├── EbK3AqcMa9test22.jpeg │ │ ├── FUJBhvTWDmglasses-555649_1280.jpg │ │ ├── Fwonr8FkVaDSC_Explore_Books.jpg │ │ ├── JDQ5iBgU70.mp4 │ │ ├── Kjgr6gxR4TPenguins.jpg │ │ ├── MJ6tVcdf5ntestgyfd.jpg │ │ ├── MJaivCJkb9test.jpg │ │ ├── MMpVGhSgQksport_car_lamborghini_hd_wallpaper_.jpg │ │ ├── NSDayATwVr250354.jPg │ │ ├── U5YQQkJubHtest1.jpg │ │ ├── Wp7VMnaNnZDemo Image.png │ │ ├── XsUMgmkg1e.mp4 │ │ ├── Ygl6Ygy1n0test.jpg │ │ ├── e4uR1J0eX7DSC_Explore_Apps.jpg │ │ ├── eqk5nOfh6pDSC_Explore_Apps.jpg │ │ ├── i1vMgbr0XZtest.jpg │ │ ├── lASVzCSDGddemo image.png │ │ ├── lER2g6WnYzDemo Image.png │ │ ├── o94OMUs6T5Koala.jpg │ │ ├── oSYsVLvvPRKoala.jpg │ │ ├── pro5.jpg │ │ ├── rGHUJh76wcDSC_Explore_Apps.jpg │ │ ├── rczDOfhrwvtest.jpg │ │ ├── small4hb2r2j0YgDSC_Explore_Books.jpg │ │ ├── small5ia4ZSt8kfDSC_Explore_Apps.jpg │ │ ├── small7i3sV2Yc4n..jpg │ │ ├── small9oqJZZvVZaDK_Website_Activities.jpg │ │ ├── smallD8mC55A6uoDSC_Explore_Apps.jpg │ │ ├── smallEbK3AqcMa9test22.jpeg │ │ ├── smallMJ6tVcdf5ntestgyfd.jpg │ │ ├── smallU5YQQkJubHtest1.jpg │ │ ├── smalleqk5nOfh6pDSC_Explore_Apps.jpg │ │ ├── smallo94OMUs6T5Koala.jpg │ │ ├── smalloSYsVLvvPRKoala.jpg │ │ ├── smallrGHUJh76wcDSC_Explore_Apps.jpg │ │ ├── tKu9DB7BQUlamborghini.png │ │ ├── xNVmHl0Mv0test.jpg │ │ ├── xWDR5VkYNrDSC_Explore_Apps.jpg │ │ └── z7IOhc5Gx6DSC_Explore_Apps.jpg │ └── index.html ├── index.html ├── qaMVwDSC_Explore_Books.jpg └── xEYomdontdontdontdontdontdontdontdontdontdontdontdontdontdontdontdontdont.mp4 ├── vendor ├── autoload.php ├── bin │ ├── boris │ ├── boris.bat │ ├── classpreloader.php │ └── classpreloader.php.bat ├── classpreloader │ └── classpreloader │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── FrameCollectionTest.php │ │ │ ├── FrameTest.php │ │ │ └── InspectorTest.php │ │ ├── Handler │ │ │ ├── JsonResponseHandlerTest.php │ │ │ ├── PlainTextHandlerTest.php │ │ │ ├── PrettyPageHandlerTest.php │ │ │ ├── SoapResponseHandlerTest.php │ │ │ └── XmlResponseHandlerTest.php │ │ ├── RunTest.php │ │ ├── TestCase.php │ │ └── Util │ │ │ └── TemplateHelperTest.php │ │ ├── bootstrap.php │ │ ├── deprecated │ │ └── Zend │ │ │ └── ModuleTest.php │ │ └── fixtures │ │ ├── frame.lines-test.php │ │ └── template.php ├── guzzle │ └── guzzle │ │ ├── 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 │ │ │ │ └── cacert.pem.md5 │ │ │ ├── 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 │ │ └── bootstrap.php ├── ircmaxell │ └── password-compat │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── composer.json │ │ ├── gitignore.txt │ │ ├── phpunit.xml │ │ ├── plain.composer.json │ │ ├── plain.provider.stub │ │ └── provider.stub ├── moltin │ ├── cart │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Moltin │ │ │ │ └── Cart │ │ │ │ ├── Cart.php │ │ │ │ ├── Identifier │ │ │ │ ├── Cookie.php │ │ │ │ └── Runtime.php │ │ │ │ ├── IdentifierInterface.php │ │ │ │ ├── Item.php │ │ │ │ ├── Storage │ │ │ │ ├── Runtime.php │ │ │ │ └── Session.php │ │ │ │ └── StorageInterface.php │ │ └── tests │ │ │ └── CartTest.php │ ├── currency │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Moltin │ │ │ │ └── Currency │ │ │ │ ├── Currency.php │ │ │ │ ├── Exception │ │ │ │ ├── ExchangeException.php │ │ │ │ └── FormatException.php │ │ │ │ ├── Exchange │ │ │ │ ├── ExchangeAbstract.php │ │ │ │ ├── OpenExchangeRates.php │ │ │ │ └── Runtime.php │ │ │ │ ├── ExchangeInterface.php │ │ │ │ ├── Format │ │ │ │ ├── FormatAbstract.php │ │ │ │ └── Runtime.php │ │ │ │ └── FormatInterface.php │ │ └── tests │ │ │ ├── CurrencyTest.php │ │ │ └── ExchangeTest.php │ ├── laravel-cart │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Moltin │ │ │ └── Cart │ │ │ │ ├── CartServiceProvider.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Identifier │ │ │ │ └── RequestCookie.php │ │ │ │ └── Storage │ │ │ │ ├── LaravelCache.php │ │ │ │ └── LaravelSession.php │ │ │ └── config │ │ │ └── moltincart.php │ └── tax │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ └── Moltin │ │ │ └── Tax │ │ │ └── Tax.php │ │ └── tests │ │ └── TaxTest.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 ├── phpseclib │ └── phpseclib │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ ├── 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 │ │ └── openssl.cnf │ │ ├── phpunit.xml.dist │ │ ├── tests │ │ ├── Crypt │ │ │ ├── AES │ │ │ │ ├── ContinuousBufferTest.php │ │ │ │ └── TestCase.php │ │ │ ├── Hash │ │ │ │ ├── MD5Test.php │ │ │ │ └── TestCase.php │ │ │ └── RSA │ │ │ │ └── LoadKeyTest.php │ │ ├── Math │ │ │ └── BigInteger │ │ │ │ ├── BCMathTest.php │ │ │ │ ├── GMPTest.php │ │ │ │ ├── InternalOpenSSLTest.php │ │ │ │ ├── InternalTest.php │ │ │ │ └── TestCase.php │ │ ├── Net │ │ │ ├── SSH1Test.php │ │ │ └── SSH2Test.php │ │ ├── PhpseclibTestCase.php │ │ └── bootstrap.php │ │ └── travis │ │ ├── code_coverage_id_rsa │ │ ├── install-php-extensions.sh │ │ └── upload-code-coverage.sh ├── predis │ └── predis │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── ZSetRange.php │ │ │ ├── ZSetRangeByScore.php │ │ │ ├── ZSetRank.php │ │ │ ├── ZSetRemove.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 │ │ │ ├── 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 │ │ │ ├── ZSetRangeByScoreTest.php │ │ │ ├── ZSetRangeTest.php │ │ │ ├── ZSetRankTest.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── ApacheRequest.php │ │ ├── BinaryFileResponse.php │ │ ├── CHANGELOG.md │ │ ├── Cookie.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── FileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UploadException.php │ │ ├── File.php │ │ ├── MimeType │ │ │ ├── ExtensionGuesser.php │ │ │ ├── ExtensionGuesserInterface.php │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ ├── MimeTypeGuesser.php │ │ │ └── MimeTypeGuesserInterface.php │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Resources │ │ └── stubs │ │ │ └── SessionHandlerInterface.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionInterface.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── MemcacheSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NativeSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ └── WriteCheckSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ ├── NativeProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ └── SessionStorageInterface.php │ │ ├── StreamedResponse.php │ │ ├── Tests │ │ ├── AcceptHeaderItemTest.php │ │ ├── AcceptHeaderTest.php │ │ ├── ApacheRequestTest.php │ │ ├── BinaryFileResponseTest.php │ │ ├── CookieTest.php │ │ ├── ExpressionRequestMatcherTest.php │ │ ├── File │ │ │ ├── FileTest.php │ │ │ ├── Fixtures │ │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── 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 │ │ ├── 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 └── workbench └── acme └── cart ├── composer.json ├── phpunit.xml └── src └── Acme └── Cart └── CartServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/.htaccess -------------------------------------------------------------------------------- /INSTALLATION - Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/INSTALLATION - Instructions.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/README.md -------------------------------------------------------------------------------- /Resource/clean-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/Resource/clean-code.sh -------------------------------------------------------------------------------- /Resource/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/Resource/install.sql -------------------------------------------------------------------------------- /Resource/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/Resource/logo.psd -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/config.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/local/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/local/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/moltincart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/moltincart.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/AccessController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/AccessController.php -------------------------------------------------------------------------------- /app/controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/AuthController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/EventController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/EventController.php -------------------------------------------------------------------------------- /app/controllers/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/FrontController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/controllers/MediaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/MediaController.php -------------------------------------------------------------------------------- /app/controllers/MyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/MyController.php -------------------------------------------------------------------------------- /app/controllers/OrdersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/OrdersController.php -------------------------------------------------------------------------------- /app/controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/UsersController.php -------------------------------------------------------------------------------- /app/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/controllers/index.html -------------------------------------------------------------------------------- /app/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/css/layout.css -------------------------------------------------------------------------------- /app/css/prettyPhoto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/css/prettyPhoto.css -------------------------------------------------------------------------------- /app/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/css/reset.css -------------------------------------------------------------------------------- /app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/css/style.css -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/index.html -------------------------------------------------------------------------------- /app/lang/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | /vendor/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /app/lang/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/Changelog.md -------------------------------------------------------------------------------- /app/lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/README.md -------------------------------------------------------------------------------- /app/lang/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/Source.md -------------------------------------------------------------------------------- /app/lang/Status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/Status.md -------------------------------------------------------------------------------- /app/lang/ar/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ar/greeting.php -------------------------------------------------------------------------------- /app/lang/ar/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ar/pagination.php -------------------------------------------------------------------------------- /app/lang/ar/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ar/reminders.php -------------------------------------------------------------------------------- /app/lang/ar/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ar/validation.php -------------------------------------------------------------------------------- /app/lang/bg/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bg/greeting.php -------------------------------------------------------------------------------- /app/lang/bg/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bg/pagination.php -------------------------------------------------------------------------------- /app/lang/bg/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bg/reminders.php -------------------------------------------------------------------------------- /app/lang/bg/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bg/validation.php -------------------------------------------------------------------------------- /app/lang/bs/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bs/greeting.php -------------------------------------------------------------------------------- /app/lang/bs/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bs/pagination.php -------------------------------------------------------------------------------- /app/lang/bs/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bs/reminders.php -------------------------------------------------------------------------------- /app/lang/bs/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/bs/validation.php -------------------------------------------------------------------------------- /app/lang/ca/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ca/greeting.php -------------------------------------------------------------------------------- /app/lang/ca/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ca/pagination.php -------------------------------------------------------------------------------- /app/lang/ca/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ca/reminders.php -------------------------------------------------------------------------------- /app/lang/ca/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ca/validation.php -------------------------------------------------------------------------------- /app/lang/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/composer.json -------------------------------------------------------------------------------- /app/lang/cs/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/cs/greeting.php -------------------------------------------------------------------------------- /app/lang/cs/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/cs/pagination.php -------------------------------------------------------------------------------- /app/lang/cs/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/cs/reminders.php -------------------------------------------------------------------------------- /app/lang/cs/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/cs/validation.php -------------------------------------------------------------------------------- /app/lang/da/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/da/greeting.php -------------------------------------------------------------------------------- /app/lang/da/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/da/pagination.php -------------------------------------------------------------------------------- /app/lang/da/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/da/reminders.php -------------------------------------------------------------------------------- /app/lang/da/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/da/validation.php -------------------------------------------------------------------------------- /app/lang/de/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/de/greeting.php -------------------------------------------------------------------------------- /app/lang/de/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/de/pagination.php -------------------------------------------------------------------------------- /app/lang/de/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/de/reminders.php -------------------------------------------------------------------------------- /app/lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/de/validation.php -------------------------------------------------------------------------------- /app/lang/el/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/el/greeting.php -------------------------------------------------------------------------------- /app/lang/el/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/el/pagination.php -------------------------------------------------------------------------------- /app/lang/el/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/el/reminders.php -------------------------------------------------------------------------------- /app/lang/el/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/el/validation.php -------------------------------------------------------------------------------- /app/lang/en/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/en/copy.php -------------------------------------------------------------------------------- /app/lang/en/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/en/greeting.php -------------------------------------------------------------------------------- /app/lang/en/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/en/home.php -------------------------------------------------------------------------------- /app/lang/es/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/es/greeting.php -------------------------------------------------------------------------------- /app/lang/es/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/es/home.php -------------------------------------------------------------------------------- /app/lang/es/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/es/pagination.php -------------------------------------------------------------------------------- /app/lang/es/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/es/reminders.php -------------------------------------------------------------------------------- /app/lang/es/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/es/validation.php -------------------------------------------------------------------------------- /app/lang/fa/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fa/greeting.php -------------------------------------------------------------------------------- /app/lang/fa/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fa/pagination.php -------------------------------------------------------------------------------- /app/lang/fa/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fa/reminders.php -------------------------------------------------------------------------------- /app/lang/fa/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fa/validation.php -------------------------------------------------------------------------------- /app/lang/fi/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fi/greeting.php -------------------------------------------------------------------------------- /app/lang/fi/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fi/pagination.php -------------------------------------------------------------------------------- /app/lang/fi/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fi/reminders.php -------------------------------------------------------------------------------- /app/lang/fi/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fi/validation.php -------------------------------------------------------------------------------- /app/lang/fr/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fr/greeting.php -------------------------------------------------------------------------------- /app/lang/fr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fr/pagination.php -------------------------------------------------------------------------------- /app/lang/fr/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fr/reminders.php -------------------------------------------------------------------------------- /app/lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/fr/validation.php -------------------------------------------------------------------------------- /app/lang/he/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/he/greeting.php -------------------------------------------------------------------------------- /app/lang/he/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/he/pagination.php -------------------------------------------------------------------------------- /app/lang/he/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/he/reminders.php -------------------------------------------------------------------------------- /app/lang/he/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/he/validation.php -------------------------------------------------------------------------------- /app/lang/hi/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/hi/greeting.php -------------------------------------------------------------------------------- /app/lang/hu/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/hu/greeting.php -------------------------------------------------------------------------------- /app/lang/hu/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/hu/pagination.php -------------------------------------------------------------------------------- /app/lang/hu/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/hu/reminders.php -------------------------------------------------------------------------------- /app/lang/hu/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/hu/validation.php -------------------------------------------------------------------------------- /app/lang/id/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/id/greeting.php -------------------------------------------------------------------------------- /app/lang/id/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/id/pagination.php -------------------------------------------------------------------------------- /app/lang/id/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/id/reminders.php -------------------------------------------------------------------------------- /app/lang/id/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/id/validation.php -------------------------------------------------------------------------------- /app/lang/it/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/it/greeting.php -------------------------------------------------------------------------------- /app/lang/it/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/it/pagination.php -------------------------------------------------------------------------------- /app/lang/it/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/it/reminders.php -------------------------------------------------------------------------------- /app/lang/it/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/it/validation.php -------------------------------------------------------------------------------- /app/lang/ja/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ja/greeting.php -------------------------------------------------------------------------------- /app/lang/ja/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ja/pagination.php -------------------------------------------------------------------------------- /app/lang/ja/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ja/reminders.php -------------------------------------------------------------------------------- /app/lang/ja/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ja/validation.php -------------------------------------------------------------------------------- /app/lang/km/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/km/greeting.php -------------------------------------------------------------------------------- /app/lang/km/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/km/pagination.php -------------------------------------------------------------------------------- /app/lang/km/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/km/reminders.php -------------------------------------------------------------------------------- /app/lang/km/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/km/validation.php -------------------------------------------------------------------------------- /app/lang/ko/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ko/greeting.php -------------------------------------------------------------------------------- /app/lang/ko/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ko/pagination.php -------------------------------------------------------------------------------- /app/lang/ko/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ko/reminders.php -------------------------------------------------------------------------------- /app/lang/ko/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ko/validation.php -------------------------------------------------------------------------------- /app/lang/me/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/me/pagination.php -------------------------------------------------------------------------------- /app/lang/me/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/me/reminders.php -------------------------------------------------------------------------------- /app/lang/me/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/me/validation.php -------------------------------------------------------------------------------- /app/lang/mk/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/mk/greeting.php -------------------------------------------------------------------------------- /app/lang/mk/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/mk/pagination.php -------------------------------------------------------------------------------- /app/lang/mk/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/mk/reminders.php -------------------------------------------------------------------------------- /app/lang/mk/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/mk/validation.php -------------------------------------------------------------------------------- /app/lang/nb/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nb/greeting.php -------------------------------------------------------------------------------- /app/lang/nb/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nb/pagination.php -------------------------------------------------------------------------------- /app/lang/nb/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nb/reminders.php -------------------------------------------------------------------------------- /app/lang/nb/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nb/validation.php -------------------------------------------------------------------------------- /app/lang/nl/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nl/greeting.php -------------------------------------------------------------------------------- /app/lang/nl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nl/pagination.php -------------------------------------------------------------------------------- /app/lang/nl/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nl/reminders.php -------------------------------------------------------------------------------- /app/lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/nl/validation.php -------------------------------------------------------------------------------- /app/lang/pl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pl/pagination.php -------------------------------------------------------------------------------- /app/lang/pl/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pl/reminders.php -------------------------------------------------------------------------------- /app/lang/pl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pl/validation.php -------------------------------------------------------------------------------- /app/lang/pt-BR/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt-BR/pagination.php -------------------------------------------------------------------------------- /app/lang/pt-BR/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt-BR/reminders.php -------------------------------------------------------------------------------- /app/lang/pt-BR/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt-BR/validation.php -------------------------------------------------------------------------------- /app/lang/pt/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt/greeting.php -------------------------------------------------------------------------------- /app/lang/pt/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt/pagination.php -------------------------------------------------------------------------------- /app/lang/pt/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt/reminders.php -------------------------------------------------------------------------------- /app/lang/pt/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/pt/validation.php -------------------------------------------------------------------------------- /app/lang/ro/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ro/pagination.php -------------------------------------------------------------------------------- /app/lang/ro/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ro/reminders.php -------------------------------------------------------------------------------- /app/lang/ro/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ro/validation.php -------------------------------------------------------------------------------- /app/lang/ru/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ru/greeting.php -------------------------------------------------------------------------------- /app/lang/ru/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ru/pagination.php -------------------------------------------------------------------------------- /app/lang/ru/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ru/reminders.php -------------------------------------------------------------------------------- /app/lang/ru/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/ru/validation.php -------------------------------------------------------------------------------- /app/lang/sc/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sc/pagination.php -------------------------------------------------------------------------------- /app/lang/sc/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sc/reminders.php -------------------------------------------------------------------------------- /app/lang/sc/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sc/validation.php -------------------------------------------------------------------------------- /app/lang/sk/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sk/pagination.php -------------------------------------------------------------------------------- /app/lang/sk/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sk/reminders.php -------------------------------------------------------------------------------- /app/lang/sk/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sk/validation.php -------------------------------------------------------------------------------- /app/lang/sq/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sq/pagination.php -------------------------------------------------------------------------------- /app/lang/sq/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sq/reminders.php -------------------------------------------------------------------------------- /app/lang/sq/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sq/validation.php -------------------------------------------------------------------------------- /app/lang/sr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sr/pagination.php -------------------------------------------------------------------------------- /app/lang/sr/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sr/reminders.php -------------------------------------------------------------------------------- /app/lang/sr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sr/validation.php -------------------------------------------------------------------------------- /app/lang/sv/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sv/greeting.php -------------------------------------------------------------------------------- /app/lang/sv/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sv/pagination.php -------------------------------------------------------------------------------- /app/lang/sv/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sv/reminders.php -------------------------------------------------------------------------------- /app/lang/sv/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/sv/validation.php -------------------------------------------------------------------------------- /app/lang/test/de/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/test/de/greeting.php -------------------------------------------------------------------------------- /app/lang/test/en/copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/test/en/copy.php -------------------------------------------------------------------------------- /app/lang/test/en/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/test/en/greeting.php -------------------------------------------------------------------------------- /app/lang/th/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/th/greeting.php -------------------------------------------------------------------------------- /app/lang/th/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/th/pagination.php -------------------------------------------------------------------------------- /app/lang/th/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/th/reminders.php -------------------------------------------------------------------------------- /app/lang/th/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/th/validation.php -------------------------------------------------------------------------------- /app/lang/tk/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tk/pagination.php -------------------------------------------------------------------------------- /app/lang/tk/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tk/reminders.php -------------------------------------------------------------------------------- /app/lang/tk/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tk/validation.php -------------------------------------------------------------------------------- /app/lang/tr/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tr/greeting.php -------------------------------------------------------------------------------- /app/lang/tr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tr/pagination.php -------------------------------------------------------------------------------- /app/lang/tr/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tr/reminders.php -------------------------------------------------------------------------------- /app/lang/tr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/tr/validation.php -------------------------------------------------------------------------------- /app/lang/vi/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/vi/greeting.php -------------------------------------------------------------------------------- /app/lang/vi/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/vi/pagination.php -------------------------------------------------------------------------------- /app/lang/vi/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/vi/reminders.php -------------------------------------------------------------------------------- /app/lang/vi/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/vi/validation.php -------------------------------------------------------------------------------- /app/lang/zh-HK/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-HK/pagination.php -------------------------------------------------------------------------------- /app/lang/zh-HK/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-HK/reminders.php -------------------------------------------------------------------------------- /app/lang/zh-HK/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-HK/validation.php -------------------------------------------------------------------------------- /app/lang/zh-TW/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-TW/pagination.php -------------------------------------------------------------------------------- /app/lang/zh-TW/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-TW/reminders.php -------------------------------------------------------------------------------- /app/lang/zh-TW/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh-TW/validation.php -------------------------------------------------------------------------------- /app/lang/zh/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh/greeting.php -------------------------------------------------------------------------------- /app/lang/zh/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh/pagination.php -------------------------------------------------------------------------------- /app/lang/zh/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh/reminders.php -------------------------------------------------------------------------------- /app/lang/zh/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zh/validation.php -------------------------------------------------------------------------------- /app/lang/zu/greeting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/lang/zu/greeting.php -------------------------------------------------------------------------------- /app/models/Addlanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Addlanguage.php -------------------------------------------------------------------------------- /app/models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Block.php -------------------------------------------------------------------------------- /app/models/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Blog.php -------------------------------------------------------------------------------- /app/models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Category.php -------------------------------------------------------------------------------- /app/models/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Chat.php -------------------------------------------------------------------------------- /app/models/Chatrecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Chatrecord.php -------------------------------------------------------------------------------- /app/models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Comment.php -------------------------------------------------------------------------------- /app/models/Confirmmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Confirmmail.php -------------------------------------------------------------------------------- /app/models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Contact.php -------------------------------------------------------------------------------- /app/models/Contemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Contemplate.php -------------------------------------------------------------------------------- /app/models/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Content.php -------------------------------------------------------------------------------- /app/models/Createevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Createevent.php -------------------------------------------------------------------------------- /app/models/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Currency.php -------------------------------------------------------------------------------- /app/models/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Emails.php -------------------------------------------------------------------------------- /app/models/Friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Friends.php -------------------------------------------------------------------------------- /app/models/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Gallery.php -------------------------------------------------------------------------------- /app/models/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Like.php -------------------------------------------------------------------------------- /app/models/Logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Logo.php -------------------------------------------------------------------------------- /app/models/Membershipplan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Membershipplan.php -------------------------------------------------------------------------------- /app/models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Menu.php -------------------------------------------------------------------------------- /app/models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Message.php -------------------------------------------------------------------------------- /app/models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Notification.php -------------------------------------------------------------------------------- /app/models/Notificationlike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Notificationlike.php -------------------------------------------------------------------------------- /app/models/Notilike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Notilike.php -------------------------------------------------------------------------------- /app/models/Notitemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Notitemplate.php -------------------------------------------------------------------------------- /app/models/Onlineuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Onlineuser.php -------------------------------------------------------------------------------- /app/models/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Orders.php -------------------------------------------------------------------------------- /app/models/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Pages.php -------------------------------------------------------------------------------- /app/models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Post.php -------------------------------------------------------------------------------- /app/models/Postcomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Postcomment.php -------------------------------------------------------------------------------- /app/models/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Profile.php -------------------------------------------------------------------------------- /app/models/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Rating.php -------------------------------------------------------------------------------- /app/models/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Set.php -------------------------------------------------------------------------------- /app/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Settings.php -------------------------------------------------------------------------------- /app/models/Shopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Shopping.php -------------------------------------------------------------------------------- /app/models/Signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Signup.php -------------------------------------------------------------------------------- /app/models/Slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Slider.php -------------------------------------------------------------------------------- /app/models/Subcategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Subcategory.php -------------------------------------------------------------------------------- /app/models/Submenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Submenu.php -------------------------------------------------------------------------------- /app/models/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/Template.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/models/UserEloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/UserEloquent.php -------------------------------------------------------------------------------- /app/models/author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/author.php -------------------------------------------------------------------------------- /app/models/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/events.php -------------------------------------------------------------------------------- /app/models/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/media.php -------------------------------------------------------------------------------- /app/models/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/models/my.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /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/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /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/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-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/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/translation/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" " 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /workbench/acme/cart/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/workbench/acme/cart/composer.json -------------------------------------------------------------------------------- /workbench/acme/cart/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDzUp/pH4Social/HEAD/workbench/acme/cart/phpunit.xml --------------------------------------------------------------------------------